Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Bold.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Bold.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-BoldSlanted.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-BoldSlanted.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-BoldSlanted.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-BoldSlanted.ttf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Bold.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Bold.ttf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/AmiriQuranColored.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/AmiriQuranColored.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/AmiriQuranColored.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/AmiriQuranColored.ttf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/AmiriQuran.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/AmiriQuran.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/AmiriQuran.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/AmiriQuran.ttf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Regular.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Regular.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Regular.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Regular.ttf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Slanted.otf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Slanted.otf differ Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/Amiri-Slanted.ttf and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/Amiri-Slanted.ttf differ diff -Nru fonts-hosny-amiri-0.112/AUTHORS.txt fonts-hosny-amiri-0.113/AUTHORS.txt --- fonts-hosny-amiri-0.112/AUTHORS.txt 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/AUTHORS.txt 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +# This is the official list of project authors for copyright purposes. +# This file is distinct from the CONTRIBUTORS.txt file. +# See the latter for an explanation. +# +# Names should be added to this file as: +# Name or Organization + +Khaled Hosny +Sebastian Kosch diff -Nru fonts-hosny-amiri-0.112/build.py fonts-hosny-amiri-0.113/build.py --- fonts-hosny-amiri-0.112/build.py 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/build.py 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,578 @@ +#!/usr/bin/env python +# coding=utf-8 +# +# build.py - Amiri font build utility +# +# Copyright 2010-2019 Khaled Hosny +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from io import StringIO +from pcpp.preprocessor import Preprocessor + +from sfdLib.parser import SFDParser +from sfdLib.utils import sortGlyphs +from ufo2ft import compileOTF, compileTTF + +from ufo2ft.filters.transformations import TransformationsFilter +from fontTools.feaLib import ast + + +def cleanAnchors(font): + """Removes anchor classes (and associated lookups) that are used only + internally for building composite glyph.""" + + lookups = ( + "markDash", + #"markDigitAbove", + "markDigitBelow", + "markDotAbove", + "markDotAlt", + "markDotBelow", + "markDotBelowAlt", + "markDotHmaza", + "markMarkDotAbove", + "markMarkDotBelow", + "markRingBelow", + "markRingDash", + "markStroke", + #"markTaaAbove", + "markTaaBelow", + "markTail", + "markTashkilAboveDot", + "markTashkilBelowDot", + "markTwoDotsAbove", + "markTwoDotsBelow", + "markTwoDotsBelowAlt", + "markVAbove", + ) + + def keep(s): + if isinstance(s, ast.LookupBlock) and s.name in lookups: + return False + if isinstance(s, ast.LookupReferenceStatement) and s.lookup.name in lookups: + return False + return True + + fea = font.features.text = parseFea(font.features.text) + fea.statements = [s for s in fea.statements if keep(s)] + for block in fea.statements: + if hasattr(block, "statements"): + block.statements = [s for s in block.statements if keep(s)] + + +def generateFeatures(font, args): + """Generates feature text by merging feature file with mark positioning + lookups (already in the font) and making sure they come after kerning + lookups (from the feature file), which is required by Uniscribe to get + correct mark positioning for kerned glyphs.""" + + # open feature file and insert the generated GPOS features in place of the + # placeholder text + preprocessor = Preprocessor() + if args.quran: + preprocessor.define("QURAN") + elif args.slant: + preprocessor.define("ITALIC") + with open(args.features) as f: + preprocessor.parse(f) + o = StringIO() + preprocessor.write(o) + fea = o.getvalue() + font.features.text = fea.replace("#{%anchors%}", font.features.text.asFea()) + + +def generateFont(options, font): + generateFeatures(font, options) + + from datetime import datetime + info = font.info + major, minor = options.version.split(".") + info.versionMajor, info.versionMinor = int(major), int(minor) + year = datetime.now().year + info.copyright = f"Copyright 2010-{year} The Amiri Project Authors (https://github.com/alif-type/amiri)." + info.openTypeNameLicense = "This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL" + info.openTypeNameLicenseURL = "https://scripts.sil.org/OFL" + + if options.output.endswith(".ttf"): + from fontTools.ttLib import newTable + from fontTools.ttLib.tables import ttProgram + otf = compileTTF(font, inplace=True, removeOverlaps=True, + overlapsBackend="pathops", featureWriters=[]) + + otf["DSIG"] = DSIG = newTable("DSIG") + DSIG.ulVersion = 1 + DSIG.usFlag = 0 + DSIG.usNumSigs = 0 + DSIG.signatureRecords = [] + + otf["prep"] = prep = newTable("prep") + prep.program = ttProgram.Program() + prep.program.fromAssembly([ + 'PUSHW[]', '511', 'SCANCTRL[]', 'PUSHB[]', '4', 'SCANTYPE[]']) + else: + import cffsubr + otf = compileOTF(font, inplace=True, optimizeCFF=0, removeOverlaps=True, + overlapsBackend="pathops", featureWriters=[]) + cffsubr.subroutinize(otf) + + if info.styleMapStyleName and "italic" in info.styleMapStyleName: + otf['name'].names = [n for n in otf['name'].names if n.nameID != 17] + for name in otf['name'].names: + if name.nameID == 2: + name.string = info.styleName + glyf = otf.get("glyf") + if glyf: + from fontTools.ttLib.tables._g_l_y_f import UNSCALED_COMPONENT_OFFSET + for name, glyph in glyf.glyphs.items(): + glyph.expand(glyf) + if glyph.isComposite(): + for component in glyph.components: + component.flags |= UNSCALED_COMPONENT_OFFSET + + return otf + + +def drawOverline(font, name, uni, pos, thickness, width): + try: + glyph = font[name] + except KeyError: + glyph = font.newGlyph(name) + glyph.width = 0 + + pen = glyph.getPen() + + pen.moveTo((-50, pos)) + pen.lineTo((-50, pos + thickness)) + pen.lineTo((width + 50, pos + thickness)) + pen.lineTo((width + 50, pos)) + pen.closePath() + + return glyph + + +def makeQuranSajdaLine(font): + pos = font["uni06D7"].getBounds(font).yMax + thickness = font.info.postscriptUnderlineThickness + minwidth = 100 + + + _, gdefclasses = findGDEF(font) + # collect glyphs grouped by their widths rounded by 100 units, we will use + # them to decide the widths of over/underline glyphs we will draw + widths = {} + for glyph in font: + u = glyph.unicode + if ((u is None ) or (0x0600 <= u <= 0x06FF) or u == ord(" ")) \ + and glyph.width > 0: + width = round(glyph.width / minwidth) * minwidth + width = width > minwidth and width or minwidth + if not width in widths: + widths[width] = [] + widths[width].append(glyph.name) + + base = 'uni0305' + drawOverline(font, base, 0x0305, pos, thickness, 500) + + mark = ast.FeatureBlock("mark") + overset = ast.GlyphClassDefinition("OverSet", ast.GlyphClass([base])) + lookupflag = ast.LookupFlagStatement(markFilteringSet=ast.GlyphClassName(overset)) + mark.statements.extend([overset, lookupflag]) + + for width in sorted(widths.keys()): + # for each width group we create an over/underline glyph with the same + # width, and add a contextual substitution lookup to use it when an + # over/underline follows any glyph in this group + replace = f"uni0305.{width}" + drawOverline(font, replace, None, pos, thickness, width) + sub = ast.SingleSubstStatement([ast.GlyphName(base)], + [ast.GlyphName(replace)], + [ast.GlyphClass(widths[width])], + [], False) + gdefclasses.markGlyphs.append(replace) + mark.statements.append(sub) + + font.features.text.statements.append(mark) + + +def subsetFont(otf, unicodes): + from fontTools import subset + + options = subset.Options() + options.set(layout_features='*', name_IDs='*', name_languages='*', + notdef_outline=True, glyph_names=True) + subsetter = subset.Subsetter(options=options) + subsetter.populate(unicodes=unicodes) + subsetter.subset(otf) + return otf + + +def parseFea(text): + from fontTools.feaLib.parser import Parser + + if isinstance(text, ast.FeatureFile): + return text + f = StringIO(text) + fea = Parser(f).parse() + return fea + + +def findGDEF(font): + fea = font.features.text = parseFea(font.features.text) + gdef = None + classes = None + for block in fea.statements: + if isinstance(block, ast.TableBlock) and block.name == "GDEF": + gdef = block + for statement in block.statements: + if isinstance(statement, ast.GlyphClassDefStatement): + classes = statement + break + break + + return gdef, classes + + +def mergeLatin(font): + fontname = font.info.postscriptFontName.replace("Amiri", "AmiriLatin") + latin = openFont("sources/latin/%s.sfd" % fontname) + for glyph in latin: + try: + font.addGlyph(glyph) + except KeyError: + pass + + # Merge features + gdef, classes = findGDEF(font) + fea = font.features.text + latinfea = parseFea(latin.features.text) + for block in latinfea.statements: + if isinstance(block, ast.TableBlock) and block.name == "GDEF": + for st in block.statements: + if isinstance(st, ast.GlyphClassDefStatement): + classes.baseGlyphs.extend(st.baseGlyphs.glyphSet()) + classes.componentGlyphs.extend(st.componentGlyphs.glyphSet()) + classes.ligatureGlyphs.extend(st.ligatureGlyphs.glyphSet()) + classes.markGlyphs.extend(st.markGlyphs.glyphSet()) + else: + gdef.statements.append(st) + else: + fea.statements.append(block) + font.features.text = fea + font.glyphOrder += latin.glyphOrder + font.glyphOrder = sortGlyphs(font) + + +def transformAnchor(anchor, matrix): + if not anchor: + return anchor + + from fontTools.misc.fixedTools import otRound + anchor.x, anchor.y = matrix.transformPoint((anchor.x, anchor.y)) + anchor.x = otRound(anchor.x) + anchor.y = otRound(anchor.y) + + return anchor + + +def makeSlanted(options): + font = makeDesktop(options, False) + + exclude = [f"u{i:X}" for i in range(0x1EE00, 0x1EEFF + 1)] + exclude += [ + "exclam", "period.ara", "guillemotleft.ara", "guillemotright.ara", + "braceleft", "bar", "braceright", "bracketleft", "bracketright", + "parenleft", "parenright", "slash", "backslash", "brokenbar", + "uni061F", "dot.1", "dot.2", + ] + + skew = TransformationsFilter(Slant=-options.slant, exclude=exclude) + skew(font) + + # fix metadata + info = font.info + info.italicAngle = options.slant + info.postscriptFullName += " Slanted" + if info.postscriptWeightName == "Bold": + info.postscriptFontName = info.postscriptFontName.replace("Bold", "BoldSlanted") + info.styleName = "Bold Slanted" + info.styleMapFamilyName = info.familyName + info.styleMapStyleName = "bold italic" + else: + info.postscriptFontName = info.postscriptFontName.replace("Regular", "Slanted") + info.styleName = "Slanted" + info.styleMapFamilyName = info.familyName + info.styleMapStyleName = "italic" + + matrix = skew.context.matrix + mergeLatin(font) + fea = font.features.text + for block in fea.statements: + if isinstance(block, (ast.LookupBlock, ast.FeatureBlock)): + for st in block.statements: + if isinstance(st, (ast.MarkMarkPosStatement, ast.MarkBasePosStatement)): + st.marks = [(transformAnchor(a, matrix), m) for a, m in st.marks] + elif isinstance(st, ast.MarkClassDefinition): + st.anchor = transformAnchor(st.anchor, matrix) + elif isinstance(st, ast.CursivePosStatement): + st.entryAnchor = transformAnchor(st.entryAnchor, matrix) + st.exitAnchor = transformAnchor(st.exitAnchor, matrix) + + otf = generateFont(options, font) + otf.save(options.output) + + +def scaleGlyph(font, glyph, scale): + """Scales the glyph, but keeps it centered around its original bounding + box.""" + from fontTools.pens.recordingPen import RecordingPointPen + from fontTools.pens.transformPen import TransformPointPen + from fontTools.misc.transform import Identity + + width = glyph.width + bbox = glyph.getBounds(font) + x = (bbox.xMin + bbox.xMax) / 2 + y = (bbox.yMin + bbox.yMax) / 2 + matrix = Identity + matrix = matrix.translate(-x * scale + x, -y * scale + y) + matrix = matrix.scale(scale) + + rec = RecordingPointPen() + glyph.drawPoints(rec) + glyph.clearContours() + glyph.clearComponents() + + pen = TransformPointPen(glyph.getPointPen(), matrix) + rec.replay(pen) + + if width == 0: + glyph.width = width + + return matrix + + +def makeQuran(options): + font = makeDesktop(options, False) + mergeLatin(font) + + # fix metadata + info = font.info + info.postscriptFontName = info.postscriptFontName.replace("-Regular", "QuranColored-Regular") + info.familyName += " Quran Colored" + info.postscriptFullName += " Quran Colored" + info.openTypeNameSampleText = "بِسۡمِ ٱللَّهِ ٱلرَّحۡمَـٰنِ ٱلرَّحِیمِ ۝١ ٱلۡحَمۡدُ لِلَّهِ رَبِّ ٱلۡعَـٰلَمِینَ ۝٢" + info.openTypeOS2TypoAscender = info.openTypeHheaAscender = 1815 + + # scale some vowel marks and dots down a bit + fea = font.features.text + marks = [ + "uni064B", "uni064C", "uni064E", "uni064F", "uni06E1", "uni08F0", + "uni08F1", "uni08F2", "TwoDots.a", "ThreeDots.a", "vTwoDots.a", + ] + shadda = ["uni0651"] + for scale, names in ((0.9, marks), (0.8, shadda)): + for name in names: + matrix = scaleGlyph(font, font[name], scale) + + for block in fea.statements: + for s in getattr(block, "statements", []): + if isinstance(s, ast.MarkClassDefinition) and name in s.glyphSet(): + s.anchor = transformAnchor(s.anchor, matrix) + if isinstance(s, ast.MarkMarkPosStatement) and name in s.baseMarks.glyphSet(): + s.marks = [(transformAnchor(a, matrix), m) for a, m in s.marks] + + # create overline glyph to be used for sajda line, it is positioned + # vertically at the level of the base of waqf marks + makeQuranSajdaLine(font) + + COLR, CPAL = makeCOLR(font) + + otf = generateFont(options, font) + otf["COLR"] = COLR + otf["CPAL"] = CPAL + + unicodes = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', + '.', '(', ')', '[', ']', '{', '}', '|', ' ', '/', '\\', + 0x00A0, + 0x00AB, 0x00BB, 0x0305, 0x030A, 0x0325, 0x060C, 0x0615, + 0x0617, 0x0618, 0x0619, 0x061A, 0x061B, 0x061E, 0x061F, + 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, + 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, + 0x062F, 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, + 0x0636, 0x0637, 0x0638, 0x0639, 0x063A, 0x0640, 0x0641, + 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648, + 0x0649, 0x064A, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F, + 0x0650, 0x0651, 0x0652, 0x0653, 0x0654, 0x0655, 0x0656, + 0x0657, 0x0658, 0x065C, 0x0660, 0x0661, 0x0662, 0x0663, + 0x0664, 0x0665, 0x0666, 0x0667, 0x0668, 0x0669, 0x066E, + 0x066F, 0x0670, 0x0671, 0x067A, 0x06A1, 0x06BA, 0x06CC, + 0x06D6, 0x06D7, 0x06D8, 0x06D9, 0x06DA, 0x06DB, 0x06DC, + 0x06DD, 0x06DE, 0x06DF, 0x06E0, 0x06E1, 0x06E2, 0x06E3, + 0x06E4, 0x06E5, 0x06E6, 0x06E7, 0x06E8, 0x06E9, 0x06EA, + 0x06EB, 0x06EC, 0x06ED, 0x06F0, 0x06F1, 0x06F2, 0x06F3, + 0x06F4, 0x06F5, 0x06F6, 0x06F7, 0x06F8, 0x06F9, 0x08F0, + 0x08F1, 0x08F2, 0x08F3, 0x2000, 0x2001, 0x2002, 0x2003, + 0x2004, + 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x200B, + 0x200C, 0x200D, 0x200E, 0x200F, 0x2028, 0x2029, 0x202A, + 0x202B, 0x202C, 0x202D, 0x202E, 0x202F, 0x25CC, 0xFD3E, + 0xFD3F, 0xFDFA, 0xFDFD] + unicodes = [isinstance(u, str) and ord(u) or u for u in unicodes] + otf = subsetFont(otf, unicodes) + otf.save(options.output) + + +def makeCOLR(font): + from fontTools.ttLib import getTableModule, newTable + from fontTools.misc.transform import Identity + + Color = getTableModule("CPAL").Color + + hamzas = ("uni0621", "uni0654", "uni0655", "hamza.above") + marks = ( + "uni0618", "uni0619", "uni061A", "uni064B", "uni064C", "uni064D", + "uni064E", "uni064F", "uni0650", "uni0651", "uni0652", "uni0657", + "uni0658", "uni065C", "uni0670", "uni06DF", "uni06E0", "uni06E1", + "uni06E2", "uni06E3", "uni06E4", "uni06E5", "uni06E6", "uni06E7", + "uni06E8", "uni06EA", "uni06EB", "uni06EC", "uni06ED", "uni08F0", + "uni08F1", "uni08F2", "uni08F3", + "uni06DC", # XXX: can be both a mark and a pause + "hamza.wasl", "Dot", "TwoDots", "vTwoDots", "ThreeDots", + ) + + pauses = ( + "uni0615", "uni0617", "uni06D6", "uni06D7", "uni06D8", "uni06D9", + "uni06DA", "uni06DB", + ) + + signs = ( + "uni0305", "uni0660", "uni0661", "uni0662", "uni0663", "uni0664", + "uni0665", "uni0666", "uni0667", "uni0668", "uni0669", "uni06DD", + "uni06DE", "uni06E9", + ) + + groups = { + marks: Color(red=0xcc, green=0x33, blue=0x33, alpha=0xff), # red + signs: Color(red=0x00, green=0xa5, blue=0x50, alpha=0xff), # green + hamzas: Color(red=0xee, green=0x99, blue=0x33, alpha=0xff), # yellow + pauses: Color(red=0x33, green=0x66, blue=0x99, alpha=0xff), # blue + } + + + COLR = newTable("COLR") + CPAL = newTable("CPAL") + CPAL.version = 0 + COLR.version = 0 + + palette = list(groups.values()) + CPAL.palettes = [palette] + CPAL.numPaletteEntries = len(palette) + + COLR.ColorLayers = {} + + def newLayer(name, colorID): + return getTableModule("COLR").LayerRecord(name=name, colorID=colorID) + + + def getColor(glyphName): + for names, color in groups.items(): + for name in names: + if glyphName == name or glyphName.startswith(name + "."): + return palette.index(color) + return 0xFFFF + + + hashes = {} + glyphOrder = list(font.glyphOrder) + for name in glyphOrder: + glyph = font[name] + layers = [] + components = [(c, getColor(c.baseGlyph)) for c in glyph.components] + if len(components) > 1 and any(c[1] != 0xFFFF for c in components): + for component, color in components: + componentName = component.baseGlyph + trans = component.transformation + if trans != Identity: + # Unique identifier for each layer, so we can reuse + # identical layers and avoid needless duplication. + componentHash = hash((trans, glyph.width)) + + if component.baseGlyph not in hashes: + hashes[componentName] = [] + + if componentHash not in hashes[componentName]: + hashes[componentName].append(componentHash) + + index = hashes[componentName].index(componentHash) + componentName = f"{componentName}.l{index}" + + if componentName not in font: + newGlyph = font.newGlyph(componentName) + newGlyph.components = [component] + newGlyph.width = glyph.width + layers.append(newLayer(componentName, color)) + + if not layers: + color = getColor(name) + if color != 0xFFFF: + layers = [newLayer(name, color)] + + if layers: + COLR[name] = layers + + return COLR, CPAL + + +def openFont(path): + from ufoLib2 import Font + + font = Font(validate=False) + parser = SFDParser(path, font, ignore_uvs=False, ufo_anchors=False, + ufo_kerning=False, minimal=True) + parser.parse() + + return font + + +def makeDesktop(options, generate=True): + font = openFont(options.input) + + # remove anchors that are not needed in the production font + cleanAnchors(font) + + if generate: + mergeLatin(font) + otf = generateFont(options, font) + otf.save(options.output) + else: + return font + + +if __name__ == "__main__": + import argparse + parser = argparse.ArgumentParser(description="Build Amiri fonts.") + parser.add_argument("--input", metavar="FILE", required=True, help="input font to process") + parser.add_argument("--output", metavar="FILE", required=True, help="ouput font to write") + parser.add_argument("--features", metavar="FILE", required=True, help="feature file to include") + parser.add_argument("--version", type=str, required=True, help="font version") + parser.add_argument("--slant", type=float, required=False, help="font slant") + parser.add_argument("--quran", action='store_true', required=False, help="build Quran variant") + + args = parser.parse_args() + + if args.slant: + makeSlanted(args) + elif args.quran: + makeQuran(args) + else: + makeDesktop(args) diff -Nru fonts-hosny-amiri-0.112/debian/changelog fonts-hosny-amiri-0.113/debian/changelog --- fonts-hosny-amiri-0.112/debian/changelog 2019-10-18 01:46:17.000000000 +0000 +++ fonts-hosny-amiri-0.113/debian/changelog 2020-06-13 14:19:56.000000000 +0000 @@ -1,3 +1,14 @@ +fonts-hosny-amiri (0.113-1) unstable; urgency=medium + + * New upstream version 0.113 + * Update standards version to 4.5.0 + * Bumped compat level to 13 + * Drop fontforge from build deps + * Fix field spacing + * Update fonts team email address + + -- أحمد المحمودي (Ahmed El-Mahmoudy) Sat, 13 Jun 2020 16:19:56 +0200 + fonts-hosny-amiri (0.112-2) unstable; urgency=medium * Add Rules-Requires-Root: no diff -Nru fonts-hosny-amiri-0.112/debian/control fonts-hosny-amiri-0.113/debian/control --- fonts-hosny-amiri-0.112/debian/control 2019-10-18 01:46:17.000000000 +0000 +++ fonts-hosny-amiri-0.113/debian/control 2020-06-13 14:19:56.000000000 +0000 @@ -1,12 +1,11 @@ Source: fonts-hosny-amiri Section: fonts Priority: optional -Maintainer: Debian Fonts Task Force +Maintainer: Debian Fonts Task Force Uploaders: أحمد المحمودي (Ahmed El-Mahmoudy) -Build-Depends: debhelper-compat (= 12) -Build-Depends-Indep: fontforge-nox | fontforge -Standards-Version: 4.4.1 -Rules-Requires-Root:no +Build-Depends: debhelper-compat (= 13) +Standards-Version: 4.5.0 +Rules-Requires-Root: no Homepage: https://www.amirifont.org Vcs-Git: https://salsa.debian.org/fonts-team/fonts-hosny-amiri.git Vcs-Browser: https://salsa.debian.org/fonts-team/fonts-hosny-amiri diff -Nru fonts-hosny-amiri-0.112/debian/gitlab-ci.yml fonts-hosny-amiri-0.113/debian/gitlab-ci.yml --- fonts-hosny-amiri-0.112/debian/gitlab-ci.yml 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/debian/gitlab-ci.yml 2020-06-13 14:19:56.000000000 +0000 @@ -0,0 +1,6 @@ +include: + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml + - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml + +variables: + RELEASE: 'unstable' diff -Nru fonts-hosny-amiri-0.112/fix-gf.py fonts-hosny-amiri-0.113/fix-gf.py --- fonts-hosny-amiri-0.112/fix-gf.py 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/fix-gf.py 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,13 @@ +""" +Script to do changes required for Google Fonts that we can’t have by default. +Currently just renames Slanted to Italic. +""" + +from fontTools.ttLib import TTFont + +for path in ("Amiri-Slanted.ttf", "Amiri-BoldSlanted.ttf"): + with TTFont(path) as font: + for name in font["name"].names: + if name.nameID in (2, 3, 4, 6): + name.string = str(name).replace("Slanted", "Italic") + font.save(path.replace("Slanted", "Italic")) diff -Nru fonts-hosny-amiri-0.112/.gitattributes fonts-hosny-amiri-0.113/.gitattributes --- fonts-hosny-amiri-0.112/.gitattributes 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/.gitattributes 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,2 @@ +*.otf binary diff=sfnt +*.ttf binary diff=sfnt diff -Nru fonts-hosny-amiri-0.112/.github/FUNDING.yml fonts-hosny-amiri-0.113/.github/FUNDING.yml --- fonts-hosny-amiri-0.112/.github/FUNDING.yml 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/.github/FUNDING.yml 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,2 @@ +patreon: khaledhosny +liberapay: khaled diff -Nru fonts-hosny-amiri-0.112/.gitignore fonts-hosny-amiri-0.113/.gitignore --- fonts-hosny-amiri-0.112/.gitignore 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -/webfonts diff -Nru fonts-hosny-amiri-0.112/Makefile fonts-hosny-amiri-0.113/Makefile --- fonts-hosny-amiri-0.112/Makefile 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/Makefile 2020-06-02 19:42:15.000000000 +0000 @@ -2,83 +2,61 @@ NAME=Amiri LATIN=AmiriLatin -VERSION=0.112 +VERSION=0.113 -TOOLS=tools SRC=sources -WEB=webfonts DOC=documentation -TESTS=test-suite FONTS=$(NAME)-Regular $(NAME)-Bold $(NAME)-Slanted $(NAME)-BoldSlanted $(NAME)Quran $(NAME)QuranColored DIST=$(NAME)-$(VERSION) -WDIST=$(NAME)-$(VERSION)-WebFonts CDIST=$(NAME)-$(VERSION)-CTAN -BUILD=$(TOOLS)/build.py -MAKECLR=$(TOOLS)/makeclr.py -MAKECSS=$(TOOLS)/makecss.py -MAKEWEB=$(TOOLS)/makeweb.py +BUILD=build.py +MAKEQURAN=mkquran.py PY ?= python FF=$(PY) $(BUILD) SFDS=$(FONTS:%=$(SRC)/%.sfdir) DTTF=$(FONTS:%=%.ttf) DOTF=$(FONTS:%=%.otf) -WOFF=$(FONTS:%=$(WEB)/%.woff) -WOF2=$(FONTS:%=$(WEB)/%.woff2) -CSSS=$(WEB)/$(NAME).css PDFS=$(DOC)/Documentation-Arabic.pdf FEAT=$(wildcard $(SRC)/*.fea) -TEST=$(wildcard $(TESTS)/*.test) -TEST+=$(wildcard $(TESTS)/*.ptest) export SOURCE_DATE_EPOCH ?= 0 -all: ttf web +all: ttf otf ttf: $(DTTF) otf: $(DOTF) -web: $(WOFF) $(WOF2) $(CSSS) doc: $(PDFS) -$(NAME)Quran.ttf $(NAME)Quran.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Regular.sfdir $(SRC)/$(NAME).fea $(FEAT) $(BUILD) +$(NAME)QuranColored.ttf $(NAME)QuranColored.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Regular.sfd $(SRC)/$(NAME).fea $(FEAT) $(BUILD) @echo " FF $@" @$(FF) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --quran -$(NAME)QuranColored.ttf: $(NAME)Quran.ttf $(MAKECLR) +$(NAME)Quran.ttf: $(NAME)QuranColored.ttf $(MAKEQURAN) @echo " FF $@" - @$(PY) $(MAKECLR) $< $@ + @$(PY) $(MAKEQURAN) $< $@ -$(NAME)QuranColored.otf: $(NAME)Quran.otf $(MAKECLR) +$(NAME)Quran.otf: $(NAME)QuranColored.otf $(MAKEQURAN) @echo " FF $@" - @$(PY) $(MAKECLR) $< $@ + @$(PY) $(MAKEQURAN) $< $@ -$(NAME)-Regular.ttf $(NAME)-Regular.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Regular.sfdir $(SRC)/$(NAME).fea $(FEAT) $(BUILD) +$(NAME)-Regular.ttf $(NAME)-Regular.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Regular.sfd $(SRC)/$(NAME).fea $(FEAT) $(BUILD) @echo " FF $@" @$(FF) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) -$(NAME)-Slanted.ttf $(NAME)-Slanted.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Italic.sfdir $(SRC)/$(NAME).fea $(FEAT) $(BUILD) +$(NAME)-Slanted.ttf $(NAME)-Slanted.otf: $(SRC)/$(NAME)-Regular.sfdir $(SRC)/latin/$(LATIN)-Slanted.sfd $(SRC)/$(NAME).fea $(FEAT) $(BUILD) @echo " FF $@" @$(FF) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --slant=10 -$(NAME)-Bold.ttf $(NAME)-Bold.otf: $(SRC)/$(NAME)-Bold.sfdir $(SRC)/latin/$(LATIN)-Bold.sfdir $(SRC)/$(NAME).fea $(FEAT) $(BUILD) +$(NAME)-Bold.ttf $(NAME)-Bold.otf: $(SRC)/$(NAME)-Bold.sfdir $(SRC)/latin/$(LATIN)-Bold.sfd $(SRC)/$(NAME).fea $(FEAT) $(BUILD) @echo " FF $@" @$(FF) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) -$(NAME)-BoldSlanted.ttf $(NAME)-BoldSlanted.otf: $(SRC)/$(NAME)-Bold.sfdir $(SRC)/latin/$(LATIN)-BoldItalic.sfdir $(SRC)/$(NAME).fea $(FEAT) $(BUILD) +$(NAME)-BoldSlanted.ttf $(NAME)-BoldSlanted.otf: $(SRC)/$(NAME)-Bold.sfdir $(SRC)/latin/$(LATIN)-BoldSlanted.sfd $(SRC)/$(NAME).fea $(FEAT) $(BUILD) @echo " FF $@" @$(FF) --input $< --output $@ --features=$(SRC)/$(NAME).fea --version $(VERSION) --slant=10 -$(WEB)/%.woff $(WEB)/%.woff2: %.ttf $(MAKEWEB) - @echo " WEB $*" - @mkdir -p $(WEB) - @$(PY) $(MAKEWEB) $< $(WEB) - -$(WEB)/%.css: $(WOFF) $(MAKECSS) - @echo " GEN $@" - @mkdir -p $(WEB) - @$(PY) $(MAKECSS) --css=$@ --fonts="$(WOFF)" - $(DOC)/Documentation-Arabic.pdf: $(DOC)/Documentation-Arabic.tex $(DTTF) @echo " GEN $@" @latexmk --norc --xelatex --quiet --output-directory=${DOC} $< @@ -88,18 +66,17 @@ @$(foreach font,$(DTTF),echo " OTS $(font)" && python -m ots --quiet $(font) &&) true clean: - rm -rfv $(DTTF) $(WOFF) $(WOF2) $(CSSS) $(PDFS) $(SRC)/$(NAME)*.fea.pp + rm -rfv $(DTTF) $(PDFS) $(SRC)/$(NAME)*.fea.pp rm -rfv $(DOC)/documentation-arabic.{aux,log,toc} distclean: clean - rm -rf {$(DIST),$(CDIST),$(WDIST)}{,.zip} + rm -rf {$(DIST),$(CDIST)}{,.zip} dist: all check pack doc - @rm -rf $(DIST) $(CDIST) $(WDIST) - @mkdir -p $(DIST) $(CDIST) $(WDIST) + @rm -rf $(DIST) $(CDIST) + @mkdir -p $(DIST) $(CDIST) @cp OFL.txt $(DIST) @cp OFL.txt $(CDIST) - @cp OFL.txt $(WDIST) @cp $(DTTF) $(DIST) @cp $(DTTF) $(CDIST) @cp README.md $(DIST)/README @@ -111,15 +88,9 @@ @cp NEWS-Arabic.md $(DIST)/NEWS-Arabic @cp NEWS-Arabic.md $(CDIST)/NEWS-Arabic @cp $(NAME).fontspec $(CDIST) - @cp $(WOFF) $(WDIST) - @cp $(WOF2) $(WDIST) - @cp $(CSSS) $(WDIST) - @cp $(WEB)/README $(WDIST) @cp $(PDFS) $(DIST) @cp $(PDFS) $(CDIST) @echo " ZIP $(DIST)" @zip -rq $(DIST).zip $(DIST) @echo " ZIP $(CDIST)" @zip -rq $(CDIST).zip $(CDIST) - @echo " ZIP $(WDIST)" - @zip -rq $(WDIST).zip $(WDIST) diff -Nru fonts-hosny-amiri-0.112/mkquran.py fonts-hosny-amiri-0.113/mkquran.py --- fonts-hosny-amiri-0.112/mkquran.py 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/mkquran.py 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,50 @@ +import argparse +import re + +from fontTools.ttLib import TTFont +from fontTools import subset + +LAYER = re.compile('.*\.l\d+$') + +def rename(font): + names = set() + for layers in font["COLR"].ColorLayers.values(): + names |= {l.name for l in layers if LAYER.match(l.name)} + + del font["COLR"] + del font["CPAL"] + + glyphs = set(font.glyphOrder) - names + options = subset.Options() + options.set(layout_features='*', name_IDs='*', name_languages='*', + notdef_outline=True, glyph_names=True) + subsetter = subset.Subsetter(options=options) + subsetter.populate(glyphs=glyphs) + subsetter.subset(font) + + for name in font["name"].names: + if name.nameID in (1, 3, 4, 6): + string = name.toUnicode() + if name.nameID in (3, 6): + string = string.replace("QuranColored", "Quran") + else: + string = string.replace("Quran Colored", "Quran") + + name.string = string.encode(name.getEncoding()) + + +def main(): + parser = argparse.ArgumentParser(description="Create a version of Amiri with colored marks using COLR/CPAL tables.") + parser.add_argument("infile", metavar="INFILE", type=str, help="input font to process") + parser.add_argument("outfile", metavar="OUTFILE", type=str, help="output font to write") + + args = parser.parse_args() + + font = TTFont(args.infile, recalcTimestamp=False) + + rename(font) + + font.save(args.outfile) + +if __name__ == "__main__": + main() diff -Nru fonts-hosny-amiri-0.112/NEWS-Arabic.md fonts-hosny-amiri-0.113/NEWS-Arabic.md --- fonts-hosny-amiri-0.112/NEWS-Arabic.md 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/NEWS-Arabic.md 2020-06-02 19:42:15.000000000 +0000 @@ -1,5 +1,15 @@ -أميري ٠٫١١٢ (٢٠١٩-٠٩-٢٩) +أميري ٠٫١١٣ (٠٢-٠٦-٢٠٢٠) ------------------------ + +* إضافة U+08BA، و U+08B6، و U+08B7، و U+08B8، و U+08B9. +* إصلاح المشاكل: + - https://github.com/alif-type/amiri/issues/172 + - https://github.com/alif-type/amiri/issues/187 +* بناء الخطوط لم يعد يتطلب فونتفورج. + +أميري ٠٫١١٢ (٢٩-٠٩-٢٠١٩) +------------------------ + * إصلاح علامة النقطة التحتية لتكون مستديرة لا مربعة. * إضافة ملف Amiri.fontspec ليستحدم مع حزمة fontspec للاتخ (#139). * إضافة فاصلة وفاصلة منقوطة بديلة للسندية والجاوية، ويمكنتفعيلها أيضا بخاصية @@ -8,8 +18,9 @@ * جعل المسافة الضيقة غير الفاصلة مساوية في العرض للمسافة الرفيعة (#177). * إصلاح الحروف القرآنية الصغيرة لتوافق معايير يونيكود الحديثة. -أميري ٠٫١١١ (٢٠١٧-١٢-٣٠) +أميري ٠٫١١١ (٣٠-١٢-٢٠١٧) ------------------------ + * تحسين اقتران الكافات التي أضيفت في الإصدارة السابقة. * إصلاح خطأ يجعل جرف الهمزة العالية (U+0674) يقترن بالهرف السابق عليه: https://github.com/alif-type/amiri/issues/138. @@ -23,8 +34,9 @@ https://github.com/alif-type/amiri/issues/123 * تغييرات شغيرة أخرى، و تغييرات على نظام بناء الخط من المصدر. -أميري ٠٫١١٠ (٢٠١٧-١٢-٢٠) +أميري ٠٫١١٠ (٢٠-١٢-٢٠١٧) ----------------------- + * محارف جديدة: - علامة سموت (U+0604) - بديل للراء الرياضياتية (U+1EE13) @@ -50,7 +62,7 @@ - خاصية `ss07` لتعطيل الكشيدة المقوسة. - بعض التحسينات على التوثيق. -أميري ٠٫١٠٩ (٢٠١٦-١١-٢٠) +أميري ٠٫١٠٩ (٢٠-١١-٢٠١٦) ---------------------- * محارف جديدة: - دعم لعدم الوضع التلقائي للشدة و الألف الصغيرة (◌ّٰ ) فوق لفظ الجلالة مع @@ -70,8 +82,9 @@ - https://github.com/alif-type/amiri-font/issues/90 - https://github.com/alif-type/amiri-font/issues/106 -أميري 0٫108 (2015-09-21) +أميري ٠،١٠٨ (٢١-٠٩-٢٠١٥) ------------------------ + * محارف جديدة: - تصميم جديد للهاء في ـهي. - تنويعات من الأرقام للاستخدام في الكسور الاعتيادية، عبر خاصيتي `numr` @@ -97,8 +110,9 @@ (وندوز 8٫1 فما فوق). - أضيف إلى خطوط الوب WOFF 2.0. -أميري 0٫107 (2013-12-30) +أميري ٠،١٠٧ (٣٠-١٢-٢٠١٣) ------------------------ + * محارف جديدة: - الحروف الرياضياتية العربية من قسم الرموز الرياضياتية العربية في يونيكود (U+1EE00–U+1EEFF). @@ -116,8 +130,9 @@ - إبعاد المسافة بين راء و ياء ”مرين“ و ما جارها. - التأليف بين النقطة و علامة التنصيص الغالقة. -أميري 0٫106 (2013-05-28) +أميري ٠،١٠٦ (٢٨-٠٥-٢٠١٣) ------------------------ + * محارف جديدة: - شكل جديد لحرف گاف يتماشى مع المتعارف عليه، الشكل القديم يمكن تفعيله عبر خاصية `ss04`. @@ -143,8 +158,9 @@ * مسودة لدليل الاستخدام (بالعربية فقط حاليًا). -أميري 0٫105 (2012-12-31) +أميري ٠،١٠٥ (٣١-١٢-٢٠١٢) ------------------------ + * خط قرآني جديد: تحتوي هذه الإصدارة على خط ”أميري قرآن“ منفصل لتنضيد النصوص القرآنية، وهو فرع @@ -162,8 +178,9 @@ * الكثير من التحسينات على الأبعاد، وتموضع التشكيل، والتآلف، وأشكال الحروف. راجع سجل مستودع التطوير للاطلاع عليها كلها. -أميري 0٫104 (2012-07-19) +أميري ٠،١٠٤ (١٩-٠٧-٢٠١٢) ------------------------ + * محارف جديدة: - شرطة مائلة خاصة لتناسب الأرقام العربية. - شكل جديد أكثر تناسقا لعلامة @ العربية. @@ -185,8 +202,9 @@ * التآلف. - تأليف اللام ألف النهائية مع الكاف. -أميري 0٫103 (2012-05-31) +أميري ٠،١٠٣ (٣١-٠٥-٢٠١٢) ------------------------ + * هذه إصدارة صغيرة لإصلاح بعض العلات: - إصلاح التآلف السيئ بين الأرقام مع علامة نهاية الآية وغيرها من العلامات الضامة. - إضافة رموز ظاهرة لمحارف التحكم في ثنائية الاتجاه. @@ -194,8 +212,9 @@ - إصلاح معالجة ميلان المحارف المشتركة إلى اليمين أو إلى اليسار في الخط المائل ليصبح أكثر منطقية. -أميري 0٫102 (2012-05-22) +أميري ٠،١٠٢ (٢٢-٠٥-٢٠١٢) ------------------------ + * محارف جديدة: - أكبر تغيير في هذه الإصدارة هو إضافة دعم نظام الكتابة اللاتيني مبنيًا على خط Crimson يغطي خرائط محارف لاتيني-0 إلى 9 بالإضافة إلى الحروف المستعملة في @@ -232,8 +251,9 @@ - تكرار خاصية `locl` في `ccmp` للتحايل على المحركات التي لا تدعم الأولى. - ملفات EOT أصغر مضغوطة بتقنية MTX. -أميري 0٫101 (2011-12-27) +أميري ٠،١٠١ (٢٧-١٢-٢٠١١) ------------------------ + * الخطوط الجديدة: - أضيف في هذه الإصدارة خط سميك، وإن كان بحاجة لبعض التحسين ليصل إلى مستوى الخط العادي، لكن حالته لا بأس بها. @@ -258,8 +278,9 @@ - استخدام أرقام أكبر مع علامة السنة ليزيد وضوحها. - منع تكرار الباء العالية إذا وقعت بين سينين كما في ”سببس“. -أميري 0٫100 (2011-12-04)، بيتا جاما دلتا +أميري ٠،١٠٠ (٠٤-١٢-٢٠١١)، بيتا جاما دلتا ---------------------------------------- + * تمثل هذه الإصدارة محطة هامة في تطوير الخط إذ يغطى الآن كل المحارف العربية في الإصدار السادس من يونيكود، كما نضُج الخط بشكل كبير وصار من الممكن الاعتماد عليه في أغلب الأغراض الطباعية. @@ -304,8 +325,9 @@ - تغيير المسافات بين السطور قليلا بحيث تناسب الآن النصوص العادية. - المزيد من التحسينات المتنوعة هنا وهناك. -أميري 0٫016 (2011-09-22)، بداية النهاية +أميري ٠،٠١٦ (٢٢-٠٩-٢٠١١)، بداية النهاية --------------------------------------- + * تحتوي هذه الإصدارة على دعم كامل للقرآن الكريم، وهي محطة هامة أخرى في تطوير * هذا الخط. لكن يبقى الكثير من العمل لتحسين التفاعل بين الحروف وخاصة تموضع * علامات الشكل في النصوص تامة التشكيل مثل القرآن. @@ -321,12 +343,12 @@ - تنويعة من الميم الأولية إذا تبعت بهاء متوسطة كما في ”مها“. * التآلف: - - انخفض عدد أزواج التآلف من 411240 إلى 55850 مع الحصول على نفس النتيجة. + - انخفض عدد أزواج التآلف من ٤١١٢٤٠ إلى ٥٥٨٥٠ مع الحصول على نفس النتيجة. * تحسينات: - تحسينات عامة على علامات الترقيم، وضبط لتباعد الأقواس مع تسميك الأقواس المجعدة لتتماشى أكثر مع باقي الخط. - - أصبح عرض المسافة 600 وحدة. + - أصبح عرض المسافة ٦٠٠ وحدة. - أصلح إدراج الكشائد في أماكن خطأ عند مساواة الفقرات. - أضيفت تنويعات عريضة من بعض الحروف لتفادي تلامس علامات الشكل عند التشكيل الكامل. @@ -334,8 +356,9 @@ - إصلاحات عديدة على تموضع علامات التشكيل. - فصلت الحلقة أسفل الياء الكشميرية عن جسم الحرف لتتبع أسلوب الكتابة الكشميري. -أميري 0٫015 (2011-07-14)، العنقاء +أميري ٠،٠١٥ (١٤-٠٧-٢٠١١)، العنقاء --------------------------------- + * تمثل هذه الإصدارة محطة هامة في تطوير الخط إذ أعيد برمجة بالكامل للوصول إلى أكبر قدر من التوافقية مع البرمجيات المختلفة التي تدعم أوبن تيب. @@ -352,18 +375,20 @@ * اسم الخط يظهر الآن بالإنجليزية في قوائم الخطوط. -أميري 0٫014 (2011-06-05)، اكسر ساقا +أميري ٠،٠١٤ (٠٥-٠٦-٢٠١١)، اكسر ساقا ----------------------------------- + * إصدارة فرعية أخرى لإصلاح علتين: - اختفاء لفظ الجلالة في برمجات وندوز وأوفس ميكروسوفت. - عدم تموضع النقاط تحت الياء المتطرفة. -أميري 0٫013 (2011-04-27)، أسرع! +أميري ٠،٠١٣ (٢٧-٠٤-٢٠١١)، أسرع! ------------------------------- + * إصدارة لإصلاح تموضع علامات التشكيل فوق الحروف المتآلفة في وندوز. -أميري 0٫012 (2011-04-26)، ليلة طويلة +أميري ٠،٠١٢ (٢٦-٠٤-٢٠١١)، ليلة طويلة -------------------------------------- * محارف جديدة: @@ -382,7 +407,7 @@ انسجاما وتناغما. - نتج عن هذا التنظيف دعم تراكيب أكثر من ذي قبل مع أن حجم الخط أصبح أصغر وليس أكبر. - - صُغّرت علامات التشكيل بنسبة 80% لتفادي تلامسها. + - صُغّرت علامات التشكيل بنسبة ٨٠٪ لتفادي تلامسها. - الأرقام العربية أكثر اتساقا الآن. - العديد من الإصلاحات المتنوعة في التشكيل ومواضع النقاط. - دعم لتطبيقات أكثر من ذي قبل @@ -391,7 +416,7 @@ * إصلاح العلات: 3234138، 3110760، 3087332، 3073139، 3211187، 3211239 و 3078741 -أميري 0٫011 (2011-03-31)، نفخ العجلة +أميري ٠،٠١١ (٣١-٠٣-٢٠١١)، نفخ العجلة ------------------------------------ * محارف جديدة: @@ -409,12 +434,12 @@ * إصلاحات متنوعة: - تحديث بيانات الخط. - - زيادة حجم الأرقام بنسبة 120% ورفعها لأعلى قليلا. + - زيادة حجم الأرقام بنسبة ١٢٠٪ ورفعها لأعلى قليلا. - تحسينات متنوعة على علامات الترقيم والرموز الرياضياتية. - ضبط التشكيل فوق الهمزة على السطر (ء). - توسيط التشكيل تحت الهاء المفردة (ه). -أميري 0٫010 (2011-03-21)، الاستفتاء +أميري ٠،٠١٠ (٢١-٠٣-٢٠١١)، الاستفتاء ---------------------------------- * محارف جديدة: @@ -431,7 +456,7 @@ - إصلاح اتصال اللام بالميم في ”لما“. - تصغير حجم العين المتوسطة لتتناسب رأس العين المتطرفة. -أميري 0٫009 (2011-02-06)، الثورة +أميري ٠،٠٠٩ (٠٦-٠٢-٢٠١١)، الثورة -------------------------------- * محارف جديدة: @@ -459,7 +484,7 @@ - 3101634 أزواج تآلف منسية - 3101674 العين الفنجانية -أميري 0٫003 (10-10-2010) +أميري ٠،٠٠٣ (١٠-١٠-٢٠١٠) ------------------------ * تحسين أكثر للتآلف وخاصة معالجة تلامس نقاط الحروف المتآلفة. @@ -467,7 +492,7 @@ بعدها، والباء مع الألف. * أضيف دعم اللغة الفارسية وستليها باقي اللغات تباعا. -أميري 0٫002 (25-09-2010) +أميري ٠،٠٠٢ (٢٥-٠٩-٢٠١٠) ------------------------ * تحسين التآلف بين الحروف: @@ -482,10 +507,10 @@ * تصغير حجم الملف: - أصبح حجم ملف الخط غير المضغوط أصغر بحوالي 25% عن ذي قبل، وهو ما يفيد في حال + أصبح حجم ملف الخط غير المضغوط أصغر بحوالي ٢٥٪ عن ذي قبل، وهو ما يفيد في حال استخدامه على الوب. -أميري 0٫001 (19-9-2010) +أميري ٠،٠٠١ (١٩-٠٩-٢٠١٠) ----------------------- أول إصدارة. diff -Nru fonts-hosny-amiri-0.112/NEWS.md fonts-hosny-amiri-0.113/NEWS.md --- fonts-hosny-amiri-0.112/NEWS.md 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/NEWS.md 2020-06-02 19:42:15.000000000 +0000 @@ -1,3 +1,13 @@ +Amiri 0.113 (2020-06-02) +------------------------ + +* Add U+08BA, U+08B6, U+08B7, U+08B8, and U+08B9. +* Bug fixes: + - https://github.com/alif-type/amiri/issues/172 + - https://github.com/alif-type/amiri/issues/187 +* Add ligature carets to Latin ligatures. +* Building the fonts no longer requires FontForge. + Amiri 0.112 (2019-09-29) ------------------------ diff -Nru fonts-hosny-amiri-0.112/OFL.txt fonts-hosny-amiri-0.113/OFL.txt --- fonts-hosny-amiri-0.112/OFL.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/OFL.txt 2020-06-02 19:42:15.000000000 +0000 @@ -1,4 +1,4 @@ -Copyright (c) 2010-2017, Khaled Hosny () +Copyright 2010-2020 The Amiri Project Authors (https://github.com/alif-type/amiri). This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: diff -Nru fonts-hosny-amiri-0.112/README.md fonts-hosny-amiri-0.113/README.md --- fonts-hosny-amiri-0.112/README.md 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/README.md 2020-06-02 19:42:15.000000000 +0000 @@ -1,4 +1,4 @@ -[![Build Status](https://travis-ci.org/alif-type/amiri.svg?branch=master)](https://travis-ci.org/alif-type/amiri) +[![Build Status](https://travis-ci.com/alif-type/amiri.svg?branch=master)](https://travis-ci.com/alif-type/amiri) Amiri Font ========== @@ -21,10 +21,10 @@ available form. Amiri is a free and open source project that everyone is encouraged to use and -modify. Amiri is avialable under the terms of [Open Font License][2], see the +modify. Amiri is available under the terms of [Open Font License][2], see the included license file for more details. -Latest version of the Amiri font can be optained from its web site: +Latest version of the Amiri font can be obtained from its web site: > http://amirifont.org @@ -41,51 +41,15 @@ $ fontforge sources/Amiri-Regular.sfdir -To build the fonts you need FontForge Python module, gpp and FontTools: +To build the fonts you need a few Python packages: - $ sudo apt-get install python-fontforge gpp - $ python -m venv amiri --system-site-packages + $ python -m venv amiri $ . amiri/bin/activate - $ pip install fonttools brotli + $ pip install -r requirements.txt To build the font files run: $ make ttf -To build the font files along with the web files; run: - - $ make web - -Ubuntu 16.04 Contributors -------------------------- - -You might face an error with importing fontforge - - File "tools/build.py", line 18, in - import fontforge - ImportError: No module named fontforge - -This is because fontforge does not work properly with Python 3 on Ubuntu 16.04. -To build the fonts with Python version 2.7 ; install FontForge Python -module by following the instructions from the [official documentation][3]. But -make sure to enable python extension and scripting for Python 2. Use the following -commands instead of the original in the last step of the installation: - - $ cd fontforge - $ ./bootstrap - $ ./configure --enable-python-extension --enable-python-scripting=2 - $ make - $ sudo make install - $ sudo ldconfig - -After that, return back to the directory of the amiri repository and continue -with python-fontforge, gpp, and the virtual environment - - $ sudo apt-get install python-fontforge gpp - $ virtualenv amiri --system-site-packages - $ . amiri/bin/activate - $ pip install fonttools brotli - [1]: http://www.bibalex.org/bulaqpress/en/bulaq.htm "The Bulaq Press" [2]: http://scripts.sil.org/OFL "The Open Font License" -[3]: https://github.com/fontforge/fontforge/blob/master/INSTALL-git.md "FontForge official documentation" \ No newline at end of file diff -Nru fonts-hosny-amiri-0.112/requirements.txt fonts-hosny-amiri-0.113/requirements.txt --- fonts-hosny-amiri-0.112/requirements.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/requirements.txt 2020-06-02 19:42:15.000000000 +0000 @@ -1,4 +1,7 @@ -fonttools[woff]==3.42.0 -opentype-sanitizer==7.1.9 -pcpp==1.20.1 -#HarfPy==0.8 +cffsubr==0.2.1 +fonttools[ufo,lxml]==4.10.2 +pcpp==1.21 +skia-pathops==0.4.1 +ufo2ft==2.14.0 +ufoLib2==0.7.1 +git+git://github.com/alif-type/sfdLib.git@v1.0.5#egg=sfdLib diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 229 Flags: HW AnchorPoint: "DigitAbove" -12 630 basechar 0 -AnchorPoint: "HighHamza" 257 752 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 244 684 basechar 0 AnchorPoint: "HamzaAbove" 62 752 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Alf.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Alf.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Alf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Alf.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 187 Flags: HW AnchorPoint: "DigitAbove" -12 644 basechar 0 -AnchorPoint: "HighHamza" 257 766 basechar 0 AnchorPoint: "TashkilBelow" 0 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 171 -39 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 172 Flags: HW AnchorPoint: "DigitAbove" -15 653 basechar 0 -AnchorPoint: "HighHamza" 254 775 basechar 0 AnchorPoint: "TashkilBelow" 0 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 127 -119 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 446 Flags: HW AnchorPoint: "DigitAbove" 39 562 basechar 0 -AnchorPoint: "HighHamza" 332 732 basechar 0 AnchorPoint: "TashkilBelow" 156 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 108 -114 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 340 Flags: HW AnchorPoint: "DigitAbove" 24 635 basechar 0 -AnchorPoint: "HighHamza" 408 786 basechar 0 AnchorPoint: "TashkilBelow" 151 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 270 -137 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 194 Flags: HW AnchorPoint: "DigitAbove" -24 610 basechar 0 -AnchorPoint: "HighHamza" 244 732 basechar 0 AnchorPoint: "TashkilBelow" 132 -327 basechar 0 AnchorPoint: "TashkilAbove" 49 801 basechar 0 AnchorPoint: "HamzaBelow" 132 -188 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Narrow.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Narrow.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.fina__Narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.fina__Narrow.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 180 Flags: HW AnchorPoint: "DigitAbove" -12 630 basechar 0 -AnchorPoint: "HighHamza" 257 752 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 244 684 basechar 0 AnchorPoint: "HamzaAbove" 62 752 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Alf.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Alf.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 217 Flags: HW AnchorPoint: "DigitAbove" -17 625 basechar 0 -AnchorPoint: "HighHamza" 276 796 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 98 757 basechar 0 AnchorPoint: "HamzaAbove" 81 796 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 461 8 basechar 0 AnchorPoint: "DigitAbove" 327 697 basechar 0 -AnchorPoint: "HighHamza" 424 697 basechar 0 AnchorPoint: "VAbove" 327 697 basechar 0 AnchorPoint: "RingBelow" 366 375 basechar 0 AnchorPoint: "TaaAbove" 327 599 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 46 -49 basechar 0 AnchorPoint: "DigitAbove" 95 615 basechar 0 -AnchorPoint: "HighHamza" 193 615 basechar 0 AnchorPoint: "VAbove" 95 615 basechar 0 AnchorPoint: "RingBelow" 63 342 basechar 0 AnchorPoint: "TaaAbove" 95 518 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DotBelowAlt" 96 -366 basechar 0 AnchorPoint: "DigitBelow" 96 -200 basechar 0 AnchorPoint: "DigitAbove" 68 391 basechar 0 -AnchorPoint: "HighHamza" 207 481 basechar 0 AnchorPoint: "VAbove" 88 342 basechar 0 AnchorPoint: "RingBelow" 91 54 basechar 0 AnchorPoint: "TaaAbove" 87 361 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 112 -176 basechar 0 AnchorPoint: "DigitAbove" 148 403 basechar 0 -AnchorPoint: "HighHamza" 229 403 basechar 0 AnchorPoint: "VAbove" 132 403 basechar 0 AnchorPoint: "RingBelow" 107 39 basechar 0 AnchorPoint: "TaaAbove" 148 305 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 86 -39 basechar 0 AnchorPoint: "DigitAbove" 91 625 basechar 0 -AnchorPoint: "HighHamza" 189 625 basechar 0 AnchorPoint: "VAbove" 91 625 basechar 0 AnchorPoint: "RingBelow" 49 293 basechar 0 AnchorPoint: "TaaAbove" 91 527 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -15,7 +15,6 @@ AnchorPoint: "DigitBelow" 96 -430 basechar 0 AnchorPoint: "HamzaBelow" 96 -381 basechar 0 AnchorPoint: "DotBelow" 96 -381 basechar 0 -AnchorPoint: "HighHamza" 207 481 basechar 0 LayerCount: 3 Fore Refer: 5710 -1 N 1 0 0 1 0 0 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DotBelowAlt" 72 -366 basechar 0 AnchorPoint: "DigitBelow" 72 -139 basechar 0 AnchorPoint: "DigitAbove" 63 618 basechar 0 -AnchorPoint: "HighHamza" 183 618 basechar 0 AnchorPoint: "VAbove" 63 618 basechar 0 AnchorPoint: "RingBelow" 60 190 basechar 0 AnchorPoint: "TaaAbove" 63 498 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TwoDotsBelowAlt" -15 -366 basechar 0 AnchorPoint: "DotBelowAlt" 39 -366 basechar 0 -AnchorPoint: "HighHamza" 151 500 basechar 0 AnchorPoint: "VAbove" 54 500 basechar 0 AnchorPoint: "RingBelow" 49 49 basechar 0 AnchorPoint: "TaaAbove" 76 403 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 483 -195 basechar 0 AnchorPoint: "DigitAbove" 371 684 basechar 0 -AnchorPoint: "HighHamza" 469 684 basechar 0 AnchorPoint: "VAbove" 371 684 basechar 0 AnchorPoint: "RingBelow" 391 376 basechar 0 AnchorPoint: "TaaAbove" 371 586 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 214 -115 basechar 0 AnchorPoint: "DigitAbove" 129 750 basechar 0 -AnchorPoint: "HighHamza" 312 -115 basechar 0 AnchorPoint: "VAbove" 214 -115 basechar 0 AnchorPoint: "RingBelow" 127 442 basechar 0 AnchorPoint: "TaaAbove" 129 652 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 250 -195 basechar 0 AnchorPoint: "DigitAbove" 226 439 basechar 0 -AnchorPoint: "HighHamza" 324 439 basechar 0 AnchorPoint: "VAbove" 226 439 basechar 0 AnchorPoint: "RingBelow" 176 127 basechar 0 AnchorPoint: "TaaAbove" 226 342 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "DotBelowAlt" 162 -366 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 107 -366 basechar 0 -AnchorPoint: "HighHamza" 142 843 basechar 0 AnchorPoint: "VAbove" 44 843 basechar 0 AnchorPoint: "RingBelow" 107 586 basechar 0 AnchorPoint: "TaaAbove" 44 745 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 89 -366 basechar 0 AnchorPoint: "DotBelowAlt" 143 -366 basechar 0 -AnchorPoint: "HighHamza" 162 591 basechar 0 AnchorPoint: "VAbove" 64 591 basechar 0 AnchorPoint: "RingBelow" 90 415 basechar 0 AnchorPoint: "TaaAbove" 64 527 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 240 -366 basechar 0 AnchorPoint: "DotBelowAlt" 294 -366 basechar 0 -AnchorPoint: "HighHamza" 315 552 basechar 0 AnchorPoint: "VAbove" 218 552 basechar 0 AnchorPoint: "RingBelow" 264 269 basechar 0 AnchorPoint: "TaaAbove" 218 455 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 104 -161 basechar 0 AnchorPoint: "DigitBelow" 104 -161 basechar 0 AnchorPoint: "DotBelow" 104 -161 basechar 0 -AnchorPoint: "HighHamza" 197 508 basechar 0 LayerCount: 3 Fore Refer: 67 -1 N 1 0 0 1 -10 73 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 95 -98 basechar 0 AnchorPoint: "DigitAbove" 119 464 basechar 0 -AnchorPoint: "HighHamza" 217 464 basechar 0 AnchorPoint: "VAbove" 119 464 basechar 0 AnchorPoint: "RingBelow" 98 132 basechar 0 AnchorPoint: "TaaAbove" 119 366 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -13,7 +13,6 @@ AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "RingBelow" 88 44 basechar 0 AnchorPoint: "VAbove" 59 616 basechar 0 -AnchorPoint: "HighHamza" 156 616 basechar 0 AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "DigitBelow" 145 -189 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 145 -122 basechar 0 AnchorPoint: "DigitAbove" 59 684 basechar 0 -AnchorPoint: "HighHamza" 156 684 basechar 0 AnchorPoint: "VAbove" 59 684 basechar 0 AnchorPoint: "RingBelow" 88 112 basechar 0 AnchorPoint: "TaaAbove" 59 586 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 113 -366 basechar 0 AnchorPoint: "DotBelowAlt" 167 -366 basechar 0 -AnchorPoint: "HighHamza" 146 635 basechar 0 AnchorPoint: "VAbove" 60 635 basechar 0 AnchorPoint: "RingBelow" 171 244 basechar 0 AnchorPoint: "TaaAbove" 60 537 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "DotAbove" 85 439 basechar 0 AnchorPoint: "RingBelow" 107 73 basechar 0 -AnchorPoint: "HighHamza" 208 391 basechar 0 LayerCount: 3 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 107 -171 basechar 0 AnchorPoint: "DigitBelow" 107 -171 basechar 0 AnchorPoint: "DotBelow" 107 -171 basechar 0 -AnchorPoint: "HighHamza" 168 391 basechar 0 LayerCount: 3 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 203 -171 basechar 0 AnchorPoint: "DigitBelow" 203 -171 basechar 0 AnchorPoint: "DotBelow" 203 -171 basechar 0 -AnchorPoint: "HighHamza" 212 500 basechar 0 LayerCount: 3 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -12,7 +12,6 @@ AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "RingBelow" -21 269 basechar 0 AnchorPoint: "VAbove" -145 744 basechar 0 -AnchorPoint: "HighHamza" -47 744 basechar 0 AnchorPoint: "DigitAbove" -145 744 basechar 0 AnchorPoint: "DigitBelow" 36 -128 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 341 -200 basechar 0 AnchorPoint: "DigitAbove" 257 599 basechar 0 -AnchorPoint: "HighHamza" 257 599 basechar 0 AnchorPoint: "VAbove" 257 599 basechar 0 AnchorPoint: "RingBelow" 322 405 basechar 0 AnchorPoint: "TaaAbove" 257 501 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 49 -146 basechar 0 AnchorPoint: "DigitAbove" 122 293 basechar 0 -AnchorPoint: "HighHamza" 171 293 basechar 0 AnchorPoint: "VAbove" 122 293 basechar 0 AnchorPoint: "RingBelow" 122 73 basechar 0 AnchorPoint: "TaaAbove" 122 244 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 37 -181 basechar 0 AnchorPoint: "DigitAbove" -31 551 basechar 0 -AnchorPoint: "HighHamza" 18 551 basechar 0 AnchorPoint: "VAbove" -31 551 basechar 0 AnchorPoint: "RingBelow" 45 361 basechar 0 AnchorPoint: "TaaAbove" -31 453 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 213 -302 basechar 0 AnchorPoint: "DigitAbove" 65 573 basechar 0 -AnchorPoint: "HighHamza" 125 573 basechar 0 AnchorPoint: "VAbove" 65 573 basechar 0 AnchorPoint: "RingBelow" 180 295 basechar 0 AnchorPoint: "TaaAbove" 65 453 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 188 -188 basechar 0 AnchorPoint: "DigitAbove" 173 439 basechar 0 -AnchorPoint: "HighHamza" 222 439 basechar 0 AnchorPoint: "VAbove" 173 439 basechar 0 AnchorPoint: "RingBelow" 156 107 basechar 0 AnchorPoint: "TaaAbove" 173 335 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 142 -293 basechar 0 AnchorPoint: "DigitAbove" 98 391 basechar 0 -AnchorPoint: "HighHamza" 147 391 basechar 0 AnchorPoint: "VAbove" 98 391 basechar 0 AnchorPoint: "RingBelow" 89 122 basechar 0 AnchorPoint: "TaaAbove" 98 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 218 -283 basechar 0 AnchorPoint: "DigitAbove" 179 391 basechar 0 -AnchorPoint: "HighHamza" 228 391 basechar 0 AnchorPoint: "VAbove" 179 391 basechar 0 AnchorPoint: "RingBelow" 269 59 basechar 0 AnchorPoint: "TaaAbove" 179 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 78 -186 basechar 0 AnchorPoint: "DigitAbove" 83 432 basechar 0 -AnchorPoint: "HighHamza" 131 432 basechar 0 AnchorPoint: "VAbove" 83 432 basechar 0 AnchorPoint: "RingBelow" 88 196 basechar 0 AnchorPoint: "TaaAbove" 83 334 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 132 -186 basechar 0 AnchorPoint: "DigitAbove" 137 488 basechar 0 -AnchorPoint: "HighHamza" 186 488 basechar 0 AnchorPoint: "VAbove" 137 488 basechar 0 AnchorPoint: "RingBelow" 127 195 basechar 0 AnchorPoint: "TaaAbove" 137 391 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 195 -391 basechar 0 AnchorPoint: "DigitAbove" 98 391 basechar 0 -AnchorPoint: "HighHamza" 146 391 basechar 0 AnchorPoint: "VAbove" 98 391 basechar 0 AnchorPoint: "RingBelow" 156 137 basechar 0 AnchorPoint: "TaaAbove" 98 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -15,7 +15,6 @@ AnchorPoint: "HamzaBelow" 127 -171 basechar 0 AnchorPoint: "DigitBelow" 127 -171 basechar 0 AnchorPoint: "DotBelow" 127 -171 basechar 0 -AnchorPoint: "HighHamza" 171 361 basechar 0 LayerCount: 3 Fore SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 135 -171 basechar 0 AnchorPoint: "DigitAbove" 95 549 basechar 0 -AnchorPoint: "HighHamza" 144 549 basechar 0 AnchorPoint: "VAbove" 95 549 basechar 0 AnchorPoint: "RingBelow" 122 117 basechar 0 AnchorPoint: "TaaAbove" 95 451 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 98 -171 basechar 0 AnchorPoint: "DigitAbove" 24 664 basechar 0 -AnchorPoint: "HighHamza" 137 664 basechar 0 AnchorPoint: "VAbove" 39 635 basechar 0 AnchorPoint: "RingBelow" 107 88 basechar 0 AnchorPoint: "TaaAbove" 88 591 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 103 -171 basechar 0 AnchorPoint: "DigitAbove" 24 664 basechar 0 -AnchorPoint: "HighHamza" 137 664 basechar 0 AnchorPoint: "VAbove" 39 635 basechar 0 AnchorPoint: "RingBelow" 88 73 basechar 0 AnchorPoint: "TaaAbove" 88 591 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 130 -171 basechar 0 AnchorPoint: "DigitAbove" 8 601 basechar 0 -AnchorPoint: "HighHamza" 57 601 basechar 0 AnchorPoint: "VAbove" 8 601 basechar 0 AnchorPoint: "RingBelow" 51 357 basechar 0 AnchorPoint: "TaaAbove" -41 503 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 233 -107 basechar 0 AnchorPoint: "DigitAbove" -51 610 basechar 0 -AnchorPoint: "HighHamza" -2 610 basechar 0 AnchorPoint: "VAbove" -51 610 basechar 0 AnchorPoint: "RingBelow" 43 347 basechar 0 AnchorPoint: "TaaAbove" -51 513 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Baa.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Baa.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -13,7 +13,6 @@ AnchorPoint: "DigitAbove" 39 425 basechar 0 AnchorPoint: "DigitBelow" 73 -430 basechar 0 AnchorPoint: "RingBelow" 88 59 basechar 0 -AnchorPoint: "HighHamza" 88 361 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitAbove" 343 377 basechar 0 AnchorPoint: "Stroke" 404 -104 basechar 0 -AnchorPoint: "HighHamza" 439 377 basechar 0 AnchorPoint: "RingBelow" 269 -63 basechar 0 AnchorPoint: "TashkilBelow" 391 -327 basechar 0 AnchorPoint: "TashkilAbove" 293 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitAbove" 344 400 basechar 0 AnchorPoint: "Stroke" 425 -52 basechar 0 -AnchorPoint: "HighHamza" 439 400 basechar 0 AnchorPoint: "RingBelow" 267 -40 basechar 0 AnchorPoint: "TashkilBelow" 361 -327 basechar 0 AnchorPoint: "TashkilAbove" 295 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Waw.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Waw.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -5,7 +5,6 @@ AnchorPoint: "AlefAbove" 391 317 basechar 0 AnchorPoint: "DigitAbove" 347 439 basechar 0 AnchorPoint: "Stroke" 429 -21 basechar 0 -AnchorPoint: "HighHamza" 542 439 basechar 0 AnchorPoint: "RingBelow" 264 -10 basechar 0 AnchorPoint: "TashkilBelow" 396 -327 basechar 0 AnchorPoint: "TashkilAbove" 356 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -10,7 +10,6 @@ AnchorPoint: "HamzaBelow" 371 -435 basechar 0 AnchorPoint: "DigitAbove" 279 388 basechar 0 AnchorPoint: "AlefAbove" 293 98 basechar 0 -AnchorPoint: "HighHamza" 338 388 basechar 0 AnchorPoint: "TwoDotsAbove" 213 388 basechar 0 AnchorPoint: "DotAbove" 279 388 basechar 0 AnchorPoint: "VAbove" 219 388 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 271 270 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 346 -288 basechar 0 -AnchorPoint: "HighHamza" 320 270 basechar 0 AnchorPoint: "TwoDotsAbove" 217 270 basechar 0 AnchorPoint: "DotAbove" 271 270 basechar 0 AnchorPoint: "VAbove" 222 270 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 229 186 basechar 0 AnchorPoint: "AlefAbove" 278 0 basechar 0 AnchorPoint: "RingBelow" 293 -439 basechar 0 -AnchorPoint: "HighHamza" 439 186 basechar 0 AnchorPoint: "TwoDotsAbove" 176 186 basechar 0 AnchorPoint: "DotAbove" 229 186 basechar 0 AnchorPoint: "VAbove" 278 186 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -9,7 +9,6 @@ AnchorPoint: "DigitAbove" 259 244 basechar 0 AnchorPoint: "AlefAbove" 293 -49 basechar 0 AnchorPoint: "RingBelow" 312 -293 basechar 0 -AnchorPoint: "HighHamza" 439 332 basechar 0 AnchorPoint: "TwoDotsAbove" 205 244 basechar 0 AnchorPoint: "DotAbove" 259 244 basechar 0 AnchorPoint: "VAbove" 210 244 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 243 251 basechar 0 AnchorPoint: "AlefAbove" 145 251 basechar 0 AnchorPoint: "RingBelow" 298 -262 basechar 0 -AnchorPoint: "HighHamza" 337 83 basechar 0 AnchorPoint: "TwoDotsAbove" 189 251 basechar 0 AnchorPoint: "DotAbove" 243 251 basechar 0 AnchorPoint: "VAbove" 194 251 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 229 356 basechar 0 AnchorPoint: "AlefAbove" 132 356 basechar 0 AnchorPoint: "RingBelow" 293 -167 basechar 0 -AnchorPoint: "HighHamza" 346 159 basechar 0 AnchorPoint: "TwoDotsAbove" 176 356 basechar 0 AnchorPoint: "DotAbove" 229 356 basechar 0 AnchorPoint: "VAbove" 181 356 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -7,7 +7,6 @@ AnchorPoint: "DigitAbove" 284 261 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 308 -312 basechar 0 -AnchorPoint: "HighHamza" 333 261 basechar 0 AnchorPoint: "TwoDotsAbove" 230 261 basechar 0 AnchorPoint: "DotAbove" 284 261 basechar 0 AnchorPoint: "VAbove" 235 261 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -8,7 +8,6 @@ AnchorPoint: "TashkilBelow" 368 -361 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 346 -288 basechar 0 -AnchorPoint: "HighHamza" 320 269 basechar 0 AnchorPoint: "VAbove" 222 269 basechar 0 AnchorPoint: "Tail" 155 101 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/a_Yaa.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/a_Yaa.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 286 404 basechar 0 AnchorPoint: "AlefAbove" 293 171 basechar 0 AnchorPoint: "RingBelow" 312 -146 basechar 0 -AnchorPoint: "HighHamza" 718 532 basechar 0 AnchorPoint: "TwoDotsAbove" 232 404 basechar 0 AnchorPoint: "DotAbove" 286 404 basechar 0 AnchorPoint: "VAbove" 237 404 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/font.props fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/font.props 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,7 @@ FullName: Amiri Bold FamilyName: Amiri Weight: Bold -Copyright: Copyright (c) 2010-%s, Khaled Hosny .\nPortions copyright (c) 2010, Sebastian Kosch . +Copyright: Version: %s ItalicAngle: 0 UnderlinePosition: -537 @@ -26,18 +26,18 @@ LineGap: 0 VLineGap: 0 Panose: 0 0 5 0 0 0 0 0 0 0 -OS2TypoAscent: 1123 +OS2TypoAscent: 1124 OS2TypoAOffset: 0 -OS2TypoDescent: -635 +OS2TypoDescent: -634 OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 732 OS2WinAOffset: 1 OS2WinDescent: 732 OS2WinDOffset: 1 -HheadAscent: 1123 +HheadAscent: 1124 HheadAOffset: 0 -HheadDescent: -635 +HheadDescent: -634 HheadDOffset: 0 OS2CapHeight: 646 OS2XHeight: 433 @@ -52,7 +52,6 @@ Lookup: 260 0 0 "'mark' Two Dots Below" { "'mark' Two Dots Below-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Two Dots Below Alt" { "'mark' Two Dots Below Alt-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Hamza Above" { "'mark' Hamza Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] -Lookup: 260 0 0 "'mark' High Hamza" { "'mark' High Hamza-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' V Mark Above" { "'mark' V Mark Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Small Taa Above" { "'mark' Small Taa Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Small Taa Below" { "'mark' Small Taa Below-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] @@ -81,15 +80,7 @@ Lookup: 260 0 0 "'mark' Noon Above" { "'mark' Noon Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] MarkAttachClasses: 1 DEI: 91125 -TtTable: prep -PUSHW_1 - 511 -SCANCTRL -PUSHB_1 - 4 -SCANTYPE -EndTTInstrs -LangName: 1033 "" "" "" "" "" "" "" "" "" "Khaled Hosny" "Amiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named." "http://www.amirifont.org" "http://www.amirifont.org" "This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an +ACIA-AS IS+ACIA BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software." "http://scripts.sil.org/OFL" +LangName: 1033 "" "" "" "" "" "" "" "" "" "Khaled Hosny" "Amiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named." "http://www.amirifont.org" "http://www.amirifont.org" "" "" "" "" "" "" "+BjUGUAZBBlIA +Bi4GTgZEBlIGQgZO +Bi4GTgZIBlIGLwZN +BkMGTgZFBlAGKwZSBkQGUAAA +BnEGRAY0BlEGTgZFBlIGMwZQ +BiUGUAYwBlIA +BigGTgYyBk4GOgZOBioGUgAA +BkoGTgYtBlIGOAZOBkkGcAAA +BnEGRAY2BlEGTgYsBlAGSgY5Bk8A +BigGUAZHBk4GJwAA +BkYGTgYsBlIGRAZOBicGIQZO +BkUGUAY5BlIGNwZOBicGMQZQ." GaspTable: 1 65535 15 1 Encoding: UnicodeBmp UnicodeInterp: none @@ -116,5 +107,5 @@ 2000 -92.7734375 l 1049 Named: "Digits base" EndSplineSet -AnchorClass2: "TashkilBelowHamza" "'mkmk' Tashkil below Hamza-1" "MarkAbove" "'mark' Generic Mark Anchor-1" "MarkBelow" "'mark' Generic Mark Anchor-2" "TashkilAbove" "'mark' Tashkil Above Base-1" "TashkilBelow" "'mark' Tashkil Below Base-1" "TashkilTashkilAbove" "'mkmk' Tashkil to Tashkil Above-1" "TashkilTashkilBelow" "'mkmk' Tashkil to Tashkil Below-1" "TashkilTashkilAbove2" "'mkmk' Tashkil to Tashkil Above 2-1" "TashkilAboveDot" "Tashkil Above Dot-1" "TashkilBelowDot" "Tashkil Below Dot-1" "HamzaAbove" "'mark' Hamza Above-1" "HamzaBelow" "'mark' Hamza Below-1" "HighHamza" "'mark' High Hamza-1" "DotAbove" "'mark' Dot Above-1" "DotBelow" "'mark' Dot Below-1" "DotBelowAlt" "'mark' Dot Below Alt-1" "TwoDotsAbove" "'mark' Two Dots Above-1" "TwoDotsBelow" "'mark' Two Dots Below-1" "TwoDotsBelowAlt" "'mark' Two Dots Below Alt-1" "DigitAbove" "'mark' Digit Above-1" "DigitBelow" "'mark' Digit Below-1" "MarkDotAbove" "'mkmk' Mark to Dot Above-1" "MarkDotBelow" "'mkmk' Mark to Dot Below-1" "TaaAbove" "'mark' Small Taa Above-1" "TaaBelow" "'mark' Small Taa Below-1" "AlefAbove" "'mark' Small Alef Above-1" "SeenAbove" "'mark' Seen Above-1" "SeenBelow" "'mark' Seen Below-1" "NoonAbove" "'mark' Noon Above-1" "VAbove" "'mark' V Mark Above-1" "RingDash" "'mkmk' Ring to Dash-1" "RingBelow" "'mark' Ring Below-1" "DotAlt" "'mark' Dot Alt-1" "DotHmaza" "'mkmk' Dot above Hamza-1" "Tail" "'mark' Yaa Tail-1" "Dash" "'mark' Dash-1" "Stroke" "'mark' Stroke-1" "cursive" "'curs' Cursive Attachment-1" +AnchorClass2: "TashkilBelowHamza" "'mkmk' Tashkil below Hamza-1" "MarkAbove" "'mark' Generic Mark Anchor-1" "MarkBelow" "'mark' Generic Mark Anchor-2" "TashkilAbove" "'mark' Tashkil Above Base-1" "TashkilBelow" "'mark' Tashkil Below Base-1" "TashkilTashkilAbove" "'mkmk' Tashkil to Tashkil Above-1" "TashkilTashkilBelow" "'mkmk' Tashkil to Tashkil Below-1" "TashkilTashkilAbove2" "'mkmk' Tashkil to Tashkil Above 2-1" "TashkilAboveDot" "Tashkil Above Dot-1" "TashkilBelowDot" "Tashkil Below Dot-1" "HamzaAbove" "'mark' Hamza Above-1" "HamzaBelow" "'mark' Hamza Below-1" "DotAbove" "'mark' Dot Above-1" "DotBelow" "'mark' Dot Below-1" "DotBelowAlt" "'mark' Dot Below Alt-1" "TwoDotsAbove" "'mark' Two Dots Above-1" "TwoDotsBelow" "'mark' Two Dots Below-1" "TwoDotsBelowAlt" "'mark' Two Dots Below Alt-1" "DigitAbove" "'mark' Digit Above-1" "DigitBelow" "'mark' Digit Below-1" "MarkDotAbove" "'mkmk' Mark to Dot Above-1" "MarkDotBelow" "'mkmk' Mark to Dot Below-1" "TaaAbove" "'mark' Small Taa Above-1" "TaaBelow" "'mark' Small Taa Below-1" "AlefAbove" "'mark' Small Alef Above-1" "SeenAbove" "'mark' Seen Above-1" "SeenBelow" "'mark' Seen Below-1" "NoonAbove" "'mark' Noon Above-1" "VAbove" "'mark' V Mark Above-1" "RingDash" "'mkmk' Ring to Dash-1" "RingBelow" "'mark' Ring Below-1" "DotAlt" "'mark' Dot Alt-1" "DotHmaza" "'mkmk' Dot above Hamza-1" "Tail" "'mark' Yaa Tail-1" "Dash" "'mark' Dash-1" "Stroke" "'mark' Stroke-1" "cursive" "'curs' Cursive Attachment-1" EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/fraction.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -1,5 +1,6 @@ StartChar: fraction Encoding: 8260 8260 5916 +AltUni2: 002215.ffffffff.0 Width: 134 Flags: HW LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/nonmarkingreturn.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/nonmarkingreturn.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/nonmarkingreturn.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/nonmarkingreturn.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,6 @@ +StartChar: nonmarkingreturn +Encoding: 70557 -1 6150 +Width: 333 +Flags: HW +LayerCount: 3 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/.notdef.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/.notdef.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/.notdef.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/.notdef.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,19 @@ +StartChar: .notdef +Encoding: 70555 -1 6148 +Width: 364 +Flags: HW +LayerCount: 3 +Fore +SplineSet +33 0 m 1 + 33 666 l 1 + 298 666 l 1 + 298 0 l 1 + 33 0 l 1 +66 33 m 1 + 265 33 l 1 + 265 633 l 1 + 66 633 l 1 + 66 33 l 1 +EndSplineSet +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/.null.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/.null.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/.null.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/.null.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,6 @@ +StartChar: .null +Encoding: 70556 -1 6149 +Width: 0 +Flags: HW +LayerCount: 3 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallmeem.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallmeem.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallmeem.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallmeem.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10 @@ +StartChar: smallmeem.above +Encoding: 70531 -1 6123 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 130 mark 0 +LayerCount: 3 +Fore +Refer: 4592 1762 N 1 0 0 1 -119.5 -710 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallnoon.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallnoon.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallnoon.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallnoon.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,11 @@ +StartChar: smallnoon.above +Encoding: 70529 -1 6118 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 120 mark 0 +AnchorPoint: "DigitAbove" 0 211 mark 0 +LayerCount: 3 +Fore +Refer: 874 1606 N 0.4 0 0 0.4 -114.608 164.053 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallteh.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallteh.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/smallteh.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/smallteh.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10 @@ +StartChar: smallteh.above +Encoding: 70530 -1 6119 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 120 mark 0 +LayerCount: 3 +Fore +Refer: 545 1578 N 0.4 0 0 0.4 -185.485 149.8 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/twostrokes.below.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/twostrokes.below.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/twostrokes.below.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/twostrokes.below.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,27 +6,27 @@ LayerCount: 3 Back SplineSet --60.05859375 -23.4375 m 1025,12,-1 --97.65625 275.390625 m 1,0,1 - -73.2421875 285.807617188 -44.1083984375 293.131835938 -10.25390625 297.36328125 c 1,2,3 - -34.0166015625 317.545898438 -52.5712890625 325.846679688 -65.91796875 322.265625 c 0,4,5 - -84.1474609375 317.3828125 -94.7265625 301.7578125 -97.65625 275.390625 c 1,0,1 --149.90234375 238.76953125 m 1,6,7 - -144.368164062 282.063476562 -132.080078125 323.405273438 -113.037109375 362.79296875 c 128,-1,8 - -93.994140625 402.180664062 -73.4052734375 425.78125 -51.26953125 433.59375 c 1,9,10 - -20.01953125 445.3125 18.06640625 432.291992188 62.98828125 394.53125 c 0,11,12 - 86.7509765625 374.348632812 108.3984375 351.5625 127.9296875 326.171875 c 0,13,14 - 133.7890625 318.684570312 136.23046875 311.686523438 135.25390625 305.17578125 c 0,15,16 - 125.163085938 246.907226562 118.815429688 214.111328125 116.2109375 206.787109375 c 128,-1,17 - 113.606445312 199.462890625 108.073242188 196.614257812 99.609375 198.2421875 c 1,18,19 - -11.0673828125 224.284179688 -94.23828125 204.264648438 -149.90234375 138.18359375 c 0,20,21 - -154.78515625 132.32421875 -156.25 125.813476562 -154.296875 118.65234375 c 0,22,23 - -130.534179688 31.73828125 -108.561523438 -63.6396484375 -88.37890625 -167.48046875 c 0,24,25 - -58.4306640625 -321.77734375 -55.8271484375 -400.390625 -80.56640625 -403.3203125 c 0,26,27 - -89.0302734375 -404.296875 -94.0751953125 -395.670898438 -95.703125 -377.44140625 c 0,28,29 - -101.887695312 -312.98828125 -115.72265625 -238.606445312 -137.20703125 -154.296875 c 25,30,31 - -176.920898438 -1.3017578125 -194.010742188 94.23828125 -188.4765625 132.32421875 c 0,32,33 - -180.989257812 183.430664062 -168.131835938 218.913085938 -149.90234375 238.76953125 c 1,6,7 +-60.05859375 -23.4375 m 1025 +-97.65625 275.390625 m 1 + -73.2421875 285.807617188 -44.1083984375 293.131835938 -10.25390625 297.36328125 c 1 + -34.0166015625 317.545898438 -52.5712890625 325.846679688 -65.91796875 322.265625 c 0 + -84.1474609375 317.3828125 -94.7265625 301.7578125 -97.65625 275.390625 c 1 +-149.90234375 238.76953125 m 1 + -144.368164062 282.063476562 -132.080078125 323.405273438 -113.037109375 362.79296875 c 128 + -93.994140625 402.180664062 -73.4052734375 425.78125 -51.26953125 433.59375 c 1 + -20.01953125 445.3125 18.06640625 432.291992188 62.98828125 394.53125 c 0 + 86.7509765625 374.348632812 108.3984375 351.5625 127.9296875 326.171875 c 0 + 133.7890625 318.684570312 136.23046875 311.686523438 135.25390625 305.17578125 c 0 + 125.163085938 246.907226562 118.815429688 214.111328125 116.2109375 206.787109375 c 128 + 113.606445312 199.462890625 108.073242188 196.614257812 99.609375 198.2421875 c 1 + -11.0673828125 224.284179688 -94.23828125 204.264648438 -149.90234375 138.18359375 c 0 + -154.78515625 132.32421875 -156.25 125.813476562 -154.296875 118.65234375 c 0 + -130.534179688 31.73828125 -108.561523438 -63.6396484375 -88.37890625 -167.48046875 c 0 + -58.4306640625 -321.77734375 -55.8271484375 -400.390625 -80.56640625 -403.3203125 c 0 + -89.0302734375 -404.296875 -94.0751953125 -395.670898438 -95.703125 -377.44140625 c 0 + -101.887695312 -312.98828125 -115.72265625 -238.606445312 -137.20703125 -154.296875 c 25 + -176.920898438 -1.3017578125 -194.010742188 94.23828125 -188.4765625 132.32421875 c 0 + -180.989257812 183.430664062 -168.131835938 218.913085938 -149.90234375 238.76953125 c 1 EndSplineSet Fore SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 5774 -Width: 0 -GlyphClass: 4 -Flags: HW -AnchorPoint: "TashkilAbove" 124 801 mark 0 -AnchorPoint: "MarkAbove" 124 801 mark 0 -AnchorPoint: "TashkilTashkilAbove" 125 1081 basemark 0 -LayerCount: 3 -Back -SplineSet -42.96875 926.7578125 m 0 - 43.2939453125 906.575195312 49.8046875 888.834960938 62.5 873.53515625 c 0 - 79.1015625 854.98046875 99.609375 845.703125 124.0234375 845.703125 c 0 - 144.206054688 846.028320312 161.946289062 852.5390625 177.24609375 865.234375 c 0 - 195.80078125 881.8359375 205.078125 902.34375 205.078125 926.7578125 c 0 - 204.752929688 946.940429688 198.2421875 964.680664062 185.546875 979.98046875 c 0 - 168.9453125 998.53515625 148.4375 1007.8125 124.0234375 1007.8125 c 0 - 103.840820312 1007.48730469 86.1005859375 1000.9765625 70.80078125 988.28125 c 0 - 52.24609375 971.6796875 42.96875 951.171875 42.96875 926.7578125 c 0 -5.859375 926.7578125 m 0 - 6.1845703125 962.890625 20.01953125 992.67578125 47.36328125 1016.11328125 c 0 - 69.82421875 1035.31933594 95.3779296875 1044.921875 124.0234375 1044.921875 c 0 - 160.15625 1044.59667969 189.94140625 1030.76171875 213.37890625 1003.41796875 c 0 - 231.93359375 980.95703125 241.536132812 955.403320312 242.1875 926.7578125 c 0 - 241.862304688 890.625 228.02734375 860.83984375 200.68359375 837.40234375 c 0 - 178.22265625 818.84765625 152.668945312 809.245117188 124.0234375 808.59375 c 0 - 87.890625 808.918945312 58.10546875 822.75390625 34.66796875 850.09765625 c 0 - 15.7880859375 872.55859375 6.1845703125 898.112304688 5.859375 926.7578125 c 0 -EndSplineSet -Fore -SplineSet -48 927 m 0 - 49 908 54 891 66 877 c 0 - 82 860 101 851 124 851 c 0 - 143 852 160 857 174 869 c 0 - 191 885 200 904 200 927 c 0 - 199 946 194 963 182 977 c 0 - 166 994 147 1003 124 1003 c 0 - 105 1002 88 997 74 985 c 0 - 57 969 48 950 48 927 c 0 -1 927 m 0 - 2 965 16 996 44 1020 c 0 - 68 1040 94 1050 124 1050 c 0 - 162 1049 193 1035 217 1007 c 0 - 236 983 246 957 247 927 c 0 - 246 889 232 858 204 834 c 0 - 180 815 154 805 124 804 c 0 - 86 805 55 819 31 847 c 0 - 11 871 1 897 1 927 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni030A.quran.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni030A.quran.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni030A.quran.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni030A.quran.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,52 @@ +StartChar: uni030A.quran +Encoding: 778 -1 5774 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TashkilAbove" 124 801 mark 0 +AnchorPoint: "MarkAbove" 124 801 mark 0 +AnchorPoint: "TashkilTashkilAbove" 125 1081 basemark 0 +LayerCount: 3 +Back +SplineSet +42.96875 926.7578125 m 0 + 43.2939453125 906.575195312 49.8046875 888.834960938 62.5 873.53515625 c 0 + 79.1015625 854.98046875 99.609375 845.703125 124.0234375 845.703125 c 0 + 144.206054688 846.028320312 161.946289062 852.5390625 177.24609375 865.234375 c 0 + 195.80078125 881.8359375 205.078125 902.34375 205.078125 926.7578125 c 0 + 204.752929688 946.940429688 198.2421875 964.680664062 185.546875 979.98046875 c 0 + 168.9453125 998.53515625 148.4375 1007.8125 124.0234375 1007.8125 c 0 + 103.840820312 1007.48730469 86.1005859375 1000.9765625 70.80078125 988.28125 c 0 + 52.24609375 971.6796875 42.96875 951.171875 42.96875 926.7578125 c 0 +5.859375 926.7578125 m 0 + 6.1845703125 962.890625 20.01953125 992.67578125 47.36328125 1016.11328125 c 0 + 69.82421875 1035.31933594 95.3779296875 1044.921875 124.0234375 1044.921875 c 0 + 160.15625 1044.59667969 189.94140625 1030.76171875 213.37890625 1003.41796875 c 0 + 231.93359375 980.95703125 241.536132812 955.403320312 242.1875 926.7578125 c 0 + 241.862304688 890.625 228.02734375 860.83984375 200.68359375 837.40234375 c 0 + 178.22265625 818.84765625 152.668945312 809.245117188 124.0234375 808.59375 c 0 + 87.890625 808.918945312 58.10546875 822.75390625 34.66796875 850.09765625 c 0 + 15.7880859375 872.55859375 6.1845703125 898.112304688 5.859375 926.7578125 c 0 +EndSplineSet +Fore +SplineSet +48 927 m 0 + 49 908 54 891 66 877 c 0 + 82 860 101 851 124 851 c 0 + 143 852 160 857 174 869 c 0 + 191 885 200 904 200 927 c 0 + 199 946 194 963 182 977 c 0 + 166 994 147 1003 124 1003 c 0 + 105 1002 88 997 74 985 c 0 + 57 969 48 950 48 927 c 0 +1 927 m 0 + 2 965 16 996 44 1020 c 0 + 68 1040 94 1050 124 1050 c 0 + 162 1049 193 1035 217 1007 c 0 + 236 983 246 957 247 927 c 0 + 246 889 232 858 204 834 c 0 + 180 815 154 805 124 804 c 0 + 86 805 55 819 31 847 c 0 + 11 871 1 897 1 927 c 0 +EndSplineSet +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0325.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0325.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0325.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0325.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -StartChar: uni0325 -Encoding: 805 805 5775 -Width: 0 -GlyphClass: 4 -Flags: HW -AnchorPoint: "TashkilBelow" 125 -303 mark 0 -AnchorPoint: "TashkilTashkilBelow" 125 -584 basemark 0 -AnchorPoint: "MarkBelow" 125 -303 mark 0 -LayerCount: 3 -Fore -Refer: 5774 778 N 1 0 0 1 0 -1349 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0325.quran.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0325.quran.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0325.quran.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0325.quran.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,12 @@ +StartChar: uni0325.quran +Encoding: 805 -1 5775 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TashkilBelow" 125 -303 mark 0 +AnchorPoint: "TashkilTashkilBelow" 125 -584 basemark 0 +AnchorPoint: "MarkBelow" 125 -303 mark 0 +LayerCount: 3 +Fore +Refer: 5774 -1 N 1 0 0 1 0 -1349 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67647 -1 2395 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 464 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65922 -1 498 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 508 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1576 1576 558 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 537 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68081 -1 2829 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67468 -1 2216 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69542 -1 4291 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 61 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70178 -1 5731 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70203 -1 5756 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 111 -503 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67609 -1 2357 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69564 -1 4313 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 127 -439 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67669 -1 2417 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69586 -1 4335 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 101 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70318 -1 5876 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66691 -1 1439 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69454 -1 4203 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66577 -1 1325 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69410 -1 4159 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 54 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68122 -1 2870 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69630 -1 4379 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 474 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68163 -1 2911 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69652 -1 4401 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69131 -1 3879 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69762 -1 4511 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 265 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66632 -1 1380 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69432 -1 4181 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67291 -1 2039 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69520 -1 4269 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 157 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69035 -1 3783 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69740 -1 4489 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 309 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67053 -1 1801 Width: 191 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69476 -1 4225 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 118 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66340 -1 1088 Width: 183 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69388 -1 4137 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 109 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67997 -1 2745 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69608 -1 4357 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67122 -1 1870 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69498 -1 4247 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 159 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68906 -1 3654 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69718 -1 4467 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 182 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65944 -1 520 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68317 -1 3065 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69674 -1 4423 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 122 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69366 -1 4115 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 63 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68411 -1 3159 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 149 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69696 -1 4445 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -454 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69936 -1 4726 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67509 -1 2257 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66917 -1 1665 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67710 -1 2458 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66732 -1 1480 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 251 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69172 -1 3920 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69078 -1 3826 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 157 -381 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66482 -1 1230 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67811 -1 2559 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67174 -1 1922 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67940 -1 2688 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -459 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65985 -1 580 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68358 -1 3106 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66829 -1 1577 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67770 -1 2518 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66535 -1 1283 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67567 -1 2315 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0628.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0628.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70275 -1 5830 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67208 -1 1956 Width: 291 Flags: HW +AnchorPoint: "TaaAbove" 319 361 basechar 0 AnchorPoint: "TashkilAbove" 173 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66374 -1 1122 Width: 299 Flags: HW +AnchorPoint: "TaaAbove" 313 343 basechar 0 AnchorPoint: "TashkilAbove" 166 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66222 -1 904 Width: 343 Flags: HW +AnchorPoint: "TaaAbove" 320 300 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 244 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Haa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Haa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Haa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Haa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67871 -1 2619 Width: 299 Flags: HW +AnchorPoint: "TaaAbove" 342 261 basechar 0 AnchorPoint: "TashkilAbove" 197 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67242 -1 1990 Width: 275 Flags: HW +AnchorPoint: "TaaAbove" 146 195 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 210 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67355 -1 2103 Width: 270 Flags: HW +AnchorPoint: "TaaAbove" 146 220 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Lam_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Lam_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Lam_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Lam_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67895 -1 2643 Width: 292 Flags: HW +AnchorPoint: "TaaAbove" 328 363 basechar 0 AnchorPoint: "TashkilAbove" 74 801 basechar 0 AnchorPoint: "TashkilBelow" 181 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Mem_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Mem_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Mem_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Mem_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66961 -1 1709 Width: 473 Flags: HW +AnchorPoint: "TaaAbove" 355 355 basechar 0 AnchorPoint: "TashkilAbove" 254 337 basechar 0 AnchorPoint: "TashkilBelow" 210 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68042 -1 2790 Width: 553 Flags: HW +AnchorPoint: "TaaAbove" 325 242 basechar 0 AnchorPoint: "TashkilAbove" 179 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0631.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0631.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1585 1585 920 Width: 399 Flags: HW +AnchorPoint: "TaaAbove" 160 434 basechar 0 AnchorPoint: "TashkilAbove" 195 801 basechar 0 AnchorPoint: "TashkilBelow" 248 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66767 -1 1515 Width: 457 Flags: HW +AnchorPoint: "DigitAbove" 279 388 basechar 0 AnchorPoint: "TashkilAbove" 225 801 basechar 0 AnchorPoint: "AlefAbove" 293 98 basechar 0 AnchorPoint: "TashkilBelow" 380 -547 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67975 -1 2723 Width: 421 Flags: HW +AnchorPoint: "DigitAbove" 271 270 basechar 0 AnchorPoint: "TashkilAbove" 191 801 basechar 0 AnchorPoint: "TashkilBelow" 377 -596 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66431 -1 1179 Width: 476 Flags: HW +AnchorPoint: "DigitAbove" 229 186 basechar 0 AnchorPoint: "TashkilAbove" 342 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -693 basechar 0 AnchorPoint: "AlefAbove" 278 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66311 -1 1043 Width: 585 Flags: HW +AnchorPoint: "DigitAbove" 259 244 basechar 0 AnchorPoint: "TashkilAbove" 293 801 basechar 0 AnchorPoint: "TashkilBelow" 375 -599 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67397 -1 2145 Width: 471 Flags: HW +AnchorPoint: "DigitAbove" 243 251 basechar 0 AnchorPoint: "TashkilAbove" 186 801 basechar 0 AnchorPoint: "TashkilBelow" 371 -573 basechar 0 AnchorPoint: "AlefAbove" 145 251 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68989 -1 3737 Width: 476 Flags: HW +AnchorPoint: "DigitAbove" 229 356 basechar 0 AnchorPoint: "TashkilAbove" 195 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -473 basechar 0 AnchorPoint: "AlefAbove" 132 356 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66789 -1 1537 Width: 469 Flags: HW +AnchorPoint: "DigitAbove" 284 261 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 336 -625 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68059 -1 2807 Width: 730 Flags: HW +AnchorPoint: "DigitAbove" 271 269 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "TashkilBelow" 377 -596 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1610 1610 1059 Width: 764 Flags: HW +AnchorPoint: "DigitAbove" 286 404 basechar 0 AnchorPoint: "TashkilAbove" 391 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -458 basechar 0 AnchorPoint: "AlefAbove" 293 171 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68074 -1 2822 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 +AnchorPoint: "DigitAbove" 327 697 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67461 -1 2209 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 +AnchorPoint: "DigitAbove" 95 615 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69549 -1 4298 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 +AnchorPoint: "DigitAbove" 95 615 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 110 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 70171 -1 5724 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 +AnchorPoint: "DigitAbove" 68 391 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 70210 -1 5763 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 +AnchorPoint: "DigitAbove" 68 391 basechar 0 AnchorPoint: "TashkilBelow" 94 -527 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67602 -1 2350 Width: 295 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 +AnchorPoint: "DigitAbove" 148 403 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69571 -1 4320 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 +AnchorPoint: "DigitAbove" 148 403 basechar 0 AnchorPoint: "TashkilBelow" 123 -464 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67662 -1 2410 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 +AnchorPoint: "DigitAbove" 91 625 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69593 -1 4342 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 +AnchorPoint: "DigitAbove" 91 625 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 96 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 70311 -1 5869 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 +AnchorPoint: "DigitAbove" 117 391 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66684 -1 1432 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 +AnchorPoint: "DigitAbove" 63 618 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69461 -1 4210 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 +AnchorPoint: "DigitAbove" 63 618 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 70 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66570 -1 1318 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 +AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69417 -1 4166 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 +AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68115 -1 2863 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 +AnchorPoint: "DigitAbove" 371 684 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69637 -1 4386 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 +AnchorPoint: "DigitAbove" 371 684 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 474 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68156 -1 2904 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 +AnchorPoint: "DigitAbove" 129 750 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69659 -1 4408 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 +AnchorPoint: "DigitAbove" 129 750 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 224 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69124 -1 3872 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 +AnchorPoint: "DigitAbove" 226 439 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69769 -1 4518 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 +AnchorPoint: "DigitAbove" 226 439 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 261 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66625 -1 1373 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 +AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69439 -1 4188 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 +AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 171 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67284 -1 2032 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 +AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69527 -1 4276 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 +AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 153 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69028 -1 3776 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 +AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69747 -1 4496 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 +AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 304 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67046 -1 1794 Width: 153 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 +AnchorPoint: "DigitAbove" 100 508 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69483 -1 4232 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 +AnchorPoint: "DigitAbove" 100 508 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 113 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66333 -1 1081 Width: 184 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 +AnchorPoint: "DigitAbove" 119 464 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69395 -1 4144 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 +AnchorPoint: "DigitAbove" 119 464 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 105 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67990 -1 2738 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 +AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69615 -1 4364 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 +AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 138 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67115 -1 1863 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 +AnchorPoint: "DigitAbove" 59 684 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69505 -1 4254 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 +AnchorPoint: "DigitAbove" 59 684 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 160 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68899 -1 3647 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 +AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69725 -1 4474 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 +AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 177 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 65937 -1 513 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 +AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68310 -1 3058 Width: 314 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 +AnchorPoint: "DigitAbove" 46 439 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69681 -1 4430 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 +AnchorPoint: "DigitAbove" 46 439 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 147 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69373 -1 4122 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 +AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 88 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68404 -1 3152 Width: 332 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 +AnchorPoint: "DigitAbove" 115 500 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69703 -1 4452 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 +AnchorPoint: "DigitAbove" 115 500 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 172 -479 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69929 -1 4719 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 +AnchorPoint: "DigitAbove" -145 744 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67502 -1 2250 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 +AnchorPoint: "DigitAbove" 257 599 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66910 -1 1658 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 +AnchorPoint: "DigitAbove" 122 293 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67703 -1 2451 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 +AnchorPoint: "DigitAbove" -31 551 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66725 -1 1473 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 +AnchorPoint: "DigitAbove" 65 573 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 277 -415 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69165 -1 3913 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 +AnchorPoint: "DigitAbove" 173 439 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 69071 -1 3819 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 +AnchorPoint: "DigitAbove" 98 391 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 152 -405 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66475 -1 1223 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 +AnchorPoint: "DigitAbove" 179 391 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 215 -396 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67804 -1 2552 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 +AnchorPoint: "DigitAbove" 83 432 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67167 -1 1915 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 +AnchorPoint: "DigitAbove" 137 488 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67933 -1 2681 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 +AnchorPoint: "DigitAbove" 98 391 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 259 -503 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 65978 -1 573 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 +AnchorPoint: "DigitAbove" 122 425 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 68351 -1 3099 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 +AnchorPoint: "DigitAbove" 95 549 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66822 -1 1570 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 +AnchorPoint: "DigitAbove" 24 664 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67763 -1 2511 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 +AnchorPoint: "DigitAbove" 24 664 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 66528 -1 1276 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 +AnchorPoint: "DigitAbove" 8 601 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 67560 -1 2308 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 +AnchorPoint: "DigitAbove" -51 610 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni064A.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni064A.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 70268 -1 5823 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 +AnchorPoint: "DigitAbove" 39 425 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0660.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0660.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0660.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0660.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0660.numr +Encoding: 70532 -1 6125 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4559 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0661.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0661.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0661.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0661.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0661.numr +Encoding: 70533 -1 6126 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4560 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0662.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0662.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0662.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0662.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0662.numr +Encoding: 70534 -1 6127 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4561 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0663.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0663.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0663.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0663.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0663.numr +Encoding: 70535 -1 6128 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4562 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0664.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0664.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0664.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0664.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0664.numr +Encoding: 70536 -1 6129 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4563 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0665.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0665.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0665.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0665.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0665.numr +Encoding: 70537 -1 6130 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4564 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0666.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0666.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0666.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0666.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0666.numr +Encoding: 70538 -1 6131 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4565 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0667.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0667.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0667.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0667.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0667.numr +Encoding: 70539 -1 6132 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4566 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0668.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0668.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0668.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0668.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0668.numr +Encoding: 70540 -1 6133 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4567 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0669.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0669.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni0669.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni0669.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0669.numr +Encoding: 70541 -1 6134 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4568 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67641 -1 2389 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 464 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65916 -1 492 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 508 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1646 1646 552 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 537 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68072 -1 2820 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67459 -1 2207 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70169 -1 5722 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67600 -1 2348 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67660 -1 2408 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70309 -1 5867 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66682 -1 1430 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66568 -1 1316 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68113 -1 2861 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68154 -1 2902 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69122 -1 3870 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66623 -1 1371 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67282 -1 2030 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69026 -1 3774 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67044 -1 1792 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66331 -1 1079 Width: 181 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67988 -1 2736 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67113 -1 1861 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68897 -1 3645 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65935 -1 511 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68308 -1 3056 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68402 -1 3150 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 105 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69927 -1 4717 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67500 -1 2248 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66908 -1 1656 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67701 -1 2449 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66723 -1 1471 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 251 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69163 -1 3911 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69069 -1 3817 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 187 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66473 -1 1221 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67802 -1 2550 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67165 -1 1913 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67931 -1 2679 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -459 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65976 -1 571 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68349 -1 3097 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66820 -1 1568 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67761 -1 2509 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66526 -1 1274 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67558 -1 2306 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni066E.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni066E.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70266 -1 5821 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67645 -1 2393 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 456 -368 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65920 -1 496 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 480 -387 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1662 1662 556 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 535 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68079 -1 2827 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67466 -1 2214 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69540 -1 4289 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70176 -1 5729 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 125 -460 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70201 -1 5754 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 125 -626 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67607 -1 2355 Width: 293 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 159 -387 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69562 -1 4311 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 154 -563 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67667 -1 2415 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69584 -1 4333 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 127 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70316 -1 5874 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 191 -641 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66689 -1 1437 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69452 -1 4201 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 101 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66575 -1 1323 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 56 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69408 -1 4157 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 80 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68120 -1 2868 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69628 -1 4377 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 371 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 505 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68161 -1 2909 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69650 -1 4399 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 255 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69129 -1 3877 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69760 -1 4509 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66630 -1 1378 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69430 -1 4179 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 203 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67289 -1 2037 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 184 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69518 -1 4267 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 184 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69033 -1 3781 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69738 -1 4487 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 335 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67051 -1 1799 Width: 155 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69474 -1 4223 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66338 -1 1086 Width: 185 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69386 -1 4135 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 136 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67995 -1 2743 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 191 -401 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69606 -1 4355 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 169 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67120 -1 1868 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69496 -1 4245 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 191 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68904 -1 3652 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 208 -426 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69716 -1 4465 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 208 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65942 -1 518 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 154 -431 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68315 -1 3063 Width: 312 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69672 -1 4421 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 178 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69364 -1 4113 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 120 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68409 -1 3157 Width: 332 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 188 -382 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69694 -1 4443 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 203 -578 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69934 -1 4724 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67507 -1 2255 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 382 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66915 -1 1663 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67708 -1 2456 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 78 -353 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66730 -1 1478 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 309 -514 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69170 -1 3918 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 205 -350 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 69076 -1 3824 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 183 -504 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66480 -1 1228 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 247 -495 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67809 -1 2557 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 119 -348 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67172 -1 1920 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 173 -348 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67938 -1 2686 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 291 -602 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 65983 -1 578 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 68356 -1 3104 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66827 -1 1575 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -382 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67768 -1 2516 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 140 -382 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 66533 -1 1281 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 172 -358 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 67565 -1 2313 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni067E.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni067E.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 70273 -1 5828 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 120 -641 basechar 0 LayerCount: 3 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F0.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F0.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F0.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F0.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F0.numr +Encoding: 70542 -1 6135 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4569 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F1.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F1.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F1.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F1.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F1.numr +Encoding: 70543 -1 6136 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4570 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F2.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F2.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F2.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F2.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F2.numr +Encoding: 70544 -1 6137 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4571 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F3.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F3.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F3.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F3.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F3.numr +Encoding: 70545 -1 6138 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4572 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F4.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F4.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F4.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F4.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F4.numr +Encoding: 70546 -1 6139 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4573 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F4.urd.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F4.urd.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F4.urd.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F4.urd.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F4.urd.numr +Encoding: 70552 -1 6145 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4579 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F5.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F5.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F5.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F5.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F5.numr +Encoding: 70547 -1 6140 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4574 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F6.numr +Encoding: 70548 -1 6141 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4575 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.small.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.small.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.small.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.small.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -7,24 +7,24 @@ Refer: 287 1782 N 0.6 0 0 0.6 -31 31 2 Layer: 2 SplineSet -289.0625 -216.796875 m 1024,0,-1 -28.3203125 -5.859375 m 0,1,2 - 42.6435546875 45.8984375 76.9853515625 103.352539062 131.34765625 166.50390625 c 1,3,4 - 89.0302734375 171.711914062 59.5703125 186.686523438 42.96875 211.42578125 c 0,5,6 - 38.7373046875 217.610351562 37.109375 226.887695312 38.0859375 239.2578125 c 0,7,8 - 39.0625 250.651367188 43.9453125 264.6484375 52.734375 281.25 c 0,9,10 - 71.6142578125 316.731445312 93.4248046875 340.168945312 118.1640625 351.5625 c 152,-1,11 - 142.903320312 362.956054688 167.96875 353.352539062 193.359375 322.75390625 c 0,12,13 - 204.1015625 309.733398438 201.497070312 304.19921875 185.546875 306.15234375 c 0,14,15 - 137.6953125 312.01171875 98.7958984375 295.8984375 68.84765625 257.8125 c 0,16,17 - 66.5693359375 255.208007812 67.0576171875 252.766601562 70.3125 250.48828125 c 0,18,19 - 118.489257812 217.610351562 178.874023438 225.911132812 251.46484375 275.390625 c 0,20,21 - 263.834960938 283.854492188 268.5546875 281.25 265.625 267.578125 c 2,22,-1 - 253.41796875 210.9375 l 2,23,24 - 250.813476562 197.916992188 244.303710938 188.801757812 233.88671875 183.59375 c 0,25,26 - 197.428710938 163.411132812 162.922851562 136.067382812 130.37109375 101.5625 c 0,27,28 - 98.4697265625 67.7080078125 71.1259765625 29.78515625 48.33984375 -12.20703125 c 0,29,30 - 43.45703125 -21.3212890625 38.8994140625 -25.7158203125 34.66796875 -25.390625 c 24,31,32 - 26.5302734375 -25.390625 24.4140625 -18.8798828125 28.3203125 -5.859375 c 0,1,2 +289.0625 -216.796875 m 1024 +28.3203125 -5.859375 m 0 + 42.6435546875 45.8984375 76.9853515625 103.352539062 131.34765625 166.50390625 c 1 + 89.0302734375 171.711914062 59.5703125 186.686523438 42.96875 211.42578125 c 0 + 38.7373046875 217.610351562 37.109375 226.887695312 38.0859375 239.2578125 c 0 + 39.0625 250.651367188 43.9453125 264.6484375 52.734375 281.25 c 0 + 71.6142578125 316.731445312 93.4248046875 340.168945312 118.1640625 351.5625 c 152 + 142.903320312 362.956054688 167.96875 353.352539062 193.359375 322.75390625 c 0 + 204.1015625 309.733398438 201.497070312 304.19921875 185.546875 306.15234375 c 0 + 137.6953125 312.01171875 98.7958984375 295.8984375 68.84765625 257.8125 c 0 + 66.5693359375 255.208007812 67.0576171875 252.766601562 70.3125 250.48828125 c 0 + 118.489257812 217.610351562 178.874023438 225.911132812 251.46484375 275.390625 c 0 + 263.834960938 283.854492188 268.5546875 281.25 265.625 267.578125 c 2 + 253.41796875 210.9375 l 2 + 250.813476562 197.916992188 244.303710938 188.801757812 233.88671875 183.59375 c 0 + 197.428710938 163.411132812 162.922851562 136.067382812 130.37109375 101.5625 c 0 + 98.4697265625 67.7080078125 71.1259765625 29.78515625 48.33984375 -12.20703125 c 0 + 43.45703125 -21.3212890625 38.8994140625 -25.7158203125 34.66796875 -25.390625 c 24 + 26.5302734375 -25.390625 24.4140625 -18.8798828125 28.3203125 -5.859375 c 0 EndSplineSet EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.urd.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.urd.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F6.urd.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F6.urd.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F6.urd.numr +Encoding: 70553 -1 6146 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4580 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F7.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F7.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F7.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F7.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F7.numr +Encoding: 70549 -1 6142 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4576 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F7.urd.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F7.urd.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F7.urd.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F7.urd.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F7.urd.numr +Encoding: 70554 -1 6147 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4581 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F8.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F8.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F8.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F8.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F8.numr +Encoding: 70550 -1 6143 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4577 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F9.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F9.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni06F9.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni06F9.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F9.numr +Encoding: 70551 -1 6144 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 3 +Fore +Refer: 4578 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B6.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B6.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B6.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B6.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni08B6 +Encoding: 2230 2230 6124 +Width: 926 +Flags: HW +LayerCount: 3 +Fore +Refer: 6123 -1 N 1 0 0 1 470 250 2 +Refer: 558 1576 N 1 0 0 1 0 0 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B7.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B7.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B7.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B7.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni08B7 +Encoding: 2231 2231 6122 +Width: 926 +Flags: HW +LayerCount: 3 +Fore +Refer: 6123 -1 N 1 0 0 1 470 250 2 +Refer: 556 1662 N 1 0 0 1 0 0 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B8.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B8.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B8.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B8.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni08B8 +Encoding: 2232 2232 6121 +Width: 926 +Flags: HW +LayerCount: 3 +Fore +Refer: 6119 -1 N 1 0 0 1 460 140 2 +Refer: 552 1646 N 1 0 0 1 0 0 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B9.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B9.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08B9.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08B9.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni08B9 +Encoding: 2233 2233 6120 +Width: 399 +Flags: HW +LayerCount: 3 +Fore +Refer: 6118 -1 N 1 0 0 1 240 180 2 +Refer: 920 1585 N 1 0 0 1 0 0 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08BA.glyph fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08BA.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Bold.sfdir/uni08BA.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Bold.sfdir/uni08BA.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni08BA +Encoding: 2234 2234 6117 +Width: 764 +Flags: HW +LayerCount: 3 +Fore +Refer: 6118 -1 N 1 0 0 1 340 180 2 +Refer: 1059 1610 N 1 0 0 1 0 0 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 229 Flags: HW AnchorPoint: "DigitAbove" -12 630 basechar 0 -AnchorPoint: "HighHamza" 257 752 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 244 684 basechar 0 AnchorPoint: "HamzaAbove" 62 752 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Alf.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Alf.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Alf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Alf.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 187 Flags: HW AnchorPoint: "DigitAbove" -12 644 basechar 0 -AnchorPoint: "HighHamza" 257 766 basechar 0 AnchorPoint: "TashkilBelow" 0 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 171 -39 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Kaf_Mem_Alf.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 172 Flags: HW AnchorPoint: "DigitAbove" -15 653 basechar 0 -AnchorPoint: "HighHamza" 254 775 basechar 0 AnchorPoint: "TashkilBelow" 0 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 127 -119 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 446 Flags: HW AnchorPoint: "DigitAbove" 39 562 basechar 0 -AnchorPoint: "HighHamza" 332 732 basechar 0 AnchorPoint: "TashkilBelow" 156 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 108 -114 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Lam_Alf_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 340 Flags: HW AnchorPoint: "DigitAbove" 24 635 basechar 0 -AnchorPoint: "HighHamza" 408 786 basechar 0 AnchorPoint: "TashkilBelow" 151 -327 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "HamzaBelow" 270 -137 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 194 Flags: HW AnchorPoint: "DigitAbove" -24 610 basechar 0 -AnchorPoint: "HighHamza" 244 732 basechar 0 AnchorPoint: "TashkilBelow" 132 -327 basechar 0 AnchorPoint: "TashkilAbove" 49 801 basechar 0 AnchorPoint: "HamzaBelow" 132 -188 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Narrow.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Narrow.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.fina__Narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.fina__Narrow.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 180 Flags: HW AnchorPoint: "DigitAbove" -12 630 basechar 0 -AnchorPoint: "HighHamza" 257 752 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 244 684 basechar 0 AnchorPoint: "HamzaAbove" 62 752 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Alf.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Alf.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,6 @@ Width: 217 Flags: HW AnchorPoint: "DigitAbove" -17 625 basechar 0 -AnchorPoint: "HighHamza" 276 796 basechar 0 AnchorPoint: "TashkilBelow" 122 -327 basechar 0 AnchorPoint: "TashkilAbove" 98 757 basechar 0 AnchorPoint: "HamzaAbove" 81 796 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 461 8 basechar 0 AnchorPoint: "DigitAbove" 327 697 basechar 0 -AnchorPoint: "HighHamza" 424 697 basechar 0 AnchorPoint: "VAbove" 327 697 basechar 0 AnchorPoint: "RingBelow" 366 375 basechar 0 AnchorPoint: "TaaAbove" 327 599 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 46 -49 basechar 0 AnchorPoint: "DigitAbove" 95 615 basechar 0 -AnchorPoint: "HighHamza" 193 615 basechar 0 AnchorPoint: "VAbove" 95 615 basechar 0 AnchorPoint: "RingBelow" 63 342 basechar 0 AnchorPoint: "TaaAbove" 95 518 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -13,7 +13,6 @@ AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "RingBelow" 91 54 basechar 0 AnchorPoint: "VAbove" 88 342 basechar 0 -AnchorPoint: "HighHamza" 207 481 basechar 0 AnchorPoint: "DigitAbove" 68 391 basechar 0 AnchorPoint: "DigitBelow" 96 -200 basechar 0 AnchorPoint: "DotBelowAlt" 96 -366 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 112 -176 basechar 0 AnchorPoint: "DigitAbove" 148 403 basechar 0 -AnchorPoint: "HighHamza" 229 403 basechar 0 AnchorPoint: "VAbove" 132 403 basechar 0 AnchorPoint: "RingBelow" 107 39 basechar 0 AnchorPoint: "TaaAbove" 148 305 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 86 -39 basechar 0 AnchorPoint: "DigitAbove" 91 625 basechar 0 -AnchorPoint: "HighHamza" 189 625 basechar 0 AnchorPoint: "VAbove" 91 625 basechar 0 AnchorPoint: "RingBelow" 49 293 basechar 0 AnchorPoint: "TaaAbove" 91 527 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -15,7 +15,6 @@ AnchorPoint: "DigitBelow" 96 -430 basechar 0 AnchorPoint: "HamzaBelow" 96 -381 basechar 0 AnchorPoint: "DotBelow" 96 -381 basechar 0 -AnchorPoint: "HighHamza" 207 481 basechar 0 LayerCount: 2 Fore Refer: 5710 -1 N 1 0 0 1 0 0 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DotBelowAlt" 72 -366 basechar 0 AnchorPoint: "DigitBelow" 72 -139 basechar 0 AnchorPoint: "DigitAbove" 63 618 basechar 0 -AnchorPoint: "HighHamza" 183 618 basechar 0 AnchorPoint: "VAbove" 63 618 basechar 0 AnchorPoint: "RingBelow" 60 190 basechar 0 AnchorPoint: "TaaAbove" 63 498 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TwoDotsBelowAlt" -15 -366 basechar 0 AnchorPoint: "DotBelowAlt" 39 -366 basechar 0 -AnchorPoint: "HighHamza" 151 500 basechar 0 AnchorPoint: "VAbove" 54 500 basechar 0 AnchorPoint: "RingBelow" 49 49 basechar 0 AnchorPoint: "TaaAbove" 76 403 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 479 -195 basechar 0 AnchorPoint: "DigitAbove" 366 684 basechar 0 -AnchorPoint: "HighHamza" 464 684 basechar 0 AnchorPoint: "VAbove" 366 684 basechar 0 AnchorPoint: "RingBelow" 386 376 basechar 0 AnchorPoint: "TaaAbove" 366 586 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 214 -115 basechar 0 AnchorPoint: "DigitAbove" 129 750 basechar 0 -AnchorPoint: "HighHamza" 312 -115 basechar 0 AnchorPoint: "VAbove" 214 -115 basechar 0 AnchorPoint: "RingBelow" 127 442 basechar 0 AnchorPoint: "TaaAbove" 129 652 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 250 -195 basechar 0 AnchorPoint: "DigitAbove" 226 439 basechar 0 -AnchorPoint: "HighHamza" 324 439 basechar 0 AnchorPoint: "VAbove" 226 439 basechar 0 AnchorPoint: "RingBelow" 176 127 basechar 0 AnchorPoint: "TaaAbove" 226 342 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "DotBelowAlt" 162 -366 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 107 -366 basechar 0 -AnchorPoint: "HighHamza" 142 843 basechar 0 AnchorPoint: "VAbove" 44 843 basechar 0 AnchorPoint: "RingBelow" 107 586 basechar 0 AnchorPoint: "TaaAbove" 44 745 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 89 -366 basechar 0 AnchorPoint: "DotBelowAlt" 143 -366 basechar 0 -AnchorPoint: "HighHamza" 162 591 basechar 0 AnchorPoint: "VAbove" 64 591 basechar 0 AnchorPoint: "RingBelow" 90 415 basechar 0 AnchorPoint: "TaaAbove" 64 527 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 240 -366 basechar 0 AnchorPoint: "DotBelowAlt" 294 -366 basechar 0 -AnchorPoint: "HighHamza" 315 552 basechar 0 AnchorPoint: "VAbove" 218 552 basechar 0 AnchorPoint: "RingBelow" 264 269 basechar 0 AnchorPoint: "TaaAbove" 218 455 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 104 -161 basechar 0 AnchorPoint: "DigitBelow" 104 -161 basechar 0 AnchorPoint: "DotBelow" 104 -161 basechar 0 -AnchorPoint: "HighHamza" 197 508 basechar 0 LayerCount: 2 Fore Refer: 67 -1 N 1 0 0 1 -10 73 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 95 -98 basechar 0 AnchorPoint: "DigitAbove" 119 464 basechar 0 -AnchorPoint: "HighHamza" 217 464 basechar 0 AnchorPoint: "VAbove" 119 464 basechar 0 AnchorPoint: "RingBelow" 98 132 basechar 0 AnchorPoint: "TaaAbove" 119 366 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -13,7 +13,6 @@ AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "RingBelow" 88 44 basechar 0 AnchorPoint: "VAbove" 59 616 basechar 0 -AnchorPoint: "HighHamza" 156 616 basechar 0 AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "DigitBelow" 145 -189 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 145 -122 basechar 0 AnchorPoint: "DigitAbove" 59 684 basechar 0 -AnchorPoint: "HighHamza" 156 684 basechar 0 AnchorPoint: "VAbove" 59 684 basechar 0 AnchorPoint: "RingBelow" 88 112 basechar 0 AnchorPoint: "TaaAbove" 59 586 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TwoDotsBelowAlt" 113 -366 basechar 0 AnchorPoint: "DotBelowAlt" 167 -366 basechar 0 -AnchorPoint: "HighHamza" 146 635 basechar 0 AnchorPoint: "VAbove" 60 635 basechar 0 AnchorPoint: "RingBelow" 171 244 basechar 0 AnchorPoint: "TaaAbove" 60 537 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "DotAbove" 85 439 basechar 0 AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "RingBelow" 107 73 basechar 0 -AnchorPoint: "HighHamza" 208 391 basechar 0 LayerCount: 2 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 107 -171 basechar 0 AnchorPoint: "DigitBelow" 107 -171 basechar 0 AnchorPoint: "DotBelow" 107 -171 basechar 0 -AnchorPoint: "HighHamza" 168 391 basechar 0 LayerCount: 2 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -17,7 +17,6 @@ AnchorPoint: "HamzaBelow" 203 -171 basechar 0 AnchorPoint: "DigitBelow" 203 -171 basechar 0 AnchorPoint: "DotBelow" 203 -171 basechar 0 -AnchorPoint: "HighHamza" 212 500 basechar 0 LayerCount: 2 Back SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -12,7 +12,6 @@ AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "RingBelow" -21 269 basechar 0 AnchorPoint: "VAbove" -145 744 basechar 0 -AnchorPoint: "HighHamza" -47 744 basechar 0 AnchorPoint: "DigitAbove" -145 744 basechar 0 AnchorPoint: "DigitBelow" 36 -128 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 341 -200 basechar 0 AnchorPoint: "DigitAbove" 257 599 basechar 0 -AnchorPoint: "HighHamza" 257 599 basechar 0 AnchorPoint: "VAbove" 257 599 basechar 0 AnchorPoint: "RingBelow" 322 405 basechar 0 AnchorPoint: "TaaAbove" 257 501 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 49 -146 basechar 0 AnchorPoint: "DigitAbove" 122 293 basechar 0 -AnchorPoint: "HighHamza" 171 293 basechar 0 AnchorPoint: "VAbove" 122 293 basechar 0 AnchorPoint: "RingBelow" 122 73 basechar 0 AnchorPoint: "TaaAbove" 122 244 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 37 -181 basechar 0 AnchorPoint: "DigitAbove" -31 551 basechar 0 -AnchorPoint: "HighHamza" 18 551 basechar 0 AnchorPoint: "VAbove" -31 551 basechar 0 AnchorPoint: "RingBelow" 45 361 basechar 0 AnchorPoint: "TaaAbove" -31 453 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 213 -302 basechar 0 AnchorPoint: "DigitAbove" 65 573 basechar 0 -AnchorPoint: "HighHamza" 125 573 basechar 0 AnchorPoint: "VAbove" 65 573 basechar 0 AnchorPoint: "RingBelow" 180 295 basechar 0 AnchorPoint: "TaaAbove" 65 453 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 188 -188 basechar 0 AnchorPoint: "DigitAbove" 173 439 basechar 0 -AnchorPoint: "HighHamza" 222 439 basechar 0 AnchorPoint: "VAbove" 173 439 basechar 0 AnchorPoint: "RingBelow" 156 107 basechar 0 AnchorPoint: "TaaAbove" 173 335 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 142 -293 basechar 0 AnchorPoint: "DigitAbove" 98 391 basechar 0 -AnchorPoint: "HighHamza" 147 391 basechar 0 AnchorPoint: "VAbove" 98 391 basechar 0 AnchorPoint: "RingBelow" 89 122 basechar 0 AnchorPoint: "TaaAbove" 98 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 218 -283 basechar 0 AnchorPoint: "DigitAbove" 179 391 basechar 0 -AnchorPoint: "HighHamza" 228 391 basechar 0 AnchorPoint: "VAbove" 179 391 basechar 0 AnchorPoint: "RingBelow" 269 59 basechar 0 AnchorPoint: "TaaAbove" 179 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 78 -186 basechar 0 AnchorPoint: "DigitAbove" 83 432 basechar 0 -AnchorPoint: "HighHamza" 131 432 basechar 0 AnchorPoint: "VAbove" 83 432 basechar 0 AnchorPoint: "RingBelow" 88 196 basechar 0 AnchorPoint: "TaaAbove" 83 334 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 132 -186 basechar 0 AnchorPoint: "DigitAbove" 137 488 basechar 0 -AnchorPoint: "HighHamza" 186 488 basechar 0 AnchorPoint: "VAbove" 137 488 basechar 0 AnchorPoint: "RingBelow" 127 195 basechar 0 AnchorPoint: "TaaAbove" 137 391 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 195 -391 basechar 0 AnchorPoint: "DigitAbove" 98 391 basechar 0 -AnchorPoint: "HighHamza" 146 391 basechar 0 AnchorPoint: "VAbove" 98 391 basechar 0 AnchorPoint: "RingBelow" 156 137 basechar 0 AnchorPoint: "TaaAbove" 98 293 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 127 -171 basechar 0 AnchorPoint: "DigitAbove" 122 425 basechar 0 -AnchorPoint: "HighHamza" 171 361 basechar 0 AnchorPoint: "VAbove" 122 361 basechar 0 AnchorPoint: "RingBelow" 122 59 basechar 0 AnchorPoint: "TaaAbove" 122 327 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 135 -171 basechar 0 AnchorPoint: "DigitAbove" 95 549 basechar 0 -AnchorPoint: "HighHamza" 144 549 basechar 0 AnchorPoint: "VAbove" 95 549 basechar 0 AnchorPoint: "RingBelow" 122 117 basechar 0 AnchorPoint: "TaaAbove" 95 451 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 98 -171 basechar 0 AnchorPoint: "DigitAbove" 24 664 basechar 0 -AnchorPoint: "HighHamza" 137 664 basechar 0 AnchorPoint: "VAbove" 39 635 basechar 0 AnchorPoint: "RingBelow" 107 88 basechar 0 AnchorPoint: "TaaAbove" 88 591 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 103 -171 basechar 0 AnchorPoint: "DigitAbove" 24 664 basechar 0 -AnchorPoint: "HighHamza" 137 664 basechar 0 AnchorPoint: "VAbove" 39 635 basechar 0 AnchorPoint: "RingBelow" 88 73 basechar 0 AnchorPoint: "TaaAbove" 88 591 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 130 -171 basechar 0 AnchorPoint: "DigitAbove" 8 601 basechar 0 -AnchorPoint: "HighHamza" 57 601 basechar 0 AnchorPoint: "VAbove" 8 601 basechar 0 AnchorPoint: "RingBelow" 51 357 basechar 0 AnchorPoint: "TaaAbove" -41 503 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitBelow" 233 -107 basechar 0 AnchorPoint: "DigitAbove" -51 610 basechar 0 -AnchorPoint: "HighHamza" -2 610 basechar 0 AnchorPoint: "VAbove" -51 610 basechar 0 AnchorPoint: "RingBelow" 43 347 basechar 0 AnchorPoint: "TaaAbove" -51 513 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Baa.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Baa.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -13,7 +13,6 @@ AnchorPoint: "DigitAbove" 39 425 basechar 0 AnchorPoint: "DigitBelow" 73 -430 basechar 0 AnchorPoint: "RingBelow" 88 59 basechar 0 -AnchorPoint: "HighHamza" 88 361 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitAbove" 343 377 basechar 0 AnchorPoint: "Stroke" 404 -104 basechar 0 -AnchorPoint: "HighHamza" 439 377 basechar 0 AnchorPoint: "RingBelow" 269 -63 basechar 0 AnchorPoint: "TashkilBelow" 391 -327 basechar 0 AnchorPoint: "TashkilAbove" 293 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.fina__Lam_Waw_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -4,7 +4,6 @@ Flags: HW AnchorPoint: "DigitAbove" 344 400 basechar 0 AnchorPoint: "Stroke" 425 -52 basechar 0 -AnchorPoint: "HighHamza" 439 400 basechar 0 AnchorPoint: "RingBelow" 267 -40 basechar 0 AnchorPoint: "TashkilBelow" 361 -327 basechar 0 AnchorPoint: "TashkilAbove" 295 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Waw.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Waw.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -5,7 +5,6 @@ AnchorPoint: "AlefAbove" 391 317 basechar 0 AnchorPoint: "DigitAbove" 347 439 basechar 0 AnchorPoint: "Stroke" 429 -21 basechar 0 -AnchorPoint: "HighHamza" 542 439 basechar 0 AnchorPoint: "RingBelow" 264 -10 basechar 0 AnchorPoint: "TashkilBelow" 396 -327 basechar 0 AnchorPoint: "TashkilAbove" 356 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -10,7 +10,6 @@ AnchorPoint: "HamzaBelow" 371 -435 basechar 0 AnchorPoint: "DigitAbove" 279 388 basechar 0 AnchorPoint: "AlefAbove" 293 98 basechar 0 -AnchorPoint: "HighHamza" 338 388 basechar 0 AnchorPoint: "TwoDotsAbove" 213 388 basechar 0 AnchorPoint: "DotAbove" 279 388 basechar 0 AnchorPoint: "VAbove" 219 388 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 271 270 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 346 -288 basechar 0 -AnchorPoint: "HighHamza" 320 270 basechar 0 AnchorPoint: "TwoDotsAbove" 217 270 basechar 0 AnchorPoint: "DotAbove" 271 270 basechar 0 AnchorPoint: "VAbove" 222 270 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Faa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 229 186 basechar 0 AnchorPoint: "AlefAbove" 278 0 basechar 0 AnchorPoint: "RingBelow" 293 -439 basechar 0 -AnchorPoint: "HighHamza" 439 186 basechar 0 AnchorPoint: "TwoDotsAbove" 176 186 basechar 0 AnchorPoint: "DotAbove" 229 186 basechar 0 AnchorPoint: "VAbove" 278 186 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -9,7 +9,6 @@ AnchorPoint: "DigitAbove" 259 244 basechar 0 AnchorPoint: "AlefAbove" 293 -49 basechar 0 AnchorPoint: "RingBelow" 312 -293 basechar 0 -AnchorPoint: "HighHamza" 439 332 basechar 0 AnchorPoint: "TwoDotsAbove" 205 244 basechar 0 AnchorPoint: "DotAbove" 259 244 basechar 0 AnchorPoint: "VAbove" 210 244 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 243 251 basechar 0 AnchorPoint: "AlefAbove" 145 251 basechar 0 AnchorPoint: "RingBelow" 298 -262 basechar 0 -AnchorPoint: "HighHamza" 337 83 basechar 0 AnchorPoint: "TwoDotsAbove" 189 251 basechar 0 AnchorPoint: "DotAbove" 243 251 basechar 0 AnchorPoint: "VAbove" 194 251 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Kaf_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 229 356 basechar 0 AnchorPoint: "AlefAbove" 132 356 basechar 0 AnchorPoint: "RingBelow" 293 -167 basechar 0 -AnchorPoint: "HighHamza" 346 159 basechar 0 AnchorPoint: "TwoDotsAbove" 176 356 basechar 0 AnchorPoint: "DotAbove" 229 356 basechar 0 AnchorPoint: "VAbove" 181 356 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Lam_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -7,7 +7,6 @@ AnchorPoint: "DigitAbove" 284 261 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 308 -312 basechar 0 -AnchorPoint: "HighHamza" 333 261 basechar 0 AnchorPoint: "TwoDotsAbove" 230 261 basechar 0 AnchorPoint: "DotAbove" 284 261 basechar 0 AnchorPoint: "VAbove" 235 261 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -8,7 +8,6 @@ AnchorPoint: "TashkilBelow" 368 -361 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "RingBelow" 346 -288 basechar 0 -AnchorPoint: "HighHamza" 320 269 basechar 0 AnchorPoint: "VAbove" 222 269 basechar 0 AnchorPoint: "Tail" 155 101 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/a_Yaa.isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/a_Yaa.isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,7 +6,6 @@ AnchorPoint: "DigitAbove" 286 404 basechar 0 AnchorPoint: "AlefAbove" 293 171 basechar 0 AnchorPoint: "RingBelow" 312 -146 basechar 0 -AnchorPoint: "HighHamza" 718 532 basechar 0 AnchorPoint: "TwoDotsAbove" 232 404 basechar 0 AnchorPoint: "DotAbove" 286 404 basechar 0 AnchorPoint: "VAbove" 237 404 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/font.props fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/font.props 2020-06-02 19:42:15.000000000 +0000 @@ -3,7 +3,7 @@ FullName: Amiri FamilyName: Amiri Weight: Regular -Copyright: Copyright (c) 2010-%s, Khaled Hosny .\nPortions copyright (c) 2010, Sebastian Kosch . +Copyright: Version: %s ItalicAngle: 0 UnderlinePosition: -537 @@ -25,18 +25,18 @@ LineGap: 0 VLineGap: 0 Panose: 0 0 5 0 0 0 0 0 0 0 -OS2TypoAscent: 1123 +OS2TypoAscent: 1124 OS2TypoAOffset: 0 -OS2TypoDescent: -635 +OS2TypoDescent: -634 OS2TypoDOffset: 0 OS2TypoLinegap: 0 OS2WinAscent: 732 OS2WinAOffset: 1 OS2WinDescent: 732 OS2WinDOffset: 1 -HheadAscent: 1123 +HheadAscent: 1124 HheadAOffset: 0 -HheadDescent: -635 +HheadDescent: -634 HheadDOffset: 0 OS2CapHeight: 646 OS2XHeight: 433 @@ -51,7 +51,6 @@ Lookup: 260 0 0 "'mark' Two Dots Below" { "'mark' Two Dots Below-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Two Dots Below Alt" { "'mark' Two Dots Below Alt-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Hamza Above" { "'mark' Hamza Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] -Lookup: 260 0 0 "'mark' High Hamza" { "'mark' High Hamza-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' V Mark Above" { "'mark' V Mark Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Small Taa Above" { "'mark' Small Taa Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] Lookup: 260 0 0 "'mark' Small Taa Below" { "'mark' Small Taa Below-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] @@ -80,15 +79,7 @@ Lookup: 260 0 0 "'mark' Noon Above" { "'mark' Noon Above-1" } ['mark' ('DFLT' <'dflt' > 'arab' <'dflt' 'ARA ' 'URD ' 'SND ' 'KSH ' 'MLY ' > ) ] MarkAttachClasses: 1 DEI: 91125 -TtTable: prep -PUSHW_1 - 511 -SCANCTRL -PUSHB_1 - 4 -SCANTYPE -EndTTInstrs -LangName: 1033 "" "" "" "" "" "" "" "" "" "Khaled Hosny" "Amiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named." "http://www.amirifont.org" "http://www.amirifont.org" "This Font Software is licensed under the SIL Open Font License, Version 1.1. This Font Software is distributed on an +ACIA-AS IS+ACIA BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the SIL Open Font License for the specific language, permissions and limitations governing your use of this Font Software." "http://scripts.sil.org/OFL" +LangName: 1033 "" "" "" "" "" "" "" "" "" "Khaled Hosny" "Amiri is a classical Arabic typeface in Naskh style for typesetting books and other running text. Its design is a revival of the beautiful typeface pioneered in early 20th century by Bulaq Press in Cairo, also known as Amiria Press, after which the font is named." "http://www.amirifont.org" "http://www.amirifont.org" "" "" "" "" "" "" "+BjUGUAZBBlIA +Bi4GTgZEBlIGQgZO +Bi4GTgZIBlIGLwZN +BkMGTgZFBlAGKwZSBkQGUAAA +BnEGRAY0BlEGTgZFBlIGMwZQ +BiUGUAYwBlIA +BigGTgYyBk4GOgZOBioGUgAA +BkoGTgYtBlIGOAZOBkkGcAAA +BnEGRAY2BlEGTgYsBlAGSgY5Bk8A +BigGUAZHBk4GJwAA +BkYGTgYsBlIGRAZOBicGIQZO +BkUGUAY5BlIGNwZOBicGMQZQ." GaspTable: 1 65535 15 1 Encoding: UnicodeFull UnicodeInterp: none @@ -115,5 +106,5 @@ 2000 -92.7734375 l 1049 Named: "Digits base" EndSplineSet -AnchorClass2: "TashkilBelowHamza" "'mkmk' Tashkil below Hamza-1" "MarkAbove" "'mark' Generic Mark Anchor-1" "MarkBelow" "'mark' Generic Mark Anchor-2" "TashkilAbove" "'mark' Tashkil Above Base-1" "TashkilBelow" "'mark' Tashkil Below Base-1" "TashkilTashkilAbove" "'mkmk' Tashkil to Tashkil Above-1" "TashkilTashkilBelow" "'mkmk' Tashkil to Tashkil Below-1" "TashkilTashkilAbove2" "'mkmk' Tashkil to Tashkil Above 2-1" "TashkilAboveDot" "Tashkil Above Dot-1" "TashkilBelowDot" "Tashkil Below Dot-1" "HamzaAbove" "'mark' Hamza Above-1" "HamzaBelow" "'mark' Hamza Below-1" "HighHamza" "'mark' High Hamza-1" "DotAbove" "'mark' Dot Above-1" "DotBelow" "'mark' Dot Below-1" "DotBelowAlt" "'mark' Dot Below Alt-1" "TwoDotsAbove" "'mark' Two Dots Above-1" "TwoDotsBelow" "'mark' Two Dots Below-1" "TwoDotsBelowAlt" "'mark' Two Dots Below Alt-1" "DigitAbove" "'mark' Digit Above-1" "DigitBelow" "'mark' Digit Below-1" "MarkDotAbove" "'mkmk' Mark to Dot Above-1" "MarkDotBelow" "'mkmk' Mark to Dot Below-1" "TaaAbove" "'mark' Small Taa Above-1" "TaaBelow" "'mark' Small Taa Below-1" "AlefAbove" "'mark' Small Alef Above-1" "SeenAbove" "'mark' Seen Above-1" "SeenBelow" "'mark' Seen Below-1" "NoonAbove" "'mark' Noon Above-1" "VAbove" "'mark' V Mark Above-1" "RingDash" "'mkmk' Ring to Dash-1" "RingBelow" "'mark' Ring Below-1" "DotAlt" "'mark' Dot Alt-1" "DotHmaza" "'mkmk' Dot above Hamza-1" "Tail" "'mark' Yaa Tail-1" "Dash" "'mark' Dash-1" "Stroke" "'mark' Stroke-1" "cursive" "'curs' Cursive Attachment-1" +AnchorClass2: "TashkilBelowHamza" "'mkmk' Tashkil below Hamza-1" "MarkAbove" "'mark' Generic Mark Anchor-1" "MarkBelow" "'mark' Generic Mark Anchor-2" "TashkilAbove" "'mark' Tashkil Above Base-1" "TashkilBelow" "'mark' Tashkil Below Base-1" "TashkilTashkilAbove" "'mkmk' Tashkil to Tashkil Above-1" "TashkilTashkilBelow" "'mkmk' Tashkil to Tashkil Below-1" "TashkilTashkilAbove2" "'mkmk' Tashkil to Tashkil Above 2-1" "TashkilAboveDot" "Tashkil Above Dot-1" "TashkilBelowDot" "Tashkil Below Dot-1" "HamzaAbove" "'mark' Hamza Above-1" "HamzaBelow" "'mark' Hamza Below-1" "DotAbove" "'mark' Dot Above-1" "DotBelow" "'mark' Dot Below-1" "DotBelowAlt" "'mark' Dot Below Alt-1" "TwoDotsAbove" "'mark' Two Dots Above-1" "TwoDotsBelow" "'mark' Two Dots Below-1" "TwoDotsBelowAlt" "'mark' Two Dots Below Alt-1" "DigitAbove" "'mark' Digit Above-1" "DigitBelow" "'mark' Digit Below-1" "MarkDotAbove" "'mkmk' Mark to Dot Above-1" "MarkDotBelow" "'mkmk' Mark to Dot Below-1" "TaaAbove" "'mark' Small Taa Above-1" "TaaBelow" "'mark' Small Taa Below-1" "AlefAbove" "'mark' Small Alef Above-1" "SeenAbove" "'mark' Seen Above-1" "SeenBelow" "'mark' Seen Below-1" "NoonAbove" "'mark' Noon Above-1" "VAbove" "'mark' V Mark Above-1" "RingDash" "'mkmk' Ring to Dash-1" "RingBelow" "'mark' Ring Below-1" "DotAlt" "'mark' Dot Alt-1" "DotHmaza" "'mkmk' Dot above Hamza-1" "Tail" "'mark' Yaa Tail-1" "Dash" "'mark' Dash-1" "Stroke" "'mark' Stroke-1" "cursive" "'curs' Cursive Attachment-1" EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/fraction.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -1,5 +1,6 @@ StartChar: fraction Encoding: 8260 8260 6067 +AltUni2: 002215.ffffffff.0 Width: 123 Flags: HW LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/nonmarkingreturn.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/nonmarkingreturn.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/nonmarkingreturn.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/nonmarkingreturn.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,6 @@ +StartChar: nonmarkingreturn +Encoding: 1119144 -1 6305 +Width: 333 +Flags: HW +LayerCount: 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/.notdef.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/.notdef.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/.notdef.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/.notdef.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,19 @@ +StartChar: .notdef +Encoding: 1119142 -1 6303 +Width: 364 +Flags: HW +LayerCount: 2 +Fore +SplineSet +33 0 m 1 + 33 666 l 1 + 298 666 l 1 + 298 0 l 1 + 33 0 l 1 +66 33 m 1 + 265 33 l 1 + 265 633 l 1 + 66 633 l 1 + 66 33 l 1 +EndSplineSet +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/.null.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/.null.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/.null.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/.null.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,6 @@ +StartChar: .null +Encoding: 1119143 -1 6304 +Width: 0 +Flags: HW +LayerCount: 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallmeem.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallmeem.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallmeem.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallmeem.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10 @@ +StartChar: smallmeem.above +Encoding: 1119118 -1 6278 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 130 mark 0 +LayerCount: 2 +Fore +Refer: 4592 1762 N 1 0 0 1 -119.5 -710 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallnoon.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallnoon.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallnoon.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallnoon.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,11 @@ +StartChar: smallnoon.above +Encoding: 1119116 -1 6273 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 120 mark 0 +AnchorPoint: "DigitAbove" 0 211 mark 0 +LayerCount: 2 +Fore +Refer: 874 1606 N 0.4 0 0 0.4 -114.608 164.053 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallteh.above.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallteh.above.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/smallteh.above.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/smallteh.above.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10 @@ +StartChar: smallteh.above +Encoding: 1119117 -1 6274 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TaaAbove" 0 120 mark 0 +LayerCount: 2 +Fore +Refer: 545 1578 N 0.4 0 0 0.4 -185.485 149.8 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/twostrokes.below.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/twostrokes.below.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/twostrokes.below.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/twostrokes.below.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -6,27 +6,27 @@ LayerCount: 2 Back SplineSet --60.05859375 -23.4375 m 1025,12,-1 --97.65625 275.390625 m 1,0,1 - -73.2421875 285.807617188 -44.1083984375 293.131835938 -10.25390625 297.36328125 c 1,2,3 - -34.0166015625 317.545898438 -52.5712890625 325.846679688 -65.91796875 322.265625 c 0,4,5 - -84.1474609375 317.3828125 -94.7265625 301.7578125 -97.65625 275.390625 c 1,0,1 --149.90234375 238.76953125 m 1,6,7 - -144.368164062 282.063476562 -132.080078125 323.405273438 -113.037109375 362.79296875 c 128,-1,8 - -93.994140625 402.180664062 -73.4052734375 425.78125 -51.26953125 433.59375 c 1,9,10 - -20.01953125 445.3125 18.06640625 432.291992188 62.98828125 394.53125 c 0,11,12 - 86.7509765625 374.348632812 108.3984375 351.5625 127.9296875 326.171875 c 0,13,14 - 133.7890625 318.684570312 136.23046875 311.686523438 135.25390625 305.17578125 c 0,15,16 - 125.163085938 246.907226562 118.815429688 214.111328125 116.2109375 206.787109375 c 128,-1,17 - 113.606445312 199.462890625 108.073242188 196.614257812 99.609375 198.2421875 c 1,18,19 - -11.0673828125 224.284179688 -94.23828125 204.264648438 -149.90234375 138.18359375 c 0,20,21 - -154.78515625 132.32421875 -156.25 125.813476562 -154.296875 118.65234375 c 0,22,23 - -130.534179688 31.73828125 -108.561523438 -63.6396484375 -88.37890625 -167.48046875 c 0,24,25 - -58.4306640625 -321.77734375 -55.8271484375 -400.390625 -80.56640625 -403.3203125 c 0,26,27 - -89.0302734375 -404.296875 -94.0751953125 -395.670898438 -95.703125 -377.44140625 c 0,28,29 - -101.887695312 -312.98828125 -115.72265625 -238.606445312 -137.20703125 -154.296875 c 25,30,31 - -176.920898438 -1.3017578125 -194.010742188 94.23828125 -188.4765625 132.32421875 c 0,32,33 - -180.989257812 183.430664062 -168.131835938 218.913085938 -149.90234375 238.76953125 c 1,6,7 +-60.05859375 -23.4375 m 1025 +-97.65625 275.390625 m 1 + -73.2421875 285.807617188 -44.1083984375 293.131835938 -10.25390625 297.36328125 c 1 + -34.0166015625 317.545898438 -52.5712890625 325.846679688 -65.91796875 322.265625 c 0 + -84.1474609375 317.3828125 -94.7265625 301.7578125 -97.65625 275.390625 c 1 +-149.90234375 238.76953125 m 1 + -144.368164062 282.063476562 -132.080078125 323.405273438 -113.037109375 362.79296875 c 128 + -93.994140625 402.180664062 -73.4052734375 425.78125 -51.26953125 433.59375 c 1 + -20.01953125 445.3125 18.06640625 432.291992188 62.98828125 394.53125 c 0 + 86.7509765625 374.348632812 108.3984375 351.5625 127.9296875 326.171875 c 0 + 133.7890625 318.684570312 136.23046875 311.686523438 135.25390625 305.17578125 c 0 + 125.163085938 246.907226562 118.815429688 214.111328125 116.2109375 206.787109375 c 128 + 113.606445312 199.462890625 108.073242188 196.614257812 99.609375 198.2421875 c 1 + -11.0673828125 224.284179688 -94.23828125 204.264648438 -149.90234375 138.18359375 c 0 + -154.78515625 132.32421875 -156.25 125.813476562 -154.296875 118.65234375 c 0 + -130.534179688 31.73828125 -108.561523438 -63.6396484375 -88.37890625 -167.48046875 c 0 + -58.4306640625 -321.77734375 -55.8271484375 -400.390625 -80.56640625 -403.3203125 c 0 + -89.0302734375 -404.296875 -94.0751953125 -395.670898438 -95.703125 -377.44140625 c 0 + -101.887695312 -312.98828125 -115.72265625 -238.606445312 -137.20703125 -154.296875 c 25 + -176.920898438 -1.3017578125 -194.010742188 94.23828125 -188.4765625 132.32421875 c 0 + -180.989257812 183.430664062 -168.131835938 218.913085938 -149.90234375 238.76953125 c 1 EndSplineSet Fore SplineSet diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 5774 -Width: 0 -GlyphClass: 4 -Flags: HW -AnchorPoint: "TashkilAbove" 124 801 mark 0 -AnchorPoint: "MarkAbove" 124 801 mark 0 -AnchorPoint: "TashkilTashkilAbove" 125 1081 basemark 0 -LayerCount: 2 -Fore -SplineSet -43 927 m 0 - 43 907 49 889 62 874 c 0 - 79 855 100 846 124 846 c 0 - 144 846 162 852 177 865 c 0 - 196 882 205 903 205 927 c 0 - 205 947 199 965 186 980 c 0 - 169 999 148 1008 124 1008 c 0 - 104 1008 86 1001 71 988 c 0 - 52 971 43 951 43 927 c 0 -6 927 m 0 - 6 963 20 993 47 1016 c 0 - 69 1035 95 1045 124 1045 c 0 - 160 1045 190 1030 213 1003 c 0 - 232 981 241 956 242 927 c 0 - 242 891 228 860 201 837 c 0 - 179 818 153 810 124 809 c 0 - 88 809 58 823 35 850 c 0 - 16 872 6 898 6 927 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni030A.quran.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni030A.quran.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni030A.quran.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni030A.quran.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,31 @@ +StartChar: uni030A.quran +Encoding: 778 -1 5774 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TashkilAbove" 124 801 mark 0 +AnchorPoint: "MarkAbove" 124 801 mark 0 +AnchorPoint: "TashkilTashkilAbove" 125 1081 basemark 0 +LayerCount: 2 +Fore +SplineSet +43 927 m 0 + 43 907 49 889 62 874 c 0 + 79 855 100 846 124 846 c 0 + 144 846 162 852 177 865 c 0 + 196 882 205 903 205 927 c 0 + 205 947 199 965 186 980 c 0 + 169 999 148 1008 124 1008 c 0 + 104 1008 86 1001 71 988 c 0 + 52 971 43 951 43 927 c 0 +6 927 m 0 + 6 963 20 993 47 1016 c 0 + 69 1035 95 1045 124 1045 c 0 + 160 1045 190 1030 213 1003 c 0 + 232 981 241 956 242 927 c 0 + 242 891 228 860 201 837 c 0 + 179 818 153 810 124 809 c 0 + 88 809 58 823 35 850 c 0 + 16 872 6 898 6 927 c 0 +EndSplineSet +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0325.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0325.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0325.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0325.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,12 +0,0 @@ -StartChar: uni0325 -Encoding: 805 805 5775 -Width: 0 -GlyphClass: 4 -Flags: HW -AnchorPoint: "TashkilBelow" 125 -303 mark 0 -AnchorPoint: "TashkilTashkilBelow" 125 -584 basemark 0 -AnchorPoint: "MarkBelow" 125 -303 mark 0 -LayerCount: 2 -Fore -Refer: 5774 778 N 1 0 0 1 0 -1349 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0325.quran.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0325.quran.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0325.quran.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0325.quran.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,12 @@ +StartChar: uni0325.quran +Encoding: 805 -1 5775 +Width: 0 +GlyphClass: 4 +Flags: HW +AnchorPoint: "TashkilBelow" 125 -303 mark 0 +AnchorPoint: "TashkilTashkilBelow" 125 -584 basemark 0 +AnchorPoint: "MarkBelow" 125 -303 mark 0 +LayerCount: 2 +Fore +Refer: 5774 -1 N 1 0 0 1 0 -1349 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116223 -1 2395 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 464 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114498 -1 498 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 508 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1576 1576 558 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 537 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116657 -1 2829 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116044 -1 2216 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118118 -1 4291 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 61 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118754 -1 5731 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118779 -1 5756 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 111 -503 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116185 -1 2357 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118140 -1 4313 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 127 -439 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116245 -1 2417 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118162 -1 4335 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 101 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118894 -1 5876 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115267 -1 1439 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118030 -1 4203 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115153 -1 1325 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117986 -1 4159 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 54 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116698 -1 2870 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118206 -1 4379 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 474 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116739 -1 2911 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118228 -1 4401 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117707 -1 3879 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118338 -1 4511 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 265 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115208 -1 1380 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118008 -1 4181 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115867 -1 2039 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118096 -1 4269 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 157 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117611 -1 3783 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118316 -1 4489 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 309 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115629 -1 1801 Width: 185 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118052 -1 4225 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 118 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114916 -1 1088 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117964 -1 4137 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 109 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116573 -1 2745 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118184 -1 4357 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115698 -1 1870 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118074 -1 4247 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 159 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117482 -1 3654 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118294 -1 4467 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 182 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114520 -1 520 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116893 -1 3065 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118250 -1 4423 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 122 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117942 -1 4115 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 63 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116987 -1 3159 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 149 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118272 -1 4445 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -454 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118512 -1 4726 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116085 -1 2257 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115493 -1 1665 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116286 -1 2458 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115308 -1 1480 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 251 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117748 -1 3920 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117654 -1 3826 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 157 -381 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115058 -1 1230 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116387 -1 2559 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115750 -1 1922 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116516 -1 2688 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -459 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114561 -1 580 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116934 -1 3106 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115405 -1 1577 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116346 -1 2518 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115111 -1 1283 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116143 -1 2315 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0628.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0628.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118848 -1 5830 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115784 -1 1956 Width: 291 Flags: HW +AnchorPoint: "TaaAbove" 319 361 basechar 0 AnchorPoint: "TashkilAbove" 173 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114950 -1 1122 Width: 299 Flags: HW +AnchorPoint: "TaaAbove" 313 343 basechar 0 AnchorPoint: "TashkilAbove" 166 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114798 -1 904 Width: 343 Flags: HW +AnchorPoint: "TaaAbove" 320 300 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 244 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Haa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Haa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Haa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Haa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116447 -1 2619 Width: 299 Flags: HW +AnchorPoint: "TaaAbove" 342 261 basechar 0 AnchorPoint: "TashkilAbove" 197 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115818 -1 1990 Width: 275 Flags: HW +AnchorPoint: "TaaAbove" 146 195 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 210 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Kaf_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115931 -1 2103 Width: 270 Flags: HW +AnchorPoint: "TaaAbove" 146 220 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Lam_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Lam_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Lam_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Lam_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116471 -1 2643 Width: 292 Flags: HW +AnchorPoint: "TaaAbove" 328 363 basechar 0 AnchorPoint: "TashkilAbove" 74 801 basechar 0 AnchorPoint: "TashkilBelow" 181 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Mem_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Mem_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Mem_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Mem_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115537 -1 1709 Width: 473 Flags: HW +AnchorPoint: "TaaAbove" 355 355 basechar 0 AnchorPoint: "TashkilAbove" 254 337 basechar 0 AnchorPoint: "TashkilBelow" 210 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116618 -1 2790 Width: 553 Flags: HW +AnchorPoint: "TaaAbove" 325 242 basechar 0 AnchorPoint: "TashkilAbove" 179 801 basechar 0 AnchorPoint: "TashkilBelow" 229 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0631.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0631.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1585 1585 920 Width: 399 Flags: HW +AnchorPoint: "TaaAbove" 160 434 basechar 0 AnchorPoint: "TashkilAbove" 195 801 basechar 0 AnchorPoint: "TashkilBelow" 248 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115343 -1 1515 Width: 457 Flags: HW +AnchorPoint: "DigitAbove" 279 388 basechar 0 AnchorPoint: "TashkilAbove" 225 801 basechar 0 AnchorPoint: "AlefAbove" 293 98 basechar 0 AnchorPoint: "TashkilBelow" 380 -547 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116551 -1 2723 Width: 421 Flags: HW +AnchorPoint: "DigitAbove" 271 270 basechar 0 AnchorPoint: "TashkilAbove" 191 801 basechar 0 AnchorPoint: "TashkilBelow" 377 -596 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Faa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115007 -1 1179 Width: 476 Flags: HW +AnchorPoint: "DigitAbove" 229 186 basechar 0 AnchorPoint: "TashkilAbove" 342 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -693 basechar 0 AnchorPoint: "AlefAbove" 278 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114887 -1 1043 Width: 585 Flags: HW +AnchorPoint: "DigitAbove" 259 244 basechar 0 AnchorPoint: "TashkilAbove" 293 801 basechar 0 AnchorPoint: "TashkilBelow" 375 -599 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115973 -1 2145 Width: 471 Flags: HW +AnchorPoint: "DigitAbove" 243 251 basechar 0 AnchorPoint: "TashkilAbove" 186 801 basechar 0 AnchorPoint: "TashkilBelow" 371 -573 basechar 0 AnchorPoint: "AlefAbove" 145 251 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Kaf_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117565 -1 3737 Width: 476 Flags: HW +AnchorPoint: "DigitAbove" 229 356 basechar 0 AnchorPoint: "TashkilAbove" 195 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -473 basechar 0 AnchorPoint: "AlefAbove" 132 356 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Lam_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115365 -1 1537 Width: 469 Flags: HW +AnchorPoint: "DigitAbove" 284 261 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 336 -625 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Post_Tooth.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Post_Tooth.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.fina__Post_Tooth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.fina__Post_Tooth.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116635 -1 2807 Width: 730 Flags: HW +AnchorPoint: "DigitAbove" 271 269 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "AlefAbove" 293 0 basechar 0 AnchorPoint: "TashkilBelow" 377 -596 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1610 1610 1059 Width: 764 Flags: HW +AnchorPoint: "DigitAbove" 286 404 basechar 0 AnchorPoint: "TashkilAbove" 391 801 basechar 0 AnchorPoint: "TashkilBelow" 365 -458 basechar 0 AnchorPoint: "AlefAbove" 293 171 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116650 -1 2822 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 +AnchorPoint: "DigitAbove" 327 697 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116037 -1 2209 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 +AnchorPoint: "DigitAbove" 95 615 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118125 -1 4298 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 +AnchorPoint: "DigitAbove" 95 615 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 110 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118747 -1 5724 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 +AnchorPoint: "DigitAbove" 68 391 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118786 -1 5763 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 +AnchorPoint: "DigitAbove" 68 391 basechar 0 AnchorPoint: "TashkilBelow" 94 -527 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116178 -1 2350 Width: 295 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 +AnchorPoint: "DigitAbove" 148 403 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118147 -1 4320 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 +AnchorPoint: "DigitAbove" 148 403 basechar 0 AnchorPoint: "TashkilBelow" 123 -464 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116238 -1 2410 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 +AnchorPoint: "DigitAbove" 91 625 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118169 -1 4342 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 +AnchorPoint: "DigitAbove" 91 625 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 96 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118887 -1 5869 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 +AnchorPoint: "DigitAbove" 117 391 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115260 -1 1432 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 +AnchorPoint: "DigitAbove" 63 618 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118037 -1 4210 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 +AnchorPoint: "DigitAbove" 63 618 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 70 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115146 -1 1318 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 +AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117993 -1 4166 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 +AnchorPoint: "DigitAbove" 76 501 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116691 -1 2863 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 +AnchorPoint: "DigitAbove" 366 684 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118213 -1 4386 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 +AnchorPoint: "DigitAbove" 366 684 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 474 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116732 -1 2904 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 +AnchorPoint: "DigitAbove" 129 750 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118235 -1 4408 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 +AnchorPoint: "DigitAbove" 129 750 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 224 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117700 -1 3872 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 +AnchorPoint: "DigitAbove" 226 439 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118345 -1 4518 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 +AnchorPoint: "DigitAbove" 226 439 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 261 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115201 -1 1373 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 +AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118015 -1 4188 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 +AnchorPoint: "DigitAbove" 44 843 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 171 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115860 -1 2032 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 +AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118103 -1 4276 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 +AnchorPoint: "DigitAbove" 64 591 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 153 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117604 -1 3776 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 +AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118323 -1 4496 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 +AnchorPoint: "DigitAbove" 218 552 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 304 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115622 -1 1794 Width: 145 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 +AnchorPoint: "DigitAbove" 100 508 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118059 -1 4232 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 +AnchorPoint: "DigitAbove" 100 508 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 113 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1114909 -1 1081 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 +AnchorPoint: "DigitAbove" 119 464 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117971 -1 4144 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 +AnchorPoint: "DigitAbove" 119 464 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 105 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116566 -1 2738 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 +AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118191 -1 4364 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 +AnchorPoint: "DigitAbove" 59 616 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 138 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115691 -1 1863 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 +AnchorPoint: "DigitAbove" 59 684 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118081 -1 4254 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 +AnchorPoint: "DigitAbove" 59 684 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 160 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117475 -1 3647 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 +AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118301 -1 4474 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 +AnchorPoint: "DigitAbove" 60 635 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 177 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1114513 -1 513 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 +AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116886 -1 3058 Width: 314 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 +AnchorPoint: "DigitAbove" 46 439 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118257 -1 4430 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 +AnchorPoint: "DigitAbove" 46 439 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 147 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117949 -1 4122 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 +AnchorPoint: "DigitAbove" 85 439 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 88 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116980 -1 3152 Width: 332 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 +AnchorPoint: "DigitAbove" 115 500 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118279 -1 4452 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 +AnchorPoint: "DigitAbove" 115 500 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 172 -479 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118505 -1 4719 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 +AnchorPoint: "DigitAbove" -145 744 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116078 -1 2250 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 +AnchorPoint: "DigitAbove" 257 599 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115486 -1 1658 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 +AnchorPoint: "DigitAbove" 122 293 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116279 -1 2451 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 +AnchorPoint: "DigitAbove" -31 551 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115301 -1 1473 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 +AnchorPoint: "DigitAbove" 65 573 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 277 -415 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117741 -1 3913 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 +AnchorPoint: "DigitAbove" 173 439 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1117647 -1 3819 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 +AnchorPoint: "DigitAbove" 98 391 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 152 -405 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115051 -1 1223 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 +AnchorPoint: "DigitAbove" 179 391 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 215 -396 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116380 -1 2552 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 +AnchorPoint: "DigitAbove" 83 432 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115743 -1 1915 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 +AnchorPoint: "DigitAbove" 137 488 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116509 -1 2681 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 +AnchorPoint: "DigitAbove" 98 391 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 259 -503 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1114554 -1 573 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 +AnchorPoint: "DigitAbove" 122 425 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116927 -1 3099 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 +AnchorPoint: "DigitAbove" 95 549 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115398 -1 1570 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 +AnchorPoint: "DigitAbove" 24 664 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116339 -1 2511 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 +AnchorPoint: "DigitAbove" 24 664 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1115104 -1 1276 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 +AnchorPoint: "DigitAbove" 8 601 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1116136 -1 2308 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 +AnchorPoint: "DigitAbove" -51 610 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni064A.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni064A.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,8 @@ Encoding: 1118841 -1 5823 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 +AnchorPoint: "DigitAbove" 39 425 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0660.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0660.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0660.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0660.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0660.numr +Encoding: 1119119 -1 6280 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4559 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0661.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0661.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0661.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0661.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0661.numr +Encoding: 1119120 -1 6281 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4560 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0662.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0662.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0662.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0662.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0662.numr +Encoding: 1119121 -1 6282 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4561 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0663.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0663.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0663.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0663.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0663.numr +Encoding: 1119122 -1 6283 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4562 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0664.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0664.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0664.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0664.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0664.numr +Encoding: 1119123 -1 6284 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4563 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0665.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0665.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0665.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0665.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0665.numr +Encoding: 1119124 -1 6285 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4564 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0666.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0666.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0666.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0666.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0666.numr +Encoding: 1119125 -1 6286 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4565 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0667.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0667.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0667.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0667.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0667.numr +Encoding: 1119126 -1 6287 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4566 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0668.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0668.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0668.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0668.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0668.numr +Encoding: 1119127 -1 6288 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4567 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0669.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0669.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni0669.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni0669.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni0669.numr +Encoding: 1119128 -1 6289 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4568 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116217 -1 2389 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 464 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114492 -1 492 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 508 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1646 1646 552 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 537 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116648 -1 2820 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116035 -1 2207 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118745 -1 5722 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 96 -327 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116176 -1 2348 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 73 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116236 -1 2408 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118885 -1 5867 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 233 -493 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115258 -1 1430 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115144 -1 1316 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 39 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116689 -1 2861 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116730 -1 2902 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117698 -1 3870 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115199 -1 1371 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115858 -1 2030 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 143 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117602 -1 3774 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115620 -1 1792 Width: 166 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114907 -1 1079 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116564 -1 2736 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 128 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115689 -1 1861 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117473 -1 3645 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 167 -391 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114511 -1 511 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 83 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116884 -1 3056 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116978 -1 3150 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 105 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118503 -1 4717 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116076 -1 2248 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115484 -1 1656 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116277 -1 2449 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 37 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115299 -1 1471 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 251 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117739 -1 3911 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 164 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117645 -1 3817 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 187 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115049 -1 1221 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116378 -1 2550 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 19 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115741 -1 1913 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116507 -1 2679 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 220 -459 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114552 -1 571 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116925 -1 3097 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 135 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115396 -1 1568 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116337 -1 2509 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115102 -1 1274 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116134 -1 2306 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni066E.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni066E.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118839 -1 5821 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilBelow" 104 -493 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.fina__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.fina__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.fina__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.fina__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116221 -1 2393 Width: 772 Flags: HW +AnchorPoint: "TaaAbove" 423 327 basechar 0 AnchorPoint: "TashkilAbove" 423 801 basechar 0 AnchorPoint: "TashkilBelow" 456 -368 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114496 -1 496 Width: 883 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 480 -387 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1662 1662 556 Width: 926 Flags: HW +AnchorPoint: "TaaAbove" 461 327 basechar 0 AnchorPoint: "TashkilAbove" 461 801 basechar 0 AnchorPoint: "TashkilBelow" 535 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Above_Haa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Above_Haa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Above_Haa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Above_Haa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116655 -1 2827 Width: 543 Flags: HW +AnchorPoint: "TaaAbove" 327 599 basechar 0 AnchorPoint: "cursive" 0 205 exit 0 AnchorPoint: "TashkilAbove" 415 801 basechar 0 AnchorPoint: "TashkilBelow" 476 -200 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116042 -1 2214 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 46 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118116 -1 4289 Width: 161 Flags: HW +AnchorPoint: "TaaAbove" 95 518 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 142 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118752 -1 5729 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 125 -460 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Heh_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118777 -1 5754 Width: 233 Flags: HW +AnchorPoint: "TaaAbove" 87 361 basechar 0 AnchorPoint: "TashkilBelow" 125 -626 basechar 0 AnchorPoint: "TashkilAbove" 87 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116183 -1 2355 Width: 293 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 159 -387 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118138 -1 4311 Width: 247 Flags: HW +AnchorPoint: "TaaAbove" 148 305 basechar 0 AnchorPoint: "cursive" 0 83 exit 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 154 -563 basechar 0 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116243 -1 2415 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 86 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118160 -1 4333 Width: 162 Flags: HW +AnchorPoint: "TaaAbove" 91 527 basechar 0 AnchorPoint: "TashkilAbove" 91 801 basechar 0 AnchorPoint: "TashkilBelow" 127 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118892 -1 5874 Width: 642 Flags: HW +AnchorPoint: "TaaAbove" 136 361 basechar 0 AnchorPoint: "TashkilBelow" 191 -641 basechar 0 AnchorPoint: "TashkilAbove" 234 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115265 -1 1437 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 72 -371 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Baa_Yaa_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118028 -1 4201 Width: 203 Flags: HW +AnchorPoint: "TaaAbove" 63 498 basechar 0 AnchorPoint: "TashkilAbove" 63 801 basechar 0 AnchorPoint: "TashkilBelow" 101 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115151 -1 1323 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 56 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Dal_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117984 -1 4157 Width: 170 Flags: HW +AnchorPoint: "TaaAbove" 76 403 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 80 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116696 -1 2868 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 459 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118204 -1 4377 Width: 587 Flags: HW +AnchorPoint: "TaaAbove" 366 586 basechar 0 AnchorPoint: "TashkilAbove" 347 801 basechar 0 AnchorPoint: "TashkilBelow" 505 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116737 -1 2909 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 214 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Haa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118226 -1 4399 Width: 354 Flags: HW +AnchorPoint: "TaaAbove" 129 652 basechar 0 AnchorPoint: "TashkilAbove" 178 801 basechar 0 AnchorPoint: "TashkilBelow" 255 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117705 -1 3877 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 250 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Heh_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118336 -1 4509 Width: 384 Flags: HW +AnchorPoint: "TaaAbove" 226 342 basechar 0 AnchorPoint: "TashkilAbove" 265 801 basechar 0 AnchorPoint: "TashkilBelow" 292 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115206 -1 1378 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 195 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Haa_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118006 -1 4179 Width: 310 Flags: HW +AnchorPoint: "TaaAbove" 44 745 basechar 0 AnchorPoint: "TashkilAbove" 123 801 basechar 0 AnchorPoint: "TashkilBelow" 203 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115865 -1 2037 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 184 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118094 -1 4267 Width: 265 Flags: HW +AnchorPoint: "TaaAbove" 64 527 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 184 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117609 -1 3781 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 294 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Mem_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118314 -1 4487 Width: 391 Flags: HW +AnchorPoint: "TaaAbove" 218 455 basechar 0 AnchorPoint: "TashkilAbove" 218 801 basechar 0 AnchorPoint: "TashkilBelow" 335 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115627 -1 1799 Width: 146 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 104 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Non_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118050 -1 4223 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 100 410 basechar 0 AnchorPoint: "TashkilAbove" 0 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114914 -1 1086 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 95 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Raa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117962 -1 4135 Width: 176 Flags: HW +AnchorPoint: "TaaAbove" 119 366 basechar 0 AnchorPoint: "TashkilAbove" 119 801 basechar 0 AnchorPoint: "TashkilBelow" 136 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116571 -1 2743 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 191 -401 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Alt_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118182 -1 4355 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 519 basechar 0 AnchorPoint: "TashkilAbove" 70 801 basechar 0 AnchorPoint: "TashkilBelow" 169 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115696 -1 1868 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 145 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Sen_Init_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118072 -1 4245 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 59 586 basechar 0 AnchorPoint: "TashkilAbove" 5 801 basechar 0 AnchorPoint: "TashkilBelow" 191 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117480 -1 3652 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 208 -426 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Baa_Yaa_Isol_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118292 -1 4465 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 60 537 basechar 0 AnchorPoint: "TashkilAbove" 16 801 basechar 0 AnchorPoint: "TashkilBelow" 208 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114518 -1 518 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 59 801 basechar 0 AnchorPoint: "TashkilBelow" 154 -431 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116891 -1 3063 Width: 312 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 107 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__High_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__High_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__High_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__High_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118248 -1 4421 Width: 147 Flags: HW +AnchorPoint: "TaaAbove" 46 342 basechar 0 AnchorPoint: "TashkilAbove" 46 801 basechar 0 AnchorPoint: "TashkilBelow" 178 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117940 -1 4113 Width: 190 Flags: HW +AnchorPoint: "TaaAbove" 85 342 basechar 0 AnchorPoint: "TashkilAbove" 93 801 basechar 0 AnchorPoint: "TashkilBelow" 120 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Wide.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Wide.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Wide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Wide.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116985 -1 3157 Width: 332 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 188 -382 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Wide_L_D.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Wide_L_D.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Wide_L_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Wide_L_D.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118270 -1 4443 Width: 285 Flags: HW +AnchorPoint: "TaaAbove" 115 403 basechar 0 AnchorPoint: "TashkilAbove" 115 801 basechar 0 AnchorPoint: "TashkilBelow" 203 -578 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.init__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.init__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118510 -1 4724 Width: 791 Flags: HW +AnchorPoint: "TaaAbove" -145 646 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 AnchorPoint: "TashkilAbove" 73 801 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Haa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116083 -1 2255 Width: 451 Flags: HW +AnchorPoint: "TaaAbove" 257 501 basechar 0 AnchorPoint: "TashkilAbove" 257 801 basechar 0 AnchorPoint: "TashkilBelow" 382 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115491 -1 1663 Width: 168 Flags: HW +AnchorPoint: "TaaAbove" 122 244 basechar 0 AnchorPoint: "TashkilAbove" 122 801 basechar 0 AnchorPoint: "TashkilBelow" 49 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116284 -1 2456 Width: 182 Flags: HW +AnchorPoint: "TaaAbove" -31 453 basechar 0 AnchorPoint: "TashkilAbove" 76 801 basechar 0 AnchorPoint: "TashkilBelow" 78 -353 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Baa_Yaa.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115306 -1 1478 Width: 357 Flags: HW +AnchorPoint: "TaaAbove" 65 453 basechar 0 AnchorPoint: "TashkilAbove" 96 801 basechar 0 AnchorPoint: "TashkilBelow" 309 -514 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Heh_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Heh_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Heh_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Heh_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117746 -1 3918 Width: 311 Flags: HW +AnchorPoint: "TaaAbove" 173 335 basechar 0 AnchorPoint: "TashkilAbove" 190 801 basechar 0 AnchorPoint: "TashkilBelow" 205 -350 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Alf_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1117652 -1 3824 Width: 235 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 187 801 basechar 0 AnchorPoint: "TashkilBelow" 183 -504 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Mem_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115056 -1 1228 Width: 337 Flags: HW +AnchorPoint: "TaaAbove" 179 293 basechar 0 AnchorPoint: "TashkilAbove" 146 801 basechar 0 AnchorPoint: "TashkilBelow" 247 -495 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Non_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Non_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Non_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Non_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116385 -1 2557 Width: 218 Flags: HW +AnchorPoint: "TaaAbove" 83 334 basechar 0 AnchorPoint: "TashkilAbove" -0 801 basechar 0 AnchorPoint: "TashkilBelow" 119 -348 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Raa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Raa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Raa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Raa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115748 -1 1920 Width: 258 Flags: HW +AnchorPoint: "TaaAbove" 137 391 basechar 0 AnchorPoint: "TashkilAbove" 112 801 basechar 0 AnchorPoint: "TashkilBelow" 173 -348 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Baa_Yaa_Fina.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116514 -1 2686 Width: 307 Flags: HW +AnchorPoint: "TaaAbove" 98 293 basechar 0 AnchorPoint: "TashkilAbove" 98 801 basechar 0 AnchorPoint: "TashkilBelow" 291 -602 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1114559 -1 578 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 122 327 basechar 0 AnchorPoint: "TashkilAbove" 83 801 basechar 0 AnchorPoint: "TashkilBelow" 117 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__High.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__High.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__High.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__High.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116932 -1 3104 Width: 244 Flags: HW +AnchorPoint: "TaaAbove" 95 451 basechar 0 AnchorPoint: "TashkilAbove" 95 801 basechar 0 AnchorPoint: "TashkilBelow" 176 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115403 -1 1575 Width: 219 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 98 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Kaf_Baa_Medi.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116344 -1 2516 Width: 179 Flags: HW +AnchorPoint: "TaaAbove" 88 591 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 103 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Lam_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1115109 -1 1281 Width: 140 Flags: HW +AnchorPoint: "TaaAbove" -41 503 basechar 0 AnchorPoint: "TashkilAbove" 24 801 basechar 0 AnchorPoint: "TashkilBelow" 172 -358 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Sen_Baa_Mem_Init.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1116141 -1 2313 Width: 217 Flags: HW +AnchorPoint: "TaaAbove" -51 513 basechar 0 AnchorPoint: "TashkilAbove" 242 801 basechar 0 AnchorPoint: "TashkilBelow" 233 -327 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Yaa_Bari.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Yaa_Bari.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni067E.medi__Yaa_Bari.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni067E.medi__Yaa_Bari.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -2,6 +2,7 @@ Encoding: 1118846 -1 5828 Width: 205 Flags: HW +AnchorPoint: "TaaAbove" 39 327 basechar 0 AnchorPoint: "TashkilAbove" 104 801 basechar 0 AnchorPoint: "TashkilBelow" 120 -641 basechar 0 LayerCount: 2 diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F0.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F0.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F0.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F0.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F0.numr +Encoding: 1119129 -1 6290 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4569 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F1.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F1.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F1.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F1.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F1.numr +Encoding: 1119130 -1 6291 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4570 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F2.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F2.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F2.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F2.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F2.numr +Encoding: 1119131 -1 6292 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4571 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F3.numr.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F3.numr.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F3.numr.glyph 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F3.numr.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,9 @@ +StartChar: uni06F3.numr +Encoding: 1119132 -1 6293 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 4572 -1 N 1 0 0 1 0 550 2 +EndChar diff -Nru fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F4.glyph fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F4.glyph --- fonts-hosny-amiri-0.112/sources/Amiri-Regular.sfdir/uni06F4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/Amiri-Regular.sfdir/uni06F4.glyph 2020-06-02 19:42:15.000000000 +0000 @@ -3,2262 +3,6 @@ Width: 585 Flags: HW LayerCount: 2 -Back -Image: 310 109 3 1240 0 ffffffff -2255.11 912.988 11.0092 11.0092 0 -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drjs8Drls8Drjs8Drls8Drjs8Drls8Drjs8W,qs8W,os8W,qs8W,os8W,qs8W,os8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,os8W,qs8W,o -s8W,qs8W,os8W,qs8W,os8Drls8Drjs8Drls8Drjs8Drls8Drjs8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8N&os7cmNs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8;ii -s7H!Qs75dKs7cmNs8W,qs8W,qs82`fs7lE]s8W,qs8W,qs7H!O -s7Q*Rs7uQ]s8;lfs8;lfs8)Z`s8)Z`s8;lfs8W,ms8Duis8Duis8Duis8Duis8Duis8Duis8Dui -s8Duis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8N&os8;iis8;iis8;iis8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls7Q*Ts82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8W,os82ccs7Q-Qs7c?W -s8N&ks8W,ms8;lfs7Z6Ts7lHZs8W,ms8W,ms8W,ms8;lfs7lHZs8;lfs8W,ms8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls7Z3Ws8W,qs8W,qs4Z5Xs2rO(s4Q,Us4Z5Xs2N*os1lI]s3/d+s5E"js7lHZs8W,m -s8W,ms8W,ms7Z6Ts8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drl -s8W,qs8Drls7Z3Ws7Q*Ts7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8)Wcs8W,q -s8W,qs8W,qs8;iis7cpKs8W,ms8Duis8Duis8Duis8Duis8Duis8Duis8Dui -s8Duis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs7Q*Ts7uN`s8W,qs8W,qs82`fs7cs3fE=s2E$ks.lN] -s*8s1s&rZ)s%lT`s&)ffs(Z@Ys)2mhs)N3qs+Q5Us15kJs7c?Ws8W,ms8W,ms8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8;iis2iF%s+5lOs%?$Ts"ZA^s"5rRs"5rRs"#`Js"5rPs!]H@s!&g.s!T?=s$T=< -s*B'4s1>tMs6&Y's8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs7H!Qs7Z3W -s8W,qs8N&os5;kjs3oKCs4c>[s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8)Wc -s7coMs.H'Rs,)bds(?%Ps$fOBs"?)Rs!B-7s!B-7s!T?=s$]F? -s%u]cs&N5rs(#_Gs-T79s4uS^s8W,ms8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls38j1s,iJ's%lQc -s"Q8[s"#`Ls",iOs"cJas#W>"s"ZA\s#2qjs"cM^s!9$4rur^+s$T=tMs5rP$s8W,ms8W,ms7uQ]s8W,ms8W,m -s8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs7uN`s8W,qs8W,qs8W,qs4H#Rs)rU+s%#^Ks(cF_s0K)8s8W,qs8W,qs7,[Hs8W,q -s8W,qs7Z3Ws8W,qs8W,qs8W,qs8W,qs8N&os4c>[s.5jNs)N0ts(5nNs%#^Is#N7ss"u_ds$/n0 -s%5sNs%Q9Ws&E,os']D>s(Z@Ys)`F"s)E*ns'T;;s']D>s,;tjs3T37s8W,ms7H!Qs7Z3Ws7lE] -s8N&os8W,qs8W,qs8W,qs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls8N&os8W,qs8W,qs8Drls8;iis8N&os8)Wcs8Drls8Drls7cqP -s)E'qs"Q8[rtlUert5tSrsK5>rrr]/rs/o5rt,kPruE-ts!B*8s"u\es$9"3s#WA!ruE0qrs9&5 -rtQ=Ys#2qjs%cK]s*]B=s1H(Ps7lHZs8W,ms8Duis82ccs8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s7H!Qs0T2;s%Q6ZruN7"s#2nms'T8>s3As4s8W,qs7H!Qs8N&os8Drls6oIBs7uN`s7Z3Ws8W,q -s7Z3Ws2;mks+,cLs%?$Ts!K3=rtH1Wrur[,s!oZFs#N7ss%H0Ts&rZ)s'B)5s&W>us%cK]s$9"3 -s%5sNs%u]cs%H0Ts$fOBs&rZ)s,E(ms1H(Ps8;iis8W,qs8W,qs8N&os7cmN -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7uN`s8N&os8W,qs8W,q -s8W,qs8Drls8N&os8N&os7Z3Ws8W,qs8W,qs4Z5Xs-]=?s&W<#ruE-trr<'"rr<'"rs]GDru`I( -s",iOs"cJas#W>$s$fLEs%cH^s&2ljs'K28s&iQ&s#)hgrtH4VrsB/8rt6"Pru)jhs#N7ss+lP^ -s5E"js8W,ms8W,ms82ccs7c?Ws7uQ]s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs52bgs,;qms!fNFrrE0$rsfPG -s!T<@s/iH&s8W,qs8N&os8Drls8W,qs7uN`s7uN`s8N&os8W,qs6&V*s,2hjs#E+srtlUersT>A -rr<'"ruiR)s!]H@s!/p1rtZF\ruE0qs"ZD[s#)hgs!]H@rtZF\rtcO_ru`L%s!9$4ru2skru)jh -s$9"3s)E*ns3/a.s7cArs]GDru`I(s.H'Ts8N&os8W,qs7>mN -s8W,qs8W,qs8W,qs8W,qs5iD$s.,aKs$oUHrt,kPrsK5>ruW@%s"?&Ss#2nks$fOBs#WA!ruWC" -s!&g.s$9"3s$fOBs"H2UruiU(rtZF\rtcO_ru<'nrsTA>rr<*#rtH4Vs$&e-s+H)Us3T0:s8W,q -s8W,qs7>mNs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs7Z3Ws82`fs8W,qs8W,qs8W,qs6f@?s3]9=s-8n3s&2lls"lSds$K1< -s(,eMs*B$7s,W8!s/`?#s3]9=s6/_-s6T.9s6K%6s6]7 -s,iM$s&`H#s!T?=rrWE)rur^+s(lR_s2E$ks8Duis8W,ms8N&ks8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8;iis7H!Qs82`f -s38j1s'oSGs!T<@s!&d1ru)gkrtcLbs*T6=s5Dtms82`fs7,[Hs8W,qs8W,qs7Z3Ws7uN`s-fFB -s#E+srs]GDrrE0$rs&f2s!oWIs&WsQs7Q*Ts8W,qs8W,qs8W,qs8W,qs7lE] -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls7>mN -s8Drls8W,qs8N&os5N(ps2;mks*/g1s!/m4rtQ:\s&`E&s/iH&s3]9=s3&X+s4lG^s6]7us.cEZs6/b*s8)Z`s7uQ] -s8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs7Q*Ts8W,qs2N*qs$oUHs!]ECs$B(9s!/m4rtu^hru2pns);sns3fB@s7>mN -s8W,qs8W,qs4uPas/)]fs,N.ss,N.ss/N,rs0oMDs0&Z,s15hMs4,]Gs8W,os8W,ms8N&ks7lHZ -s7uQ]s8N&ks8W,ms8W,ms8N&ks8W,ms8W,ms7lHZs7,^Es4Z8Us-T79s&)ffrsT>As$K1Art,kPs#`G's,N.ss4lG^ -s8Drls8)Wcs8W,qs8W,qs7uN`s7cpKs7lE[s8W,ms8W,os8W,ms8;igs8Duis8W,o -s8W,ms8Drjs7#UBs8W,os8W,ms6oI@s/E#ms(lObs+,cLs1>qPs8W,qs8W,qs8N&os7Q*Ts8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8)Wcs7lE]s8;iis8W,q -s8W,qs45fLs+,cLs#E+srt5tSs!B*:s"5rRs&W<#s0T2;s7Z3Ws8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8)Z`s7#UB -s6/b*s6K(3s7c?Ws8W,ms8W,ms8W,ms8)Wcs82`fs8W,qs8W,qs8W,qs7uN`s7csOs-T79s&E)ps,`D!s4,]Gs7uQ]s8;igs7c?Ws82`d -s8W,os8W,os8W,os8W,qs8W,os8W,qs8W,os8W,qs8W,os8W,qs8W,os8W,qs7Z3Us7uN`s8W,o -s8W,qs8)Wcs2N*qs4Q,Us7>mNs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs7H!Qs4lG^s/;ols'/i2ru`I(s#`G' -s'K/;s)W:"s-&\-s4#TFs7uN`s7uN`s8;iis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drj -s8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis7H$Ns7uQ]s8W,ms8W,ms8W,ms8N&ks8;lf -s82ccs82`fs8)Wcs82`fs8N&os8N&os82`fs8)Wcs82`fs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Dui -s8Duis8Duis8;lfs8W,ms7Q-Qs/`Aus&iQ&s"H2Us"u_ds$oXEs%lT`s$/n0s"ZD[s"cM^s$B+6 -s%u]cs&N5rs&<#ls(,hJs.cEZs5iG!s8W,ms8W,ms8W,ms8W,ms8)Z`s8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs6f@?s7lE]s8;iis7uN`s82`fs8W,qs7uN`s6T.9s7,[Hs7H!Qs7Z3W -s7uN`s82`fs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls82`fs8W,qs8Drls4H#Rs/)]fs)E'qs#W>$rt?(Vs$fLEs*]?@s/2fis2iF%s7Q*Ts8W,q -s8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Dui -s8Duis8Duis8Duis7>pKs8W,ms8W,ms8W,ms8Duis7Z6Ts7lHZs8N&ks8W,qs8Drls7uN`s7lE] -s82`fs8N&os8N&os82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8W,ms75gH -s1>tMs(lR_s"lVas"cM^s%Q9Ws'T;;s'8u2s&E,os$fOBs#<%ms"Q;Xs"u_ds#N7ss)iO%s1#YD -s7#UBs82ccs82ccs8W,ms8W,ms7Z6Ts8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE] -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE]s8W,qs8W,qs7lE]s7Z3Ws7uN`s8N&os8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7#REs8W,qs7Q*Ts1>qP -s*8p4s%Z?]s"cJaruiR+s$&b0s*8p4s/W5us45fLs8W,qs8W,qs7cus&W>u -s&<#ls%cK]s%?'Qs&`H#s/W8rs7Q-Qs8W,ms8N&ks8W,ms8W,ms8)Z`s8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs7lE]s8W,qs8W,qs7Q*Ts7>mNs8Drls8W,qs8W,qs8Drls8N&os8W,q -s8W,qs8W,qs8W,qs8)Wcs7H!Qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8N&os8W,qs6Aq3s,rS*s%?$Ts#E+ss#iP*s#W>$s"?&Us$oUHs'T8>s-/e0s4>oOs75dK -s82`fs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Dui -s8Duis8Duis8Duis8W,ms8W,ms8W,ms8W,ms8W,ms6K(3s2W6qs/W8rs3oKCs7Q*Ts8W,qs8W,q -s8)Wcs8W,qs8W,qs8)Wcs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8N&ks8W,m -s82ccs3oN@s,;tjs$fOBruWC"s%,jKs%,jKs%H0Ts&2ois&`H#s&)ffs$K49s"u_ds#r\*s*oTC -s3&[(s7lHZs8W,ms8W,ms8W,ms8;lfs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wc -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs7uN`s8N&os8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs4Z5Xs*oQF -s$8t6s#iP*s$]CBs$&b0s!K3=s"?&Us#)ejs'8r5s.,aKs22dhs5`;!s8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8)Z` -s6T16s4#WCs0K,5s,)bds'oVDs%?'Qs.cB]s4c>[s8W,qs8W,qs7lE]s8N&os8W,qs8N&os8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis8)Z`s8N&ks8N&ks7uQ]s5rP$s0T58s'oVDruWC" -s$&e-s$]F?s%cK]s&iQ&s'/l/s&2ois$K49s#)hgs#)hgs#iS's']D>s.5mKs3oN@s6]:9s7uQ] -s8W,ms8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs5W1ss4,]Is4lG^s6Aq3 -s5rM's4H#Rs3T0:s5N(ps7Z3Ws8;iis7cs*T6=s.cB]s5)Yds8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drj -s8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms6fCpKs8)Z`s7uQ]s7Q-Qs7Q-Qs4Q/Rs+lP^s"u_ds!9$4s"u_ds%5sNs&`H#s&rZ) -s&)ffs%,jKs$K49s#`J$rsB/8rr<*#s#)hgs+lP^s1uU_s6At0s8W,ms8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls45fLs.#XHs)`C%s)iL(s,;qms-/e0s,E%ps,N.ss0];>s5iD$ -s8W,qs8W,qs8)Wcs8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7lE]s8;iis2;mks'8r5s!oWIs$8t6s&;uos%#^Ks#N5!s$8t6s$K1rLs.H*Qs'&c,s!]H@rso\Grs/r3rtZF\s!]H@s.#XHs4lG^s8W,qs8W,q -s7Q*Ts8)Wcs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8N&ks8W,ms8W,m -s7lHZs8W,ms7c?Ws0oPAs(u[bs!K6:s!9$4s%,jKs(Z@Ys'fMAs&rZ)s&N5rs$K49s$9"3s%5sN -s$K49s"5uOs"Q;Xs'&c,s,2kgs.uW`s/iH&s0];>s2;mks45fLs5rM's7H!Qs8Drls8W,qs8Drl -s,;qmruW@%rrN9&rt?(VruE-truE-truW@%s&W<#s.lK`s6Aq3s7uN`s7Q*Ts8Drls8W,qs8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8N&os8W,qs3As4s*&^. -s$B(9s$]CBs%lQcs%5pQs%5pQs%,gNs$fLEs$8t6s$/k3s$fLEs&)cis'&`/s,E%ps1,_Js6/_- -s8Drls8W,qs8W,qs8W,qs8;igs7Z3Us8;lfs8W,ms8W,ms8W,ms8W,ms5rP$s2W6qs*K07s'/l/ -s#<%mru`L%rt?+Srtuaes#)hgs&E,os0oMDs6K%6s8W,qs8W,qs7lE]s8Drls8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis82ccs8W,ms8W,ms8)Z`s8W,ms8N&ks38m.s,iM$ -s"u_ds!&g.s#iS's']D>s&rZ)s&2ois'8u2s'B)5s'oVDs)2mhs(?%Ps$fOBs"5uOs"lVas%#aH -s&<#ls&iN)s'8r5s(?"Ss*&^.s,E%ps/)]fs1H%Ss2iF%s1Q.Vs(#\Js!&d1ruN7"rtlUerrN9& -rtH1Ys$]CBs.5jNs4>oOs8W,qs8W,qs7lE]s8Drls8W,qs8)Wcs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs5Dtms/2fis);sns&E)rs%Z?]s%Q6Zs&W<# -s&)cis%Q6Zs%Q6Zs%Z?]s%#^Ks#W>$s"Q8[s%Z?]s+#ZIs1H%Ss5W1ss7c[s8;iis8W,qs8W,qs82`fs8W,qs8W,qs7lE]s8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Dui -s8Duis8Duis7lHZs8W,ms8W,ms8;lfs8W,ms8W,ms68k-s2;phs%u]cs!&g.s",lLs&rZ)s'8u2 -s&<#ls(#_Gs)`F"s(Q7Vs*/j.s*/j.s'T;;s$fOBs#`J$s#r\*s$/n0s#`G's"u\gs"#`Ls!fNF -s"cJas$fLEs'/i2s(Z=\s']AAs",iOruW@%s#)ejs!K3=rsB,;s$&b0s.>sQs5N(ps8W,qs8W,q -s8W,qs7uN`s8W,qs8W,qs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls7Q*Ts4Q,Us.lK`s(Z=\s%,gNs$8t6s%lQcs&2lls&iN)s'B&8s'8r5s&)ci -s$&b0s"H/Xs#E+ss'fJDs,rS*s0Au5s2`="s4lG^s5iD$s5`:ts8Drjs8W,ms8N&ks6K(3s38m. -s-oRBs&E,oruE0qru)jhs!K6:s"u_ds"u_ds"5uOs$/n0s*K07s0oPAs7>mNs8W,qs8W,qs8W,q -s8;iis8W,qs8W,qs7Z3Ws8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis7lHZs8W,ms8W,m -s82ccs8;lfs8W,ms8)Z`s6At0s*B'4s"5uOs!oZFs(Z@Ys+?#Os*B'4s*]B=s+Q5Us)$ru`I(s$/k3s%Z?]s'K/;s(H+Vs(5nPs'B&8s&N2us&)cis%H-Ws'K/;s(uXe -s)2jks)W:"s+,cLs,2hjs,E%ns08l0s1H(Ps15kJs.Q3Ts+#]Fs'K28s#WA!ruWC"s"#cIs"u_d -s#iS's#2qjs!oZFs$/n0s+H,Rs2W6qs8;iis8N&os8Drls7lE]s82`fs8W,qs8W,qs7uN`s8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis82ccs8W,ms8W,ms8)Z`s7Z6Ts8)Z`s8;lfs8)Z` -s/E&ls%H0Ts#iS's,;tjs1lL\s1uU_s0B#2s.Z$s$&b0s"lSds!K3=rtQ:\rt,kPs"Q8[s)N0t -s1H%Ss6K%6s7lE]s8;iis82`fs7uN`s8Drls8W,qs8W,qs8;iis8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs4lG^s-&\-s$fLErtZC_s#iP* -s%,gNs&W<#s'K/;s']AAs'oSGs(Q4Ys)2jks'oSGs(,eMs&`E&s$/k3s"H/Xs"Q8[s"lSds"Q8Y -s#E+qs%#aHs%Q9Ws$/n0s"cM^s"u_ds#E.ps#N7ss"lVas"cM^s"Q;Xs!fQCs!T?=s%#aHs,iM$ -s4#WCs8;iis8)Wcs7cmNs2rO(s+>uRs$oUHs%cH`s%,gNs$T:?s$fLEs%uZfs'B&8 -s(Q4Ys(uXes(?"Ss(H+Vs'/i2s$B(9s"H/Xs!fNFs!&d1ru)girtu^frur^+s!/p1ruE0qru`L% -s"Q;Xs#r\*s$9"3s#WA!s"Q;Xs!]H@s!oZFs#WA!s(?%Ps0/f,s6fCs'B&6s'K/;s(Q4Ws(Z=\ -s'B&6s&2lls%Z?[s$K1us&Ws$8t6s!fNF -s!9!7s"lSds%H-Ws'8r5s/)]fs1,_Js4>oOs75dKs8W,qs8W,qs8Drls7Z3Ws8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7cus%Q6Zs%Q6Zs%H-Ws%Q6Zs&)ci -s'/i2s(H+Vs);sns(Q4Ys)W:"s+#ZIs-T4qPs0oMDs/N,rs-fFBs,E%ps)E'qs(lObs(H+Vs(lObs*T6=s-B"6s08l2s22dhs5rM' -s6f@?s82`fs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7H!Qs7coO -s2rO(s/W5us0&Z,s0oMDs2;mks4#TFs5iD$s7>mNs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8N&o -s82`fs7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls7lE]s7lE]s7uN`s8)Wcs8;iis8W,qs8W,qs8W,os8)Wa -s7uQ]s7lHZs8N&ks8W,ms82ccs3/d+s.,dHs%u]cs#r\*s"u_ds$9"3s%cK]s%u]cs%ZBZs%ZBZ -s%?$Ts$8t6s#E+ss#rY-s&)cis(uXes+H)Us,`A$s0oMDs4,]Is7H!Qs8W,qs8W,qs8W,qs8W,q -s82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7Q*Ts8W,qs8W,qs1Z7Ys+lMa -s)iL(s'K/;s$8t6s#rY-s+lMas45fLs82`fs8W,qs8W,qs82`fs6f@?s6oIBs7,[Hs7Z3Ws8)Wc -s8;iis8;iis8)Wcs7uN`s8W,qs8W,qs8Drls82`fs7uN`s7lE]s7lE]s7uN`s8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls82`fs8)Wcs82`fs8Drls8W,qs8W,os82`ds8W,ms8W,ms8W,ms8W,ms8W,m -s7lHZs5;ngs.lN]s)`F"s%5sNs$oXEs&W>us&rZ)s%Q9Ws$9"3s$fLEs$8t6s$/k3s%?$Ts(,eM -s+cD^s/)]fs1#VGs5)Yds7H!Qs8W,qs8W,qs8;iis8W,qs8W,qs8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls6oIBs8W,qs8W,qs1#VGs);sns%cH`s#W>$s!T<@s"ZA^s+cD^ -s4uPas8W,qs8W,qs8W,qs8W,qs82`fs8Drls8N&os8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs82`f -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8Drl -s8;iis8Drls8N&os8W,os8N&ms8W,ms8W,ms82ccs8;lfs8W,ms8W,ms82ccs5;ngs.Zus$]F?s"u_ds$B(9s%Z?]s'fJDs*B$7s-8n3s0];>s3oKCs6&V*s8)Wcs8W,q -s8W,qs8;iis7Q*Ts82`fs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s7Q*Ts8W,qs8;iis1>qPs(Q4Ys"cJaruW@%ru<$qs#`G's-K+9s6T.9s8W,qs8W,qs8W,qs8W,q -s8N&os8W,qs8W,qs8N&os8Drls8N&os8W,qs8W,qs8W,qs8)Wcs8;iis8W,qs8W,qs8W,qs8W,q -s82`fs7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8N&os8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os7H!O -s8Duis8W,ms82ccs82ccs8;lfs75gHs5N+ms2iI"s-B%3s']D>s%Q9Ws%H0Ts$fOBs#`J$s#)hg -s%cH`s)E'qs.>sQs2)[es4,]Is5W1ss7H!Qs8W,qs8W,qs8W,qs8W,qs8;iis7uN`s8W,qs8W,q -s8N&os8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8;iis8W,qs8W,qs4#TFs+#ZI -s"Q8[rtQ:\ruE-ts&2lls0&Z,s8Drls8W,qs82`fs8W,qs8W,qs8;iis8W,qs8W,qs8W,qs8W,q -s8N&os8;iis8;iis82`fs82`fs82`fs82`fs8)Wcs7uN`s7lE]s7cmNs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8N&os8W,qs8W,qs6]7s0&Z,s7lE]s8W,qs8Drls8)Wcs8;ii -s82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8W,o -s8W,ms8W,ms6oL?s2E$ks,E(ms'T;;s%?'Qs$B+6s#r\*s#)hgs"Q;Xs$/n0s(?%Ps-]@As#)ejs*/g1s1c@\s5rM's7lE]s8W,qs8W,qs8)Wcs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8W,os8W,ms82ccs3oN@s.?!Ns)WpKs8W,ms8W,m -s82`fs7cmNs1uRbs(#\Js!]EArr`K*rsfPErur[.s#iP( -s+H)Us4#TDs8Drls8Drjs8Drls8Drjs8Drls8Drjs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls7uN`s7cru<$qs'fJDs2N*qs8W,qs8W,qs7uN` -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8;iis82`fs8N&os8W,qs7Q*Ts3&X+s,W8!s'fJDrs/o5 -rtH1YruiR+s#iP*s+#ZIs3]9=s8Drls8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8N&os7uN`s8W,qs8W,qs8N&o -s8W,qs2E!ns(?"SrsoYJrur[.s(H+Vs2iF%s8W,qs8Drls7Q*Ts8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs7uN`s7>mNs7Q*Ts4>oOs-8n3s&W<#s#N5!rsoYJs!/m4s$]CBs*/g1s1c@\s82`f -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs82`fs8W,qs8W,qs8Drls8W,qs2`="s(cF_rtcLbs!T<@ -s(cF_s3&X+s8W,qs8N&os7cmNs08l2s&iN)ruiR+rtH1Ys!&d1 -s#rY-s+#ZIs3]9=s8Drls8N&os8;iis8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8)Wcs8W,qs8N&os82`f -s7uN`s1c@\s'K/;s!/m4rur[.s&2lls0T2;s8)Wcs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7Z3Ws8W,qs82`fs2rO(s*8p4s#)ejruN7"rur[.s$]CBs*oQFs2E!ns6oIBs8Drls8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls7uN`s8W,qs8W,qs8)Wcs7Q*Ts0oMDs&E)rs!&d1rtH1Y -s#W>$s.,aKs7,[Hs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls82`fs8W,qs5W1ss-&\- -s#W>$rt5tSruN7"s#<"ps)N0ts2`="s8W,qs8W,qs8)Wcs8W,qs8W,qs6f@?s8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s82`fs7lE]s8W,qs8W,qs8)Wcs7>mNs0Au5s%Q6Zru`I(rs9#8s!]ECs,E%ps68h0s8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8)Wcs8)Wcs8;iis8N&os8;iis7uN`s8Drls8W,qs3fB@s'T8>s",iOrtlUersT>As'/i2s1H%S -s6T.9s8W,qs8W,qs8)Wcs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE]s7csQs%Z?]s"lSdrrE0$s"#`Ls/N,rs7uN`s8W,qs8W,qs7H!Qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs8W,qs8W,qs82`fs82`fs8W,qs8W,qs8)Wcs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8N&os82`fs8;iis8W,qs8W,qs8W,q -s8W,qs8W,qs7c$s!]ECrs&f2 -s#rY-s0];>s7cs%5pQs+H)Us4Q,Us82`f -s8W,qs8W,qs82`fs8Drls8W,qs8W,qs7cmNs6K%6s.uTcs%cH`s(,eMs,rS*s1Q.Vs8)Wcs8W,qs8W,qs8N&o -s8;iis8Drls8W,qs8N&os8;iis8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8N&os8W,qs8W,qs82`fs8W,q -s8W,qs5)Yds/`?#s,2hjs/E#os5`;!s8W,qs7lE]s8N&os8W,qs8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs7uN`s8W,qs8W,qs8Drls8Drls8W,qs8W,qs7uN`s8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls82`fs82`fs8Drls8W,qs8W,qs8W,qs8)Wc -s75dKs6f@?s.,aKs1Q.Vs5`;!s6oIBs8W,qs8W,qs7Z3Ws8Drls8N&os8W,qs8W,qs8;iis7Q*T -s7cqP -s1#VGs5N(ps8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drms8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,qs8W,qs7H!Qs8W,qs8W,qs2W3rs+5lMs*8p2s15hKs8W,qs8W,rs8W,rs8W,rs8W,ts8W,t -s8W,ts8W,ts8W,ts8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,t -s8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8Drms8Drms8Drms8Drms8Drms8Drms8Drms8Drms8W,t -s8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,t -s8W,ts8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs8W,rs7lE]s8W,qs8;igs-8q0s%cK]s%Q9W -s)N3os4>rJs7#UBs8Duis8W,ms8W,os8W,os8W,qs8W,qs8W,rs8W,rs8W,ts8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W,ts8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W,rs8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,t -s8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8Dons8Don -s8Dons8Dons8Dons8Dons8Dons8Dons8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,t -s8W,rs7lE]s8W,os7lE[s,2kgs#W@ts"?)Ps$oXBs.Q3Qs5rP!s7lHWs8W,ks8W,ks8N&ks8W,m -s8W,qs8W,qs8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,rs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8Dops8Dops8Dops8Dops8Dops8Dops8Dops8Dons8W,rs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs7Z3Ws8W,os6f@=s*B'4s!B-5rtH4TruWBt -s(u[_s2iHts5rP!s8W,ks8W,ks8W,ms8W,ms8N&os8)Wcs8W,rs8W,rs8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8Dops8Dops8Dop -s8Dops8Dops8Dops8Dops8Dons8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,r -s7lE]s8Drjs4uP_s'oVDrtlX`rso\ErtQ=Vs&W>rs-T76s2)^_s6fC:s8W,ks8W,ms8W,ms8W,q -s82`fs8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,rs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8Dops8Dops8Dops8Dops8Dops8Dops8Dops8Dons8W,rs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs8W,qs7lE[s2N*os%,jKrso\ErtZFZru)jes%ZBW -s(Q7Ss-]@9s3T35s75gFs8W,ms8W,ms8W,qs8N&os8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8Dops8Dops8Dops8Dop -s8Dops8Dops8Dops8Dons8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs8W,q -s7#RCs0/c-s#<%mrtQ=Ws"5uMs!fQ@s%Q9Ts&W>rs*oT@s0/f*s45iGs7>pKs8W,ms8W,qs8W,q -s8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8Dops8Dops8Dops8Dops8Dops8Dops8Dops8Dons8W,rs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs8W,qs5`:ts.Z9Xs#E.ps"ZDYs'/l-s%lT]s']D;s(?%M -s*K04s-B%1s0B#0s45iIs7c?Ws8W,qs8Drls8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8Dops8Dops8Dops8Dops8Dop -s8Dops8Dops8Dons8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs7cs,2kes+H,Os,W:ps+5oIs*&a( -s(u[`s)E*ls,;tjs0oPAs5W1ss8N&os8W,rs8)Wds8)Tgs8W-!s8W-!s82]ls82]ls8W-!s8W,r -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,r -s8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs82`fs0&Z*s%uZd -s$9"3s)`Eus+cGYs*fK=s+cGXs*K04s)E*ks'K26s%u]as'&c,s+uYas3&X+s8;iis8W,rs8W,r -s8Dops8)Tgs8;fos8W-!s8N#ts7uKds8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W,ts8W,ts8W,rs7H!Qs,iJ%s!9!5ruN9ts'B)3s)rX&s)2mes*B'1s)rX%s)W%s$fLFs*B!;s2iC)s8Dors8W-!s7uKfs82]js8W,rs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,r -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,ts8W,t -s8W,ts8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,rs8W,rs7Q*Ts8W,qs4c>Ys))des$]F?s%u]c -s&<#js%cK[s%lT^s&E,ms'&c*s'8u0s'&c,s&W>us&;ums&)cis#rY-s!]EDs%Q6[s0/`1s82]h -s8W,ts7Q'Xs7Q'Vs8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,r -s8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs8W,rs82`gs8;ijs8W,rs8W,rs8N&ps8W,q -s8W,qs8W,qs8W,qs3/a.s(H+Ts"5rPs#rY+s'8r3s(,eKs&N5rs&2ois&E,os'B)5s(5qMs(,hJ -s&`H#s%?$Rs#rY+s"#`Js#iP(s+#ZGs2E!ls6/_+s7Z3Ws8W,qs8W,qs8W,qs8W,qs8W,qs8;ii -s7cus&rZ)s'8u2s%5sNs#WA!s$oXEs*&a+s/2ifs2)^b -s4Q/Rs7#UBs7lE]s7uN`s8Drls8W,qs8W,qs8Drls8;iis8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8N&os8W,qs8W,qs8W,qs8W,qs8;iis82`fs82`f -s7cs'oSGs"lSds"lSds%#^Ks&N2us&`E$s'8r3s(#_Gs(H.Ss'fMAs&W>us&<#ls'8u2 -s(H.Ss&iQ&s%ZBZs&2ois(Q7Vs*8s1s+lP^s/iK#s4>rLs7H!Qs7Z3Ws8)Wcs8W,qs8W,qs8W,q -s8Drls7Z3Ws8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8W,qs8W,qs8;iis8Drls8W,qs8W,qs8W,qs4H#Rs+H)Us"Q8[ru)gks!K3=s"ZA^s#2nms#`G% -s#E+qs$fOBs&N5rs'K28s'T;;s'B)5s'K28s']D>s'fMAs'&c,s'&c,s&rZ)s%ZBZs&)ffs+H,R -s1Z:Vs7uN`s8;iis8;iis8;iis8W,qs8W,qs8W,qs7>mNs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8W,qs8)Wcs7H!Qs8Drls8W,qs8W,qs7>mNs-8n3 -s%lQcrtu^hru2pns"H/Xs#2nms#iP*s%#^Is$]C@s$K49s$T=u -s(#_Gs'K28s'/l/s%cK]s"lVas"Q;Xs(,hJs/)`cs8;iis8W,qs8W,qs7lE]s82`fs8W,qs8W,q -s7cus(#_Gs'K28s'&c,s%Q9Ws"?)Rs!9$4s&)ffs,;tj -s68h0s8N&os8W,qs7uN`s7cmNs-T4[s8W,qs8W,qs6&V(s8W,os6T16 -s1cCYs+uYas'8u2s%H0Ts&<#ls']D>s(lR_s'T;;s'&c,s&E,os#r\*s!oZFs#r\*s']D>s.cB] -s4Q,Us8W,qs8W,qs82`fs8W,qs8W,qs7uN`s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,r -s8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls7cXs$]F?rtlXbs",lL -s&W>us(#_Gs'&c,s&2ois",iOs#<"ps)E'qs3/a.s8W,qs8W,qs8N&os8N&os8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drms8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls7#REs1Z7Ys'B&8rsfPG -rt,kPs$B(9s3&X+s8W,qs8W,qs75dKs8Drls8W,qs8W,qs8W,os8W,os82ccs7Z6Ts82ccs8W,m -s8W,ms7uQ]s6fCus%,gNru2pns!oWIs-/e0s7#REs8W,qs8Drls8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drms8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs6f@=s0T2;s&iN'rt#bMrsK5uPs5rM's8W,os8W,qs8W,os8W,qs7Z3Us7>mNs8W,os75gHs8;lfs8W,ms8W,ms8)Z`s7Z6T -s8;lfs8W,ms7c?Ws2W6qs)N3qs!B-7rtuaes#iS's&W>us&W>us'B&8ruW@%ruiR+s+lMas6/_- -s8Drls7cus!fQC -s$T=pKs8)Z`s7#UBs.?!Ns#iS'ru2pnruE-trur[.s'K/;s2W3ts8N&os8N&os8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os2iF#s'&c,ru2sk -s!/p1s!&g.s#)hgs,rV's7H$Ns8W,ms8W,ms8W,ms8W,ms8W,ms8W,ms8W,ms8W,ms8W,ms8W,m -s8W,ms8;lfs6fCrLs,W:ss$K49s!/m4ruiR+s#<"ps,`A$s7>mNs8W,qs7Q*Ts8N&os8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8;iis8W,qs8W,qs8W,qs8Drls8W,qs8W,os1uR`s%lT`rtH4Vs!&g. -s"H2Us%H0Ts-B%3s4>rLs8W,ms8W,ms8W,ms8;lfs7lHZs7lHZs8Duis8W,ms8W,ms8Duis4lJ[ -s/2ifs*/j.s))des,;tjs/iK#s6At0s8)Z`s8)Z`s5)\as1,bGs,`D!s'B)5s"lVaru`I(rtcLb -s)E'qs4uPas7H!Qs8Drls8W,qs7lE]s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,t -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8W,qs8W,qs8W,q -s8N&os8W,qs8W,os0Au3s$]F?rs]JAs!&g.s"lVas%cK]s,N1ps2;phs6At0s7,^Es8)Z`s8W,m -s8W,ms8W,ms8;lfs7Z6Ts6]:9s3K*4s-oRBs(5qMs$]F?s$T=pKs82ccs7,^Es4H&Os2;phs.Q3Ts+,fIs&W>us#WA! -s"u_ds#WA!s$B+6s$T=mNs8W,qs8W,qs8W,qs7uN`s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8W,qs8W,qs8N&os8W,qs8W,q -s8;iis75dIs.uTas$K49rtZF\s"?)Rs#iS's$K49s&E,os']D>s*B'4s*fK@s,2kgs.#[Es.uW` -s-B%3s)`F"s&`H#s"u_ds"H2Us"Q;Xs#r\*s%ZBZs&)ffs$fOBs#<%ms"cM^s"H2Us"?)Rs"ZD[ -s#<%ms#2qjs!K6:rtcO_rsfPGs%?$Ts0&Z,s7uN`s8W,qs8W,qs8N&os8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8W,qs8W,qs82`fs8N&os8W,qs82`fs6/_+s-K+7s$/n0ru<'ns#2qjs$K49s$K49 -s%,jKs%#aHs!]H@s!T?=s",lLs#N7ss$B+6s#<%mruN9trs&i1rriW-rtQ=Ys"H2Us%?'Qs&rZ) -s&`H#s%5sNs#iS's%ZBZs%#aHs$]F?s%#aHs$fOBs#N7ss!T?=ruE0qru<$qs(uXes2E!ns7lE] -s8W,qs8W,qs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,t -s8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8W,qs8W,qs7uN`s8Drls8W,qs8)Wc -s52bes+,cJs#<%mruiU(s#iS's%,jKs%H0Ts&)ffs%ZBZs!fQCs!T?=s!fQCs"ZD[s#WA!s#WA! -s"H2Us!B-7s"cM^s#r\*s%Q9Ws&W>us&`H#s&E,os%u]cs%cK]s'T;;s&`H#s&E,os&2ois$oXE -s"ZD[s!9$4s!9$4s$]CBs.>sQs5)Yds7Q*Ts8W,qs8W,qs7cus&rZ)s'/l/s'8u2s'8u2s'B)5s'8u2s'&c,s&iQ&s&`H#s&`H# -s&`H#s&W>us'/l/s&E,os&)ffs%ZBZs#`J$s!fQCs",lLs#r\*s*T6=s4,]Is7uN`s7H!Qs8W,q -s8W,qs7>mNs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,ts8W,ts8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,r -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8;iis8W,qs8W,qs7Z3Ws8;iis8W,qs7lE]s4,]I -s*]?>s$T=mNs7uN`s8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,qs8W,qs8W,rs8W,ts8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs3fB@ -s,)_gs$&b0s!K3=s#2nms$oUHs%?$Ts%,gNs&W<#s&rW,s'/i2s&W<#s%cH`s%#^Ks$fLEs$oUH -s$oUHs#<"ps"ZA^s#W>$s$B(9s#rY-s#W>$s#rY-s%5pQs#iP*s"u\gs#E+ss$T:?s(#\Js.H'T -s4>oOs7>mNs7Z3Ws8)Wcs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7Z3Ws/iH&s&iN)s"5rRs!fNFs#)ejs$]CBs%uZfs%Z?] -s&)cis&2lls%H-Ws$8t6s"u\gs"?&Us"#`Lru`I(rtZC_rtcLbs!T<@s"lSds"u\gs"lSds#2nm -s$8t6s"?&Urur[.s!oWIs%?$Ts+H)Us3/a.s8W,qs7lE]s8)Wcs8;iis8W,qs8W,qs8W,qs8W,q -s8N&os8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8;iis2iF% -s+Z;[s%uZfs"Q8[s!K3=s#)ejs%?$Ts%,gNs%5pQs%#^Ks$8t6s#<"ps"ZA^s"ZA^s"lSds!/m4 -s!K3=s"lSds$8t6s#iP*s"?&Us!fNFs"H/Xs"ZA^s!9!7ru`I(s"cJas']AAs.H'Ts5;kjs8W,q -s8Drls8Drls8N&os8N&os8N&os8Drls8;iis8;iis8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs82`fs5rM's1lI_s,)_gs%#^Krtu^hrt5tSrur[.s#N5!s#N5! -s#E+ss#E+ss#iP*s%5pQs'/i2s(Z=\s*B$7s+lMas-]=?s-8n3s)E'qs$oUHs#<"ps#rY-s%,gN -s%H-Ws&N2us)E'qs.5jNs3fB@s7uN`s8W,qs8W,qs8W,qs8N&os8Drls8;iis8;iis8;iis8;ii -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,qs8W,qs8W,rs8W,ts8W-!s8W-!s8W-!s8W-! -s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W,ts8W,rs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7#RE -s2;mks*8p4s"H/Xrs]GDrsK5>s!K3=s!fNFs"?&Us#E+ss%Q6Zs(cF_s,E%ps.lK`s38j1s4lG^ -s6]7mNs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8;ii -s7H!Qs75dKs7cmNs8W,qs8W,qs82`fs7lE]s8W,qs8W,qs7H!O -s7Q*Rs7uQ]s8;lfs8;lfs8)Z`s8)Z`s8;lfs8W,ms8Duis8Duis8Duis8Duis8Duis8Duis8Dui -s8Duis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8N&os8;iis8;iis8;iis8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls7Q*Ts82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8W,os82ccs7Q-Qs7c?W -s8N&ks8W,ms8;lfs7Z6Ts7lHZs8W,ms8W,ms8W,ms8;lfs7lHZs8;lfs8W,ms8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls7Z3Ws8W,qs8W,qs4Z5Xs2rO(s4Q,Us4Z5Xs2N*os1lI]s3/d+s5E"js7lHZs8W,m -s8W,ms8W,ms7Z6Ts8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drl -s8W,qs8Drls7Z3Ws7Q*Ts7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8)Wcs8W,q -s8W,qs8W,qs8;iis7cpKs8W,ms8Duis8Duis8Duis8Duis8Duis8Duis8Dui -s8Duis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs7Q*Ts7uN`s8W,qs8W,qs82`fs7cs3fE=s2E$ks.lN] -s*8s1s&rZ)s%lT`s&)ffs(Z@Ys)2mhs)N3qs+Q5Us15kJs7c?Ws8W,ms8W,ms8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8;iis2iF%s+5lOs%?$Ts"ZA^s"5rRs"5rRs"#`Js"5rPs!]H@s!&g.s!T?=s$T=< -s*B'4s1>tMs6&Y's8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs7H!Qs7Z3W -s8W,qs8N&os5;kjs3oKCs4c>[s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8)Wc -s7coMs.H'Rs,)bds(?%Ps$fOBs"?)Rs!B-7s!B-7s!T?=s$]F? -s%u]cs&N5rs(#_Gs-T79s4uS^s8W,ms8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls38j1s,iJ's%lQc -s"Q8[s"#`Ls",iOs"cJas#W>"s"ZA\s#2qjs"cM^s!9$4rur^+s$T=tMs5rP$s8W,ms8W,ms7uQ]s8W,ms8W,m -s8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs7uN`s8W,qs8W,qs8W,qs4H#Rs)rU+s%#^Ks(cF_s0K)8s8W,qs8W,qs7,[Hs8W,q -s8W,qs7Z3Ws8W,qs8W,qs8W,qs8W,qs8N&os4c>[s.5jNs)N0ts(5nNs%#^Is#N7ss"u_ds$/n0 -s%5sNs%Q9Ws&E,os']D>s(Z@Ys)`F"s)E*ns'T;;s']D>s,;tjs3T37s8W,ms7H!Qs7Z3Ws7lE] -s8N&os8W,qs8W,qs8W,qs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls8N&os8W,qs8W,qs8Drls8;iis8N&os8)Wcs8Drls8Drls7cqP -s)E'qs"Q8[rtlUert5tSrsK5>rrr]/rs/o5rt,kPruE-ts!B*8s"u\es$9"3s#WA!ruE0qrs9&5 -rtQ=Ys#2qjs%cK]s*]B=s1H(Ps7lHZs8W,ms8Duis82ccs8Duis8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s7H!Qs0T2;s%Q6ZruN7"s#2nms'T8>s3As4s8W,qs7H!Qs8N&os8Drls6oIBs7uN`s7Z3Ws8W,q -s7Z3Ws2;mks+,cLs%?$Ts!K3=rtH1Wrur[,s!oZFs#N7ss%H0Ts&rZ)s'B)5s&W>us%cK]s$9"3 -s%5sNs%u]cs%H0Ts$fOBs&rZ)s,E(ms1H(Ps8;iis8W,qs8W,qs8N&os7cmN -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7uN`s8N&os8W,qs8W,q -s8W,qs8Drls8N&os8N&os7Z3Ws8W,qs8W,qs4Z5Xs-]=?s&W<#ruE-trr<'"rr<'"rs]GDru`I( -s",iOs"cJas#W>$s$fLEs%cH^s&2ljs'K28s&iQ&s#)hgrtH4VrsB/8rt6"Pru)jhs#N7ss+lP^ -s5E"js8W,ms8W,ms82ccs7c?Ws7uQ]s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs52bgs,;qms!fNFrrE0$rsfPG -s!T<@s/iH&s8W,qs8N&os8Drls8W,qs7uN`s7uN`s8N&os8W,qs6&V*s,2hjs#E+srtlUersT>A -rr<'"ruiR)s!]H@s!/p1rtZF\ruE0qs"ZD[s#)hgs!]H@rtZF\rtcO_ru`L%s!9$4ru2skru)jh -s$9"3s)E*ns3/a.s7cArs]GDru`I(s.H'Ts8N&os8W,qs7>mN -s8W,qs8W,qs8W,qs8W,qs5iD$s.,aKs$oUHrt,kPrsK5>ruW@%s"?&Ss#2nks$fOBs#WA!ruWC" -s!&g.s$9"3s$fOBs"H2UruiU(rtZF\rtcO_ru<'nrsTA>rr<*#rtH4Vs$&e-s+H)Us3T0:s8W,q -s8W,qs7>mNs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs7Z3Ws82`fs8W,qs8W,qs8W,qs6f@?s3]9=s-8n3s&2lls"lSds$K1< -s(,eMs*B$7s,W8!s/`?#s3]9=s6/_-s6T.9s6K%6s6]7 -s,iM$s&`H#s!T?=rrWE)rur^+s(lR_s2E$ks8Duis8W,ms8N&ks8Duis8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8;iis7H!Qs82`f -s38j1s'oSGs!T<@s!&d1ru)gkrtcLbs*T6=s5Dtms82`fs7,[Hs8W,qs8W,qs7Z3Ws7uN`s-fFB -s#E+srs]GDrrE0$rs&f2s!oWIs&WsQs7Q*Ts8W,qs8W,qs8W,qs8W,qs7lE] -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls7>mN -s8Drls8W,qs8N&os5N(ps2;mks*/g1s!/m4rtQ:\s&`E&s/iH&s3]9=s3&X+s4lG^s6]7us.cEZs6/b*s8)Z`s7uQ] -s8W,ms8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs7Q*Ts8W,qs2N*qs$oUHs!]ECs$B(9s!/m4rtu^hru2pns);sns3fB@s7>mN -s8W,qs8W,qs4uPas/)]fs,N.ss,N.ss/N,rs0oMDs0&Z,s15hMs4,]Gs8W,os8W,ms8N&ks7lHZ -s7uQ]s8N&ks8W,ms8W,ms8N&ks8W,ms8W,ms7lHZs7,^Es4Z8Us-T79s&)ffrsT>As$K1Art,kPs#`G's,N.ss4lG^ -s8Drls8)Wcs8W,qs8W,qs7uN`s7cpKs7lE[s8W,ms8W,os8W,ms8;igs8Duis8W,o -s8W,ms8Drjs7#UBs8W,os8W,ms6oI@s/E#ms(lObs+,cLs1>qPs8W,qs8W,qs8N&os7Q*Ts8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8)Wcs7lE]s8;iis8W,q -s8W,qs45fLs+,cLs#E+srt5tSs!B*:s"5rRs&W<#s0T2;s7Z3Ws8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8)Z`s7#UB -s6/b*s6K(3s7c?Ws8W,ms8W,ms8W,ms8)Wcs82`fs8W,qs8W,qs8W,qs7uN`s7csOs-T79s&E)ps,`D!s4,]Gs7uQ]s8;igs7c?Ws82`d -s8W,os8W,os8W,os8W,qs8W,os8W,qs8W,os8W,qs8W,os8W,qs8W,os8W,qs7Z3Us7uN`s8W,o -s8W,qs8)Wcs2N*qs4Q,Us7>mNs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs7H!Qs4lG^s/;ols'/i2ru`I(s#`G' -s'K/;s)W:"s-&\-s4#TFs7uN`s7uN`s8;iis8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drj -s8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis7H$Ns7uQ]s8W,ms8W,ms8W,ms8N&ks8;lf -s82ccs82`fs8)Wcs82`fs8N&os8N&os82`fs8)Wcs82`fs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Dui -s8Duis8Duis8;lfs8W,ms7Q-Qs/`Aus&iQ&s"H2Us"u_ds$oXEs%lT`s$/n0s"ZD[s"cM^s$B+6 -s%u]cs&N5rs&<#ls(,hJs.cEZs5iG!s8W,ms8W,ms8W,ms8W,ms8)Z`s8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs6f@?s7lE]s8;iis7uN`s82`fs8W,qs7uN`s6T.9s7,[Hs7H!Qs7Z3W -s7uN`s82`fs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls82`fs8W,qs8Drls4H#Rs/)]fs)E'qs#W>$rt?(Vs$fLEs*]?@s/2fis2iF%s7Q*Ts8W,q -s8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Dui -s8Duis8Duis8Duis7>pKs8W,ms8W,ms8W,ms8Duis7Z6Ts7lHZs8N&ks8W,qs8Drls7uN`s7lE] -s82`fs8N&os8N&os82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8W,ms75gH -s1>tMs(lR_s"lVas"cM^s%Q9Ws'T;;s'8u2s&E,os$fOBs#<%ms"Q;Xs"u_ds#N7ss)iO%s1#YD -s7#UBs82ccs82ccs8W,ms8W,ms7Z6Ts8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE] -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE]s8W,qs8W,qs7lE]s7Z3Ws7uN`s8N&os8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7#REs8W,qs7Q*Ts1>qP -s*8p4s%Z?]s"cJaruiR+s$&b0s*8p4s/W5us45fLs8W,qs8W,qs7cus&W>u -s&<#ls%cK]s%?'Qs&`H#s/W8rs7Q-Qs8W,ms8N&ks8W,ms8W,ms8)Z`s8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs7lE]s8W,qs8W,qs7Q*Ts7>mNs8Drls8W,qs8W,qs8Drls8N&os8W,q -s8W,qs8W,qs8W,qs8)Wcs7H!Qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8N&os8W,qs6Aq3s,rS*s%?$Ts#E+ss#iP*s#W>$s"?&Us$oUHs'T8>s-/e0s4>oOs75dK -s82`fs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Dui -s8Duis8Duis8Duis8W,ms8W,ms8W,ms8W,ms8W,ms6K(3s2W6qs/W8rs3oKCs7Q*Ts8W,qs8W,q -s8)Wcs8W,qs8W,qs8)Wcs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,os8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8N&ks8W,m -s82ccs3oN@s,;tjs$fOBruWC"s%,jKs%,jKs%H0Ts&2ois&`H#s&)ffs$K49s"u_ds#r\*s*oTC -s3&[(s7lHZs8W,ms8W,ms8W,ms8;lfs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wc -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs7uN`s8N&os8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs4Z5Xs*oQF -s$8t6s#iP*s$]CBs$&b0s!K3=s"?&Us#)ejs'8r5s.,aKs22dhs5`;!s8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms8)Z` -s6T16s4#WCs0K,5s,)bds'oVDs%?'Qs.cB]s4c>[s8W,qs8W,qs7lE]s8N&os8W,qs8N&os8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis8)Z`s8N&ks8N&ks7uQ]s5rP$s0T58s'oVDruWC" -s$&e-s$]F?s%cK]s&iQ&s'/l/s&2ois$K49s#)hgs#)hgs#iS's']D>s.5mKs3oN@s6]:9s7uQ] -s8W,ms8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs5W1ss4,]Is4lG^s6Aq3 -s5rM's4H#Rs3T0:s5N(ps7Z3Ws8;iis7cs*T6=s.cB]s5)Yds8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drj -s8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8W,ms6fCpKs8)Z`s7uQ]s7Q-Qs7Q-Qs4Q/Rs+lP^s"u_ds!9$4s"u_ds%5sNs&`H#s&rZ) -s&)ffs%,jKs$K49s#`J$rsB/8rr<*#s#)hgs+lP^s1uU_s6At0s8W,ms8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls45fLs.#XHs)`C%s)iL(s,;qms-/e0s,E%ps,N.ss0];>s5iD$ -s8W,qs8W,qs8)Wcs8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7lE]s8;iis2;mks'8r5s!oWIs$8t6s&;uos%#^Ks#N5!s$8t6s$K1rLs.H*Qs'&c,s!]H@rso\Grs/r3rtZF\s!]H@s.#XHs4lG^s8W,qs8W,q -s7Q*Ts8)Wcs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis8N&ks8W,ms8W,m -s7lHZs8W,ms7c?Ws0oPAs(u[bs!K6:s!9$4s%,jKs(Z@Ys'fMAs&rZ)s&N5rs$K49s$9"3s%5sN -s$K49s"5uOs"Q;Xs'&c,s,2kgs.uW`s/iH&s0];>s2;mks45fLs5rM's7H!Qs8Drls8W,qs8Drl -s,;qmruW@%rrN9&rt?(VruE-truE-truW@%s&W<#s.lK`s6Aq3s7uN`s7Q*Ts8Drls8W,qs8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8N&os8W,qs3As4s*&^. -s$B(9s$]CBs%lQcs%5pQs%5pQs%,gNs$fLEs$8t6s$/k3s$fLEs&)cis'&`/s,E%ps1,_Js6/_- -s8Drls8W,qs8W,qs8W,qs8;igs7Z3Us8;lfs8W,ms8W,ms8W,ms8W,ms5rP$s2W6qs*K07s'/l/ -s#<%mru`L%rt?+Srtuaes#)hgs&E,os0oMDs6K%6s8W,qs8W,qs7lE]s8Drls8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis82ccs8W,ms8W,ms8)Z`s8W,ms8N&ks38m.s,iM$ -s"u_ds!&g.s#iS's']D>s&rZ)s&2ois'8u2s'B)5s'oVDs)2mhs(?%Ps$fOBs"5uOs"lVas%#aH -s&<#ls&iN)s'8r5s(?"Ss*&^.s,E%ps/)]fs1H%Ss2iF%s1Q.Vs(#\Js!&d1ruN7"rtlUerrN9& -rtH1Ys$]CBs.5jNs4>oOs8W,qs8W,qs7lE]s8Drls8W,qs8)Wcs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs5Dtms/2fis);sns&E)rs%Z?]s%Q6Zs&W<# -s&)cis%Q6Zs%Q6Zs%Z?]s%#^Ks#W>$s"Q8[s%Z?]s+#ZIs1H%Ss5W1ss7c[s8;iis8W,qs8W,qs82`fs8W,qs8W,qs7lE]s8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Dui -s8Duis8Duis7lHZs8W,ms8W,ms8;lfs8W,ms8W,ms68k-s2;phs%u]cs!&g.s",lLs&rZ)s'8u2 -s&<#ls(#_Gs)`F"s(Q7Vs*/j.s*/j.s'T;;s$fOBs#`J$s#r\*s$/n0s#`G's"u\gs"#`Ls!fNF -s"cJas$fLEs'/i2s(Z=\s']AAs",iOruW@%s#)ejs!K3=rsB,;s$&b0s.>sQs5N(ps8W,qs8W,q -s8W,qs7uN`s8W,qs8W,qs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls7Q*Ts4Q,Us.lK`s(Z=\s%,gNs$8t6s%lQcs&2lls&iN)s'B&8s'8r5s&)ci -s$&b0s"H/Xs#E+ss'fJDs,rS*s0Au5s2`="s4lG^s5iD$s5`:ts8Drjs8W,ms8N&ks6K(3s38m. -s-oRBs&E,oruE0qru)jhs!K6:s"u_ds"u_ds"5uOs$/n0s*K07s0oPAs7>mNs8W,qs8W,qs8W,q -s8;iis8W,qs8W,qs7Z3Ws8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drjs8Drjs8Duis8Duis8Duis8Duis8Duis8Duis8Duis7lHZs8W,ms8W,m -s82ccs8;lfs8W,ms8)Z`s6At0s*B'4s"5uOs!oZFs(Z@Ys+?#Os*B'4s*]B=s+Q5Us)$ru`I(s$/k3s%Z?]s'K/;s(H+Vs(5nPs'B&8s&N2us&)cis%H-Ws'K/;s(uXe -s)2jks)W:"s+,cLs,2hjs,E%ns08l0s1H(Ps15kJs.Q3Ts+#]Fs'K28s#WA!ruWC"s"#cIs"u_d -s#iS's#2qjs!oZFs$/n0s+H,Rs2W6qs8;iis8N&os8Drls7lE]s82`fs8W,qs8W,qs7uN`s8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8Drj -s8Duis8Duis8Duis8Duis8Duis8Duis8Duis82ccs8W,ms8W,ms8)Z`s7Z6Ts8)Z`s8;lfs8)Z` -s/E&ls%H0Ts#iS's,;tjs1lL\s1uU_s0B#2s.Z$s$&b0s"lSds!K3=rtQ:\rt,kPs"Q8[s)N0t -s1H%Ss6K%6s7lE]s8;iis82`fs7uN`s8Drls8W,qs8W,qs8;iis8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs4lG^s-&\-s$fLErtZC_s#iP* -s%,gNs&W<#s'K/;s']AAs'oSGs(Q4Ys)2jks'oSGs(,eMs&`E&s$/k3s"H/Xs"Q8[s"lSds"Q8Y -s#E+qs%#aHs%Q9Ws$/n0s"cM^s"u_ds#E.ps#N7ss"lVas"cM^s"Q;Xs!fQCs!T?=s%#aHs,iM$ -s4#WCs8;iis8)Wcs7cmNs2rO(s+>uRs$oUHs%cH`s%,gNs$T:?s$fLEs%uZfs'B&8 -s(Q4Ys(uXes(?"Ss(H+Vs'/i2s$B(9s"H/Xs!fNFs!&d1ru)girtu^frur^+s!/p1ruE0qru`L% -s"Q;Xs#r\*s$9"3s#WA!s"Q;Xs!]H@s!oZFs#WA!s(?%Ps0/f,s6fCs'B&6s'K/;s(Q4Ws(Z=\ -s'B&6s&2lls%Z?[s$K1us&Ws$8t6s!fNF -s!9!7s"lSds%H-Ws'8r5s/)]fs1,_Js4>oOs75dKs8W,qs8W,qs8Drls7Z3Ws8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7cus%Q6Zs%Q6Zs%H-Ws%Q6Zs&)ci -s'/i2s(H+Vs);sns(Q4Ys)W:"s+#ZIs-T4qPs0oMDs/N,rs-fFBs,E%ps)E'qs(lObs(H+Vs(lObs*T6=s-B"6s08l2s22dhs5rM' -s6f@?s82`fs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7H!Qs7coO -s2rO(s/W5us0&Z,s0oMDs2;mks4#TFs5iD$s7>mNs82`fs8W,qs8W,qs8W,qs8W,qs8W,qs8N&o -s82`fs7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls7lE]s7lE]s7uN`s8)Wcs8;iis8W,qs8W,qs8W,os8)Wa -s7uQ]s7lHZs8N&ks8W,ms82ccs3/d+s.,dHs%u]cs#r\*s"u_ds$9"3s%cK]s%u]cs%ZBZs%ZBZ -s%?$Ts$8t6s#E+ss#rY-s&)cis(uXes+H)Us,`A$s0oMDs4,]Is7H!Qs8W,qs8W,qs8W,qs8W,q -s82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls7Q*Ts8W,qs8W,qs1Z7Ys+lMa -s)iL(s'K/;s$8t6s#rY-s+lMas45fLs82`fs8W,qs8W,qs82`fs6f@?s6oIBs7,[Hs7Z3Ws8)Wc -s8;iis8;iis8)Wcs7uN`s8W,qs8W,qs8Drls82`fs7uN`s7lE]s7lE]s7uN`s8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8Drls82`fs8)Wcs82`fs8Drls8W,qs8W,os82`ds8W,ms8W,ms8W,ms8W,ms8W,m -s7lHZs5;ngs.lN]s)`F"s%5sNs$oXEs&W>us&rZ)s%Q9Ws$9"3s$fLEs$8t6s$/k3s%?$Ts(,eM -s+cD^s/)]fs1#VGs5)Yds7H!Qs8W,qs8W,qs8;iis8W,qs8W,qs8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls6oIBs8W,qs8W,qs1#VGs);sns%cH`s#W>$s!T<@s"ZA^s+cD^ -s4uPas8W,qs8W,qs8W,qs8W,qs82`fs8Drls8N&os8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs82`f -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8Drl -s8;iis8Drls8N&os8W,os8N&ms8W,ms8W,ms82ccs8;lfs8W,ms8W,ms82ccs5;ngs.Zus$]F?s"u_ds$B(9s%Z?]s'fJDs*B$7s-8n3s0];>s3oKCs6&V*s8)Wcs8W,q -s8W,qs8;iis7Q*Ts82`fs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s7Q*Ts8W,qs8;iis1>qPs(Q4Ys"cJaruW@%ru<$qs#`G's-K+9s6T.9s8W,qs8W,qs8W,qs8W,q -s8N&os8W,qs8W,qs8N&os8Drls8N&os8W,qs8W,qs8W,qs8)Wcs8;iis8W,qs8W,qs8W,qs8W,q -s82`fs7uN`s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8N&os8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,os7H!O -s8Duis8W,ms82ccs82ccs8;lfs75gHs5N+ms2iI"s-B%3s']D>s%Q9Ws%H0Ts$fOBs#`J$s#)hg -s%cH`s)E'qs.>sQs2)[es4,]Is5W1ss7H!Qs8W,qs8W,qs8W,qs8W,qs8;iis7uN`s8W,qs8W,q -s8N&os8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8;iis8W,qs8W,qs4#TFs+#ZI -s"Q8[rtQ:\ruE-ts&2lls0&Z,s8Drls8W,qs82`fs8W,qs8W,qs8;iis8W,qs8W,qs8W,qs8W,q -s8N&os8;iis8;iis82`fs82`fs82`fs82`fs8)Wcs7uN`s7lE]s7cmNs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8N&os8W,qs8W,qs6]7s0&Z,s7lE]s8W,qs8Drls8)Wcs8;ii -s82`fs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8W,o -s8W,ms8W,ms6oL?s2E$ks,E(ms'T;;s%?'Qs$B+6s#r\*s#)hgs"Q;Xs$/n0s(?%Ps-]@As#)ejs*/g1s1c@\s5rM's7lE]s8W,qs8W,qs8)Wcs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drjs8W,os8W,ms82ccs3oN@s.?!Ns)WpKs8W,ms8W,m -s82`fs7cmNs1uRbs(#\Js!]EArr`K*rsfPErur[.s#iP( -s+H)Us4#TDs8Drls8Drjs8Drls8Drjs8Drls8Drjs8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls7uN`s7cru<$qs'fJDs2N*qs8W,qs8W,qs7uN` -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8;iis82`fs8N&os8W,qs7Q*Ts3&X+s,W8!s'fJDrs/o5 -rtH1YruiR+s#iP*s+#ZIs3]9=s8Drls8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8N&os7uN`s8W,qs8W,qs8N&o -s8W,qs2E!ns(?"SrsoYJrur[.s(H+Vs2iF%s8W,qs8Drls7Q*Ts8N&os8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8W,qs7uN`s7>mNs7Q*Ts4>oOs-8n3s&W<#s#N5!rsoYJs!/m4s$]CBs*/g1s1c@\s82`f -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs82`fs8W,qs8W,qs8Drls8W,qs2`="s(cF_rtcLbs!T<@ -s(cF_s3&X+s8W,qs8N&os7cmNs08l2s&iN)ruiR+rtH1Ys!&d1 -s#rY-s+#ZIs3]9=s8Drls8N&os8;iis8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8)Wcs8W,qs8N&os82`f -s7uN`s1c@\s'K/;s!/m4rur[.s&2lls0T2;s8)Wcs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls7Z3Ws8W,qs82`fs2rO(s*8p4s#)ejruN7"rur[.s$]CBs*oQFs2E!ns6oIBs8Drls8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls7uN`s8W,qs8W,qs8)Wcs7Q*Ts0oMDs&E)rs!&d1rtH1Y -s#W>$s.,aKs7,[Hs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls82`fs8W,qs5W1ss-&\- -s#W>$rt5tSruN7"s#<"ps)N0ts2`="s8W,qs8W,qs8)Wcs8W,qs8W,qs6f@?s8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s82`fs7lE]s8W,qs8W,qs8)Wcs7>mNs0Au5s%Q6Zru`I(rs9#8s!]ECs,E%ps68h0s8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,q -s8)Wcs8)Wcs8;iis8N&os8;iis7uN`s8Drls8W,qs3fB@s'T8>s",iOrtlUersT>As'/i2s1H%S -s6T.9s8W,qs8W,qs8)Wcs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs7lE]s7csQs%Z?]s"lSdrrE0$s"#`Ls/N,rs7uN`s8W,qs8W,qs7H!Qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8)Wcs8W,qs8W,qs82`fs82`fs8W,qs8W,qs8)Wcs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8N&os82`fs8;iis8W,qs8W,qs8W,q -s8W,qs8W,qs7c$s!]ECrs&f2 -s#rY-s0];>s7cs%5pQs+H)Us4Q,Us82`f -s8W,qs8W,qs82`fs8Drls8W,qs8W,qs7cmNs6K%6s.uTcs%cH`s(,eMs,rS*s1Q.Vs8)Wcs8W,qs8W,qs8N&o -s8;iis8Drls8W,qs8N&os8;iis8N&os8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8N&os8W,qs8W,qs82`fs8W,q -s8W,qs5)Yds/`?#s,2hjs/E#os5`;!s8W,qs7lE]s8N&os8W,qs8Drls8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs7uN`s8W,qs8W,qs8Drls8Drls8W,qs8W,qs7uN`s8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,qs8W,q -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8W,qs8W,qs8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drl -s8Drls8Drls8Drls8Drls8Drls8Drls8Drls8Drls82`fs82`fs8Drls8W,qs8W,qs8W,qs8)Wc -s75dKs6f@?s.,aKs1Q.Vs5`;!s6oIBs8W,qs8W,qs7Z3Ws8Drls8N&os8W,qs8W,qs8;iis7Q*T -s7c -6 81<315 428> 184 37<352 392> 401 37<180 274 408 497> -VStem: 230 116<90 184> 464 116<294 402> -LayerCount: 2 -Fore -SplineSet -438 402 m 0x3c - 391 402 357 271 352 221 c 1 - 390 221 464 292 464 364 c 0 - 464 382 459 402 438 402 c 0x3c -230 89 m 1 - 227 103 229 182 235 204 c 1 - 214 200 173 184 163 178 c 0 - 148 168 128 142 125 121 c 1 - 117 79 143 61 164 61 c 0xbc - 184 61 221 81 230 89 c 1 -253 438 m 0 - 295 438 328 417 345 382 c 1 - 385 417 430 438 472 438 c 0 - 522 438 580 417 580 349 c 0 - 580 248 410 184 349 184 c 1 - 348 181 347 164 347 159 c 0 - 347 123 357 75 406 75 c 0 - 450 75 502 136 505 139 c 1 - 514 139 520 115 520 109 c 1 - 507 88 400 -6 338 -6 c 0x7c - 293 -6 259 16 241 56 c 1 - 226 45 123 -8 94 -8 c 0 - 30 -8 -5 53 6 111 c 0 - 14 149 42 181 65 189 c 0 - 100 201 169 222 233 243 c 0 - 238 245 239 248 240 257 c 2 - 243 304 l 2 - 244 312 244 320 244 328 c 0 - 244 367 237 401 212 401 c 0 - 180 401 164 363 146 319 c 0 - 137 297 121 276 92 276 c 0 - 70 276 50 296 55 323 c 0 - 58 336 65 349 75 363 c 1 - 89 376 178 438 253 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_A_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_A_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_A_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_A_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ -StartChar: AE -Encoding: 198 198 132 -Width: 843 -Flags: W -HStem: -3 36<-62 -2 301 365> -2 43<507 698> 264 47<254 392> 295 46<530 657> 605 36<359 380 558 729> -VStem: 684 28<221 277> 703 27<378 417> 768 35<499 558> -LayerCount: 2 -Back -SplineSet -410.15625 485.3515625 m 25 - 126.953125 97.65625 l 1025 -468.75 459.9609375 m 25 - 185.546875 72.265625 l 1025 -EndSplineSet -Fore -SplineSet -495 642 m 0xad - 533 642 738 647 792 648 c 1 - 794 599 799 548 803 504 c 1 - 800 501 789 499 782 499 c 0 - 775 499 769 502 768 507 c 0 - 754 561 736 605 680 605 c 2 - 605 605 l 2 - 584 605 564 605 558 594 c 0 - 552 582 550 562 547 534 c 2 - 530 352 l 2 - 530 346 548 341 568 341 c 2 - 616 341 l 2 - 670 341 682 352 703 409 c 0 - 705 414 707 417 714 417 c 0 - 721 417 729 415 731 412 c 1x1b - 712 225 l 1 - 710 223 703 221 696 221 c 0 - 689 221 684 224 684 229 c 0 - 678 276 666 284 658 288 c 0 - 648 293 624 295 590 295 c 0 - 565 295 524 293 523 281 c 2 - 507 138 l 2 - 506 132 501 81 507 61 c 0 - 511 47 541 41 564 41 c 2 - 624 41 l 2 - 658 41 689 51 712 73 c 0 - 733 94 749 122 770 166 c 0 - 772 170 776 172 783 172 c 0 - 792 172 808 169 810 166 c 1 - 788 113 755 41 744 -2 c 1 - 719 -2 549 -2 426 -2 c 0x5d - 363 -2 313 -3 301 -3 c 1 - 297 3 299 26 304 33 c 1 - 316 34 359 37 365 50 c 0 - 374 70 376 100 380 142 c 2 - 392 259 l 2 - 391 260 390 263 388 263 c 0 - 354 265 332 264 310 264 c 0 - 273 264 258 264 226 263 c 0 - 223 263 218 260 217 258 c 2 - 217 258 148 159 129 132 c 0 - 113 108 93 72 91 65 c 0 - 84 40 145 32 152 32 c 1 - 155 25 153 0 149 -4 c 1 - 118 0 79 4 39 4 c 0 - -3 4 -28 0 -60 -4 c 1 - -63 0 -66 20 -59 31 c 1 - -48 31 0 46 13 62 c 0 - 36 89 44 104 64 131 c 2 - 372 576 l 0 - 372 576 380 589 380 594 c 0 - 380 604 362 608 356 608 c 1 - 352 615 357 639 361 645 c 1 - 401 642 457 642 495 642 c 0xad -421 554 m 1 - 254 317 l 1 - 254 317 254 313 256 313 c 0 - 274 311 298 311 319 311 c 0x29 - 347 311 365 310 393 312 c 0 - 395 312 398 317 398 317 c 1 - 417 501 l 2 - 419 522 420 539 421 554 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/a.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/a.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/a.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/a.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: a -Encoding: 97 97 65 -Width: 477 -Flags: W -HStem: -8 84<67 186 275 375> 385 54<223 328> -VStem: 11 123<84 217> -LayerCount: 2 -Fore -SplineSet -311 438 m 0 - 346 438 395 428 415 421 c 1 - 354 129 l 2 - 353 125 351 102 351 97 c 0 - 351 88 354 76 364 76 c 0 - 385 76 431 130 434 136 c 1 - 441 136 447 115 447 109 c 1 - 430 78 345 -8 292 -8 c 0 - 258 -8 231 14 231 57 c 0 - 231 61 232 68 233 75 c 0 - 234 83 236 90 237 94 c 1 - 216 58 154 -7 95 -7 c 0 - 40 -7 11 46 11 112 c 0 - 11 287 187 438 311 438 c 0 -256 385 m 0 - 190 385 134 263 134 148 c 0 - 134 101 148 79 169 79 c 0 - 202 79 251 177 271 274 c 2 - 290 373 l 1 - 283 381 270 385 256 385 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: A -Encoding: 65 65 33 -Width: 605 -Flags: W -HStem: -4 36<-57 -2 88 141 309 370 521 568> 220 47<193 346> 627 20G<382 391> -LayerCount: 2 -Fore -SplineSet -60 131 m 2 - 347 609 l 2 - 355 622 377 646 387 646 c 0 - 395 646 404 643 405 640 c 1 - 495 145 l 2 - 501 115 503 95 507 74 c 0 - 515 34 564 32 571 32 c 1 - 574 23 569 0 565 -4 c 1 - 529 -2 485 4 445 4 c 0 - 403 4 339 -2 306 -4 c 1 - 302 1 309 32 314 32 c 1 - 330 32 355 38 370 50 c 0 - 377 55 381 59 382 66 c 0 - 384 75 356 215 356 215 c 1 - 356 215 354 219 351 219 c 0 - 317 221 286 220 264 220 c 0 - 227 220 201 220 169 219 c 0 - 166 219 163 216 162 214 c 1 - 162 214 129 159 113 132 c 0 - 99 108 81 72 80 65 c 0 - 75 40 137 32 144 32 c 1 - 148 25 141 0 137 -4 c 1 - 106 0 80 4 40 4 c 0 - -2 4 -27 0 -59 -4 c 1 - -62 0 -60 20 -54 31 c 1 - -43 31 3 46 15 62 c 0 - 36 89 43 104 60 131 c 2 -308 465 m 1 - 193 273 l 1 - 193 273 193 270 195 270 c 0 - 213 268 248 267 269 267 c 0 - 297 267 314 267 342 269 c 0 - 344 269 346 273 346 273 c 1 - 308 465 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: agrave -Encoding: 224 224 158 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 544 10 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Agrave -Encoding: 192 192 126 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 10 -3 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: amacron -Encoding: 257 257 276 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 559 35 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Amacron -Encoding: 256 256 275 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 117 170 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ampersand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ampersand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ampersand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ampersand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: ampersand -Encoding: 38 38 6 -Width: 790 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -5 49<332 499> 472 52<333 460> -VStem: -10 61<87 173> 118 126<141 334> 382 145<377 468> 437 35<127 179> 599 62<131 228> 711 74<434 495> -LayerCount: 2 -Fore -SplineSet -438 523 m 27xf7 - 484 523 526 491 526 445 c 27 - 526 280 221 237 166 222 c 0 - 99 203 51 191 51 151 c 3 - 51 134 58 127 71 115 c 0 - 83 104 91 93 91 77 c 3 - 91 45 67 24 38 24 c 27 - 25 24 17 26 7 29 c 1 - -5 49 -10 78 -10 96 c 0 - -10 166 35 220 113 246 c 0 - 188 271 382 293 382 427 c 3xfb - 382 455 365 472 346 472 c 3 - 281 472 244 346 244 242 c 3 - 244 124 312 44 414 44 c 27 - 505 44 599 97 599 188 c 0 - 599 205 593 223 587 229 c 1 - 534 209 472 189 472 146 c 3 - 472 131 473 128 474 118 c 1 - 470 116 457 122 450 128 c 1 - 447 133 437 146 437 172 c 3 - 437 245 477 260 562 311 c 0 - 628 351 711 407 711 533 c 1 - 720 534 729 530 735 527 c 1 - 758 509 785 467 785 421 c 27 - 785 338 720 287 652 254 c 1 - 656 245 660 232 660 217 c 0 - 660 84 522 -5 384 -5 c 0 - 258 -5 118 68 118 209 c 3 - 118 355 263 523 438 523 c 27xf7 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: aogonek -Encoding: 261 261 378 -Width: 477 -Flags: W -HStem: -213 61<230 312> -7 86<67 186> 385 54<223 328> -VStem: 11 123<84 217> 190 60<-169 -88> -LayerCount: 2 -Fore -SplineSet -256 385 m 0 - 190 385 134 263 134 148 c 0 - 134 101 148 79 169 79 c 0 - 202 79 251 177 271 274 c 2 - 290 373 l 1 - 283 381 270 385 256 385 c 0 -447 109 m 1 - 438 92 409 60 376 33 c 0 - 316 -16 250 -65 250 -119 c 0 - 250 -142 261 -152 285 -152 c 0 - 326 -152 350 -122 357 -117 c 1 - 364 -119 362 -139 360 -143 c 0 - 338 -181 290 -213 249 -213 c 0 - 211 -213 190 -182 190 -156 c 0 - 190 -94 240 -51 281 -7 c 1 - 252 -3 231 18 231 57 c 0 - 231 61 232 68 233 75 c 0 - 234 83 236 90 237 94 c 1 - 216 58 154 -7 95 -7 c 0 - 40 -7 11 46 11 112 c 0 - 11 287 187 438 311 438 c 0 - 346 438 395 428 415 421 c 1 - 354 129 l 2 - 353 125 351 102 351 97 c 0 - 351 88 354 76 364 76 c 0 - 385 76 431 130 434 136 c 1 - 441 136 447 115 447 109 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: Aogonek -Encoding: 260 260 377 -Width: 605 -Flags: W -HStem: -213 61<282 364> -4 36<-57 -2 88 141 521 568> 220 47<193 346> 627 20G<382 391> -VStem: 243 60<-169 -82> -LayerCount: 2 -Fore -SplineSet -445 4 m 0 - 383 4 302 -57 302 -119 c 0 - 302 -142 313 -152 337 -152 c 0 - 378 -152 403 -122 410 -117 c 1 - 417 -119 414 -139 412 -143 c 0 - 390 -181 342 -213 301 -213 c 0 - 263 -213 243 -182 243 -156 c 0 - 243 -92 285 -53 327 -7 c 0 - 354 22 381 40 381 79 c 0 - 381 88 356 215 356 215 c 1 - 356 215 354 219 351 219 c 0 - 317 221 286 220 264 220 c 0 - 227 220 201 220 169 219 c 0 - 166 219 163 216 162 214 c 1 - 162 214 129 159 113 132 c 0 - 99 108 81 72 80 65 c 0 - 75 40 137 32 144 32 c 1 - 148 25 141 0 137 -4 c 1 - 106 0 80 4 40 4 c 0 - -2 4 -27 0 -59 -4 c 1 - -62 0 -60 20 -54 31 c 1 - -43 31 3 46 15 62 c 0 - 36 89 43 104 60 131 c 2 - 347 609 l 2 - 355 622 377 646 387 646 c 0 - 395 646 404 643 405 640 c 1 - 495 145 l 2 - 501 115 503 95 507 74 c 0 - 515 34 564 32 571 32 c 1 - 574 23 569 0 565 -4 c 1 - 529 -2 485 4 445 4 c 0 -308 465 m 1 - 193 273 l 1 - 193 273 193 270 195 270 c 0 - 213 268 248 267 269 267 c 0 - 297 267 314 267 342 269 c 0 - 344 269 346 273 346 273 c 1 - 308 465 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aring -Encoding: 229 229 163 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 529 6 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aring -Encoding: 197 197 131 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 262 -1 N 1 0 0 1 112 0 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowdown -Encoding: 8595 8595 225 -Width: 333 -Flags: W -HStem: -9 21G<121 128> -VStem: 0 317 -LayerCount: 2 -Fore -SplineSet -112 126 m 1 - 229 718 l 2 - 230 721 231 724 242 724 c 0 - 259 724 296 710 296 710 c 1 - 179 125 l 1 - 216 161 l 1 - 274 214 296 233 303 233 c 0 - 314 233 317 204 317 198 c 1 - 315 197 253 141 139 -3 c 0 - 136 -8 131 -9 125 -9 c 0 - 116 -9 109 -8 103 -1 c 1 - 56 127 3 195 0 200 c 1 - 2 206 19 233 30 233 c 0 - 37 233 50 214 87 161 c 2 - 112 126 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowleft -Encoding: 8592 8592 222 -Width: 700 -Flags: W -HStem: 205 72<161 658> -LayerCount: 2 -Fore -SplineSet -197 312 m 2 - 161 277 l 1 - 663 277 l 2 - 669 277 670 275 670 265 c 0 - 670 255 657 214 645 205 c 1 - 146 205 l 1 - 169 173 l 2 - 203 123 222 106 222 97 c 0 - 222 83 189 72 185 71 c 1 - 184 73 132 129 17 222 c 0 - 14 223 13 229 13 232 c 0 - 13 241 16 253 25 262 c 1 - 159 339 247 409 252 413 c 1 - 257 412 279 402 279 390 c 0 - 279 386 276 386 197 312 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowright -Encoding: 8594 8594 224 -Width: 687 -Flags: W -HStem: 204 74<27 524> -LayerCount: 2 -Fore -SplineSet -524 204 m 1 - 22 204 l 2 - 16 204 16 207 16 217 c 0 - 16 227 29 269 41 278 c 1 - 539 278 l 1 - 515 312 l 0 - 476 363 460 381 462 389 c 0 - 464 401 493 412 499 413 c 1 - 503 409 552 339 656 262 c 1 - 661 254 660 245 658 235 c 0 - 657 229 654 224 649 222 c 1 - 498 129 435 73 434 71 c 1 - 429 72 404 84 406 96 c 0 - 408 104 429 122 488 173 c 0 - 524 204 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowup.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowup.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowup.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/arrowup.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowup -Encoding: 8593 8593 223 -Width: 326 -Flags: W -VStem: 15 317 -LayerCount: 2 -Fore -SplineSet -153 563 m 1 - 116 527 l 1 - 58 474 36 455 29 455 c 0 - 18 455 15 484 15 490 c 1 - 17 491 79 547 193 691 c 0 - 196 696 201 697 207 697 c 0 - 216 697 223 696 229 689 c 1 - 276 561 329 493 332 488 c 1 - 330 482 313 455 302 455 c 0 - 295 455 282 474 245 527 c 2 - 220 562 l 1 - 103 -29 l 2 - 102 -32 101 -35 90 -35 c 0 - 73 -35 36 -21 36 -21 c 1 - 153 563 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asciicircum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asciicircum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asciicircum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asciicircum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: asciicircum -Encoding: 94 94 62 -Width: 315 -Flags: W -HStem: 458 216 -VStem: 20 276 -LayerCount: 2 -Fore -SplineSet -20 487 m 1 - 28 501 111 554 178 661 c 0 - 183 670 182 674 189 674 c 0 - 211 674 199 652 238 574 c 0 - 254 545 295 493 296 488 c 1 - 295 484 285 458 278 458 c 0 - 263 458 206 512 173 568 c 1 - 122 512 40 458 25 458 c 0 - 19 458 20 473 20 487 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asciitilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asciitilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asciitilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asciitilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: asciitilde -Encoding: 126 126 94 -Width: 525 -Flags: W -HStem: 239 60<302 433> 291 60<110 241> -LayerCount: 2 -Fore -SplineSet -188 351 m 0x40 - 273 351 308 299 393 299 c 0 - 428 299 453 320 483 342 c 1 - 485 341 487 335 487 327 c 0 - 487 282 412 239 355 239 c 0x80 - 269 239 235 291 149 291 c 0 - 114 291 89 270 59 248 c 1 - 57 249 55 255 55 263 c 0 - 55 311 137 351 188 351 c 0x40 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asterisk.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asterisk.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/asterisk.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/asterisk.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: asterisk -Encoding: 42 42 10 -Width: 415 -Flags: W -HStem: 418 78<80 167> 451 53<255 278> 461 27<184 227> 630 20G<210 240> -VStem: 161 74<300 376> 228 52<454 458 488 502> -LayerCount: 2 -Fore -SplineSet -264 504 m 0x54 - 288 504 325 620 381 620 c 0 - 395 620 407 611 407 588 c 0 - 407 527 279 511 279 480 c 0x54 - 279 454 397 474 397 414 c 0 - 397 391 374 369 354 369 c 0 - 312 369 285 451 261 451 c 0 - 239 451 253 387 235 331 c 0 - 226 302 206 294 192 294 c 0 - 176 294 161 309 161 326 c 0x58 - 161 365 228 428 228 453 c 0 - 228 458 227 461 220 461 c 0x34 - 199 461 140 418 103 418 c 0 - 86 418 71 431 71 447 c 0 - 71 460 79 496 132 496 c 0x94 - 160 496 190 488 210 488 c 0x34 - 231 488 231 491 231 498 c 0 - 231 521 180 560 180 602 c 0 - 180 626 199 649 223 649 c 0 - 257 649 255 609 255 570 c 0 - 255 564 250 504 264 504 c 0x54 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/at.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/at.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/at.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/at.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ -StartChar: at -Encoding: 64 64 32 -Width: 759 -Flags: W -HStem: -17 76<439 536> -7 86<226 344> 385 54<382 486> 527 41<363 557> -VStem: 29 51<19 251> 169 123<84 217> 672 56<189 413> -LayerCount: 2 -Back -SplineSet -16.4404296875 222.65625 m 1 - 26.3203125 273.484375 45.427734375 322.051757812 73.7607421875 368.358398438 c 0 - 102.094726562 414.666015625 135.834960938 454.5546875 174.98046875 488.025390625 c 0 - 214.125976562 521.49609375 258.157226562 548.135742188 307.076171875 567.943359375 c 0 - 355.994140625 587.751953125 405.158203125 597.65625 454.568359375 597.65625 c 0 - 487.58984375 597.65625 519.0234375 593.189453125 548.869140625 584.255859375 c 0 - 578.71484375 575.322265625 605.330078125 562.716796875 628.712890625 546.44140625 c 0 - 652.096679688 530.165039062 672.948242188 510.615234375 691.26953125 487.79296875 c 0 - 709.590820312 464.970703125 723.736328125 439.669921875 733.708007812 411.892578125 c 0 - 743.678710938 384.114257812 750.17578125 354.256835938 753.198242188 322.3203125 c 0 - 756.219726562 290.3828125 754.124023438 257.161132812 746.909179688 222.65625 c 1 - 737.029296875 171.828125 717.921875 123.260742188 689.587890625 76.9541015625 c 0 - 661.254882812 30.646484375 627.514648438 -9.2421875 588.369140625 -42.712890625 c 0 - 549.224609375 -76.18359375 505.192382812 -102.823242188 456.274414062 -122.630859375 c 0 - 407.35546875 -142.439453125 358.19140625 -152.34375 308.782226562 -152.34375 c 0 - 275.760742188 -152.34375 244.327148438 -147.876953125 214.481445312 -138.943359375 c 0 - 184.634765625 -130.009765625 158.020507812 -117.404296875 134.63671875 -101.12890625 c 0 - 111.25390625 -84.8525390625 90.4013671875 -65.302734375 72.0810546875 -42.48046875 c 0 - 53.759765625 -19.658203125 39.61328125 5.642578125 29.6416015625 33.419921875 c 0 - 19.6708984375 61.1982421875 13.173828125 91.0556640625 10.1513671875 122.9921875 c 0 - 7.1298828125 154.9296875 9.2255859375 188.151367188 16.4404296875 222.65625 c 1 -66.0556640625 221.6796875 m 1 - 74.6201171875 265.741210938 91.1416015625 307.876953125 115.618164062 348.0859375 c 0 - 140.094726562 388.294921875 169.245117188 422.969726562 203.068359375 452.109375 c 0 - 236.891601562 481.25 274.971679688 504.453125 317.309570312 521.71875 c 0 - 359.646484375 538.984375 402.215820312 547.6171875 445.015625 547.6171875 c 0 - 473.625976562 547.6171875 500.840820312 543.721679688 526.662109375 535.9296875 c 0 - 552.482421875 528.138671875 575.479492188 517.154296875 595.653320312 502.975585938 c 0 - 615.826171875 488.797851562 633.80859375 471.77734375 649.598632812 451.9140625 c 0 - 665.389648438 432.05078125 677.559570312 410.047851562 686.109375 385.904296875 c 0 - 694.659179688 361.760742188 700.221679688 335.828125 702.794921875 308.106445312 c 0 - 705.369140625 280.384765625 703.525390625 251.575195312 697.265625 221.6796875 c 1 - 688.701171875 177.618164062 672.1796875 135.482421875 647.703125 95.2734375 c 0 - 623.225585938 55.064453125 594.075195312 20.3896484375 560.251953125 -8.7509765625 c 0 - 526.428710938 -37.8916015625 488.34765625 -61.0947265625 446.009765625 -78.3603515625 c 0 - 403.671875 -95.6259765625 361.103515625 -104.258789062 318.303710938 -104.258789062 c 0 - 289.693359375 -104.258789062 262.477539062 -100.36328125 236.657226562 -92.572265625 c 0 - 210.8359375 -84.7802734375 187.83984375 -73.7958984375 167.666015625 -59.6171875 c 0 - 147.493164062 -45.439453125 129.51171875 -28.4189453125 113.720703125 -8.5556640625 c 0 - 97.9306640625 11.3076171875 85.7607421875 33.310546875 77.2109375 57.4541015625 c 0 - 68.6611328125 81.5986328125 63.099609375 107.53125 60.525390625 135.252929688 c 0 - 57.9521484375 162.974609375 59.794921875 191.784179688 66.0556640625 221.6796875 c 1 -EndSplineSet -Fore -SplineSet -513 129 m 2x7e - 503 82 507 60 535 60 c 3 - 579 60 672 158 672 293 c 0 - 672 429 609 527 454 527 c 3 - 318 527 80 373 80 139 c 0 - 80 60 100 -12 168 -74 c 0 - 182 -87 202 -98 210 -102 c 1 - 204 -107 190 -111 177 -111 c 0 - 170 -111 139 -104 118 -86 c 0 - 61 -37 29 30 29 128 c 0 - 29 374 269 568 472 568 c 3 - 653 568 728 437 728 307 c 0 - 728 91 534 -17 463 -17 c 0xbe - 415 -17 390 9 390 57 c 0 - 390 61 391 68 392 75 c 0 - 393 83 395 90 396 94 c 1 - 375 58 312 -7 253 -7 c 0 - 198 -7 169 46 169 112 c 0 - 169 287 345 438 469 438 c 0 - 504 438 553 428 573 421 c 1 - 513 129 l 2x7e -414 385 m 0 - 348 385 292 263 292 148 c 0 - 292 101 306 79 327 79 c 0x7e - 360 79 409 177 429 274 c 2 - 448 373 l 1 - 441 381 428 385 414 385 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: atilde -Encoding: 227 227 161 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 536 21 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Atilde -Encoding: 195 195 129 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 70 0 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/backslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/backslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/backslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/backslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: backslash -Encoding: 92 92 60 -Width: 380 -Flags: W -VStem: 120 176 -LayerCount: 2 -Fore -SplineSet -296 -4 m 2 - 299 -20 276 -39 265 -39 c 0 - 261 -39 257 -39 253 -36 c 1 - 202 263 120 737 120 737 c 1 - 122 740 128 744 134 744 c 0 - 155 744 173 718 175 708 c 2 - 296 -4 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: bar -Encoding: 124 124 92 -Width: 195 -Flags: HW -LayerCount: 2 -Fore -SplineSet -168 739 m 1 - 175 744 185 748 198 748 c 0 - 206 748 215 745 214 738 c 2 - 48 -113 l 17 - 37 -121 21 -122 14 -122 c 0 - 5 -122 1 -116 2 -112 c 2 - 2 -112 100 408 168 739 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: b -Encoding: 98 98 66 -Width: 454 -Flags: W -HStem: -6 44<117 217> 353 86<251 365> 617 28<66 123> 660 20G<234 248> -VStem: 125 126<545 664> 301 126<215 351> -LayerCount: 2 -Fore -SplineSet -273 353 m 0 - 229 353 171 249 154 163 c 0 - 143 108 144 38 179 38 c 0 - 241 38 301 201 301 295 c 0 - 301 319 296 353 273 353 c 0 -186 328 m 1 - 213 370 291 438 338 438 c 0 - 393 438 427 400 427 329 c 0 - 427 145 258 -6 147 -6 c 0 - 85 -6 34 37 34 104 c 0 - 34 117 37 144 40 158 c 2 - 116 547 l 2 - 120 565 125 588 125 599 c 0 - 125 618 81 617 65 617 c 1 - 62 621 65 642 69 646 c 1 - 123 651 224 672 245 680 c 1 - 250 677 251 667 251 661 c 0 - 251 653 243 611 238 588 c 2 - 186 328 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: B -Encoding: 66 66 34 -Width: 575 -Flags: W -HStem: -3 41<-2 64 202 315> 324 38<256 352> 605 39<115 167 305 394> -LayerCount: 2 -Fore -SplineSet -256 362 m 1 - 303 362 l 2 - 348 362 387 403 402 476 c 0 - 420 569 399 605 353 605 c 0 - 332 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 256 362 l 1 -248 324 m 1 - 206 106 l 2 - 205 100 197 62 202 50 c 0 - 207 39 234 38 257 38 c 0 - 299 38 359 71 379 172 c 0 - 394 245 381 324 295 324 c 2 - 248 324 l 1 -387 645 m 0 - 471 645 562 603 540 490 c 0 - 524 412 442 367 416 357 c 0 - 408 354 409 352 410 352 c 0 - 454 346 544 290 524 188 c 0 - 511 124 461 65 398 29 c 0 - 337 -5 270 -4 203 -3 c 0 - 165 -3 27 -2 -8 -3 c 1 - -11 3 -7 26 -1 33 c 1 - 11 34 54 37 61 50 c 0 - 72 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 - 285 642 334 645 387 645 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/braceleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/braceleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/braceleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/braceleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceleft -Encoding: 123 123 91 -Width: 242 -Flags: W -HStem: -141 21<122 129> 701 21<279 295> -VStem: 22 272 -LayerCount: 2 -Fore -SplineSet -125 395 m 0 - 130 422 124 445 121 470 c 0 - 117 491 115 514 120 541 c 0 - 139 639 244 713 288 723 c 1 - 294 723 299 709 295 701 c 1 - 267 687 211 642 200 585 c 0 - 192 547 197 527 202 504 c 0 - 206 483 211 460 203 422 c 0 - 188 348 118 296 89 291 c 1 - 116 286 167 234 152 160 c 0 - 144 122 132 99 120 78 c 0 - 106 55 94 35 86 -3 c 0 - 75 -60 113 -105 135 -119 c 1 - 136 -127 126 -141 120 -141 c 1 - 80 -131 3 -57 22 41 c 0 - 28 71 42 96 55 119 c 0 - 68 141 80 163 85 188 c 0 - 95 240 62 268 28 280 c 1 - 27 282 26 287 27 291 c 0 - 28 295 30 300 32 302 c 1 - 71 314 115 343 125 395 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/braceright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/braceright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/braceright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/braceright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceright -Encoding: 125 125 93 -Width: 242 -Flags: W -HStem: -141 21<-40 -23> 701 21<125 132> -VStem: -39 271 -LayerCount: 2 -Fore -SplineSet -134 723 m 1 - 174 713 250 639 231 541 c 0 - 225 513 214 489 201 467 c 0 - 188 444 175 421 170 395 c 0 - 160 343 192 314 226 302 c 1 - 227 300 227 295 226 291 c 0 - 225 287 224 282 222 280 c 1 - 183 268 140 240 130 188 c 0 - 125 163 129 140 133 118 c 0 - 137 95 140 70 134 41 c 0 - 115 -57 10 -131 -34 -141 c 1 - -40 -141 -43 -127 -39 -119 c 1 - -12 -105 43 -60 54 -3 c 0 - 61 34 57 55 52 77 c 0 - 48 98 43 121 51 160 c 0 - 66 234 137 286 166 291 c 1 - 139 296 86 348 101 422 c 0 - 110 465 123 488 137 510 c 0 - 150 531 161 551 168 585 c 0 - 179 642 141 687 120 701 c 1 - 119 709 128 723 134 723 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketleft -Encoding: 91 91 59 -Width: 256 -Flags: W -HStem: 690 51<215 320> -LayerCount: 2 -Fore -SplineSet -167 732 m 2 - 169 737 172 741 176 741 c 0 - 228 741 298 743 335 747 c 1 - 338 744 340 741 340 735 c 0 - 340 724 330 715 321 711 c 0 - 290 697 241 692 222 690 c 0 - 218 690 217 689 215 685 c 2 - 69 -55 l 2 - 68 -59 70 -61 74 -62 c 0 - 93 -67 136 -74 165 -93 c 0 - 173 -98 181 -105 181 -112 c 0 - 181 -121 177 -127 173 -130 c 1 - 106 -117 33 -105 10 -104 c 0 - 6 -104 2 -100 3 -95 c 2 - 167 732 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bracketright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: bracketright -Encoding: 93 93 61 -Width: 253 -Flags: W -HStem: -130 41<-57 13> 711 36<92 172> -VStem: -59 329 -LayerCount: 2 -Fore -SplineSet -100 747 m 1 - 134 744 205 738 261 738 c 0 - 269 738 272 732 271 728 c 0 - 270 721 109 -95 109 -95 c 2 - 108 -96 106 -103 98 -104 c 0 - 35 -110 -14 -118 -52 -130 c 1 - -54 -129 -59 -123 -59 -116 c 0 - -59 -104 -42 -94 -32 -89 c 0 - -9 -77 27 -63 53 -55 c 0 - 59 -53 61 -51 62 -47 c 2 - 205 681 l 2 - 206 686 204 688 198 689 c 0 - 175 692 130 699 105 711 c 1 - 94 717 91 728 91 737 c 0 - 91 745 99 747 100 747 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/breve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/breve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/breve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/breve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: breve -Encoding: 728 728 430 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 348 29 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/brokenbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/brokenbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/brokenbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/brokenbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: brokenbar -Encoding: 166 166 101 -Width: 199 -Flags: HW -LayerCount: 2 -Fore -SplineSet -169 739 m 1 - 176 744 186 748 199 748 c 0 - 207 748 216 745 215 738 c 2 - 144 375 l 17 - 133 367 117 366 110 366 c 0 - 101 366 97 372 98 376 c 2 - 98 376 106 407 169 739 c 1 -74 251 m 1 - 81 256 92 260 105 260 c 0 - 113 260 121 257 120 250 c 2 - 49 -113 l 17 - 38 -121 22 -122 15 -122 c 0 - 6 -122 2 -116 3 -112 c 2 - 3 -112 11 -81 74 251 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bullet.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bullet.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/bullet.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/bullet.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: bullet -Encoding: 8226 8226 211 -Width: 368 -Flags: W -HStem: 120 274<187 279> -VStem: 105 254 -LayerCount: 2 -Fore -SplineSet -105 257 m 0 - 120 332 190 395 260 395 c 0 - 330 395 374 332 359 257 c 0 - 344 182 276 120 206 120 c 0 - 136 120 90 182 105 257 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cacute -Encoding: 263 263 280 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 557 10 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cacute -Encoding: 262 262 279 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 260 -3 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/caron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/caron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/caron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/caron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: caron -Encoding: 711 711 481 -Width: 239 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 358 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccaron -Encoding: 269 269 286 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 513 12 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccaron -Encoding: 268 268 285 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 62 -3 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccedilla -Encoding: 231 231 165 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 352 0 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccedilla -Encoding: 199 199 133 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 -1 N 1 0 0 1 140 1 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccircumflex -Encoding: 265 265 282 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 519 19 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccircumflex -Encoding: 264 264 281 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 135 25 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cdotaccent -Encoding: 267 267 284 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 529 39 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cdotaccent -Encoding: 266 266 283 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 156 2 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: cedilla -Encoding: 184 184 118 -Width: 396 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 439 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/cent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/cent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: cent -Encoding: 162 162 97 -Width: 396 -Flags: W -HStem: -6 81<113 210> 390 49<197 289> -VStem: 24 123<88 240> -LayerCount: 2 -Back -SplineSet -192.3828125 -89.84375 m 1 - 455.078125 626.953125 l 1025 -136.71875 -89.84375 m 1 - 399.4140625 626.953125 l 1025 -EndSplineSet -Fore -SplineSet -274 463 m 17 - 281 463 310 462 309 455 c 9 - 137 -44 l 17 - 129 -44 102 -42 103 -35 c 9 - 274 463 l 17 -EndSplineSet -Refer: 67 99 N 1 0 0 1 10 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/c.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/c.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/c.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/c.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: c -Encoding: 99 99 67 -Width: 368 -Flags: W -HStem: -6 81<103 200> 390 49<187 279> -VStem: 15 123<88 240> -LayerCount: 2 -Fore -SplineSet -260 438 m 0 - 299 438 333 427 346 417 c 1 - 352 408 360 390 360 368 c 0 - 360 339 335 309 306 309 c 0 - 282 309 266 326 256 345 c 0 - 247 362 234 390 213 390 c 0 - 177 390 138 269 138 166 c 0 - 138 100 159 75 198 75 c 0 - 242 75 293 134 296 137 c 1 - 304 137 309 117 309 111 c 1 - 294 89 206 -6 132 -6 c 0 - 74 -6 15 36 15 128 c 0 - 15 280 143 438 260 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: C -Encoding: 67 67 35 -Width: 630 -Flags: W -HStem: -7 43<284 442> 609 42<351 511> -VStem: 51 141<160 395> 577 33<469 532> -LayerCount: 2 -Fore -SplineSet -433 609 m 0 - 305 609 191 467 191 262 c 0 - 191 172 228 36 356 36 c 0 - 402 36 445 54 474 78 c 0 - 519 115 558 191 561 199 c 1 - 575 199 585 195 591 188 c 1 - 589 177 538 47 524 39 c 0 - 469 9 413 -7 329 -7 c 0 - 139 -7 51 139 51 270 c 0 - 51 514 260 651 433 651 c 0 - 493 651 571 635 623 623 c 1 - 623 612 612 494 610 482 c 0 - 609 476 600 469 589 469 c 3 - 584 469 580 469 577 473 c 1 - 575 511 548 609 433 609 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/circumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/circumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/circumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/circumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: circumflex -Encoding: 710 710 480 -Width: 240 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 379 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/colon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/colon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/colon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/colon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: colon -Encoding: 58 58 26 -Width: 236 -Flags: W -HStem: -11 135<43 115> 298 135<102 174> -VStem: 18 183 -LayerCount: 2 -Fore -SplineSet -77 367 m 0 - 84 403 118 433 152 433 c 27 - 185 433 207 403 200 367 c 0 - 193 331 161 298 127 298 c 27 - 92 298 70 331 77 367 c 0 -18 59 m 0 - 25 95 58 124 92 124 c 27 - 125 124 148 95 141 59 c 0 - 134 23 102 -11 68 -11 c 27 - 33 -11 11 23 18 59 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/comma.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/comma.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/comma.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/comma.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: comma -Encoding: 44 44 12 -Width: 208 -Flags: W -HStem: -120 252 -VStem: 9 116<26 110> 43 82<-24 109> -LayerCount: 2 -Back -SplineSet -190.4296875 113.28125 m 0 - 193.034179688 59.8955078125 180.419921875 9.27734375 152.587890625 -38.57421875 c 0 - 124.755859375 -86.42578125 82.6826171875 -126.301757812 26.3671875 -158.203125 c 1024 -EndSplineSet -Fore -SplineSet --29 -101 m 1xc0 - -21 -96 43 -48 43 0 c 0xa0 - 43 28 9 28 9 66 c 0 - 9 104 49 132 91 132 c 0 - 103 132 117 126 122 120 c 1 - 124 115 125 110 125 99 c 0 - 125 68 116 24 97 -10 c 0 - 66 -66 35 -89 -14 -120 c 1 - -22 -118 -29 -111 -29 -101 c 1xc0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/copyright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/copyright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/copyright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/copyright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: copyright -Encoding: 169 169 104 -Width: 601 -Flags: W -HStem: 37 43<199 370> 159 24<273 350> 419 25<296 373> 525 45<246 422> -VStem: 396 20<363 392> -LayerCount: 2 -Fore -SplineSet -333 444 m 0 - 357 444 389 434 410 429 c 1 - 410 424 416 373 415 368 c 0 - 415 366 406 362 401 362 c 3 - 399 362 398 361 396 363 c 1 - 394 379 385 419 332 419 c 0 - 279 419 252 360 245 303 c 0 - 237 241 255 184 308 184 c 0 - 330 184 347 190 358 200 c 0 - 376 216 389 247 390 250 c 1 - 396 250 405 249 407 246 c 1 - 406 241 390 187 384 185 c 0 - 360 176 328 159 294 159 c 0 - 217 159 169 212 180 298 c 0 - 191 385 262 444 333 444 c 0 -102 303 m 0 - 87 180 168 80 282 80 c 0 - 396 80 501 180 516 303 c 0 - 531 426 450 525 336 525 c 0 - 222 525 117 426 102 303 c 0 -342 570 m 0 - 479 570 577 451 558 304 c 0 - 539 157 414 37 277 37 c 0 - 140 37 43 157 62 304 c 0 - 81 451 205 570 342 570 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/currency.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/currency.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/currency.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/currency.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: currency -Encoding: 164 164 99 -Width: 526 -Flags: W -HStem: 117 34<214 288> 450 34<253 326> -LayerCount: 2 -Fore -SplineSet -249 151 m 0 - 294 151 333 214 348 287 c 0 - 366 377 339 450 292 450 c 0 - 247 450 205 385 190 312 c 0 - 172 222 202 151 249 151 c 0 -400 444 m 1 - 464 498 l 2 - 467 500 470 499 474 496 c 0 - 482 489 492 471 493 455 c 1 - 428 400 l 1 - 439 371 442 336 435 300 c 0 - 427 261 409 224 384 194 c 1 - 422 138 l 2 - 424 136 422 131 419 127 c 0 - 411 116 392 103 375 98 c 1 - 338 151 l 1 - 307 130 270 117 234 117 c 0 - 195 117 162 132 139 156 c 1 - 81 107 l 2 - 78 105 75 105 72 108 c 0 - 64 114 54 133 53 150 c 1 - 111 200 l 1 - 99 229 97 264 104 300 c 0 - 113 343 132 382 160 413 c 1 - 123 468 l 2 - 121 470 122 473 125 477 c 0 - 132 488 154 503 171 508 c 1 - 208 454 l 1 - 238 474 273 484 307 484 c 0 - 346 484 377 469 400 444 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/daggerdbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/daggerdbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/daggerdbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/daggerdbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,111 +0,0 @@ -StartChar: daggerdbl -Encoding: 8225 8225 210 -Width: 371 -Flags: W -HStem: 112 89<77 124 304 355> 146 24<132 193 243 298> 422 89<138 189 369 416> 452 24<194 249 299 362> 627 20G<301 321> -LayerCount: 2 -Back -SplineSet -147.4609375 242.1875 m 2 - 150.715820312 242.1875 152.83203125 243.815429688 153.80859375 247.0703125 c 0 - 154.78515625 250.325195312 155.2734375 257.487304688 155.2734375 268.5546875 c 2 - 155.2734375 361.328125 l 2 - 155.2734375 367.1875 152.668945312 370.1171875 147.4609375 370.1171875 c 2 - 132.8125 370.1171875 l 2 - 121.745117188 370.1171875 111.002929688 369.873046875 100.5859375 369.384765625 c 0 - 90.1689453125 368.896484375 78.2880859375 368.1640625 64.94140625 367.1875 c 0 - 51.5947265625 366.2109375 40.0390625 365.559570312 30.2734375 365.234375 c 1 - 31.5751953125 376.953125 32.2265625 385.7421875 32.2265625 391.6015625 c 0 - 32.2265625 399.4140625 31.5751953125 410.481445312 30.2734375 424.8046875 c 1 - 40.0390625 424.479492188 51.5947265625 423.828125 64.94140625 422.8515625 c 0 - 78.2880859375 421.875 90.1689453125 421.142578125 100.5859375 420.654296875 c 0 - 111.002929688 420.166015625 121.745117188 419.921875 132.8125 419.921875 c 2 - 147.4609375 419.921875 l 2 - 149.4140625 419.921875 151.204101562 420.735351562 152.83203125 422.36328125 c 0 - 154.459960938 423.991210938 155.2734375 425.78125 155.2734375 427.734375 c 0 - 155.2734375 449.543945312 154.866210938 469.645507812 154.052734375 488.037109375 c 0 - 153.239257812 506.428710938 151.936523438 528.3203125 150.146484375 553.7109375 c 0 - 148.356445312 579.1015625 147.135742188 599.284179688 146.484375 614.2578125 c 1 - 162.109375 611.653320312 173.176757812 610.3515625 179.6875 610.3515625 c 0 - 186.848632812 610.3515625 198.2421875 611.653320312 213.8671875 614.2578125 c 1 - 213.215820312 599.284179688 211.995117188 579.1015625 210.205078125 553.7109375 c 0 - 208.415039062 528.3203125 207.112304688 506.428710938 206.298828125 488.037109375 c 0 - 205.485351562 469.645507812 205.078125 449.543945312 205.078125 427.734375 c 0 - 205.078125 425.78125 205.891601562 423.991210938 207.51953125 422.36328125 c 0 - 209.147460938 420.735351562 210.9375 419.921875 212.890625 419.921875 c 2 - 226.5625 419.921875 l 2 - 237.629882812 419.921875 248.372070312 420.166015625 258.7890625 420.654296875 c 0 - 269.206054688 421.142578125 281.331054688 421.875 295.166015625 422.8515625 c 0 - 309.000976562 423.828125 320.637695312 424.479492188 330.078125 424.8046875 c 1 - 328.776367188 410.481445312 328.125 399.4140625 328.125 391.6015625 c 0 - 328.125 385.7421875 328.776367188 376.953125 330.078125 365.234375 c 1 - 320.637695312 365.559570312 309.000976562 366.2109375 295.166015625 367.1875 c 0 - 281.331054688 368.1640625 269.206054688 368.896484375 258.7890625 369.384765625 c 0 - 248.372070312 369.873046875 237.629882812 370.1171875 226.5625 370.1171875 c 2 - 212.890625 370.1171875 l 2 - 207.682617188 370.1171875 205.078125 367.1875 205.078125 361.328125 c 2 - 205.078125 250 l 2 - 205.078125 244.791992188 207.682617188 242.1875 212.890625 242.1875 c 2 - 330.078125 247.0703125 l 1 - 328.776367188 232.747070312 328.125 221.6796875 328.125 213.8671875 c 0 - 328.125 207.356445312 328.776367188 198.2421875 330.078125 186.5234375 c 1 - 212.890625 192.3828125 l 1 - 208.659179688 191.40625 206.0546875 187.825195312 205.078125 181.640625 c 1 - 205.729492188 167.643554688 207.194335938 138.916015625 209.47265625 95.458984375 c 0 - 211.750976562 52.001953125 213.215820312 16.9267578125 213.8671875 -9.765625 c 1 - 204.752929688 -6.5107421875 193.359375 -4.8828125 179.6875 -4.8828125 c 0 - 167.317382812 -4.8828125 156.25 -6.5107421875 146.484375 -9.765625 c 1 - 147.135742188 16.9267578125 148.600585938 52.001953125 150.87890625 95.458984375 c 0 - 153.157226562 138.916015625 154.622070312 167.643554688 155.2734375 181.640625 c 0 - 155.2734375 184.245117188 154.541015625 186.686523438 153.076171875 188.96484375 c 0 - 151.611328125 191.243164062 149.739257812 192.3828125 147.4609375 192.3828125 c 2 - 30.2734375 186.5234375 l 1 - 31.5751953125 198.2421875 32.2265625 207.356445312 32.2265625 213.8671875 c 0 - 32.2265625 221.6796875 31.5751953125 232.747070312 30.2734375 247.0703125 c 1 - 147.4609375 242.1875 l 2 -EndSplineSet -Fore -SplineSet -283 267 m 1x18 - 266 239 250 215 240 198 c 1 - 238 186 247 171 261 171 c 24x58 - 292 172 319 182 340 201 c 1 - 360 201 370 179 366 158 c 0 - 362 137 342 112 322 112 c 1x88 - 308 131 286 146 256 146 c 0 - 244 146 238 143 226 130 c 1 - 220 98 215 32 229 13 c 1 - 225 -8 202 -23 182 -23 c 0 - 161 -23 142 -8 146 13 c 1 - 167 32 190 98 196 130 c 1 - 189 143 185 146 173 146 c 16x48 - 143 146 114 131 93 112 c 1 - 73 112 63 137 67 158 c 0 - 71 179 90 201 110 201 c 1x88 - 124 182 148 172 178 171 c 24 - 192 171 206 186 208 198 c 1 - 205 215 195 243 190 267 c 1 - 205 279 224 304 226 312 c 1 - 228 321 213 349 208 356 c 1 - 223 380 242 408 252 425 c 1 - 254 437 246 452 232 452 c 24x58 - 201 451 174 441 153 422 c 1 - 133 422 123 444 127 465 c 0 - 131 486 150 511 170 511 c 1x28 - 184 492 207 477 237 477 c 8 - 249 477 255 480 267 493 c 1 - 273 525 277 591 263 610 c 1 - 267 631 291 646 312 646 c 0 - 332 646 350 631 346 610 c 1 - 325 591 302 525 296 493 c 1 - 303 480 307 477 319 477 c 0x18 - 349 477 379 492 400 511 c 1 - 420 511 430 486 426 465 c 0 - 422 444 403 422 383 422 c 1x28 - 369 441 345 451 315 452 c 24 - 301 452 286 437 284 425 c 1 - 287 408 295 384 301 356 c 1 - 293 349 269 320 267 312 c 1 - 265 304 272 279 283 267 c 1x18 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dagger.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dagger.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dagger.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dagger.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: dagger -Encoding: 8224 8224 209 -Width: 357 -Flags: W -HStem: 422 89<131 181 361 409> 452 24<188 242 292 354> 627 20G<294 314> -VStem: 168 18<-23 16> -LayerCount: 2 -Fore -SplineSet -230 477 m 8x70 - 242 477 248 480 260 493 c 1 - 266 525 269 591 255 610 c 1 - 259 631 284 646 305 646 c 0 - 325 646 343 631 339 610 c 1 - 318 591 295 525 289 493 c 1 - 296 480 300 477 312 477 c 0x70 - 342 477 372 492 393 511 c 1 - 413 511 423 486 419 465 c 0 - 415 444 396 422 376 422 c 1xb0 - 362 441 338 451 308 452 c 24 - 294 452 279 437 277 425 c 1 - 280 408 288 384 294 356 c 1 - 248 221 242 180 186 -10 c 1 - 182 -17 180 -22 175 -23 c 1 - 171 -22 170 -15 168 -10 c 1 - 187 180 195 221 201 356 c 1 - 216 380 234 408 244 425 c 1 - 246 437 240 452 226 452 c 24x70 - 195 451 167 441 146 422 c 1 - 126 422 116 444 120 465 c 0 - 124 486 143 511 163 511 c 1xb0 - 177 492 200 477 230 477 c 8x70 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: dcaron -Encoding: 271 271 288 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 789 N 1 0 0 1 392 14 2 -Refer: 68 100 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Dcaron -Encoding: 270 270 287 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 -4 -3 2 -Refer: 36 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: dcroat -Encoding: 273 273 386 -Width: 468 -Flags: W -HStem: -7 86<66 185 280 374> 385 54<255 303> 505 38<191 499> 617 28<274 331> 660 20<442 456> -VStem: 10 123<84 217> 333 126<544 664> -LayerCount: 2 -Fore -SplineSet -199 543 m 1 - 226 543 484 543 497 543 c 0 - 501 543 503 539 502 535 c 0 - 501 530 496 512 491 505 c 1 - 464 505 205 505 192 505 c 0 - 188 505 188 512 189 516 c 0 - 190 521 192 536 199 543 c 1 -EndSplineSet -Refer: 68 100 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: Dcroat -Encoding: 272 272 381 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 142 208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/degree.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/degree.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/degree.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/degree.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: degree -Encoding: 176 176 110 -Width: 274 -Flags: W -HStem: 415 45<136 221> 588 44<152 239> -VStem: 86 201 -LayerCount: 2 -Fore -SplineSet -128 524 m 0 - 121 489 142 460 174 460 c 0 - 206 460 238 489 245 524 c 0 - 252 559 232 588 200 588 c 0 - 168 588 135 559 128 524 c 0 -86 524 m 0 - 98 584 151 632 207 632 c 0 - 263 632 299 584 287 524 c 0 - 275 464 221 415 165 415 c 0 - 109 415 74 464 86 524 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Delta.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Delta.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Delta.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Delta.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: Delta -Encoding: 8710 8710 228 -Width: 588 -Flags: W -HStem: 0 74<94 431> -LayerCount: 2 -Fore -SplineSet -434 81 m 2 - 339 433 l 1 - 336 436 331 437 327 431 c 2 - 94 85 l 1 - 91 78 94 74 99 74 c 2 - 430 74 l 2 - 434 74 435 77 434 81 c 2 -401 599 m 1 - 562 14 l 1 - 562 14 556 8 553 0 c 1 - -3 0 l 1 - -6 6 -6 9 -8 16 c 1 - 386 599 l 1 - 401 599 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/d.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/d.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/d.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/d.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: d -Encoding: 100 100 68 -Width: 475 -Flags: W -HStem: -7 86<66 185 280 374> 385 54<255 303> 617 28<274 331> 660 20G<442 456> -VStem: 10 123<84 217> 333 126<544 664> -LayerCount: 2 -Fore -SplineSet -280 345 m 0 - 280 374 272 385 255 385 c 0 - 189 385 133 263 133 148 c 0 - 133 101 147 79 168 79 c 0 - 201 79 258 196 270 274 c 2 - 270 274 280 332 280 345 c 0 -324 547 m 0 - 327 565 333 588 333 599 c 0 - 333 618 289 617 273 617 c 1 - 270 621 273 642 277 646 c 1 - 331 651 432 672 453 680 c 1 - 458 677 459 667 459 661 c 0 - 459 653 451 611 446 588 c 2 - 354 129 l 2 - 353 125 350 102 350 97 c 0 - 350 88 353 76 363 76 c 0 - 384 76 430 130 433 136 c 1 - 440 136 446 115 446 109 c 1 - 429 78 344 -8 291 -8 c 0 - 270 -8 253 0 242 16 c 0 - 236 25 230 36 230 57 c 0 - 230 65 234 86 236 94 c 1 - 215 58 153 -7 94 -7 c 0 - 39 -7 10 46 10 112 c 0 - 10 275 165 419 286 438 c 0 - 292 439 297 438 303 438 c 1 - 324 547 l 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: D -Encoding: 68 68 36 -Width: 703 -Flags: W -HStem: -3 41<-2 64 205 361> 605 39<115 167 305 434> -LayerCount: 2 -Fore -SplineSet -289 534 m 2 - 212 138 l 2 - 211 132 200 81 204 61 c 0 - 207 47 234 38 257 38 c 0 - 405 38 488 117 525 307 c 0 - 562 498 488 605 353 605 c 0 - 332 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 -387 645 m 0 - 597 645 709 510 670 310 c 0 - 626 81 450 -3 254 -3 c 0 - 216 -3 27 -2 -8 -3 c 1 - -11 3 -7 26 -1 33 c 1 - 11 34 54 37 61 50 c 0 - 72 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 - 285 642 333 644 387 645 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dieresis -Encoding: 168 168 103 -Width: 336 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 396 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/divide.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/divide.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/divide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/divide.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: divide -Encoding: 247 247 181 -Width: 522 -VWidth: 0 -Flags: W -HStem: 0 109<190 261> 218 50<48 469> 376 109<261 333> -VStem: 175 102<15 95> 247 102<391 471> -LayerCount: 2 -Fore -SplineSet -50 218 m 2xe0 - 47 218 45 221 45 226 c 0 - 45 239 50 255 60 268 c 1 - 468 268 l 2 - 470 268 471 265 471 260 c 0 - 471 247 469 230 458 218 c 1 - 50 218 l 2xe0 -304 485 m 0 - 329 485 348 465 348 439 c 0 - 348 407 321 376 289 376 c 0 - 264 376 247 397 247 423 c 0xe8 - 247 455 272 485 304 485 c 0 -232 109 m 0 - 257 109 276 89 276 63 c 0 - 276 31 250 0 218 0 c 0 - 193 0 175 21 175 47 c 0xf0 - 175 79 200 109 232 109 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dollar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dollar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dollar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dollar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: dollar -Encoding: 36 36 4 -Width: 480 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -10 39<169 248> 589 39<260 321> -VStem: 37 38<100 185> 403 35<440 534> -LayerCount: 2 -Fore -SplineSet -146 -63 m 9 - 372 654 l 17 - 375 661 349 669 341 668 c 9 - 115 -49 l 17 - 112 -56 138 -63 146 -63 c 9 -317 628 m 0 - 227 628 119 555 100 458 c 0 - 81 360 136 319 191 273 c 0 - 228 241 303 186 290 120 c 0 - 277 54 232 29 188 29 c 0 - 109 29 73 129 75 180 c 0 - 75 186 73 188 66 188 c 0 - 61 188 42 180 37 174 c 1 - 33 148 26 56 27 15 c 1 - 77 2 137 -10 189 -10 c 0 - 285 -10 392 60 412 164 c 0 - 433 275 371 315 321 356 c 0 - 275 394 212 448 224 507 c 0 - 236 569 280 589 314 589 c 0 - 381 589 406 500 403 447 c 0 - 403 439 425 440 428 440 c 0 - 432 440 435 442 439 446 c 1 - 448 504 453 552 459 602 c 1 - 408 614 369 628 317 628 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotaccent -Encoding: 729 729 482 -Width: 162 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 325 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotbelowcomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotbelowcomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotbelowcomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotbelowcomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotbelowcomb -Encoding: 803 803 258 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 0 -664 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotlessi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotlessi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/dotlessi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/dotlessi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: dotlessi -Encoding: 305 305 244 -Width: 302 -VWidth: 0 -Flags: W -HStem: -8 84<104 203> 354 84<83 182> -VStem: 59 120<33 186> 108 119<245 396> -LayerCount: 2 -Fore -SplineSet -104 302 m 2xe0 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0 - 201 438 228 414 228 369 c 0xd0 - 228 355 221 321 219 311 c 0 - 183 129 l 2 - 182 125 179 102 179 97 c 0 - 179 88 182 76 192 76 c 0 - 213 76 259 130 262 136 c 1 - 269 136 275 115 275 109 c 1 - 258 78 173 -8 120 -8 c 0 - 88 -8 59 12 59 62 c 0 - 59 76 65 112 67 120 c 1 - 104 302 l 2xe0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: eacute -Encoding: 233 233 167 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 552 10 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Eacute -Encoding: 201 201 135 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 157 -16 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ebreve -Encoding: 277 277 292 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 515 19 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ebreve -Encoding: 276 276 291 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 -1 N 1 0 0 1 87 22 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecaron -Encoding: 283 283 296 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 511 12 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecaron -Encoding: 282 282 295 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 -20 -3 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecircumflex -Encoding: 234 234 168 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 521 1 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecircumflex -Encoding: 202 202 136 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 49 25 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edieresis -Encoding: 235 235 169 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 483 21 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edieresis -Encoding: 203 203 137 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 81 12 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edotaccent -Encoding: 279 279 294 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 510 53 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edotaccent -Encoding: 278 278 293 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 80 2 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/e.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/e.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/e.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/e.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: e -Encoding: 101 101 69 -Width: 384 -Flags: W -HStem: -6 81<93 218> 184 37<142 182> 402 36<201 287> -VStem: 16 121<90 184> 254 116<294 402> -LayerCount: 2 -Fore -SplineSet -262 438 m 0 - 312 438 370 417 370 349 c 0 - 370 248 200 184 139 184 c 1 - 138 181 137 164 137 159 c 0 - 137 123 147 75 196 75 c 0 - 240 75 292 136 295 139 c 1 - 304 139 310 115 310 109 c 1 - 297 88 190 -6 128 -6 c 0 - 59 -6 16 46 16 137 c 0 - 16 282 150 438 262 438 c 0 -142 221 m 1 - 180 221 254 292 254 364 c 0 - 254 382 250 402 229 402 c 0 - 182 402 147 271 142 221 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,127 +0,0 @@ -StartChar: E -Encoding: 69 69 37 -Width: 558 -Flags: W -HStem: -3 36<-4 61> -2 43<204 395> 303 46<255 377> 605 36<116 167 305 475> -VStem: 397 28<229 269> 434 28<390 425> 507 35<499 567> -LayerCount: 2 -Back -SplineSet -104.453125 1.953125 m 0 - 87.8232421875 1.953125 73.3837890625 1.6220703125 61.134765625 0.9599609375 c 0 - 48.8857421875 0.2978515625 36.423828125 -0.55859375 23.748046875 -1.611328125 c 0 - 11.0712890625 -2.6630859375 -0.763671875 -3.4287109375 -11.7578125 -3.90625 c 1 - -13.0595703125 -2.6044921875 -13.7109375 0.3251953125 -13.7109375 4.8828125 c 0 - -13.7109375 8.494140625 -13.19140625 12.2822265625 -12.1513671875 16.2470703125 c 0 - -11.111328125 20.2119140625 -9.9814453125 23.3779296875 -8.7607421875 25.7451171875 c 0 - -7.5400390625 28.11328125 -6.5859375 29.296875 -5.8984375 29.296875 c 0 - 0.8671875 29.296875 11.3935546875 31.9404296875 25.6806640625 37.2265625 c 0 - 39.96875 42.5126953125 48.6474609375 48.0078125 51.71875 53.7109375 c 0 - 59.794921875 67.6611328125 67.9326171875 96.306640625 76.1328125 139.6484375 c 2 - 147.421875 508.7890625 l 2 - 147.70703125 510.498046875 148.634765625 515.694335938 150.205078125 524.377929688 c 0 - 151.775390625 533.060546875 153.001953125 540.139648438 153.885742188 545.614257812 c 0 - 154.76953125 551.088867188 155.59765625 557.712890625 156.369140625 565.484375 c 0 - 157.141601562 573.256835938 157.4140625 579.749023438 157.1875 584.9609375 c 1 - 156.2890625 590.349609375 149.314453125 596.416992188 136.263671875 603.163085938 c 0 - 123.211914062 609.908203125 113.584960938 613.28125 107.3828125 613.28125 c 0 - 106.081054688 613.28125 105.4296875 615.559570312 105.4296875 620.1171875 c 0 - 105.4296875 633.137695312 107.708007812 641.926757812 112.265625 646.484375 c 1 - 164.4140625 644.53125 207.057617188 643.5546875 240.1953125 643.5546875 c 0 - 274.865234375 643.850585938 323.76171875 644.739257812 386.884765625 646.21875 c 0 - 450.0078125 647.698242188 499.092773438 648.4375 534.140625 648.4375 c 1 - 532.838867188 628.90625 532.1875 599.284179688 532.1875 559.5703125 c 2 - 532.1875 503.90625 l 1 - 528.932617188 500.651367188 521.770507812 499.0234375 510.703125 499.0234375 c 0 - 503.801757812 499.0234375 499.895507812 501.301757812 498.984375 505.859375 c 1 - 492.076171875 530.532226562 478.041992188 551.673828125 456.881835938 569.28515625 c 0 - 435.720703125 586.897460938 413.296875 595.703125 389.609375 595.703125 c 2 - 355.4296875 595.703125 l 2 - 334.43359375 595.703125 319.3828125 594.944335938 310.278320312 593.426757812 c 0 - 301.172851562 591.909179688 295.715820312 588.436523438 293.90625 583.0078125 c 0 - 285.970703125 561.469726562 279.4609375 536.079101562 274.375 506.8359375 c 1 - 245.078125 356.4453125 l 2 - 244.633789062 354.22265625 247.958007812 352.689453125 255.05078125 351.848632812 c 0 - 262.143554688 351.006835938 271.514648438 350.5859375 283.1640625 350.5859375 c 2 - 360.3125 350.5859375 l 2 - 365.831054688 350.5859375 370.02734375 350.663085938 372.901367188 350.81640625 c 0 - 375.775390625 350.970703125 378.938476562 351.942382812 382.391601562 353.732421875 c 0 - 385.844726562 355.522460938 388.408203125 357.278320312 390.081054688 359 c 0 - 391.754882812 360.721679688 394.231445312 364.415039062 397.510742188 370.081054688 c 0 - 400.7890625 375.74609375 403.60546875 381.182617188 405.959960938 386.388671875 c 0 - 408.313476562 391.595703125 411.978515625 399.84375 416.953125 411.1328125 c 0 - 418.776367188 415.690429688 423.984375 417.96875 432.578125 417.96875 c 0 - 442.77734375 417.96875 448.962890625 416.340820312 451.1328125 413.0859375 c 1 - 415.9765625 228.515625 l 1 - 415.036132812 227.575195312 412.278320312 226.689453125 407.703125 225.857421875 c 0 - 403.127929688 225.025390625 399.049804688 224.609375 395.46875 224.609375 c 0 - 388.046875 224.609375 383.815429688 227.213867188 382.7734375 232.421875 c 1 - 382.213867188 248.653320312 381.296875 260.487304688 380.021484375 267.923828125 c 0 - 378.747070312 275.359375 376.083007812 281.104492188 372.03125 285.15625 c 0 - 367.350585938 289.836914062 359.641601562 292.959960938 348.90234375 294.526367188 c 0 - 338.1640625 296.091796875 321.458984375 296.875 298.7890625 296.875 c 0 - 255.168945312 296.875 232.708007812 293.9453125 231.40625 288.0859375 c 2 - 203.0859375 137.6953125 l 2 - 197.877929688 111.653320312 195.2734375 92.4482421875 195.2734375 80.078125 c 0 - 195.2734375 71.9287109375 196.233398438 66.244140625 198.153320312 63.0244140625 c 0 - 200.073242188 59.8046875 205.206054688 57.28515625 213.551757812 55.46484375 c 0 - 221.897460938 53.64453125 235.661132812 52.734375 254.84375 52.734375 c 2 - 278.28125 52.734375 l 2 - 295.1953125 52.734375 313.625 55.115234375 333.5703125 59.8759765625 c 0 - 353.516601562 64.6376953125 370.893554688 70.720703125 385.703125 78.125 c 0 - 396.9296875 83.73828125 410.596679688 94.73046875 426.705078125 111.099609375 c 0 - 442.813476562 127.469726562 456.489257812 145.775390625 467.734375 166.015625 c 0 - 469.6875 169.921875 474.245117188 171.875 481.40625 171.875 c 0 - 486.072265625 171.875 491.399414062 171.248046875 497.389648438 169.994140625 c 0 - 503.379882812 168.741210938 506.840820312 167.4140625 507.7734375 166.015625 c 1 - 505.0234375 160.711914062 497.912109375 147.159179688 486.44140625 125.359375 c 0 - 474.970703125 103.559570312 466.501953125 87.2978515625 461.03515625 76.5751953125 c 0 - 455.569335938 65.8515625 449.17578125 52.5927734375 441.85546875 36.7978515625 c 0 - 434.53515625 21.0029296875 429.1640625 8.0859375 425.7421875 -1.953125 c 1 - 391.5625 -1.953125 336.061523438 -1.3017578125 259.23828125 0 c 0 - 182.415039062 1.3017578125 130.8203125 1.953125 104.453125 1.953125 c 0 -EndSplineSet -Fore -SplineSet -247 642 m 0xbe - 285 642 490 647 544 648 c 1 - 541 599 542 548 542 504 c 1 - 539 501 527 499 520 499 c 0 - 513 499 508 502 507 507 c 0 - 498 561 484 605 428 605 c 2 - 353 605 l 0 - 332 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 255 359 l 2 - 254 353 272 349 292 349 c 2 - 340 349 l 2 - 394 349 409 360 434 417 c 0 - 436 422 438 425 445 425 c 0 - 452 425 460 423 462 420 c 1 - 426 232 l 1 - 424 230 415 229 408 229 c 0 - 401 229 397 231 397 236 c 0 - 395 283 385 292 377 296 c 0 - 367 301 344 303 310 303 c 0 - 285 303 243 301 241 289 c 2 - 212 138 l 2 - 211 132 200 81 204 61 c 0 - 207 47 236 41 259 41 c 0 - 319 41 l 2 - 353 41 385 51 410 73 c 0 - 433 94 453 122 477 166 c 0 - 479 170 484 172 491 172 c 0 - 500 172 515 169 517 166 c 1 - 490 113 451 41 436 -2 c 1 - 411 -2 240 -2 117 -2 c 0x7e - 54 -2 4 -3 -8 -3 c 1 - -11 3 -7 26 -1 33 c 1 - 11 34 54 37 61 50 c 0 - 72 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0xbe -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: egrave -Encoding: 232 232 166 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 489 10 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Egrave -Encoding: 200 200 134 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 21 -16 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eight -Encoding: 56 56 24 -Width: 514 -Flags: W -HStem: -6 36<186 268> 594 33<277 343> -LayerCount: 2 -Fore -SplineSet -322 627 m 0 - 402 627 493 593 472 481 c 0 - 458 410 398 370 341 347 c 0 - 337 345 338 343 340 341 c 0 - 399 290 446 225 432 158 c 0 - 409 44 299 -6 204 -6 c 0 - 104 -6 24 69 43 164 c 0 - 60 250 136 282 187 304 c 0 - 190 305 190 309 188 310 c 0 - 155 339 116 402 130 474 c 0 - 147 557 223 627 322 627 c 0 -313 594 m 0 - 278 594 246 553 246 496 c 0 - 246 440 274 403 307 374 c 0 - 309 373 310 372 311 372 c 0 - 312 372 313 372 315 375 c 0 - 340 410 360 454 360 507 c 0 - 360 541 353 594 313 594 c 0 -223 30 m 0 - 267 30 299 73 306 117 c 0 - 320 203 232 269 223 277 c 0 - 221 278 221 278 219 278 c 0 - 218 278 217 277 216 276 c 0 - 196 244 181 207 172 147 c 0 - 161 72 183 30 223 30 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" eight.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" eight.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: eight.onum -Encoding: 65560 -1 413 -Width: 419 -Flags: W -HStem: -6 51<182 269> 566 52<275 356> -LayerCount: 2 -Fore -SplineSet -173 155 m 24 - 163 103 173 45 221 45 c 27 - 261 45 294 84 303 131 c 0 - 315 193 260 243 237 264 c 0 - 233 268 228 270 226 270 c 0 - 224 270 223 270 221 269 c 0 - 200 258 182 201 173 155 c 24 -250 482 m 0 - 239 425 269 402 294 379 c 0 - 296 377 301 375 305 375 c 0 - 308 375 310 376 311 377 c 0 - 337 399 350 433 358 472 c 0 - 369 530 360 566 319 566 c 3 - 282 566 261 536 250 482 c 0 -131 475 m 0 - 148 561 243 618 327 618 c 27 - 413 618 496 571 478 478 c 0 - 463 403 384 353 350 333 c 0 - 348 332 346 327 348 326 c 0 - 368 307 448 245 432 166 c 24 - 411 61 302 -6 204 -6 c 27 - 111 -6 30 38 52 155 c 0 - 70 247 156 291 188 308 c 0 - 190 309 191 312 188 315 c 0 - 162 344 113 383 131 475 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eight.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: eight.prop -Encoding: 65584 -1 471 -Width: 495 -Flags: HW -LayerCount: 2 -Fore -Refer: 24 56 N 1 0 0 1 -15 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/element.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/element.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/element.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/element.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: element -Encoding: 8712 8712 230 -Width: 427 -Flags: W -HStem: 11 59<120 353> 185 60<101 352> 361 59<166 420> -LayerCount: 2 -Fore -SplineSet -354 215 m 0 - 349 189 341 185 340 185 c 2 - 93 185 l 2 - 92 185 88 184 88 181 c 0 - 87 119 116 69 177 69 c 2 - 348 69 l 2 - 348 69 361 62 354 28 c 0 - 352 19 344 11 344 11 c 1 - 167 11 l 2 - 65 11 6 107 27 216 c 0 - 48 322 138 420 237 420 c 2 - 423 420 l 1 - 423 420 427 411 425 399 c 0 - 419 369 404 361 404 361 c 1 - 227 361 l 2 - 169 361 122 310 101 249 c 0 - 100 246 101 244 104 244 c 2 - 353 244 l 1 - 353 243 357 232 354 215 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ellipsis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ellipsis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ellipsis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ellipsis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ellipsis -Encoding: 8230 8230 213 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 357 -489 2 -Refer: 248 775 N 1 0 0 1 604 -489 2 -Refer: 248 775 N 1 0 0 1 850 -489 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: emacron -Encoding: 275 275 290 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 497 35 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Emacron -Encoding: 274 274 289 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 68 170 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/emdash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/emdash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/emdash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/emdash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: emdash -Encoding: 8212 8212 201 -Width: 804 -Flags: W -HStem: 189 72<70 801> -LayerCount: 2 -Fore -SplineSet -804 262 m 2 - 811 262 811 252 811 246 c 0 - 811 225 794 194 789 189 c 9 - 67 189 l 2 - 60 189 61 199 61 205 c 0 - 61 226 77 257 82 262 c 9 - 804 262 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/endash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/endash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/endash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/endash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: endash -Encoding: 8211 8211 200 -Width: 451 -Flags: W -HStem: 189 72<70 456> -LayerCount: 2 -Fore -SplineSet -459 262 m 2 - 466 262 466 252 466 246 c 0 - 466 225 449 194 444 189 c 9 - 67 189 l 2 - 60 189 61 199 61 205 c 0 - 61 226 77 257 82 262 c 9 - 459 262 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eng -Encoding: 331 331 396 -Width: 491 -VWidth: 0 -Flags: W -HStem: -213 21<130 136> -6 21G<98 109> 331 107<295 401> 354 84<83 182> -VStem: 108 119<240 396> 325 119<215 389> -LayerCount: 2 -Fore -SplineSet -404 117 m 0xec - 388 35 360 -19 320 -73 c 0 - 278 -129 164 -205 137 -213 c 1 - 132 -213 127 -200 127 -191 c 1 - 230 -112 259 -48 287 98 c 0 - 313 236 l 2 - 315 248 325 301 325 311 c 0 - 325 321 321 331 310 331 c 0xec - 282 331 205 213 178 89 c 10 - 158 0 l 17 - 148 -3 115 -6 104 -6 c 0 - 93 -6 58 -3 46 0 c 1 - 104 302 l 2 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0xdc - 201 438 228 414 228 369 c 0 - 228 355 221 322 219 311 c 0 - 216 297 214 289 209 268 c 1 - 238 334 325 438 374 438 c 3 - 429 438 444 410 444 354 c 0 - 444 321 430 253 425 228 c 2 - 404 117 l 0xec -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: Eng -Encoding: 330 330 395 -Width: 697 -Flags: W -HStem: -213 23<254 271> -4 36<-13 58 149 210> 4 28<-14 52> 610 37<111 162 523 587 667 746> 610 29<528 585 671 748> -LayerCount: 2 -Fore -SplineSet -467 67 m 1x90 - 220 507 l 1 - 152 153 l 2 - 145 118 141 73 143 59 c 0 - 146 40 206 33 213 33 c 1 - 217 23 211 2 208 -4 c 1xd0 - 172 -2 134 4 94 4 c 0xa0 - 52 4 24 -2 -18 -4 c 1 - -21 5 -12 32 -10 32 c 0 - 1 32 56 40 67 58 c 0 - 76 73 90 119 97 156 c 0 - 121 284 141 374 165 502 c 0 - 170 529 173 571 165 590 c 0 - 159 603 120 610 109 610 c 0 - 104 610 108 641 114 646 c 1 - 141 644 173 640 215 640 c 0xc8 - 247 640 286 642 316 646 c 1 - 336 570 446 391 529 242 c 1 - 532 249 536 268 539 282 c 2 - 574 465 l 2 - 581 502 592 575 588 590 c 0 - 584 608 530 611 519 611 c 0 - 517 611 520 638 526 647 c 1x90 - 567 645 593 640 635 640 c 0x88 - 675 640 715 645 752 647 c 1 - 753 641 750 620 742 610 c 1 - 735 610 675 609 663 588 c 0 - 656 574 636 503 629 468 c 2 - 565 136 l 2 - 521 -87 321 -195 263 -213 c 1 - 258 -210 253 -200 253 -195 c 0 - 253 -192 253 -190 254 -189 c 0 - 343 -141 427 -62 467 67 c 1x90 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: eogonek -Encoding: 281 281 380 -Width: 384 -Flags: W -HStem: -213 61<100 182> -6 21G<93 131> 184 37<142 182> 402 36<201 287> -VStem: 16 121<90 184> 61 60<-169 -85> 254 116<294 402> -LayerCount: 2 -Fore -SplineSet -142 221 m 1xf2 - 180 221 254 292 254 364 c 0 - 254 390 250 402 229 402 c 0 - 182 402 147 271 142 221 c 1xf2 -61 -156 m 0xf6 - 61 -99 107 -48 146 -4 c 1 - 139 -6 135 -6 128 -6 c 0 - 59 -6 16 46 16 137 c 0 - 16 282 150 438 262 438 c 0 - 312 438 370 417 370 349 c 0 - 370 248 200 184 139 184 c 1 - 138 181 137 164 137 159 c 0xfa - 137 123 147 75 196 75 c 0 - 240 75 292 136 295 139 c 1 - 304 139 310 115 310 109 c 1 - 304 99 279 76 248 52 c 0 - 183 1 120 -65 120 -119 c 0 - 120 -142 131 -152 155 -152 c 0 - 196 -152 221 -122 228 -117 c 1 - 235 -119 232 -139 230 -143 c 0 - 208 -181 160 -213 119 -213 c 0 - 81 -213 61 -182 61 -156 c 0xf6 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: Eogonek -Encoding: 280 280 379 -Width: 559 -Flags: W -HStem: -213 61<266 348> -3 36<-4 61> -1 42<204 345 364 395> 303 46<255 377> 605 36<116 167 305 475> -VStem: 227 60<-169 -87> 397 28<229 269> 434 28<390 425> 507 35<499 567> -LayerCount: 2 -Fore -SplineSet -227 -156 m 0xbf80 - 227 -98 277 -30 345 -1 c 1xbf80 - 280 -1 193 -2 121 -2 c 0 - 56 -2 4 -3 -8 -3 c 1 - -11 3 -7 26 -1 33 c 1xdf80 - 11 34 54 37 61 50 c 0 - 72 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 - 285 642 490 647 544 648 c 1 - 541 599 542 548 542 504 c 1 - 539 501 527 499 520 499 c 0 - 513 499 508 502 507 507 c 0 - 498 561 484 605 428 605 c 2 - 353 605 l 2 - 332 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 255 359 l 2 - 254 353 272 349 292 349 c 2 - 340 349 l 2 - 394 349 409 360 434 417 c 0 - 436 422 438 425 445 425 c 0 - 452 425 460 423 462 420 c 1 - 426 232 l 1 - 424 230 415 229 408 229 c 0 - 401 229 397 231 397 236 c 0 - 395 283 385 292 377 296 c 0 - 367 301 344 303 310 303 c 0 - 285 303 243 301 241 289 c 2 - 212 138 l 2 - 211 132 200 81 204 61 c 0 - 207 47 236 41 259 41 c 2 - 319 41 l 2 - 353 41 385 51 410 73 c 0 - 433 94 453 122 477 166 c 0 - 479 170 484 172 491 172 c 0 - 500 172 515 169 517 166 c 1 - 490 113 451 41 436 -2 c 1 - 367 -2 286 -67 286 -119 c 0 - 286 -142 297 -152 321 -152 c 0 - 362 -152 387 -122 394 -117 c 1 - 401 -119 399 -139 397 -143 c 0 - 375 -181 326 -213 285 -213 c 0 - 247 -213 227 -182 227 -156 c 0xbf80 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/equal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/equal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/equal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/equal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: equal -Encoding: 61 61 29 -Width: 529 -Flags: W -HStem: 160 50<52 446> 297 50<79 472> -LayerCount: 2 -Fore -SplineSet -54 160 m 2 - 51 160 49 163 49 168 c 0 - 49 181 53 197 63 210 c 1 - 445 210 l 2 - 447 210 448 207 448 202 c 0 - 448 189 447 172 436 160 c 1 - 54 160 l 2 -80 297 m 2 - 77 297 75 300 75 305 c 0 - 75 318 80 334 90 347 c 1 - 472 347 l 2 - 474 347 475 344 475 339 c 0 - 475 326 473 309 462 297 c 1 - 80 297 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: eth -Encoding: 240 240 174 -Width: 452 -VWidth: 0 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -7 40<147 208> 399 39<214 290> 658 21<146 154> -LayerCount: 2 -Fore -SplineSet -169 497 m 17 - 165 504 155 523 160 528 c 9 - 404 688 l 17 - 408 682 419 663 414 658 c 9 - 169 497 l 17 -141 658 m 1 - 142 665 147 679 154 679 c 1 - 291 641 454 497 407 257 c 0 - 379 112 243 -7 155 -7 c 0 - 36 -7 0 92 21 199 c 0 - 42 304 160 438 264 438 c 0 - 282 438 297 437 304 436 c 1 - 304 497 283 584 141 658 c 1 -278 212 m 0 - 289 266 300 346 297 360 c 0 - 289 395 268 399 254 399 c 0 - 195 399 160 297 144 205 c 0 - 128 109 134 33 169 33 c 0 - 218 33 259 116 278 212 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: Eth -Encoding: 208 208 142 -Width: 704 -Flags: W -HStem: -3 41<-1 65 206 362> 297 38<50 383> 605 39<116 168 306 435> -LayerCount: 2 -Fore -SplineSet -59 335 m 1 - 86 335 368 335 381 335 c 0 - 385 335 387 331 386 327 c 0 - 385 322 380 304 375 297 c 1 - 348 297 65 297 52 297 c 0 - 48 297 48 304 49 308 c 0 - 50 313 52 328 59 335 c 1 -EndSplineSet -Refer: 36 68 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Euro.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Euro.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Euro.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Euro.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: Euro -Encoding: 8364 8364 221 -Width: 598 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -7 43<293 448> 244 42<24 365> 343 42<39 380> 609 42<362 519> -VStem: 69 141<160 335> 585 33<469 532> -LayerCount: 2 -Fore -SplineSet -440 609 m 0 - 316 609 210 467 210 262 c 0 - 210 172 247 36 360 36 c 0 - 413 36 452 55 481 79 c 0 - 526 116 561 191 564 199 c 1 - 578 199 589 195 595 188 c 1 - 593 177 542 47 528 39 c 0 - 473 9 417 -7 333 -7 c 0 - 156 -7 69 139 69 270 c 0 - 69 514 279 651 440 651 c 0 - 500 651 579 635 631 623 c 1 - 631 612 620 494 618 482 c 0 - 617 476 608 469 597 469 c 3 - 592 469 588 469 585 473 c 1 - 583 511 555 609 440 609 c 0 -40 343 m 2 - 37 343 36 347 36 351 c 0 - 36 358 42 379 49 385 c 1 - 379 385 l 2 - 381 385 382 381 382 377 c 0 - 382 372 379 352 370 343 c 1 - 40 343 l 2 -26 244 m 2 - 23 244 22 248 22 252 c 0 - 22 259 27 280 34 286 c 1 - 364 286 l 2 - 366 286 367 282 367 278 c 0 - 367 273 364 253 355 244 c 1 - 26 244 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/exclamdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/exclamdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/exclamdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/exclamdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: exclamdown -Encoding: 161 161 96 -Width: 230 -Flags: W -HStem: 286 146<100 171> -VStem: -27 118<-209 -94> 65 137<317 398> -LayerCount: 2 -Fore -SplineSet -21 -232 m 0xc0 - -7 -232 -27 -214 -27 -183 c 0 - -27 -146 74 180 86 215 c 0 - 90 227 97 236 102 236 c 0 - 115 236 125 226 125 208 c 0 - 125 177 96 -138 91 -166 c 0 - 83 -208 49 -232 21 -232 c 0xc0 -65 343 m 0xa0 - 65 392 111 433 150 433 c 0 - 181 433 202 407 202 374 c 0 - 202 326 160 286 118 286 c 0 - 88 286 65 310 65 343 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/exclam.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/exclam.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/exclam.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/exclam.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: exclam -Encoding: 33 33 1 -Width: 250 -Flags: W -HStem: -11 135<48 119> 607 20G<184 215> -VStem: 23 222 -LayerCount: 2 -Fore -SplineSet -23 59 m 0 - 30 95 63 124 97 124 c 27 - 130 124 153 95 146 59 c 0 - 139 23 107 -11 73 -11 c 27 - 38 -11 16 23 23 59 c 0 -200 627 m 0 - 228 627 252 603 244 561 c 0 - 239 534 167 302 139 216 c 0 - 132 196 117 186 103 186 c 0 - 98 186 97 195 97 207 c 0 - 100 272 118 512 128 562 c 0 - 136 603 168 627 200 627 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: f_b -Encoding: 65567 -1 454 -Width: 770 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -6 44<433 533> 353 86<568 682> 369 45<50 104 226 326> 624 43<304 403> -VStem: 617 126<215 351> -LayerCount: 2 -Fore -SplineSet -502 328 m 1xdc - 529 370 607 438 654 438 c 0xec - 709 438 743 400 743 329 c 0 - 743 145 575 -6 464 -6 c 0 - 402 -6 351 37 351 104 c 0 - 351 117 353 144 356 158 c 2 - 433 547 l 2 - 434 551 435 555 436 559 c 1 - 419 601 381 624 346 624 c 0 - 295 625 253 552 226 414 c 1 - 323 414 l 2 - 327 414 328 407 328 402 c 0 - 328 392 322 377 317 369 c 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 397 667 421 662 442 653 c 1 - 495 662 557 675 581 685 c 1 - 586 682 587 672 587 666 c 0 - 587 658 560 611 555 588 c 2 - 502 328 l 1xdc -590 353 m 0 - 546 353 488 249 471 163 c 0 - 460 108 460 38 495 38 c 0 - 557 38 617 201 617 295 c 0 - 617 319 613 353 590 353 c 0 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f b -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ -StartChar: f_f_b -Encoding: 65568 -1 455 -Width: 1043 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -6 44<707 806> 353 86<841 955> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> -VStem: 891 126<215 351> -LayerCount: 2 -Fore -SplineSet -775 328 m 1xae - 802 370 881 438 928 438 c 0x36 - 983 438 1017 400 1017 329 c 0 - 1017 145 848 -6 737 -6 c 0 - 675 -6 624 37 624 104 c 0 - 624 117 627 144 630 158 c 2 - 706 547 l 2 - 707 551 708 555 709 559 c 1 - 692 601 654 624 619 624 c 0 - 568 625 526 552 499 414 c 1 - 597 414 l 2 - 601 414 602 407 602 402 c 0 - 602 392 596 377 591 369 c 1 - 490 369 l 1 - 490 369 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xae - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x66 - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 378 369 l 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xae - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x66 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 431 667 482 637 496 610 c 1 - 541 647 593 667 646 667 c 0 - 671 667 695 662 716 653 c 1 - 769 662 830 675 854 685 c 1 - 859 682 860 672 860 666 c 0 - 860 658 833 611 828 588 c 2 - 775 328 l 1xae -863 353 m 0 - 819 353 761 249 744 163 c 0 - 733 108 734 38 769 38 c 0 - 831 38 891 201 891 295 c 0 - 891 319 886 353 863 353 c 0 -440 548 m 1 - 417 596 384 623 346 624 c 0 - 295 625 253 552 226 414 c 1 - 386 414 l 1x2e - 396 466 415 511 440 548 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f b -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: f_f -Encoding: 65562 -1 449 -Width: 583 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> 369 45<50 104 226 378 499 600> 624 43<304 398> 634 45<549 625> -LayerCount: 2 -Fore -SplineSet -608 679 m 0x28 - 641 679 670 669 681 661 c 1 - 686 653 689 642 689 629 c 0 - 689 605 674 581 652 581 c 0 - 635 581 622 589 611 604 c 0 - 602 617 593 634 575 634 c 0 - 545 634 529 569 499 414 c 1 - 597 414 l 2 - 601 414 602 407 602 402 c 0 - 602 392 596 377 591 369 c 1 - 490 369 l 1 - 490 369 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xa8 - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x60 - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 378 369 l 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xa0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x60 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0xb0 - 428 667 476 641 493 615 c 1 - 534 656 578 679 608 679 c 0x28 -386 414 m 1 - 396 465 415 511 439 549 c 1 - 416 597 383 623 346 624 c 0x30 - 295 625 253 552 226 414 c 1 - 386 414 l 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,78 +0,0 @@ -StartChar: f_f_h -Encoding: 65572 -1 459 -Width: 1079 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<883 982> 331 107<851 957> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> -VStem: 838 120<33 187> 881 119<215 389> -LayerCount: 2 -Fore -SplineSet -828 588 m 2xad - 828 588 774 316 772 307 c 0 - 769 295 767 278 765 268 c 1 - 794 334 881 438 930 438 c 0 - 985 438 1000 410 1000 354 c 0x35 - 1000 321 985 253 980 228 c 2 - 962 129 l 2 - 961 125 958 102 958 97 c 0 - 958 88 962 76 972 76 c 0 - 993 76 1038 130 1041 136 c 1 - 1048 136 1055 115 1055 109 c 1 - 1038 78 952 -8 899 -8 c 0 - 867 -8 838 12 838 62 c 0x36 - 838 76 845 112 847 120 c 2 - 869 236 l 2 - 872 248 881 301 881 311 c 0 - 881 321 876 331 865 331 c 0x35 - 837 331 760 213 733 89 c 2 - 714 0 l 1 - 704 -3 670 -6 659 -6 c 0 - 648 -6 614 -3 602 0 c 1 - 608 30 705 541 706 547 c 0 - 707 551 708 555 709 559 c 1 - 692 601 654 624 619 624 c 0 - 568 625 526 552 499 414 c 1 - 597 414 l 2 - 601 414 602 407 602 402 c 0 - 602 392 596 377 591 369 c 1 - 490 369 l 1 - 490 369 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xad - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x65 - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 378 369 l 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xad - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x65 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 431 667 482 637 496 610 c 1 - 541 647 593 667 646 667 c 0 - 671 667 695 662 716 653 c 1 - 769 662 829 675 854 685 c 1 - 859 682 860 672 860 666 c 0 - 860 658 831 602 828 588 c 2xad -440 548 m 1 - 417 596 384 623 346 624 c 0 - 295 625 253 552 226 414 c 1 - 386 414 l 1x2c - 396 466 415 511 440 548 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f h -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -StartChar: f_f_i -Encoding: 65564 -1 451 -Width: 837 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<639 738> 354 45<47 102 223 375 496 636> 624 43<303 399 575 662> -VStem: 594 120<33 185> -LayerCount: 2 -Fore -SplineSet -740 408 m 0xbc - 744 408 764 391 764 382 c 0 - 764 345 733 205 718 129 c 0 - 717 125 714 102 714 97 c 0 - 714 88 718 76 728 76 c 0 - 749 76 794 130 797 136 c 1 - 804 136 811 115 811 109 c 1 - 794 78 708 -8 655 -8 c 0 - 623 -8 594 12 594 62 c 0 - 594 76 601 112 603 120 c 2 - 633 272 l 1 - 637 298 655 360 596 358 c 2 - 487 354 l 1 - 487 354 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xbc - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x7c - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 375 354 l 1 - 214 354 l 1 - 214 354 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xbc - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x7c - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 102 354 l 1 - 38 354 l 2 - 37 354 36 354 36 356 c 0 - 36 366 61 398 83 398 c 2 - 109 398 l 1 - 140 577 259 667 372 667 c 0 - 431 667 480 638 495 611 c 1 - 538 646 590 667 646 667 c 0 - 708 667 756 638 767 630 c 1 - 772 622 775 611 775 598 c 0 - 775 574 768 546 747 540 c 0 - 722 532 694 548 683 563 c 0 - 660 597 668 624 619 624 c 0 - 564 624 520 540 496 398 c 1 - 597 400 649 408 740 408 c 0xbc -383 398 m 1 - 393 456 412 508 439 549 c 1 - 416 597 383 623 346 624 c 0 - 295 625 250 546 223 398 c 1 - 383 398 l 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f i -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: f_f_j -Encoding: 65574 -1 461 -Width: 804 -VWidth: 0 -Flags: W -HStem: -213 45<-72 4 201 277> -195 80<-132 -61 142 212> 354 45<47 102 223 375 496 636> 624 43<303 399 575 662> -LayerCount: 2 -Fore -SplineSet -600 98 m 2xb0 - 633 272 l 1 - 637 298 655 360 596 358 c 2 - 487 354 l 1 - 487 354 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xb0 - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x70 - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 375 354 l 1 - 214 354 l 1 - 214 354 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xb0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x70 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 102 354 l 1 - 38 354 l 2 - 37 354 36 354 36 356 c 0 - 36 366 61 398 83 398 c 2 - 109 398 l 1 - 140 577 259 667 372 667 c 0 - 431 667 480 638 495 611 c 1 - 538 646 590 667 646 667 c 0 - 708 667 756 638 767 630 c 1 - 772 622 775 611 775 598 c 0 - 775 574 768 546 747 540 c 0 - 722 532 694 548 683 563 c 0 - 660 597 668 624 619 624 c 0 - 564 624 520 540 496 398 c 1 - 597 400 649 408 740 408 c 0 - 744 408 767 391 766 382 c 0 - 751 290 745 258 717 117 c 0 - 701 35 672 -19 632 -73 c 0 - 590 -129 475 -205 448 -213 c 1 - 443 -213 439 -200 439 -191 c 1 - 542 -112 572 -48 600 98 c 2xb0 -383 398 m 1 - 393 456 412 508 439 549 c 1 - 416 597 383 623 346 624 c 0 - 295 625 250 546 223 398 c 1 - 383 398 l 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f j -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,74 +0,0 @@ -StartChar: f_f_k -Encoding: 65570 -1 457 -Width: 1078 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -4 84<863 979> 365 73<876 959> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> -VStem: 908 126<316 391> -LayerCount: 2 -Fore -SplineSet -881 365 m 0x36 - 823 365 762 265 762 242 c 1 - 823 242 908 281 908 334 c 0 - 908 344 903 365 881 365 c 0x36 -954 438 m 0 - 1011 438 1034 413 1034 368 c 0 - 1034 304 939 249 866 225 c 1 - 883 178 926 80 968 80 c 0 - 991 80 1026 124 1034 135 c 1 - 1044 135 1048 114 1048 109 c 1 - 1038 83 959 -4 900 -4 c 0 - 825 -4 775 134 754 203 c 1 - 739 130 714 0 714 0 c 1 - 704 -3 670 -6 659 -6 c 0 - 648 -6 614 -3 602 0 c 1 - 608 30 705 541 706 547 c 0 - 707 551 708 555 709 559 c 1 - 692 601 654 624 619 624 c 0 - 568 625 526 552 499 414 c 1 - 597 414 l 2 - 601 414 602 407 602 402 c 0 - 602 392 596 377 591 369 c 1 - 490 369 l 1 - 490 369 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xae - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x66 - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 378 369 l 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xae - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x66 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1xae - 143 574 259 667 372 667 c 0 - 431 667 482 637 496 610 c 1 - 541 647 593 667 646 667 c 0 - 671 667 695 662 716 653 c 1 - 766 661 824 674 854 685 c 1 - 859 682 860 672 860 666 c 0 - 860 658 831 602 828 588 c 2 - 780 333 l 1 - 792 358 872 438 954 438 c 0 -440 548 m 1 - 417 596 384 623 346 624 c 0 - 295 625 253 552 226 414 c 1 - 386 414 l 1 - 396 466 415 511 440 548 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f k -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,66 +0,0 @@ -StartChar: f_f_l -Encoding: 65566 -1 453 -Width: 860 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<660 759> 369 45<50 104 226 378 499 600> 624 43<304 399 575 676> -VStem: 614 120<33 187> -LayerCount: 2 -Fore -SplineSet -496 610 m 1xbc - 541 647 593 667 646 667 c 0 - 671 667 695 662 716 653 c 1 - 776 662 837 679 854 685 c 1 - 859 682 860 672 860 666 c 0 - 860 658 833 611 828 588 c 2 - 738 129 l 2 - 737 123 734 102 734 97 c 0 - 734 88 738 76 748 76 c 0 - 769 76 814 130 817 136 c 1 - 824 136 831 115 831 109 c 1 - 814 78 729 -8 676 -8 c 0 - 644 -8 614 12 614 62 c 0 - 614 76 621 112 623 120 c 2 - 706 547 l 2 - 707 551 707 556 708 560 c 1 - 690 601 654 624 619 624 c 0 - 568 625 526 552 499 414 c 1 - 597 414 l 2 - 601 414 602 407 602 402 c 0 - 602 392 596 377 591 369 c 1 - 490 369 l 1 - 490 369 460 180 437 57 c 0 - 406 -103 295 -213 217 -213 c 0xbc - 184 -213 156 -203 145 -195 c 1 - 140 -187 136 -176 136 -163 c 0 - 136 -139 151 -115 173 -115 c 0x7c - 190 -115 203 -124 214 -139 c 0 - 223 -152 232 -168 250 -168 c 0 - 288 -168 293 -102 323 53 c 1 - 378 369 l 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0xbc - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0x7c - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 431 667 482 637 496 610 c 1xbc -440 548 m 1 - 417 596 384 623 346 624 c 0 - 295 625 253 552 226 414 c 1 - 386 414 l 1 - 396 466 415 511 440 548 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f l -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: f -Encoding: 102 102 70 -Width: 310 -Flags: W -HStem: -213 45<-73 4> 369 45<50 104 226 326> 634 45<276 352> -LayerCount: 2 -Fore -SplineSet -335 679 m 0 - 368 679 396 669 407 661 c 1 - 412 653 416 642 416 629 c 0 - 416 605 401 581 379 581 c 0 - 362 581 349 589 338 604 c 0 - 329 617 320 634 302 634 c 0 - 272 634 256 569 226 414 c 1 - 323 414 l 2 - 327 414 328 407 328 402 c 0 - 328 392 322 377 317 369 c 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 270 679 335 679 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,113 +0,0 @@ -StartChar: F -Encoding: 70 70 38 -Width: 512 -Flags: W -HStem: -4 36<-5 60 202 261> 299 46<254 375> 605 36<116 167 305 475> -VStem: 396 28<225 265> 433 28<386 421> 507 35<499 567> -LayerCount: 2 -Back -SplineSet -115.1953125 2.9296875 m 0 - 98.287109375 2.9296875 83.4697265625 2.60546875 70.744140625 1.9560546875 c 0 - 58.0185546875 1.3076171875 43.8154296875 0.3291015625 28.1357421875 -0.9794921875 c 0 - 12.4560546875 -2.2890625 -0.841796875 -3.263671875 -11.7578125 -3.90625 c 1 - -13.0595703125 -2.6044921875 -13.7109375 0.3251953125 -13.7109375 4.8828125 c 0 - -13.7109375 8.494140625 -13.19140625 12.2822265625 -12.1513671875 16.2470703125 c 0 - -11.111328125 20.2119140625 -9.9814453125 23.3779296875 -8.7607421875 25.7451171875 c 0 - -7.5400390625 28.11328125 -6.5859375 29.296875 -5.8984375 29.296875 c 0 - 0.8671875 29.296875 11.3935546875 31.9404296875 25.6806640625 37.2265625 c 0 - 39.96875 42.5126953125 48.6474609375 48.0078125 51.71875 53.7109375 c 0 - 59.794921875 67.6611328125 67.9326171875 96.306640625 76.1328125 139.6484375 c 2 - 147.421875 508.7890625 l 2 - 147.70703125 510.498046875 148.634765625 515.694335938 150.205078125 524.377929688 c 0 - 151.775390625 533.060546875 153.001953125 540.139648438 153.885742188 545.614257812 c 0 - 154.76953125 551.088867188 155.59765625 557.712890625 156.369140625 565.484375 c 0 - 157.141601562 573.256835938 157.4140625 579.749023438 157.1875 584.9609375 c 1 - 156.2890625 590.349609375 149.314453125 596.416992188 136.263671875 603.163085938 c 0 - 123.211914062 609.908203125 113.584960938 613.28125 107.3828125 613.28125 c 0 - 106.081054688 613.28125 105.4296875 615.559570312 105.4296875 620.1171875 c 0 - 105.4296875 633.137695312 107.708007812 641.926757812 112.265625 646.484375 c 1 - 164.4140625 644.53125 207.057617188 643.5546875 240.1953125 643.5546875 c 0 - 274.904296875 643.8515625 323.65234375 644.739257812 386.438476562 646.21875 c 0 - 449.225585938 647.698242188 498.134765625 648.4375 533.1640625 648.4375 c 1 - 531.862304688 628.90625 531.2109375 599.284179688 531.2109375 559.5703125 c 2 - 531.2109375 503.90625 l 1 - 527.956054688 500.651367188 520.793945312 499.0234375 509.7265625 499.0234375 c 0 - 502.825195312 499.0234375 498.918945312 501.301757812 498.0078125 505.859375 c 1 - 491.099609375 530.532226562 477.065429688 551.673828125 455.905273438 569.28515625 c 0 - 434.744140625 586.897460938 412.3203125 595.703125 388.6328125 595.703125 c 2 - 354.453125 595.703125 l 2 - 333.45703125 595.703125 318.40625 594.944335938 309.301757812 593.426757812 c 0 - 300.196289062 591.909179688 294.739257812 588.436523438 292.9296875 583.0078125 c 0 - 284.994140625 561.469726562 278.484375 536.079101562 273.3984375 506.8359375 c 1 - 244.1015625 356.4453125 l 2 - 243.657226562 354.22265625 246.981445312 352.689453125 254.07421875 351.848632812 c 0 - 261.166992188 351.006835938 270.538085938 350.5859375 282.1875 350.5859375 c 2 - 359.3359375 350.5859375 l 2 - 364.854492188 350.5859375 369.05078125 350.663085938 371.924804688 350.81640625 c 0 - 374.798828125 350.970703125 377.961914062 351.942382812 381.415039062 353.732421875 c 0 - 384.868164062 355.522460938 387.431640625 357.278320312 389.104492188 359 c 0 - 390.778320312 360.721679688 393.254882812 364.415039062 396.534179688 370.081054688 c 0 - 399.8125 375.74609375 402.62890625 381.182617188 404.983398438 386.388671875 c 0 - 407.336914062 391.595703125 411.001953125 399.84375 415.9765625 411.1328125 c 0 - 417.799804688 415.690429688 423.0078125 417.96875 431.6015625 417.96875 c 0 - 441.80078125 417.96875 447.986328125 416.340820312 450.15625 413.0859375 c 1 - 415 228.515625 l 1 - 414.059570312 227.575195312 411.301757812 226.689453125 406.7265625 225.857421875 c 0 - 402.151367188 225.025390625 398.073242188 224.609375 394.4921875 224.609375 c 0 - 387.0703125 224.609375 382.838867188 227.213867188 381.796875 232.421875 c 1 - 381.237304688 248.653320312 380.3203125 260.487304688 379.044921875 267.923828125 c 0 - 377.770507812 275.359375 375.106445312 281.104492188 371.0546875 285.15625 c 0 - 366.374023438 289.836914062 358.665039062 292.959960938 347.92578125 294.526367188 c 0 - 337.1875 296.091796875 320.482421875 296.875 297.8125 296.875 c 0 - 254.192382812 296.875 231.731445312 293.9453125 230.4296875 288.0859375 c 2 - 202.109375 137.6953125 l 1 - 196.25 108.3984375 193.3203125 86.5888671875 193.3203125 72.265625 c 0 - 193.3203125 64.4013671875 196.005859375 57.5634765625 201.375976562 51.751953125 c 0 - 206.747070312 45.9404296875 212.821289062 41.6630859375 219.600585938 38.919921875 c 0 - 226.37890625 36.1767578125 234.236328125 34.005859375 243.172851562 32.408203125 c 0 - 252.110351562 30.810546875 258.731445312 29.892578125 263.038085938 29.654296875 c 0 - 267.34375 29.416015625 271.123046875 29.296875 274.375 29.296875 c 0 - 276.76171875 29.296875 277.087890625 24.0888671875 275.3515625 13.671875 c 0 - 273.3984375 3.90625 271.770507812 -1.953125 270.46875 -3.90625 c 1 - 186.159179688 0.6513671875 134.401367188 2.9296875 115.1953125 2.9296875 c 0 -EndSplineSet -Fore -SplineSet -247 642 m 0 - 285 642 490 647 544 648 c 1 - 541 599 542 548 542 504 c 1 - 539 501 526 499 519 499 c 0 - 512 499 508 502 507 507 c 0 - 498 561 484 605 428 605 c 2 - 352 605 l 0 - 331 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 254 355 l 2 - 253 349 271 345 291 345 c 2 - 339 345 l 2 - 393 345 408 356 433 413 c 0 - 435 418 437 421 444 421 c 0 - 451 421 459 419 461 416 c 1 - 425 229 l 1 - 423 227 414 225 407 225 c 0 - 400 225 396 227 396 232 c 0 - 394 279 384 288 376 292 c 0 - 366 297 342 299 308 299 c 0 - 283 299 242 297 240 285 c 2 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 253 33 265 32 c 1 - 268 25 263 2 258 -4 c 1 - 224 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: f_h -Encoding: 65571 -1 458 -Width: 805 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -8 84<610 709> 331 107<578 684> 369 45<50 104 226 326> 624 43<304 403> -VStem: 564 120<33 187> 607 119<215 389> -LayerCount: 2 -Fore -SplineSet -555 588 m 2xda - 555 588 501 316 499 307 c 0 - 496 295 493 278 491 268 c 1 - 520 334 607 438 656 438 c 0 - 711 438 727 410 727 354 c 0xea - 727 321 712 253 707 228 c 2 - 688 129 l 2 - 687 125 685 102 685 97 c 0 - 685 88 688 76 698 76 c 0 - 719 76 765 130 768 136 c 1 - 775 136 781 115 781 109 c 1 - 764 78 679 -8 626 -8 c 0 - 594 -8 564 12 564 62 c 0xec - 564 76 571 112 573 120 c 2 - 596 236 l 2 - 599 248 607 301 607 311 c 0 - 607 321 603 331 592 331 c 0xea - 564 331 487 213 460 89 c 2 - 440 0 l 1 - 430 -3 397 -6 386 -6 c 0 - 375 -6 340 -3 328 0 c 1 - 334 30 432 541 433 547 c 0 - 434 551 435 555 436 559 c 1 - 419 601 381 624 346 624 c 0 - 295 625 253 552 226 414 c 1 - 323 414 l 2 - 327 414 328 407 328 402 c 0 - 328 392 322 377 317 369 c 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 397 667 421 662 442 653 c 1 - 495 662 556 675 581 685 c 1 - 586 682 587 672 587 666 c 0 - 587 658 558 602 555 588 c 2xda -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f h -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: f_i -Encoding: 65563 -1 450 -Width: 564 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -8 84<366 465> 354 45<47 102 223 362> 624 43<302 389> -VStem: 320 120<33 185> -LayerCount: 2 -Fore -SplineSet -467 408 m 3 - 471 408 490 391 490 382 c 3 - 490 345 459 205 444 129 c 0 - 443 125 440 102 440 97 c 0 - 440 88 444 76 454 76 c 0 - 475 76 520 130 523 136 c 1 - 530 136 537 115 537 109 c 1 - 520 78 435 -8 382 -8 c 0 - 350 -8 320 12 320 62 c 0 - 320 76 327 112 329 120 c 1 - 359 272 l 1 - 363 298 381 360 322 358 c 2 - 214 354 l 1 - 214 354 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 102 354 l 1 - 38 354 l 2 - 37 354 36 354 36 356 c 0 - 36 366 61 398 83 398 c 2 - 109 398 l 1 - 135 558 243 666 372 667 c 0 - 434 667 482 638 493 630 c 1 - 498 622 502 611 502 598 c 0 - 502 574 495 546 474 540 c 0 - 449 532 420 548 409 563 c 0 - 386 597 395 624 346 624 c 0 - 291 624 247 540 223 398 c 1 - 324 400 376 408 467 408 c 3 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f i -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/figuredash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/figuredash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/figuredash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/figuredash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: figuredash -Encoding: 8210 8210 199 -Width: 451 -Flags: W -HStem: 189 72<70 456> -LayerCount: 2 -Fore -SplineSet -459 262 m 2 - 466 262 466 252 466 246 c 0 - 466 225 449 194 444 189 c 9 - 67 189 l 2 - 60 189 61 199 61 205 c 0 - 61 226 77 257 82 262 c 9 - 459 262 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: five -Encoding: 53 53 21 -Width: 514 -Flags: W -HStem: -5 37<177 267> 323 83<203 295> 518 103<224 418> -VStem: 49 108<49 111> 330 125<150 288> -LayerCount: 2 -Fore -SplineSet -455 241 m 0 - 455 91 299 -5 189 -5 c 0 - 124 -5 80 12 58 28 c 1 - 54 33 49 47 49 58 c 0 - 49 111 85 123 106 123 c 0 - 141 123 148 95 157 76 c 0 - 169 53 195 32 219 32 c 0 - 275 32 330 101 330 211 c 0 - 330 283 294 323 227 323 c 3 - 207 323 172 318 153 312 c 1 - 150 314 146 320 142 325 c 1 - 175 457 200 577 209 620 c 1 - 298 620 407 620 456 631 c 1 - 462 627 466 619 466 616 c 1 - 466 597 430 541 420 527 c 1 - 376 517 246 518 229 518 c 1 - 226 506 210 428 200 383 c 1 - 227 401 280 406 291 406 c 0 - 366 406 455 349 455 241 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" five.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" five.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: five.onum -Encoding: 65557 -1 410 -Width: 342 -Flags: W -HStem: -179 30<-12 59> 346 105<174 387> -LayerCount: 2 -Fore -SplineSet -400 451 m 1 - 403 445 404 436 401 418 c 0 - 398 401 386 359 377 346 c 1 - 255 342 208 344 190 343 c 0 - 181 342 180 339 178 334 c 2 - 162 287 l 1 - 160 280 167 276 174 274 c 0 - 273 253 350 162 330 59 c 0 - 296 -115 140 -179 -13 -179 c 1 - -14 -174 -15 -170 -13 -160 c 0 - -11 -149 -6 -148 -1 -148 c 0 - 56 -148 177 -100 201 28 c 0 - 222 140 170 189 98 202 c 0 - 94 203 89 204 85 213 c 0 - 164 440 l 0 - 166 443 169 446 172 446 c 0 - 236 446 366 443 400 451 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/five.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/five.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: five.prop -Encoding: 65581 -1 468 -Width: 447 -Flags: HW -LayerCount: 2 -Fore -Refer: 21 53 N 1 0 0 1 -50 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: f_j -Encoding: 65573 -1 460 -Width: 531 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -213 21<169 175> 354 45<47 102 223 362> 624 43<302 389> -LayerCount: 2 -Fore -SplineSet -326 98 m 0x70 - 359 272 l 2 - 363 298 381 360 322 358 c 2 - 214 354 l 1 - 214 354 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0xb0 - 15 -168 20 -102 50 53 c 1 - 102 354 l 1 - 38 354 l 2 - 37 354 36 354 36 356 c 0 - 36 366 61 398 83 398 c 2 - 109 398 l 1 - 135 558 243 666 372 667 c 0 - 434 667 482 638 493 630 c 1 - 498 622 502 611 502 598 c 0 - 502 574 495 546 474 540 c 0 - 449 532 420 548 409 563 c 0 - 386 597 395 624 346 624 c 0 - 291 624 247 540 223 398 c 1 - 324 400 376 408 467 408 c 3 - 471 408 493 391 492 382 c 0 - 477 290 471 258 443 117 c 0 - 427 35 398 -19 358 -73 c 0 - 316 -129 202 -205 175 -213 c 1 - 170 -213 166 -200 166 -191 c 1 - 269 -112 298 -48 326 98 c 0x70 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f j -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: f_k -Encoding: 65569 -1 456 -Width: 804 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -4 84<589 706> 365 73<602 685> 369 45<50 104 226 326> 624 43<304 403> -VStem: 635 126<316 391> -LayerCount: 2 -Fore -SplineSet -607 365 m 0xec - 549 365 488 265 488 242 c 1 - 549 242 635 281 635 334 c 0 - 635 344 629 365 607 365 c 0xec -681 438 m 0 - 738 438 761 413 761 368 c 0 - 761 304 666 249 593 225 c 1 - 610 178 652 80 694 80 c 0 - 717 80 753 124 761 135 c 1 - 771 135 774 114 774 109 c 1 - 764 83 686 -4 627 -4 c 0 - 552 -4 501 134 480 203 c 1 - 465 130 440 0 440 0 c 1 - 430 -3 397 -6 386 -6 c 0 - 375 -6 340 -3 328 0 c 1 - 334 30 432 541 433 547 c 2 - 434 551 435 555 436 559 c 1 - 419 601 381 624 346 624 c 0 - 295 625 253 552 226 414 c 1 - 323 414 l 2 - 327 414 328 407 328 402 c 0 - 328 392 322 377 317 369 c 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1xdc - 143 574 259 667 372 667 c 0 - 397 667 421 662 442 653 c 1 - 492 661 551 674 581 685 c 1 - 586 682 587 672 587 666 c 0 - 587 658 558 602 555 588 c 2 - 507 333 l 1 - 519 358 599 438 681 438 c 0 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f k -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: f_l -Encoding: 65565 -1 452 -Width: 586 -VWidth: 0 -Flags: W -HStem: -213 45<-73 4> -8 84<386 485> 369 45<50 104 226 326> 624 43<304 402> -VStem: 341 120<33 187> -LayerCount: 2 -Fore -SplineSet -435 560 m 1 - 417 601 381 624 346 624 c 0 - 295 625 253 552 226 414 c 1 - 323 414 l 2 - 327 414 328 407 328 402 c 0 - 328 392 322 377 317 369 c 1 - 217 369 l 1 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 259 667 372 667 c 0 - 397 667 421 662 442 653 c 1 - 502 662 564 679 581 685 c 1 - 586 682 587 672 587 666 c 0 - 587 658 560 611 555 588 c 2 - 465 129 l 2 - 464 123 461 102 461 97 c 0 - 461 88 465 76 475 76 c 0 - 496 76 541 130 544 136 c 1 - 551 136 558 115 558 109 c 1 - 541 78 455 -8 402 -8 c 0 - 370 -8 341 12 341 62 c 0 - 341 76 348 112 350 120 c 2 - 433 547 l 2 - 434 551 434 556 435 560 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f l -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/font.props fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/font.props 1970-01-01 00:00:00.000000000 +0000 @@ -1,227 +0,0 @@ -SplineFontDB: 3.0 -FontName: AmiriLatin-BoldItalic -FullName: Amiri Latin Bold Italic -FamilyName: Amiri Latin -Weight: Bold -Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. -Version: 0.8 -ItalicAngle: -11 -UnderlinePosition: -102 -UnderlineWidth: 51 -Ascent: 700 -Descent: 300 -InvalidEm: 0 -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -FSType: 0 -OS2Version: 0 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 1 -CreationTime: 1273891947 -PfmFamily: 17 -TTFWeight: 700 -TTFWidth: 5 -LineGap: 90 -VLineGap: 0 -OS2TypoAscent: 700 -OS2TypoAOffset: 0 -OS2TypoDescent: -300 -OS2TypoDOffset: 0 -OS2TypoLinegap: 90 -OS2WinAscent: 0 -OS2WinAOffset: 1 -OS2WinDescent: 0 -OS2WinDOffset: 1 -HheadAscent: 700 -HheadAOffset: 0 -HheadDescent: -300 -HheadDOffset: 0 -OS2SubXSize: 649 -OS2SubYSize: 699 -OS2SubXOff: 26 -OS2SubYOff: 140 -OS2SupXSize: 649 -OS2SupYSize: 699 -OS2SupXOff: -91 -OS2SupYOff: 479 -OS2StrikeYSize: 50 -OS2StrikeYPos: 259 -OS2Vendor: 'PfEd' -Lookup: 1 0 0 "'ccmp' Turkish i" { "'ccmp' Turkish i-1" } ['ccmp' ('latn' <'TRK ' > ) ] -Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 3" { "'onum' Oldstyle Figures lookup 3-1" ("onum") } ['onum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 12" { "'pnum' Proportional Numbers lookup 12-1" ("prop") } ['pnum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0" { "'liga' Standard Ligatures lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -MarkAttachClasses: 1 -DEI: 91125 -KernClass2: 75+ 59 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" - 9 ampersand - 10 exclamdown - 10 registered - 12 questiondown - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 25 B uni1E02 uni1E04 uni1E06 - 55 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron uni1E08 - 59 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 - 180 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE uni1E14 uni1E16 uni1E18 uni1E1A uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 - 9 F uni1E1E - 47 G Gcircumflex Gbreve Gdotaccent uni0122 uni1E20 - 161 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E22 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1EC8 uni1ECA - 16 J IJ Jcircumflex - 33 K uni0136 uni1E30 uni1E32 uni1E34 - 67 L Lacute uni013B Lcaron Ldot Lslash uni1E36 uni1E38 uni1E3A uni1E3C - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 182 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut Ohorn uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 17 P uni1E54 uni1E56 - 1 Q - 55 R Racute uni0156 Rcaron uni1E58 uni1E5A uni1E5C uni1E5E - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 189 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 5 Thorn - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 35 b uni1E03 uni1E05 uni1E07 f_b f_f_b - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 180 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe uni1E15 uni1E17 uni1E19 uni1E1B uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 - 19 f longs uni1E1F f_f - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 124 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi uni1E2D uni1E2F uni1EC9 uni1ECB f_i f_f_i i.TRK - 34 j ij jcircumflex uni0237 f_j f_f_j - 56 k uni0137 kgreenlandic uni1E31 uni1E33 uni1E35 f_k f_f_k - 72 l lacute uni013C lcaron lslash uni1E37 uni1E39 uni1E3B uni1E3D f_l f_f_l - 181 h m n ntilde hcircumflex hbar nacute uni0146 ncaron napostrophe uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E96 f_h f_f_h T_h - 208 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 23 p thorn uni1E55 uni1E57 - 1 q - 55 r racute uni0157 rcaron uni1E59 uni1E5B uni1E5D uni1E5F - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 183 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 17 x uni1E8B uni1E8D - 77 y yacute ydieresis ycircumflex uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 10 germandbls - 4 ldot - 3 eng - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 40 comma period quotesinglbase quotedblbase - 5 slash - 15 colon semicolon - 9 backslash - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 29 guillemotright guilsinglright - 9 parenleft - 10 seven.prop - 9 nine.prop - 11 bracketleft - 9 braceleft - 5 Delta - 2 mu - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 609 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 13 J Jcircumflex - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 65 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 T_h - 189 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 5 slash - 289 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni1E08 uni1E20 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 1 Q - 17 V uni1E7C uni1E7E - 9 backslash - 12 bracketright - 25 b uni1E03 uni1E05 uni1E07 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 111 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni1E2D uni1E2F uni1EC9 uni1ECB - 21 j jcircumflex uni0237 - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 173 m n r ntilde kgreenlandic nacute uni0146 ncaron napostrophe eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 360 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni1E15 uni1E17 uni1E19 uni1E1B uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 17 p uni1E55 uni1E57 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 183 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 79 v w wcircumflex uni1E7D uni1E7F wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 61 y yacute ydieresis ycircumflex uni1E8F ygrave uni1EF5 uni1EF7 - 10 registered - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 17 x uni1E8B uni1E8D - 10 parenright - 25 M uni1E3E uni1E40 uni1E42 - 17 X uni1E8A uni1E8C - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 2 AE - 49 comma period quotesinglbase quotedblbase ellipsis - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 1 q - 2 ae - 3 eth - 9 ampersand - 15 colon semicolon - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 29 guillemotright guilsinglright - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 10 braceright - 9 four.prop - 2 at - 5 Delta - 0 {} -25 {} -10 {} -10 {} -13 {} -18 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -30 {} -32 {} -17 {} 29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -10 {} 0 {} -13 {} -19 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -28 {} -25 {} -14 {} 32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -61 {} -60 {} -51 {} -38 {} -9 {} -49 {} -43 {} -18 {} 7 {} -24 {} -25 {} -66 {} -43 {} -13 {} -12 {} -6 {} -5 {} -10 {} -13 {} -5 {} -5 {} -7 {} -6 {} -12 {} -8 {} -27 {} -26 {} -29 {} -47 {} -45 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -5 {} -6 {} -6 {} -18 {} -21 {} -7 {} -6 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} -6 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -8 {} -9 {} -10 {} -23 {} -35 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -26 {} -9 {} -29 {} -5 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -9 {} -6 {} -15 {} 0 {} -6 {} 0 {} -6 {} -9 {} 0 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -16 {} 0 {} -7 {} 0 {} 0 {} -21 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -24 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} -10 {} -9 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} -12 {} 0 {} -8 {} -8 {} 0 {} 0 {} -11 {} 0 {} -17 {} -14 {} 0 {} -12 {} 0 {} -8 {} -18 {} -19 {} -16 {} -7 {} -13 {} -6 {} 0 {} 0 {} 0 {} -13 {} -6 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -14 {} -9 {} -15 {} -11 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -8 {} 0 {} -5 {} -6 {} 0 {} 0 {} -13 {} 6 {} -18 {} -20 {} 0 {} -11 {} 0 {} -8 {} -19 {} -20 {} -16 {} -5 {} -8 {} 0 {} 0 {} 0 {} 0 {} -10 {} -18 {} -13 {} 0 {} 0 {} 0 {} 0 {} -8 {} -8 {} -20 {} -20 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 19 {} -45 {} -45 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -13 {} 0 {} 0 {} 0 {} -16 {} -6 {} -9 {} -28 {} -54 {} -46 {} -14 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -57 {} -41 {} -56 {} -11 {} -5 {} -56 {} -65 {} 0 {} 0 {} 0 {} 0 {} -65 {} -33 {} -14 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -22 {} -41 {} -15 {} -56 {} -58 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -11 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -12 {} 0 {} -14 {} 0 {} -7 {} -16 {} 0 {} -16 {} -6 {} -13 {} -6 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -13 {} 0 {} -8 {} -8 {} 0 {} 0 {} -14 {} 14 {} -21 {} -24 {} 0 {} -13 {} 9 {} -15 {} -22 {} -22 {} -23 {} -12 {} -16 {} -8 {} 0 {} 0 {} 0 {} -15 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} -7 {} -10 {} -23 {} -23 {} -23 {} -22 {} 0 {} 0 {} -10 {} -9 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -8 {} -8 {} -10 {} -22 {} -34 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -16 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -27 {} -10 {} -29 {} -5 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -5 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -39 {} -39 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -8 {} -8 {} -9 {} -22 {} -34 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} -5 {} 5 {} -47 {} -30 {} -21 {} -23 {} -6 {} -16 {} -23 {} -16 {} 33 {} -20 {} -19 {} -55 {} -29 {} 0 {} -9 {} -6 {} -5 {} 0 {} -9 {} -5 {} 0 {} -7 {} -5 {} -8 {} 0 {} -27 {} -29 {} -24 {} -11 {} -12 {} -35 {} 13 {} 0 {} 0 {} 8 {} 16 {} 14 {} 18 {} 13 {} -5 {} -5 {} 0 {} -5 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -17 {} 0 {} 0 {} -7 {} 0 {} -11 {} 0 {} 0 {} 0 {} -5 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -7 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 20 {} -54 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -73 {} -5 {} -20 {} 0 {} -55 {} -67 {} -65 {} -16 {} -55 {} -56 {} -42 {} 0 {} 0 {} 0 {} -48 {} -52 {} -62 {} 0 {} 0 {} 0 {} 0 {} -54 {} -37 {} -68 {} -68 {} -65 {} -67 {} 0 {} 0 {} -32 {} -13 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -9 {} -11 {} 0 {} 0 {} 0 {} 0 {} -12 {} 27 {} -23 {} -21 {} 0 {} -6 {} 22 {} -6 {} -23 {} -25 {} -15 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -21 {} 0 {} 0 {} 0 {} 0 {} -34 {} -20 {} -26 {} -25 {} -23 {} -25 {} 0 {} 0 {} -11 {} -8 {} 23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -64 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 20 {} 0 {} -49 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -68 {} 0 {} -12 {} 44 {} -49 {} -66 {} 0 {} -40 {} -45 {} -45 {} -35 {} 0 {} 0 {} 0 {} -46 {} -69 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -70 {} -68 {} -69 {} 0 {} 0 {} 0 {} 0 {} -34 {} 47 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 16 {} 0 {} -43 {} -34 {} -19 {} -19 {} 0 {} 0 {} -16 {} 48 {} -57 {} -60 {} 0 {} -13 {} 42 {} -41 {} -58 {} -57 {} -36 {} -38 {} -42 {} -34 {} -16 {} 0 {} 0 {} -41 {} -61 {} -62 {} 0 {} 0 {} 0 {} 0 {} -68 {} -58 {} -60 {} -60 {} -61 {} -59 {} 0 {} 0 {} -45 {} -32 {} 45 {} -31 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -8 {} 0 {} 0 {} 19 {} -10 {} -19 {} 0 {} -19 {} -20 {} -43 {} -37 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 19 {} 0 {} -60 {} -30 {} -22 {} -23 {} 0 {} 0 {} -14 {} 49 {} -72 {} -67 {} 0 {} -14 {} 44 {} -62 {} -73 {} -64 {} -47 {} -61 {} -63 {} -59 {} -18 {} 0 {} 0 {} -58 {} -73 {} -68 {} 0 {} 0 {} 0 {} 0 {} -55 {} -43 {} -73 {} -66 {} -68 {} -73 {} 0 {} 0 {} -47 {} -35 {} 45 {} -39 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} -13 {} -8 {} -19 {} 0 {} -18 {} 0 {} -8 {} -16 {} -17 {} -32 {} -33 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} -8 {} -11 {} -27 {} -46 {} -11 {} -5 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -19 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -20 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 39 {} 0 {} 43 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -12 {} -10 {} 0 {} 0 {} -6 {} 0 {} 0 {} -32 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -49 {} -44 {} -56 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -29 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} 0 {} 0 {} -7 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} -7 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -30 {} -18 {} 0 {} 0 {} 0 {} -16 {} -21 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} -48 {} -11 {} -11 {} 0 {} -10 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -24 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -37 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} -8 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -6 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -5 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -81 {} -10 {} -18 {} 0 {} -10 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -13 {} -42 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -12 {} -10 {} -17 {} -37 {} -59 {} -56 {} -9 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} -15 {} -24 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -33 {} -33 {} -22 {} 0 {} -89 {} 0 {} 0 {} 0 {} -19 {} -19 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -24 {} 0 {} -97 {} -100 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -26 {} 0 {} 0 {} 0 {} -15 {} -35 {} 0 {} -16 {} -12 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} -32 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -28 {} -19 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} -30 {} -22 {} -19 {} -15 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -92 {} -17 {} -21 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} -56 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} 0 {} 0 {} -16 {} -8 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -100 {} -21 {} -21 {} 0 {} -21 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -27 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -13 {} -12 {} -16 {} -38 {} -48 {} -50 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} -15 {} -21 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 77 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 26 {} -12 {} 0 {} 0 {} -21 {} -30 {} 0 {} -26 {} -21 {} -26 {} 26 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -24 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -14 {} 0 {} -13 {} -14 {} -13 {} -12 {} -18 {} 70 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 7 {} 0 {} 0 {} 0 {} -16 {} -26 {} 0 {} -21 {} -13 {} -16 {} 17 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -26 {} -23 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -LangName: 1033 "" "" "Bold Italic" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2011, Sebastian Kosch,,, (),+AAoA-with Reserved Font Name Crimson.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" -GaspTable: 1 65535 15 1 -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -BeginPrivate: 0 -EndPrivate -Grid --249.0234375 -196.77734375 m 25 - -249.0234375 887.20703125 l 1025 -0 1200.1953125 m 1 - 0 -799.8046875 l 1025 -490.234375 626.953125 m 25 - 0 626.953125 l 1 - 490.234375 626.953125 l 25 -770.5078125 -221.6796875 m 25 - 1166.9921875 -221.6796875 l 1025 -0 646.484375 m 25 - 546.875 646.484375 l 1025 -0 654.296875 m 25 - 546.875 654.296875 l 1025 -541.9921875 -212.890625 m 25 - 0 -212.890625 l 1 - 541.9921875 -212.890625 l 25 -546.875 678.7109375 m 25 - 0 678.7109375 l 1 - 546.875 678.7109375 l 25 -546.875 432.6171875 m 25 - -5.859375 432.6171875 l 1 - 546.875 432.6171875 l 25 -546.875 438.4765625 m 25 - -5.859375 438.4765625 l 1 - 546.875 438.4765625 l 25 -EndSplineSet -EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: four -Encoding: 52 52 20 -Width: 514 -Flags: W -HStem: -5 21G<292 320> 171 65<121 282 418 472> 607 20G<464 472> -LayerCount: 2 -Fore -SplineSet -468 627 m 0 - 477 627 490 610 488 602 c 2 - 418 236 l 25 - 470 236 l 18 - 476 236 478 229 478 221 c 0 - 478 203 468 180 461 171 c 1 - 404 171 l 25 - 372 2 l 1 - 372 2 338 -5 303 -5 c 0 - 282 -5 249 -2 250 5 c 2 - 282 171 l 25 - 33 171 l 1 - 27 175 24 187 25 193 c 1 - 440 611 l 2 - 450 621 461 627 468 627 c 0 -336 454 m 25 - 121 236 l 25 - 294 236 l 25 - 336 454 l 25 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" four.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" four.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: four.onum -Encoding: 65556 -1 409 -Width: 444 -Flags: W -HStem: 6 68<127 261 390 428> -LayerCount: 2 -Fore -SplineSet -279 -180 m 0 - 248 -180 227 -176 229 -167 c 2 - 261 0 l 1 - 261 5 257 5 254 5 c 2 - 36 6 l 1 - 30 14 26 26 31 53 c 1 - 169 195 297 310 418 439 c 0 - 426 447 438 453 445 453 c 0 - 451 453 462 451 460 443 c 2 - 390 82 l 2 - 389 77 391 75 396 74 c 1 - 426 74 l 2 - 437 74 436 58 428 16 c 0 - 427 10 418 6 418 6 c 1 - 380 6 l 2 - 376 6 374 3 373 -2 c 2 - 341 -171 l 1 - 341 -171 317 -180 279 -180 c 0 -276 80 m 1 - 312 263 l 2 - 313 266 312 271 310 271 c 1 - 310 271 309 271 308 270 c 2 - 123 86 l 2 - 122 85 122 84 122 83 c 0 - 121 79 123 74 127 74 c 2 - 268 73 l 1 - 271 74 274 74 276 80 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/four.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/four.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: four.prop -Encoding: 65580 -1 467 -Width: 488 -Flags: HW -LayerCount: 2 -Fore -Refer: 20 52 N 1 0 0 1 -34 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/fraction.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: fraction -Encoding: 8260 8260 474 -Width: 503 -Flags: W -HStem: -2 21G<42 57> -LayerCount: 2 -Fore -SplineSet -481 704 m 1 - 72 14 l 2 - 68 7 62 -2 53 -2 c 0 - 32 -2 22 10 22 10 c 1 - 432 700 l 2 - 435 706 441 714 447 714 c 0 - 463 714 477 707 481 704 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gbreve -Encoding: 287 287 300 -Width: 433 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 481 21 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gbreve -Encoding: 286 286 299 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 -1 N 1 0 0 1 178 22 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcaron -Encoding: 487 487 419 -Width: 433 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 469 21 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcaron -Encoding: 486 486 418 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 46 -3 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcircumflex -Encoding: 285 285 298 -Width: 433 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 493 21 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcircumflex -Encoding: 284 284 297 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 142 22 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gdotaccent -Encoding: 289 289 302 -Width: 433 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 490 28 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gdotaccent -Encoding: 288 288 301 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 144 2 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/germandbls.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/germandbls.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/germandbls.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/germandbls.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: germandbls -Encoding: 223 223 157 -Width: 514 -Flags: W -HStem: -213 45<-74 3> -4 33<300 363> 369 45<50 104> 640 39<300 372> -VStem: 255 97<299 358> 373 89<61 147> 391 104<480 622> -LayerCount: 2 -Back -SplineSet -298.828125 301.7578125 m 0 - 298.828125 317.3828125 303.547851562 332.438476562 312.98828125 346.923828125 c 0 - 322.428710938 361.409179688 333.821289062 375 347.16796875 387.6953125 c 0 - 360.514648438 400.390625 373.860351562 413.818359375 387.20703125 427.978515625 c 0 - 400.553710938 442.138671875 411.946289062 459.9609375 421.38671875 481.4453125 c 0 - 430.827148438 502.9296875 435.546875 526.692382812 435.546875 552.734375 c 1024 -EndSplineSet -Fore -SplineSet -225 414 m 0xfa - 202 275 185 180 162 57 c 0 - 131 -103 20 -213 -58 -213 c 0 - -91 -213 -119 -203 -130 -195 c 1 - -135 -187 -139 -176 -139 -163 c 0 - -139 -139 -124 -115 -102 -115 c 0 - -85 -115 -72 -124 -61 -139 c 0 - -52 -152 -42 -168 -24 -168 c 0 - 14 -168 20 -102 50 53 c 1 - 104 369 l 1 - 41 369 l 2 - 40 369 39 370 39 372 c 0 - 39 382 64 414 86 414 c 2 - 112 414 l 1 - 143 574 281 679 359 679 c 0 - 423 679 495 633 495 557 c 0xfa - 495 457 397 404 367 382 c 0 - 354 373 352 363 352 353 c 3 - 352 327 379 288 400 260 c 0 - 438 208 462 170 462 124 c 0 - 462 56 390 -4 313 -4 c 3 - 254 -4 242 0 225 11 c 1 - 219 16 208 29 208 51 c 0 - 208 78 232 95 253 95 c 3 - 289 95 284 29 332 29 c 0 - 348 29 373 43 373 74 c 0xfc - 373 104 328 153 302 188 c 0 - 274 226 255 258 255 303 c 0 - 255 352 307 389 336 420 c 0 - 351 436 391 481 391 543 c 0 - 391 555 389 640 339 640 c 0 - 282 640 247 550 225 414 c 0xfa -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/g.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/g.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/g.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/g.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: g -Encoding: 103 103 71 -Width: 433 -VWidth: 0 -Flags: W -HStem: -221 47<93 235> 385 54<356 433> 409 38<191 257> -VStem: -56 113<-141 -54> 19 165<45 113> 40 111<202 352> 268 102<-132 10> 273 109<228 377> -LayerCount: 2 -Fore -SplineSet -268 -110 m 0x92 - 268 -70 170 -32 112 -14 c 1 - 77 -33 58 -52 58 -82 c 0 - 58 -145 109 -174 168 -174 c 0 - 206 -174 268 -153 268 -110 c 0x92 -229 409 m 0xa5 - 181 411 154 336 151 271 c 0 - 149 225 158 176 194 174 c 0 - 237 172 271 236 273 295 c 0 - 275 341 267 407 229 409 c 0xa5 -355 385 m 1xc4 - 359 379 383 352 383 302 c 0 - 383 210 295 156 248 137 c 0 - 221 126 184 124 184 103 c 0xc9 - 184 74 369 59 369 -39 c 0 - 369 -132 261 -221 118 -221 c 0 - 11 -221 -56 -169 -56 -107 c 0xd2 - -56 -38 30 -13 77 4 c 1 - 77 4 40 20 33 27 c 0 - 25 35 19 36 19 55 c 0xc8 - 19 79 113 130 160 141 c 1 - 99 157 40 194 40 271 c 0 - 40 368 122 447 218 447 c 1xa4 - 256 447 287 435 311 424 c 0 - 320 420 382 436 395 438 c 1 - 408 434 444 414 444 402 c 0 - 444 395 437 385 429 385 c 0 - 415 385 368 385 355 385 c 1xc4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_G.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_G.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_G.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_G.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: G -Encoding: 71 71 39 -Width: 662 -Flags: W -HStem: -7 43<284 415> 268 36<394 447 594 643> 609 42<351 511> -VStem: 51 141<160 395> 450 103<99 209> 577 33<469 532> -LayerCount: 2 -Fore -SplineSet -433 651 m 0 - 493 651 571 635 623 623 c 1 - 623 612 612 494 610 482 c 0 - 609 476 600 469 589 469 c 3 - 584 469 580 469 577 473 c 1 - 575 511 547 609 433 609 c 0 - 305 609 191 467 191 262 c 0 - 191 172 228 36 356 36 c 0 - 389 36 405 44 412 49 c 0 - 416 52 420 56 422 65 c 0 - 425 80 436 144 445 191 c 0 - 449 211 451 220 450 241 c 0 - 448 265 402 268 391 268 c 0 - 386 268 391 299 397 304 c 1 - 443 302 494 298 540 298 c 0 - 578 298 610 302 647 304 c 1 - 648 291 643 268 640 268 c 1 - 633 268 606 262 594 255 c 0 - 588 251 579 232 575 213 c 0 - 568 177 560 129 553 96 c 0 - 551 87 554 72 553 67 c 0 - 551 56 530 41 517 35 c 0 - 465 10 413 -7 329 -7 c 0 - 139 -7 51 139 51 270 c 0 - 51 514 260 651 433 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gradient.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gradient.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gradient.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gradient.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: gradient -Encoding: 8711 8711 229 -Width: 586 -Flags: W -HStem: 553 74<150 490> -LayerCount: 2 -Fore -SplineSet -150 546 m 2 - 246 194 l 1 - 249 191 253 190 257 196 c 2 - 490 542 l 1 - 493 549 490 553 485 553 c 2 - 155 553 l 2 - 151 553 149 550 150 546 c 2 -183 28 m 1 - 22 613 l 1 - 22 613 29 619 32 627 c 1 - 587 627 l 1 - 590 621 590 618 592 611 c 1 - 198 28 l 1 - 183 28 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb.cap -Encoding: 65536 -1 259 -Width: 263 -GlyphClass: 4 -Flags: W -HStem: 714 115 -VStem: 196 203 -LayerCount: 2 -Fore -SplineSet -390 714 m 1 - 375 716 196 759 196 798 c 0 - 196 821 228 829 250 829 c 0 - 264 829 286 826 295 821 c 0 - 336 797 393 735 398 727 c 1 - 398 723 394 717 390 714 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/gravecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: gravecomb -Encoding: 768 768 190 -Width: 0 -VWidth: 978 -GlyphClass: 4 -Flags: W -HStem: 479 145 -VStem: -338 168 -LayerCount: 2 -Fore -SplineSet --179 479 m 1 - -196 483 -338 549 -338 583 c 0 - -338 609 -311 623 -294 623 c 0 - -281 623 -268 620 -264 616 c 0 - -235 589 -173 500 -170 490 c 1 - -171 484 -176 481 -179 479 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/grave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/grave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/grave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/grave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: grave -Encoding: 96 96 64 -Width: 197 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 348 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/greaterequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/greaterequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/greaterequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/greaterequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: greaterequal -Encoding: 8805 8805 240 -Width: 445 -Flags: W -HStem: 4 65<5 373> -LayerCount: 2 -Fore -SplineSet -18 69 m 1 - 371 69 l 2 - 377 69 379 58 379 52 c 3 - 379 38 372 21 360 4 c 1 - 5 4 l 2 - -2 4 -2 15 -2 21 c 3 - -2 35 9 57 18 69 c 1 -22 84 m 17 - 18 89 11 114 11 135 c 27 - 11 140 12 145 16 147 c 2 - 339 300 l 1 - 70 455 l 1 - 70 473 86 517 92 517 c 0 - 94 517 98 517 101 515 c 2 - 413 338 l 2 - 421 333 430 316 430 306 c 0 - 430 281 403 261 391 255 c 0 - 254 191 166 150 22 84 c 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/greater.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/greater.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/greater.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/greater.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: greater -Encoding: 62 62 30 -Width: 456 -Flags: HW -LayerCount: 2 -Fore -SplineSet -333 204 m 1 - 73 355 l 1 - 73 355 70 358 72 364 c 0 - 86 400 95 420 98 420 c 0 - 99 420 100 419 102 418 c 2 - 406 235 l 2 - 414 230 420 223 418 212 c 0 - 415 195 409 181 393 173 c 2 - 17 -13 l 2 - 15 -14 13 -15 12 -15 c 0 - 6 -15 8 37 9 44 c 0 - 10 49 12 50 12 50 c 1 - 333 204 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotleft -Encoding: 171 171 106 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -SplineSet -386 90 m 1 - 380 80 365 72 359 71 c 1 - 355 75 302 151 198 228 c 1 - 195 232 194 237 195 242 c 0 - 196 247 199 253 203 257 c 1 - 337 334 420 409 425 413 c 1 - 430 412 444 405 446 395 c 1 - 441 389 334 277 294 242 c 1 - 320 207 383 96 386 90 c 1 -217 90 m 1 - 211 80 195 72 189 71 c 1 - 185 75 133 151 29 228 c 1 - 26 232 24 237 25 242 c 0 - 26 247 29 253 33 257 c 1 - 167 334 250 409 255 413 c 1 - 260 412 274 405 276 395 c 1 - 271 389 164 277 124 242 c 1 - 150 207 214 96 217 90 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guillemotright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotright -Encoding: 187 187 121 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -SplineSet -73 395 m 1 - 79 405 96 412 102 413 c 1 - 106 409 158 334 262 257 c 1 - 265 253 266 247 265 242 c 0 - 264 237 260 232 256 228 c 1 - 122 151 40 75 35 71 c 1 - 30 72 16 80 14 90 c 1 - 19 96 125 207 165 242 c 1 - 139 277 76 389 73 395 c 1 -243 395 m 1 - 249 405 265 412 271 413 c 1 - 275 409 328 334 432 257 c 1 - 435 253 436 247 435 242 c 0 - 434 237 430 232 426 228 c 1 - 292 151 209 75 204 71 c 1 - 199 72 186 80 184 90 c 1 - 189 96 295 207 335 242 c 1 - 309 277 246 389 243 395 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: guilsinglleft -Encoding: 8249 8249 218 -Width: 327 -Flags: W -VStem: 107 248 -LayerCount: 2 -Fore -SplineSet -296 90 m 1 - 290 80 275 72 269 71 c 1 - 265 75 211 151 107 228 c 1 - 104 232 103 237 104 242 c 0 - 105 247 109 253 113 257 c 1 - 247 334 330 409 335 413 c 1 - 340 412 353 405 355 395 c 1 - 350 389 244 277 204 242 c 1 - 230 207 293 96 296 90 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/guilsinglright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: guilsinglright -Encoding: 8250 8250 219 -Width: 450 -Flags: W -VStem: 225 248 -LayerCount: 2 -Fore -SplineSet -284 395 m 1 - 290 405 306 412 312 413 c 1 - 316 409 369 334 473 257 c 1 - 476 253 477 247 476 242 c 0 - 475 237 471 232 467 228 c 1 - 333 151 250 75 245 71 c 1 - 240 72 227 80 225 90 c 1 - 230 96 336 207 376 242 c 1 - 350 277 287 389 284 395 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: hbar -Encoding: 295 295 387 -Width: 492 -Flags: W -HStem: -8 84<296 396> 331 107<264 370> 505 38<62 370> 617 28<69 126> 660 20<237 250> -VStem: 128 126<544 664> 251 120<33 187> 294 119<215 389> -LayerCount: 2 -Fore -SplineSet -70 543 m 1xf8 - 97 543 355 543 368 543 c 0 - 372 543 374 539 373 535 c 0 - 372 530 367 512 362 505 c 1 - 335 505 76 505 63 505 c 0 - 59 505 60 512 61 516 c 0 - 62 521 63 536 70 543 c 1xf8 -EndSplineSet -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: Hbar -Encoding: 294 294 388 -Width: 690 -Flags: W -HStem: -4 36<-5 60 202 253 341 406 548 599> 310 50<258 463> 466 38<96 681> 610 36<115 166 308 373 460 512 653 718> -LayerCount: 2 -Fore -SplineSet -104 504 m 1 - 128 504 670 504 682 504 c 0 - 685 504 685 500 684 496 c 0 - 683 491 679 474 674 466 c 1 - 650 466 108 466 96 466 c 0 - 93 466 93 473 94 477 c 0 - 95 482 97 496 104 504 c 1 -EndSplineSet -Refer: 40 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hcircumflex -Encoding: 293 293 306 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 -99 25 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Hcircumflex -Encoding: 292 292 305 -Width: 690 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 124 25 2 -Refer: 40 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: h -Encoding: 104 104 72 -Width: 492 -Flags: W -HStem: -8 84<296 396> 331 107<264 370> 617 28<69 126> 660 20G<237 250> -VStem: 128 126<544 664> 251 120<33 187> 294 119<215 389> -LayerCount: 2 -Fore -SplineSet -241 588 m 0xfa - 241 588 188 316 186 307 c 0 - 183 295 180 278 178 268 c 1 - 207 334 294 438 343 438 c 3 - 398 438 413 410 413 354 c 0xfa - 413 321 399 253 394 228 c 2 - 375 129 l 2 - 374 125 371 102 371 97 c 0 - 371 88 375 76 385 76 c 0 - 406 76 451 130 454 136 c 1 - 461 136 468 115 468 109 c 1 - 451 78 365 -8 312 -8 c 0 - 280 -8 251 12 251 62 c 0xf4 - 251 76 258 112 260 120 c 1 - 282 236 l 2 - 285 248 294 301 294 311 c 0 - 294 321 289 331 278 331 c 0 - 250 331 173 213 146 89 c 10 - 127 0 l 17 - 117 -3 83 -6 72 -6 c 0 - 61 -6 27 -3 15 0 c 1 - 21 30 118 541 119 547 c 0 - 123 566 128 588 128 599 c 0 - 128 618 84 617 68 617 c 1 - 65 621 68 642 72 646 c 1 - 126 651 227 672 248 680 c 1 - 253 677 254 667 254 661 c 0 - 254 653 244 602 241 588 c 0xfa -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_H.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_H.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_H.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_H.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,169 +0,0 @@ -StartChar: H -Encoding: 72 72 40 -Width: 690 -Flags: W -HStem: -4 36<-5 60 202 253 341 406 548 599> 310 50<258 463> 610 36<115 166 308 373 460 512 653 718> -LayerCount: 2 -Back -SplineSet -356.40625 360.3515625 m 0 - 428.671875 360.3515625 465.129882812 362.3046875 465.78125 366.2109375 c 2 - 493.125 510.7421875 l 1 - 498.984375 545.8984375 501.9140625 570.963867188 501.9140625 585.9375 c 0 - 501.9140625 591.834960938 500.08203125 596.791992188 496.416992188 600.80859375 c 0 - 492.751953125 604.826171875 488.008789062 607.637695312 482.188476562 609.243164062 c 0 - 476.3671875 610.849609375 471.375 611.923828125 467.211914062 612.466796875 c 0 - 463.047851562 613.009765625 458.990234375 613.28125 455.0390625 613.28125 c 0 - 453.737304688 613.28125 453.0859375 615.234375 453.0859375 619.140625 c 0 - 453.0859375 623.643554688 453.91015625 628.848632812 455.55859375 634.756835938 c 0 - 457.20703125 640.6640625 458.987304688 644.573242188 460.8984375 646.484375 c 1 - 469.318359375 646.083007812 482.56640625 645.328125 500.640625 644.217773438 c 0 - 518.715820312 643.108398438 534.97265625 642.232421875 549.411132812 641.588867188 c 0 - 563.849609375 640.946289062 577.314453125 640.625 589.8046875 640.625 c 0 - 601.724609375 640.625 614.31640625 640.9453125 627.581054688 641.5859375 c 0 - 640.844726562 642.225585938 655.700195312 643.104492188 672.145507812 644.221679688 c 0 - 688.591796875 645.338867188 700.532226562 646.092773438 707.96875 646.484375 c 1 - 707.96875 640.625 l 2 - 707.96875 634.124023438 707.341796875 628.645507812 706.088867188 624.189453125 c 0 - 704.834960938 619.733398438 703.592773438 616.801757812 702.361328125 615.393554688 c 0 - 701.130859375 613.985351562 700.069335938 613.28125 699.1796875 613.28125 c 0 - 694.375976562 613.28125 684.543945312 610.559570312 669.682617188 605.115234375 c 0 - 654.821289062 599.670898438 646.099609375 594.580078125 643.515625 589.84375 c 0 - 642.125976562 587.279296875 640.833007812 584.73046875 639.635742188 582.196289062 c 0 - 638.438476562 579.663085938 637.287109375 576.84765625 636.182617188 573.751953125 c 0 - 635.078125 570.65625 634.13671875 568.05078125 633.358398438 565.93359375 c 0 - 632.580078125 563.817382812 631.702148438 560.8203125 630.725585938 556.943359375 c 0 - 629.748046875 553.06640625 629.015625 550.223632812 628.528320312 548.416992188 c 0 - 628.040039062 546.610351562 627.306640625 543.32421875 626.329101562 538.55859375 c 0 - 625.350585938 533.79296875 624.698242188 530.608398438 624.372070312 529.00390625 c 0 - 624.046875 527.399414062 623.329101562 523.716796875 622.221679688 517.956054688 c 0 - 621.114257812 512.194335938 620.399414062 508.48828125 620.078125 506.8359375 c 2 - 547.8125 135.7421875 l 2 - 547.0390625 131.744140625 545.94140625 126.330078125 544.521484375 119.500976562 c 0 - 543.1015625 112.670898438 542.069335938 107.514648438 541.423828125 104.030273438 c 0 - 540.77734375 100.546875 540.049804688 96.115234375 539.240234375 90.7353515625 c 0 - 538.431640625 85.35546875 537.8671875 80.0419921875 537.548828125 74.7958984375 c 0 - 537.229492188 69.5498046875 537.0703125 63.8232421875 537.0703125 57.6171875 c 0 - 537.0703125 50.84375 543.627929688 44.4306640625 556.744140625 38.376953125 c 0 - 569.859375 32.3232421875 579.251953125 29.296875 584.921875 29.296875 c 0 - 586.223632812 29.296875 586.875 27.6689453125 586.875 24.4140625 c 0 - 586.875 20.453125 586.0546875 15.466796875 584.415039062 9.4521484375 c 0 - 582.774414062 3.4384765625 580.990234375 -1.013671875 579.0625 -3.90625 c 1 - 577.724609375 -3.833984375 561.357421875 -2.6767578125 529.962890625 -0.43359375 c 0 - 498.568359375 1.80859375 474.895507812 2.9296875 458.9453125 2.9296875 c 0 - 442.615234375 2.9296875 419.286132812 1.8720703125 388.958007812 -0.244140625 c 0 - 358.630859375 -2.3603515625 339.967773438 -3.5810546875 332.96875 -3.90625 c 1 - 332.317382812 -3.2548828125 331.9921875 -1.3017578125 331.9921875 1.953125 c 0 - 331.9921875 6.9580078125 332.567382812 12.7666015625 333.716796875 19.37890625 c 0 - 334.8671875 25.9912109375 335.919921875 29.296875 336.875 29.296875 c 0 - 343.9375 29.296875 354.598632812 31.6259765625 368.858398438 36.28515625 c 0 - 383.118164062 40.9443359375 391.98828125 46.1015625 395.46875 51.7578125 c 0 - 401.513671875 62.03515625 409.326171875 88.7275390625 418.90625 131.8359375 c 1 - 452.109375 296.875 l 1 - 452.109375 297.8515625 l 2 - 452.109375 301.7578125 416.301757812 303.7109375 344.6875 303.7109375 c 0 - 271.770507812 303.7109375 234.661132812 301.106445312 233.359375 295.8984375 c 2 - 202.109375 135.7421875 l 2 - 201.731445312 133.790039062 200.955078125 129.834960938 199.78125 123.875976562 c 0 - 198.606445312 117.91796875 197.864257812 114.075195312 197.553710938 112.349609375 c 0 - 197.2421875 110.623046875 196.678710938 107.41796875 195.86328125 102.733398438 c 0 - 195.047851562 98.0498046875 194.521484375 94.4921875 194.28515625 92.060546875 c 0 - 194.047851562 89.6298828125 193.723632812 86.3447265625 193.3125 82.2060546875 c 0 - 192.901367188 78.0673828125 192.63671875 74.0654296875 192.51953125 70.2001953125 c 0 - 192.40234375 66.3349609375 192.34375 62.140625 192.34375 57.6171875 c 0 - 192.34375 50.837890625 198.75390625 44.4228515625 211.575195312 38.373046875 c 0 - 224.396484375 32.322265625 233.611328125 29.296875 239.21875 29.296875 c 0 - 240.520507812 29.296875 241.171875 27.6689453125 241.171875 24.4140625 c 0 - 241.171875 20.21484375 240.495117188 15.1396484375 239.142578125 9.1884765625 c 0 - 237.790039062 3.236328125 236.188476562 -1.1279296875 234.3359375 -3.90625 c 1 - 226.517578125 -3.4833984375 214.158203125 -2.64453125 197.2578125 -1.3876953125 c 0 - 180.357421875 -0.1318359375 164.602539062 0.90234375 149.995117188 1.712890625 c 0 - 135.38671875 2.5244140625 122.159179688 2.9296875 110.3125 2.9296875 c 0 - 94.0634765625 2.9296875 71.4140625 1.8798828125 42.365234375 -0.220703125 c 0 - 13.3154296875 -2.3203125 -5.05078125 -3.548828125 -12.734375 -3.90625 c 1 - -13.3857421875 -3.2548828125 -13.7109375 -1.3017578125 -13.7109375 1.953125 c 0 - -13.7109375 6.7705078125 -12.982421875 12.5322265625 -11.5244140625 19.23828125 c 0 - -10.06640625 25.9443359375 -8.8427734375 29.296875 -7.8515625 29.296875 c 0 - -0.6484375 29.296875 9.888671875 31.46875 23.7578125 35.8115234375 c 0 - 37.6279296875 40.154296875 46.296875 45.14453125 49.765625 50.78125 c 0 - 54.1611328125 58.2529296875 58.87109375 70.8857421875 63.896484375 88.6787109375 c 0 - 68.921875 106.471679688 72.349609375 120.857421875 74.1796875 131.8359375 c 2 - 147.421875 510.7421875 l 2 - 153.28125 541.9921875 156.2109375 565.754882812 156.2109375 582.03125 c 0 - 156.2109375 589.0703125 152.625 595.158203125 145.453125 600.295898438 c 0 - 138.28125 605.43359375 131.34765625 608.881835938 124.651367188 610.641601562 c 0 - 117.954101562 612.401367188 112.849609375 613.28125 109.3359375 613.28125 c 0 - 108.684570312 613.28125 108.359375 614.583007812 108.359375 617.1875 c 0 - 108.359375 621.907226562 108.98828125 627.623046875 110.247070312 634.333984375 c 0 - 111.504882812 641.043945312 112.829101562 645.094726562 114.21875 646.484375 c 1 - 123.668945312 646.034179688 136.220703125 645.272460938 151.875976562 644.200195312 c 0 - 167.530273438 643.126953125 181.922851562 642.262695312 195.05078125 641.607421875 c 0 - 208.1796875 640.952148438 220.94921875 640.625 233.359375 640.625 c 0 - 245.078125 640.625 288.046875 642.578125 362.265625 646.484375 c 1 - 362.265625 641.6015625 l 2 - 362.265625 636.23046875 361.420898438 630.16796875 359.732421875 623.413085938 c 0 - 358.043945312 616.658203125 356.284179688 613.28125 354.453125 613.28125 c 0 - 349.552734375 613.28125 339.369140625 610.555664062 323.90234375 605.10546875 c 0 - 308.434570312 599.655273438 299.413085938 594.568359375 296.8359375 589.84375 c 0 - 293.092773438 583.189453125 288.537109375 569.40625 283.166992188 548.494140625 c 0 - 277.797851562 527.58203125 274.541992188 513.696289062 273.3984375 506.8359375 c 2 - 247.03125 369.140625 l 1 - 247.03125 367.1875 l 2 - 247.03125 366.286132812 247.423828125 365.547851562 248.209960938 364.97265625 c 0 - 248.99609375 364.397460938 250.678710938 363.825195312 253.2578125 363.2578125 c 0 - 255.836914062 362.690429688 259.537109375 362.24609375 264.359375 361.92578125 c 0 - 269.182617188 361.604492188 275.657226562 361.313476562 283.784179688 361.051757812 c 0 - 291.911132812 360.791015625 301.887695312 360.608398438 313.711914062 360.505859375 c 0 - 325.537109375 360.403320312 339.768554688 360.3515625 356.40625 360.3515625 c 0 -EndSplineSet -Fore -SplineSet -247 640 m 0 - 285 640 340 642 376 646 c 1 - 379 640 375 617 369 610 c 1 - 357 609 315 606 308 593 c 0 - 297 573 290 543 282 501 c 2 - 256 362 l 1 - 256 360 257 359 257 359 c 1 - 292 358 325 356 366 356 c 0 - 399 356 440 358 473 359 c 1 - 473 359 475 361 475 363 c 0 - 501 501 l 2 - 509 543 516 573 512 593 c 0 - 510 606 469 609 457 610 c 1 - 454 617 459 640 464 646 c 1 - 498 642 555 640 593 640 c 0 - 631 640 686 642 722 646 c 1 - 725 640 721 617 715 610 c 1 - 703 609 660 606 653 593 c 0 - 642 573 636 543 628 501 c 2 - 558 142 l 2 - 550 100 544 70 548 50 c 0 - 550 37 590 33 602 32 c 1 - 605 25 601 2 596 -4 c 1 - 562 0 505 3 467 3 c 0 - 429 3 374 0 338 -4 c 1 - 335 2 339 25 345 32 c 1 - 357 33 399 37 406 50 c 0 - 417 70 424 100 432 142 c 2 - 463 303 l 0 - 463 305 462 308 462 308 c 1 - 429 309 393 310 356 310 c 0 - 255 310 248 308 245 306 c 1 - 244 305 243 302 243 302 c 1 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 123 609 111 610 c 1 - 108 617 113 640 118 646 c 1 - 152 642 209 640 247 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hookabovecomb.cap -Encoding: 65547 -1 270 -Width: 163 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 449 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hookabovecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: hookabovecomb -Encoding: 777 777 250 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 621 37<-259 -211> -VStem: -322 57<567 617> -303 43<488 503> -LayerCount: 2 -Fore -SplineSet --213 658 m 0xc0 - -176 658 -155 634 -161 602 c 0 - -168 566 -196 540 -222 529 c 0 - -243 520 -256 516 -259 503 c 0 - -259 501 -260 498 -260 495 c 1 - -261 492 -284 486 -297 486 c 1 - -301 489 -304 500 -303 503 c 0xa0 - -298 530 -271 543 -253 551 c 0 - -231 561 -216 573 -212 592 c 0 - -210 604 -210 621 -229 621 c 0 - -250 621 -262 605 -266 586 c 0 - -269 569 -293 564 -306 564 c 0 - -314 564 -324 569 -322 581 c 0 - -312 631 -258 658 -213 658 c 0xc0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hungarumlaut -Encoding: 733 733 486 -Width: 355 -VWidth: 55 -Flags: HW -LayerCount: 2 -Fore -Refer: 252 779 N 1 0 0 1 416 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hyphen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hyphen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/hyphen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/hyphen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: hyphen -Encoding: 45 45 13 -Width: 356 -Flags: W -VStem: 47 251<202 260> -LayerCount: 2 -Fore -SplineSet -70 261 m 2 - 292 272 l 2 - 297 272 298 266 298 261 c 0 - 298 248 282 200 272 199 c 10 - 52 188 l 2 - 49 188 47 195 47 203 c 0 - 47 214 59 260 70 261 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: iacute -Encoding: 237 237 171 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 456 10 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Iacute -Encoding: 205 205 139 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 27 -16 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ibreve -Encoding: 301 301 312 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 432 20 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ibreve -Encoding: 300 300 311 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 -1 N 1 0 0 1 1 22 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: icircumflex -Encoding: 238 238 172 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 435 1 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Icircumflex -Encoding: 206 206 140 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 -46 25 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: idieresis -Encoding: 239 239 173 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 -1 N 1 0 0 1 -67 65 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idieresis -Encoding: 207 207 141 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 -23 12 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Idotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idotaccent -Encoding: 304 304 313 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 -21 2 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: i -Encoding: 105 105 73 -Width: 302 -VWidth: 0 -Flags: W -HStem: -8 84<104 203> 354 84<83 182> 527 144<159 238> -VStem: 59 120<33 186> 108 119<245 396> 132 133<554 645> -LayerCount: 2 -Fore -SplineSet -104 302 m 2xf0 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0 - 201 438 228 414 228 369 c 0xe8 - 228 355 221 321 219 311 c 0 - 183 129 l 2 - 182 125 179 102 179 97 c 0 - 179 88 182 76 192 76 c 0 - 213 76 259 130 262 136 c 1 - 269 136 275 115 275 109 c 1 - 258 78 173 -8 120 -8 c 0 - 88 -8 59 12 59 62 c 0 - 59 76 65 112 67 120 c 1 - 104 302 l 2xf0 -208 671 m 0 - 241 671 265 644 265 610 c 0 - 265 567 229 527 188 527 c 0 - 155 527 132 555 132 589 c 0xe4 - 132 632 167 671 208 671 c 0 -EndSplineSet -Substitution2: "'ccmp' Turkish i-1" i.TRK -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_I.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_I.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_I.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_I.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: I -Encoding: 73 73 41 -Width: 344 -Flags: W -HStem: -4 36<-5 60 202 253> 610 36<115 166 308 373> -LayerCount: 2 -Fore -SplineSet -247 640 m 0 - 285 640 340 642 376 646 c 1 - 379 640 375 617 369 610 c 1 - 357 609 315 606 308 593 c 0 - 297 573 290 543 282 501 c 2 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 123 609 111 610 c 1 - 108 617 113 640 118 646 c 1 - 152 642 209 640 247 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: igrave -Encoding: 236 236 170 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 414 10 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Igrave -Encoding: 204 204 138 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 -69 -16 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ij.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ij.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ij.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ij.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij -Encoding: 307 307 390 -Width: 509 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 74 106 N 1 0 0 1 230 0 2 -Refer: 73 105 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_I_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_I_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_I_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_I_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: IJ -Encoding: 306 306 389 -Width: 575 -Flags: HW -LayerCount: 2 -Fore -Refer: 42 74 N 1 0 0 1 246 0 2 -Refer: 41 73 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: imacron -Encoding: 299 299 310 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 437 20 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Imacron -Encoding: 298 298 309 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 -22 167 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/infinity.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/infinity.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/infinity.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/infinity.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: infinity -Encoding: 8734 8734 237 -Width: 788 -Flags: W -HStem: 38 72<130 234 511 611> 344 72<168 269 544 647> -LayerCount: 2 -Fore -SplineSet -592 349 m 0 - 536 349 462 261 443 240 c 0 - 442 239 442 239 443 238 c 0 - 458 209 498 110 560 110 c 0 - 606 110 654 163 667 228 c 0 - 681 297 643 349 592 349 c 0 -222 344 m 0 - 173 344 122 290 109 224 c 0 - 95 156 134 107 182 107 c 0 - 242 107 305 183 332 213 c 0 - 333 214 334 214 333 215 c 0 - 323 238 285 344 222 344 c 0 -246 416 m 0 - 334 416 384 341 412 294 c 0 - 413 292 417 291 418 293 c 0 - 466 345 542 416 630 416 c 0 - 716 416 768 329 750 236 c 0 - 729 129 627 38 527 38 c 0 - 408 38 369 158 359 158 c 2 - 358 158 l 1 - 297 96 232 36 143 36 c 0 - 57 36 9 125 27 218 c 0 - 48 324 147 416 246 416 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: iogonek -Encoding: 303 303 383 -Width: 303 -VWidth: 0 -Flags: W -HStem: -213 61<60 142> 354 84<84 183> 527 144<160 239> -VStem: 21 60<-169 -89> 109 119<245 396> 133 133<554 645> -LayerCount: 2 -Fore -SplineSet -209 671 m 0xf4 - 242 671 266 644 266 610 c 0 - 266 567 230 527 189 527 c 0 - 156 527 133 555 133 589 c 0 - 133 632 168 671 209 671 c 0xf4 -276 109 m 1 - 266 90 229 54 196 26 c 0 - 141 -21 80 -68 80 -119 c 0 - 80 -142 91 -152 115 -152 c 0 - 156 -152 181 -122 188 -117 c 1 - 195 -119 192 -139 190 -143 c 0 - 168 -181 120 -213 79 -213 c 0 - 41 -213 21 -182 21 -156 c 0 - 21 -94 70 -51 111 -7 c 1 - 83 -3 60 17 60 62 c 0 - 60 76 66 112 68 120 c 2 - 104 302 l 2 - 105 306 109 329 109 334 c 0 - 109 343 105 354 95 354 c 0 - 74 354 28 301 25 295 c 1 - 18 295 12 315 12 321 c 1 - 29 352 110 438 163 438 c 0 - 202 438 229 414 229 369 c 0xf8 - 229 355 222 321 220 311 c 2 - 184 129 l 2 - 183 125 180 102 180 97 c 0 - 180 88 183 76 193 76 c 0 - 214 76 260 130 263 136 c 1 - 270 136 276 115 276 109 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: Iogonek -Encoding: 302 302 382 -Width: 344 -Flags: W -HStem: -213 61<51 133> -4 36<-5 59 202 253> 610 36<115 166 308 373> -VStem: 12 60<-169 -86> -LayerCount: 2 -Fore -SplineSet -257 32 m 1 - 260 25 255 2 250 -4 c 1 - 241 -4 210 -3 187 -6 c 0 - 137 -12 71 -67 71 -119 c 0 - 71 -142 82 -152 106 -152 c 0 - 147 -152 172 -122 179 -117 c 1 - 186 -119 184 -139 182 -143 c 0 - 160 -181 111 -213 70 -213 c 0 - 32 -213 12 -182 12 -156 c 0 - 12 -80 90 -15 126 4 c 1 - 89 4 24 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 123 609 111 610 c 1 - 108 617 113 640 118 646 c 1 - 152 642 209 640 247 640 c 0 - 285 640 340 642 376 646 c 1 - 379 640 375 617 369 610 c 1 - 357 609 315 606 308 593 c 0 - 297 573 290 543 282 501 c 2 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: itilde -Encoding: 297 297 308 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 436 20 2 -Refer: 244 305 N 1 0 0 1 8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Itilde -Encoding: 296 296 307 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 -76 0 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/i._T_R_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/i._T_R_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/i._T_R_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/i._T_R_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: i.TRK -Encoding: 65586 -1 475 -Width: 302 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 73 105 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: jcircumflex -Encoding: 309 309 315 -Width: 279 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 368 21 2 -Refer: 391 567 N 1 0 0 1 -75 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Jcircumflex -Encoding: 308 308 314 -Width: 328 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 -49 22 2 -Refer: 42 74 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: j -Encoding: 106 106 74 -Width: 279 -VWidth: 0 -Flags: W -HStem: -213 21<-83 -77> 354 84<93 191> 528 145<181 260> -VStem: 118 119<241 396> 154 133<555 646> -LayerCount: 2 -Fore -SplineSet -113 302 m 2xf0 - 114 306 118 329 118 334 c 0 - 118 343 114 354 104 354 c 0 - 83 354 37 301 34 295 c 1 - 27 295 21 315 21 321 c 1 - 38 352 119 438 172 438 c 0 - 211 438 237 414 237 369 c 0 - 237 355 231 321 229 311 c 0 - 229 311 206 190 191 117 c 0 - 175 35 146 -19 106 -73 c 0 - 64 -129 -50 -205 -77 -213 c 1 - -82 -213 -86 -200 -86 -191 c 1 - 17 -112 46 -48 74 98 c 0 - 113 302 l 2xf0 -230 673 m 0 - 263 673 287 645 287 611 c 0 - 287 568 252 528 211 528 c 0 - 178 528 154 556 154 590 c 0xe8 - 154 633 189 673 230 673 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: J -Encoding: 74 74 42 -Width: 328 -Flags: W -HStem: -213 23<-105 -87> 610 36<109 160 302 367> -LayerCount: 2 -Fore -SplineSet -241 640 m 0 - 279 640 334 642 370 646 c 1 - 373 640 369 617 363 610 c 1 - 351 609 309 606 302 593 c 0 - 291 573 284 543 276 501 c 2 - 206 140 l 2 - 163 -83 -38 -195 -96 -213 c 1 - -101 -210 -106 -200 -106 -195 c 0 - -106 -192 -105 -190 -104 -189 c 1 - -3 -134 47 -30 78 132 c 2 - 149 501 l 2 - 157 543 164 573 160 593 c 0 - 158 606 117 609 105 610 c 1 - 102 617 107 640 112 646 c 1 - 146 642 203 640 241 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: k -Encoding: 107 107 75 -Width: 491 -VWidth: 0 -Flags: W -HStem: -4 84<276 393> 365 73<289 396> 617 28<69 126> 660 20G<237 250> -VStem: 128 126<540 664> 321 126<316 391> -LayerCount: 2 -Back -SplineSet -351.5625 128.876953125 m 0 - 348.854492188 113.158203125 347.5 102.430664062 347.5 96.6962890625 c 0 - 347.5 91.4296875 348.69140625 86.6923828125 351.07421875 82.484375 c 0 - 353.45703125 78.2763671875 356.977539062 76.171875 361.63671875 76.171875 c 0 - 370.772460938 76.171875 383.87109375 84.619140625 400.93359375 101.512695312 c 0 - 417.99609375 118.40625 428.009765625 129.815429688 430.97265625 135.7421875 c 1 - 434.041992188 135.7421875 437.087890625 132.30078125 440.110351562 125.416992188 c 0 - 443.1328125 118.534179688 444.64453125 113.186523438 444.64453125 109.375 c 1 - 440.317382812 101.229492188 432.265625 90.7255859375 420.490234375 77.86328125 c 0 - 408.715820312 65.0009765625 395.416992188 52.1650390625 380.596679688 39.35546875 c 0 - 365.775390625 26.5458984375 349.858398438 15.5517578125 332.846679688 6.373046875 c 0 - 315.833984375 -2.8046875 301.08984375 -7.3935546875 288.61328125 -7.3935546875 c 1024 -EndSplineSet -Fore -SplineSet -367 438 m 3 - 424 438 447 413 447 368 c 0 - 447 304 352 249 279 225 c 1 - 296 178 339 80 381 80 c 0 - 404 80 439 124 447 135 c 1 - 457 135 461 114 461 109 c 1 - 451 83 372 -4 313 -4 c 0 - 238 -4 188 134 167 203 c 1 - 152 130 127 0 127 0 c 17 - 117 -3 83 -6 72 -6 c 0 - 61 -6 27 -3 15 0 c 1 - 21 30 118 541 119 547 c 0 - 123 566 128 588 128 599 c 0 - 128 618 84 617 68 617 c 1 - 65 621 68 642 72 646 c 1 - 126 651 227 672 248 680 c 1 - 253 677 254 667 254 661 c 0 - 254 653 244 602 241 588 c 2 - 193 333 l 17 - 205 358 285 438 367 438 c 3 -294 365 m 3 - 236 365 175 265 175 242 c 1 - 236 242 321 281 321 334 c 3 - 321 344 316 365 294 365 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: K -Encoding: 75 75 43 -Width: 671 -Flags: W -HStem: -4 36<-5 60 202 253 588 641> 610 36<115 166 308 373 477 521 627 705> -LayerCount: 2 -Fore -SplineSet -509 138 m 0 - 584 26 637 28 644 28 c 1 - 647 21 641 0 640 -2 c 1 - 614 -4 613 -6 576 -6 c 0 - 479 -6 439 20 392 90 c 0 - 370 123 297 238 261 295 c 0 - 259 298 254 299 252 299 c 0 - 248 299 245 297 242 293 c 1 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 123 609 111 610 c 1 - 108 617 113 640 118 646 c 1 - 152 642 209 640 247 640 c 0 - 285 640 340 642 376 646 c 1 - 379 640 375 617 369 610 c 1 - 357 609 315 606 308 593 c 0 - 297 573 290 543 282 501 c 2 - 249 329 l 1 - 296 363 334 394 360 418 c 0 - 426 478 457 502 506 557 c 0 - 518 570 520 582 521 589 c 0 - 525 610 488 611 475 611 c 1 - 472 619 474 637 479 646 c 1 - 512 644 564 640 597 640 c 0 - 637 640 676 642 710 646 c 1 - 711 639 708 618 702 612 c 1 - 693 611 629 604 591 569 c 2 - 591 569 454 444 371 367 c 0 - 364 360 363 357 366 352 c 0 - 419 268 457 215 509 138 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/kgreenlandic.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/kgreenlandic.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/kgreenlandic.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/kgreenlandic.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: kgreenlandic -Encoding: 312 312 394 -Width: 522 -VWidth: 0 -Flags: W -HStem: -4 84<307 424> 354 84<83 182> 365 73<320 427> -VStem: 108 119<288 396> 353 126<316 391> -LayerCount: 2 -Fore -SplineSet -104 302 m 2xb8 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0xd8 - 201 438 228 414 228 369 c 0 - 228 357 226 350 225 340 c 0 - 225 338 225 335 225 333 c 1 - 237 358 316 438 398 438 c 3 - 455 438 479 413 479 368 c 0 - 479 304 384 249 311 225 c 1 - 328 178 370 80 412 80 c 0 - 435 80 471 124 479 135 c 1 - 489 135 492 114 492 109 c 1 - 482 83 404 -4 345 -4 c 0 - 270 -4 219 134 198 203 c 1 - 183 130 158 0 158 0 c 17 - 148 -3 115 -6 104 -6 c 0 - 93 -6 58 -3 46 0 c 1 - 52 30 104 302 104 302 c 2xb8 -325 365 m 3xb8 - 267 365 206 265 206 242 c 1 - 267 242 353 281 353 334 c 3 - 353 344 347 365 325 365 c 3xb8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: lacute -Encoding: 314 314 319 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 1 -16 2 -Refer: 76 108 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Lacute -Encoding: 313 313 318 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 29 -16 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lcaron -Encoding: 318 318 323 -Width: 272 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 789 N 1 0 0 1 164 14 2 -Refer: 76 108 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Lcaron -Encoding: 317 317 322 -Width: 551 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 789 N 1 0 0 1 368 14 2 -Refer: 44 76 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ldot -Encoding: 320 320 325 -Width: 406 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 586 -244 2 -Refer: 76 108 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ldot -Encoding: 319 319 324 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 708 -225 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lessequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lessequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lessequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lessequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,66 +0,0 @@ -StartChar: lessequal -Encoding: 8804 8804 239 -Width: 460 -Flags: W -HStem: 4 65<7 374> -LayerCount: 2 -Back -SplineSet -426.7578125 60.546875 m 2 - 427.409179688 60.546875 428.059570312 60.4658203125 428.7109375 60.302734375 c 0 - 429.362304688 60.1396484375 430.256835938 59.326171875 431.396484375 57.861328125 c 0 - 432.536132812 56.396484375 432.291992188 53.7109375 430.6640625 49.8046875 c 0 - 427.083007812 39.0625 423.828125 30.3544921875 420.8984375 23.681640625 c 0 - 417.96875 17.0087890625 415.934570312 12.8583984375 414.794921875 11.23046875 c 0 - 413.655273438 9.6025390625 412.272460938 8.30078125 410.64453125 7.32421875 c 2 - 408.203125 5.859375 l 1 - 61.5234375 5.859375 l 2 - 60.8720703125 5.859375 60.1396484375 5.9404296875 59.326171875 6.103515625 c 0 - 58.5126953125 6.2666015625 57.5361328125 7.2431640625 56.396484375 9.033203125 c 0 - 55.2568359375 10.8232421875 55.6640625 13.9970703125 57.6171875 18.5546875 c 1 - 60.2216796875 26.3671875 65.4296875 38.7373046875 73.2421875 55.6640625 c 0 - 74.21875 57.2919921875 75.2763671875 58.5126953125 76.416015625 59.326171875 c 0 - 77.5556640625 60.1396484375 78.4501953125 60.546875 79.1015625 60.546875 c 2 - 80.078125 60.546875 l 1 - 426.7578125 60.546875 l 2 -133.7890625 333.984375 m 2 - 503.90625 516.6015625 l 2 - 506.510742188 517.903320312 508.137695312 518.5546875 508.7890625 518.5546875 c 0 - 514.323242188 518.5546875 516.6015625 503.254882812 515.625 472.65625 c 0 - 515.625 471.028320312 515.299804688 469.482421875 514.6484375 468.017578125 c 0 - 513.997070312 466.552734375 513.346679688 465.495117188 512.6953125 464.84375 c 2 - 511.71875 463.8671875 l 1 - 183.59375 302.734375 l 1 - 453.125 138.671875 l 1 - 453.369140625 138.18359375 l 2 - 453.532226562 137.858398438 453.776367188 137.288085938 454.1015625 136.474609375 c 0 - 454.426757812 135.661132812 454.426757812 134.440429688 454.1015625 132.8125 c 0 - 453.450195312 128.254882812 450.032226562 118.977539062 443.84765625 104.98046875 c 0 - 437.663085938 90.9833984375 433.268554688 83.984375 430.6640625 83.984375 c 0 - 430.012695312 83.984375 428.385742188 84.6357421875 425.78125 85.9375 c 2 - 122.0703125 272.4609375 l 1 - 112.956054688 278.645507812 110.026367188 291.340820312 113.28125 310.546875 c 0 - 114.909179688 320.3125 121.745117188 328.125 133.7890625 333.984375 c 2 -EndSplineSet -Fore -SplineSet -21 69 m 1 - 373 69 l 2 - 379 69 381 58 381 52 c 3 - 381 38 372 21 363 4 c 1 - 7 4 l 2 - 0 4 0 15 0 21 c 3 - 0 35 11 57 21 69 c 1 -451 517 m 17 - 455 512 463 487 463 466 c 27 - 463 461 462 455 458 453 c 2 - 135 301 l 1 - 403 146 l 1 - 403 128 388 84 382 84 c 0 - 380 84 376 84 373 86 c 2 - 61 263 l 2 - 53 268 44 285 44 295 c 0 - 44 320 71 340 83 346 c 0 - 220 410 307 451 451 517 c 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/less.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/less.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/less.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/less.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: less -Encoding: 60 60 28 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -SplineSet -101 204 m 1 - 361 50 l 1 - 361 50 363 49 362 44 c 0 - 361 37 343 -15 337 -15 c 0 - 336 -15 335 -14 333 -13 c 2 - 28 173 l 2 - 16 181 16 195 19 212 c 0 - 21 223 30 230 40 235 c 2 - 415 418 l 2 - 417 419 419 420 420 420 c 0 - 423 420 424 413 424 377 c 0 - 424 364 420 355 420 355 c 1 - 101 204 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: l -Encoding: 108 108 76 -Width: 276 -Flags: W -HStem: -8 84<76 175> 617 28<72 129> 660 20G<240 253> -VStem: 30 120<33 187> 131 126<546 664> -LayerCount: 2 -Fore -SplineSet -122 547 m 2xf0 - 125 565 131 588 131 599 c 0 - 131 618 87 617 71 617 c 1 - 68 621 71 642 75 646 c 1 - 129 651 230 672 251 680 c 1 - 256 677 257 667 257 661 c 0xe8 - 257 653 249 611 244 588 c 2 - 154 129 l 2 - 153 123 150 102 150 97 c 0 - 150 88 154 76 164 76 c 0 - 185 76 230 130 233 136 c 1 - 240 136 247 115 247 109 c 1 - 230 78 145 -8 92 -8 c 0 - 60 -8 30 12 30 62 c 0 - 30 76 37 112 39 120 c 1 - 122 547 l 2xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_L.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_L.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_L.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_L.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,86 +0,0 @@ -StartChar: L -Encoding: 76 76 44 -Width: 534 -Flags: W -HStem: -3 36<-4 61> -2 43<204 395> 610 36<115 166 308 373> -LayerCount: 2 -Back -SplineSet -202.109375 135.7421875 m 1 - 197.551757812 108.3984375 195.2734375 89.84375 195.2734375 80.078125 c 0 - 195.2734375 72.2177734375 196.206054688 66.6787109375 198.071289062 63.458984375 c 0 - 199.936523438 60.2392578125 205.124023438 57.646484375 213.634765625 55.681640625 c 0 - 222.14453125 53.716796875 235.880859375 52.734375 254.84375 52.734375 c 2 - 278.28125 52.734375 l 2 - 295.1953125 52.734375 313.625 55.115234375 333.5703125 59.8759765625 c 0 - 353.516601562 64.6376953125 370.893554688 70.720703125 385.703125 78.125 c 0 - 396.9296875 83.73828125 410.596679688 94.73046875 426.705078125 111.099609375 c 0 - 442.813476562 127.469726562 456.489257812 145.775390625 467.734375 166.015625 c 0 - 469.6875 169.921875 474.245117188 171.875 481.40625 171.875 c 0 - 486.072265625 171.875 491.399414062 171.248046875 497.389648438 169.994140625 c 0 - 503.379882812 168.741210938 506.840820312 167.4140625 507.7734375 166.015625 c 1 - 505.0234375 160.711914062 497.912109375 147.159179688 486.44140625 125.359375 c 0 - 474.970703125 103.559570312 466.501953125 87.2978515625 461.03515625 76.5751953125 c 0 - 455.569335938 65.8515625 449.17578125 52.5927734375 441.85546875 36.7978515625 c 0 - 434.53515625 21.0029296875 429.1640625 8.0859375 425.7421875 -1.953125 c 1 - 391.5625 -1.953125 338.014648438 -1.3017578125 265.09765625 0 c 0 - 192.180664062 1.3017578125 142.5390625 1.953125 116.171875 1.953125 c 0 - 100.8359375 1.953125 82.5078125 1.46484375 61.185546875 0.48828125 c 0 - 39.8642578125 -0.48828125 22.376953125 -1.46484375 8.72265625 -2.44140625 c 2 - -11.7578125 -3.90625 l 1 - -13.0595703125 -1.3017578125 -13.7109375 1.6279296875 -13.7109375 4.8828125 c 0 - -13.7109375 8.51953125 -13.2744140625 12.310546875 -12.400390625 16.255859375 c 0 - -11.5263671875 20.2021484375 -10.5556640625 23.3623046875 -9.4873046875 25.736328125 c 0 - -8.419921875 28.1103515625 -7.548828125 29.296875 -6.875 29.296875 c 0 - -0.55078125 29.296875 10.451171875 32.30078125 26.1328125 38.3095703125 c 0 - 41.814453125 44.318359375 50.994140625 49.7783203125 53.671875 54.6875 c 0 - 60.955078125 69.9150390625 67.791015625 95.6318359375 74.1796875 131.8359375 c 1 - 147.421875 510.7421875 l 2 - 153.28125 541.9921875 156.2109375 565.754882812 156.2109375 582.03125 c 0 - 156.2109375 589.0703125 152.625 595.158203125 145.453125 600.295898438 c 0 - 138.28125 605.43359375 131.34765625 608.881835938 124.651367188 610.641601562 c 0 - 117.954101562 612.401367188 112.849609375 613.28125 109.3359375 613.28125 c 0 - 108.684570312 613.28125 108.359375 614.583007812 108.359375 617.1875 c 0 - 108.359375 621.907226562 108.98828125 627.623046875 110.247070312 634.333984375 c 0 - 111.504882812 641.043945312 112.829101562 645.094726562 114.21875 646.484375 c 1 - 123.668945312 646.034179688 136.220703125 645.272460938 151.875976562 644.200195312 c 0 - 167.530273438 643.126953125 181.922851562 642.262695312 195.05078125 641.607421875 c 0 - 208.1796875 640.952148438 220.94921875 640.625 233.359375 640.625 c 0 - 245.078125 640.625 288.046875 642.578125 362.265625 646.484375 c 1 - 362.265625 641.6015625 l 2 - 362.265625 636.23046875 361.420898438 630.16796875 359.732421875 623.413085938 c 0 - 358.043945312 616.658203125 356.284179688 613.28125 354.453125 613.28125 c 0 - 349.552734375 613.28125 339.369140625 610.555664062 323.90234375 605.10546875 c 0 - 308.434570312 599.655273438 299.413085938 594.568359375 296.8359375 589.84375 c 0 - 293.092773438 583.189453125 288.537109375 569.40625 283.166992188 548.494140625 c 0 - 277.797851562 527.58203125 274.541992188 513.696289062 273.3984375 506.8359375 c 2 - 202.109375 135.7421875 l 1 -EndSplineSet -Fore -SplineSet -212 138 m 2xa0 - 211 132 200 81 204 61 c 0 - 207 47 236 41 259 41 c 0 - 319 41 l 2 - 353 41 385 51 410 73 c 0 - 433 94 453 122 477 166 c 0 - 479 170 484 172 491 172 c 0 - 500 172 515 169 517 166 c 1 - 490 113 451 41 436 -2 c 1 - 411 -2 243 -2 121 -2 c 0x60 - 57 -2 5 -3 -8 -3 c 1 - -11 3 -7 26 -1 33 c 1 - 11 34 54 37 61 50 c 0 - 72 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 123 609 111 610 c 1 - 108 617 113 640 118 646 c 1 - 152 642 209 640 247 640 c 0 - 285 640 340 642 376 646 c 1 - 379 640 375 617 369 610 c 1 - 357 609 315 606 308 593 c 0 - 297 573 290 543 282 501 c 2 - 212 138 l 2xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/logicalnot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/logicalnot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/logicalnot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/logicalnot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: logicalnot -Encoding: 172 172 107 -Width: 503 -Flags: W -HStem: 311 50<61 387> -LayerCount: 2 -Fore -SplineSet -72 360 m 1 - 453 360 l 17 - 444 314 410 141 410 141 c 2 - 409 137 384 125 368 125 c 0 - 358 125 352 129 353 133 c 2 - 387 311 l 1 - 63 311 l 2 - 60 311 59 313 59 318 c 0 - 59 331 61 347 72 360 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/longs.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/longs.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/longs.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/longs.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -StartChar: longs -Encoding: 383 383 712 -Width: 310 -Flags: MW -HStem: -213 45<-73 4> 634 45<276 352> -LayerCount: 2 -Back -SplineSet -216.796875 369.140625 m 1 - 196.614257812 242.838867188 178.7109375 138.671875 163.0859375 56.640625 c 0 - 155.598632812 18.2294921875 143.473632812 -18.1474609375 126.708984375 -52.490234375 c 128 - 109.944335938 -86.8330078125 91.30859375 -115.478515625 70.80078125 -138.427734375 c 128 - 50.29296875 -161.376953125 28.80859375 -179.524414062 6.34765625 -192.87109375 c 128 - -16.11328125 -206.217773438 -37.109375 -212.890625 -56.640625 -212.890625 c 0 - -71.9404296875 -212.890625 -86.2626953125 -211.100585938 -99.609375 -207.51953125 c 128 - -112.956054688 -203.938476562 -122.721679688 -199.870117188 -128.90625 -195.3125 c 1 - -134.765625 -185.872070312 -137.6953125 -175.129882812 -137.6953125 -163.0859375 c 0 - -137.6953125 -150.390625 -134.196289062 -139.241210938 -127.197265625 -129.638671875 c 128 - -120.198242188 -120.036132812 -111.328125 -115.234375 -100.5859375 -115.234375 c 0 - -84.6357421875 -115.234375 -70.9638671875 -123.046875 -59.5703125 -138.671875 c 0 - -59.2451171875 -138.997070312 -58.2685546875 -140.380859375 -56.640625 -142.822265625 c 128 - -55.0126953125 -145.263671875 -53.955078125 -146.809570312 -53.466796875 -147.4609375 c 128 - -52.978515625 -148.112304688 -51.9208984375 -149.577148438 -50.29296875 -151.85546875 c 128 - -48.6650390625 -154.133789062 -47.4443359375 -155.598632812 -46.630859375 -156.25 c 128 - -45.8173828125 -156.901367188 -44.5966796875 -158.040039062 -42.96875 -159.66796875 c 128 - -41.3408203125 -161.295898438 -39.8759765625 -162.434570312 -38.57421875 -163.0859375 c 128 - -37.2724609375 -163.737304688 -35.8076171875 -164.55078125 -34.1796875 -165.52734375 c 128 - -32.5517578125 -166.50390625 -30.8427734375 -167.155273438 -29.052734375 -167.48046875 c 128 - -27.2626953125 -167.805664062 -25.390625 -167.96875 -23.4375 -167.96875 c 0 - -8.7890625 -167.96875 2.1162109375 -157.633789062 9.27734375 -136.962890625 c 128 - 16.4384765625 -116.291992188 25.66015625 -75.7119140625 36.94140625 -15.22265625 c 0 - 42.26171875 13.48046875 46.5498046875 36.1328125 49.8046875 52.734375 c 1 - 104.4921875 369.140625 l 1 - 41.015625 369.140625 l 2 - 39.7138671875 369.140625 39.0625 370.1171875 39.0625 372.0703125 c 0 - 39.0625 377.9296875 44.3525390625 386.393554688 54.931640625 397.4609375 c 128 - 65.5107421875 408.528320312 75.8466796875 414.0625 85.9375 414.0625 c 2 - 112.3046875 414.0625 l 1 - 119.791992188 452.1484375 132.649414062 488.28125 150.87890625 522.4609375 c 128 - 169.108398438 556.640625 189.127929688 584.797851562 210.9375 606.93359375 c 128 - 232.747070312 629.069335938 254.719726562 646.565429688 276.85546875 659.423828125 c 128 - 298.991210938 672.282226562 318.359375 678.7109375 334.9609375 678.7109375 c 0 - 350.260742188 678.7109375 364.583007812 676.920898438 377.9296875 673.33984375 c 128 - 391.276367188 669.758789062 401.041992188 665.690429688 407.2265625 661.1328125 c 1 - 413.0859375 651.692382812 416.015625 640.950195312 416.015625 628.90625 c 0 - 416.015625 616.2109375 412.516601562 605.061523438 405.517578125 595.458984375 c 128 - 398.518554688 585.856445312 389.6484375 581.0546875 378.90625 581.0546875 c 0 - 362.956054688 581.0546875 349.284179688 588.8671875 337.890625 604.4921875 c 0 - 337.565429688 604.817382812 336.588867188 606.201171875 334.9609375 608.642578125 c 128 - 333.333007812 611.083984375 332.275390625 612.629882812 331.787109375 613.28125 c 128 - 331.298828125 613.932617188 330.241210938 615.397460938 328.61328125 617.67578125 c 128 - 326.985351562 619.954101562 325.764648438 621.418945312 324.951171875 622.0703125 c 128 - 324.137695312 622.721679688 322.916992188 623.860351562 321.2890625 625.48828125 c 128 - 319.661132812 627.116210938 318.196289062 628.254882812 316.89453125 628.90625 c 128 - 315.592773438 629.557617188 314.127929688 630.37109375 312.5 631.34765625 c 128 - 310.872070312 632.32421875 309.163085938 632.975585938 307.373046875 633.30078125 c 128 - 305.583007812 633.625976562 303.7109375 633.7890625 301.7578125 633.7890625 c 0 - 285.481445312 633.7890625 271.484375 614.583007812 259.765625 576.171875 c 128 - 248.046875 537.760742188 233.723632812 468.75 216.796875 369.140625 c 1 -EndSplineSet -Fore -SplineSet -217 369 m 2 - 217 369 186 180 163 57 c 0 - 132 -103 21 -213 -57 -213 c 0 - -90 -213 -118 -203 -129 -195 c 1 - -134 -187 -138 -176 -138 -163 c 0 - -138 -139 -123 -115 -101 -115 c 0 - -84 -115 -71 -124 -60 -139 c 0 - -51 -152 -41 -168 -23 -168 c 0 - 15 -168 20 -102 50 53 c 1 - 71 173 112 414 112 414 c 2 - 140 575 270 679 335 679 c 0 - 368 679 396 669 407 661 c 1 - 412 653 416 642 416 629 c 0 - 416 605 401 581 379 581 c 0 - 362 581 349 589 338 604 c 0 - 329 617 320 634 302 634 c 0 - 268 634 249 557 217 369 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: lslash -Encoding: 322 322 393 -Width: 278 -Flags: W -HStem: -8 84<96 195> 617 28<92 149> 660 20<260 274> -VStem: 50 120<33 187> 151 126<546 664> -LayerCount: 2 -Fore -SplineSet -32 283 m 2xe0 - 261 429 l 1 - 264 424 274 403 269 400 c 2 - 39 254 l 1 - 35 260 27 280 32 283 c 2xe0 -EndSplineSet -Refer: 76 108 N 1 0 0 1 20 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: Lslash -Encoding: 321 321 392 -Width: 535 -Flags: W -HStem: -3 36<-3 62> -2 43<205 396> 420 20G<384 416> 610 36<116 167 309 374> -LayerCount: 2 -Fore -SplineSet -50 205 m 2x30 - 414 439 l 1 - 418 434 430 409 426 406 c 2 - 62 174 l 1 - 58 180 46 202 50 205 c 2x30 -EndSplineSet -Refer: 44 76 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/macron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/macron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/macron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/macron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: macron -Encoding: 175 175 109 -Width: 254 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 376 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/m.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/m.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/m.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/m.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: m -Encoding: 109 109 77 -Width: 737 -Flags: W -HStem: -8 84<542 641> 419 20G<136 182 350 401 569 618> -VStem: 108 119<240 396> 325 119<242 389> 496 120<33 179> 542 119<216 389> -LayerCount: 2 -Fore -SplineSet -505 120 m 0xf8 - 515 164 530 236 530 236 c 2 - 533 248 542 301 542 311 c 0 - 542 321 537 331 526 331 c 0 - 498 331 422 213 395 89 c 1 - 375 0 l 1 - 365 -3 331 -6 320 -6 c 0 - 309 -6 275 -3 263 0 c 1 - 313 236 l 2 - 316 248 325 301 325 311 c 0 - 325 321 321 331 310 331 c 0 - 282 331 205 213 178 89 c 2 - 158 0 l 1 - 148 -3 115 -6 104 -6 c 0 - 93 -6 58 -3 46 0 c 1 - 104 302 l 2 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0 - 201 438 228 414 228 369 c 0 - 228 355 221 321 219 311 c 0 - 217 299 209 268 209 268 c 1 - 238 334 325 438 374 438 c 0 - 429 438 444 410 444 354 c 0 - 444 338 442 313 438 290 c 1 - 474 355 547 438 591 438 c 0 - 646 438 661 410 661 354 c 0xf4 - 661 318 647 254 642 228 c 0 - 637 204 625 156 620 129 c 0 - 618 119 616 102 616 97 c 0 - 616 88 620 76 630 76 c 0 - 651 76 696 130 699 136 c 1 - 706 136 713 115 713 109 c 1 - 696 78 611 -8 558 -8 c 0 - 526 -8 496 12 496 62 c 0 - 496 76 503 112 505 120 c 0xf8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_M.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_M.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_M.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_M.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: M -Encoding: 77 77 45 -Width: 838 -Flags: W -HStem: -4 36<-23 45 143 201 491 558 707 757> 610 36<135 184 800 852> -LayerCount: 2 -Fore -SplineSet -236 641 m 0 - 267 641 295 644 332 646 c 1 - 347 584 387 398 423 232 c 1 - 423 232 425 230 426 230 c 0 - 427 230 431 235 431 236 c 2 - 431 236 534 416 596 533 c 24 - 618 575 647 643 647 643 c 1 - 655 642 727 640 745 640 c 0 - 776 640 815 644 852 646 c 1 - 855 642 855 617 849 609 c 1 - 842 609 810 606 799 599 c 0 - 788 592 783 585 779 559 c 0 - 768 491 732 273 713 148 c 0 - 707 110 702 75 706 50 c 0 - 709 36 752 32 759 32 c 1 - 761 23 760 6 755 -4 c 1 - 719 -2 672 4 632 4 c 0 - 590 4 530 -2 488 -4 c 1 - 485 0 490 24 494 32 c 1 - 505 32 549 37 560 51 c 0 - 566 59 573 75 575 85 c 0 - 577 95 582 127 585 145 c 2 - 642 485 l 2 - 643 488 648 511 641 511 c 0 - 639 511 638 509 635 504 c 2 - 384 39 l 2 - 379 30 355 -2 338 -2 c 0 - 335 -2 333 -1 330 0 c 1 - 226 511 l 1 - 180 308 176 284 141 131 c 0 - 136 110 131 70 131 63 c 0 - 132 42 198 32 205 32 c 1 - 206 25 204 6 199 -4 c 1 - 163 -2 129 4 89 4 c 0 - 47 4 15 -2 -27 -4 c 1 - -29 3 -26 21 -21 31 c 1 - -10 31 48 41 63 66 c 0 - 69 76 86 136 90 152 c 0 - 117 266 176 521 187 567 c 0 - 188 574 189 582 186 589 c 0 - 181 600 147 610 131 610 c 1 - 127 618 136 644 138 646 c 1 - 179 644 194 641 236 641 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/minus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/minus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/minus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/minus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minus -Encoding: 8722 8722 233 -Width: 517 -Flags: W -HStem: 204 72<42 455> -LayerCount: 2 -Fore -SplineSet -29 214 m 1 - 29 214 46 276 55 276 c 2 - 470 276 l 2 - 473 276 476 277 475 270 c 0 - 473 262 463 227 455 210 c 0 - 452 204 447 204 447 204 c 1 - 33 204 l 1 - 33 204 27 204 29 214 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/minute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/minute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/minute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/minute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minute -Encoding: 8242 8242 215 -Width: 137 -Flags: W -HStem: 473 210 -VStem: 169 80<599 673> -LayerCount: 2 -Fore -SplineSet -215 683 m 0 - 234 683 253 671 249 651 c 0 - 240 605 176 515 146 482 c 0 - 141 477 135 473 131 473 c 0 - 125 473 122 477 123 484 c 0 - 124 487 151 597 169 650 c 0 - 173 662 197 683 215 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/mu.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/mu.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/mu.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/mu.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: mu -Encoding: 181 181 115 -Width: 516 -Flags: W -HStem: -9 97<163 221> -4 80<338 409> -LayerCount: 2 -Fore -SplineSet -168 436 m 0x80 - 177 436 220 412 217 399 c 0 - 215 389 208 347 175 260 c 0 - 173 254 161 218 161 218 c 0 - 146 141 158 88 188 88 c 0x80 - 238 88 264 141 282 199 c 1 - 284 207 329 423 329 423 c 17 - 344 433 363 437 374 436 c 0 - 414 433 436 412 433 399 c 0 - 430 381 415 327 382 240 c 0 - 380 234 373 218 373 218 c 1 - 356 138 349 76 388 76 c 0 - 409 76 438 97 446 106 c 1 - 449 106 452 99 454 94 c 0 - 455 90 454 77 453 74 c 0 - 433 31 392 -4 358 -4 c 0x40 - 317 -3 300 63 305 125 c 1 - 266 57 225 -9 165 -9 c 0 - 130 -9 128 41 124 74 c 1 - 121 50 64 -121 106 -187 c 1 - 100 -195 70 -222 54 -222 c 0 - 9 -222 1 -162 1 -124 c 0 - 1 -88 51 97 81 199 c 1 - 86 222 92 269 96 291 c 0 - 99 304 113 381 120 416 c 1 - 126 424 157 436 168 436 c 0x80 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/multiply.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/multiply.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/multiply.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/multiply.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: multiply -Encoding: 215 215 149 -Width: 425 -Flags: W -VStem: 176 66<226 258> -LayerCount: 2 -Fore -SplineSet -38 68 m 0 - 32 68 23 94 23 110 c 1 - 174 242 l 2 - 175 243 176 244 176 245 c 0 - 176 247 176 249 175 250 c 2 - 76 384 l 1 - 76 398 102 419 107 419 c 0 - 111 419 109 417 111 415 c 2 - 213 277 l 2 - 214 276 216 275 217 275 c 2 - 219 276 l 26 - 373 414 l 2 - 375 416 377 417 379 417 c 0 - 386 417 394 392 394 374 c 1 - 244 241 l 2 - 243 240 242 240 242 239 c 3 - 242 238 242 238 243 237 c 2 - 341 104 l 1 - 341 90 321 68 314 68 c 0 - 310 68 309 69 308 71 c 2 - 207 208 l 2 - 206 209 205 210 204 210 c 0 - 203 210 201 209 200 208 c 2 - 43 71 l 2 - 41 69 40 68 38 68 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: nacute -Encoding: 324 324 327 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 598 37 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Nacute -Encoding: 323 323 326 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 257 -3 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/napostrophe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/napostrophe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/napostrophe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/napostrophe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: napostrophe -Encoding: 329 329 488 -Width: 487 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 2 0 2 -Refer: 255 789 N 1 0 0 1 -115 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ncaron -Encoding: 328 328 331 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 545 12 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ncaron -Encoding: 327 327 330 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 54 -3 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/n.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/n.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/n.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/n.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: n -Encoding: 110 110 78 -Width: 523 -Flags: W -HStem: -8 84<328 427> 331 107<295 401> 354 84<83 182> -VStem: 108 119<240 396> 282 120<33 187> 325 119<215 389> -LayerCount: 2 -Fore -SplineSet -219 311 m 0xb4 - 217 299 209 267 209 268 c 1 - 238 334 325 438 374 438 c 3 - 429 438 444 410 444 354 c 0xd4 - 444 321 430 253 425 228 c 2 - 406 129 l 2 - 405 125 402 102 402 97 c 0 - 402 88 406 76 416 76 c 0 - 437 76 482 130 485 136 c 1 - 492 136 499 115 499 109 c 1 - 482 78 397 -8 344 -8 c 0 - 312 -8 282 12 282 62 c 0xd8 - 282 76 289 112 291 120 c 1 - 313 236 l 2 - 316 248 325 301 325 311 c 0 - 325 321 321 331 310 331 c 0xd4 - 282 331 205 213 178 89 c 10 - 158 0 l 17 - 148 -3 115 -6 104 -6 c 0 - 93 -6 58 -3 46 0 c 1 - 104 302 l 2 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0 - 201 438 228 414 228 369 c 0 - 228 355 221 321 219 311 c 0xb4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_N.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_N.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_N.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_N.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: N -Encoding: 78 78 46 -Width: 698 -Flags: W -HStem: -4 36<-13 58 149 210> 4 28<-14 52> 610 37<111 162 523 587 667 746> 610 29<528 585 671 748> -LayerCount: 2 -Fore -SplineSet -215 640 m 0x90 - 247 640 286 642 316 646 c 1 - 336 570 446 391 529 242 c 1 - 532 249 536 268 539 282 c 2 - 574 465 l 0 - 581 502 592 575 588 590 c 0 - 584 608 530 611 519 611 c 1 - 517 611 520 638 526 647 c 1x20 - 567 645 593 640 635 640 c 0x10 - 675 640 715 645 752 647 c 1 - 753 641 750 620 742 610 c 1 - 735 610 675 609 663 588 c 0 - 656 574 636 503 629 468 c 2 - 565 136 l 2 - 554 79 551 50 543 -1 c 1 - 540 -4 522 -5 519 -5 c 0 - 511 -5 503 5 496 18 c 2 - 220 507 l 1 - 152 153 l 2 - 145 118 141 73 143 59 c 0 - 146 40 206 33 213 33 c 1 - 217 23 211 2 208 -4 c 1xa0 - 172 -2 134 4 94 4 c 0x40 - 52 4 24 -2 -18 -4 c 1 - -21 5 -12 32 -10 32 c 1 - 1 32 56 40 67 58 c 0 - 76 73 90 119 97 156 c 0 - 121 284 140 374 165 502 c 0 - 175 555 173 571 165 590 c 0 - 159 603 120 610 109 610 c 0 - 104 610 108 641 114 646 c 1 - 141 644 173 640 215 640 c 0x90 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: nine -Encoding: 57 57 25 -Width: 514 -VWidth: 0 -Flags: W -HStem: -6 23<42 63> 256 51<169 264> 593 34<268 328> -VStem: 76 128<318 493> 347 127<342 535> -LayerCount: 2 -Fore -SplineSet -195 256 m 0 - 120 256 76 312 76 398 c 0 - 76 525 185 627 309 627 c 0 - 387 627 474 558 474 447 c 0 - 474 357 436 258 350 165 c 0 - 285 94 171 12 46 -6 c 1 - 40 -2 40 12 41 18 c 1 - 161 69 240 143 292 254 c 0 - 332 341 347 424 347 491 c 0 - 347 558 326 593 301 593 c 0 - 246 593 204 473 204 398 c 0 - 204 350 215 307 255 307 c 0 - 264 307 271 307 277 310 c 1 - 280 308 282 303 282 295 c 3 - 282 283 231 256 195 256 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" nine.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" nine.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: nine.onum -Encoding: 65561 -1 414 -Width: 440 -VWidth: 0 -Flags: W -HStem: -179 33<34 61> 395 51<256 332> -VStem: 84 123<146 309> 343 123<180 370> -LayerCount: 2 -Fore -SplineSet -258 103 m 3 - 258 92 231 81 203 81 c 0 - 139 81 84 148 84 227 c 0 - 84 340 201 445 307 445 c 0 - 398 445 466 386 466 282 c 0 - 466 148 326 -100 39 -179 c 1 - 32 -179 29 -152 29 -146 c 1 - 141 -98 243 -25 302 113 c 0 - 335 191 343 268 343 322 c 0 - 343 369 329 395 295 395 c 0 - 242 395 207 299 207 221 c 0 - 207 176 216 155 225 146 c 0 - 235 136 250 131 257 129 c 1 - 258 124 258 113 258 103 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/nine.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: nine.prop -Encoding: 65585 -1 472 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 25 57 N 1 0 0 1 -10 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/notelement.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/notelement.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/notelement.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/notelement.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: notelement -Encoding: 8713 8713 231 -Width: 429 -Flags: W -HStem: -10 21G<63 66> 11 59<136 354> 185 60<102 154 254 353> 361 59<167 281 380 421> -LayerCount: 2 -Fore -SplineSet -73 -8 m 1x70 - 70 -10 68 -10 64 -10 c 0xb0 - 61 -10 47 -6 38 10 c 0 - 35 14 35 17 35 17 c 1 - 63 57 l 1 - 30 95 16 154 28 216 c 0 - 49 322 139 420 238 420 c 2 - 324 420 l 1 - 361 473 l 1 - 361 473 366 476 370 476 c 0 - 381 476 390 468 396 459 c 0 - 400 454 400 448 400 448 c 1 - 380 420 l 1 - 424 420 l 1 - 424 420 428 411 426 399 c 0 - 420 369 405 361 405 361 c 1 - 338 361 l 1 - 254 244 l 1 - 354 244 l 1 - 354 243 357 232 354 215 c 0 - 349 189 342 185 341 185 c 2 - 211 185 l 1 - 136 79 l 1 - 148 73 161 69 178 69 c 2 - 349 69 l 1 - 349 69 361 62 354 28 c 0 - 352 19 345 11 345 11 c 1 - 168 11 l 2 - 142 11 119 17 99 28 c 1 - 73 -8 l 1x70 -198 244 m 1 - 281 361 l 1 - 228 361 l 2 - 170 361 123 310 102 249 c 0 - 101 246 102 244 105 244 c 2 - 198 244 l 1 -104 112 m 1 - 154 185 l 1 - 94 185 l 2 - 93 185 89 184 89 181 c 0 - 89 156 94 131 104 112 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/notequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/notequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/notequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/notequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: notequal -Encoding: 8800 8800 238 -Width: 497 -Flags: W -HStem: 106 70<30 142 247 433> 245 70<51 240 347 460> -LayerCount: 2 -Fore -SplineSet -38 255 m 1 - 38 255 54 315 63 315 c 2 - 291 315 l 1 - 358 410 l 1 - 358 410 363 413 367 413 c 0 - 378 413 386 405 392 396 c 0 - 396 391 397 386 397 386 c 1 - 347 315 l 1 - 472 315 l 2 - 474 315 476 315 475 311 c 0 - 473 302 463 272 453 251 c 0 - 450 245 447 245 447 245 c 1 - 296 245 l 1 - 247 177 l 1 - 440 177 l 2 - 444 177 448 179 447 172 c 0 - 445 163 437 133 427 112 c 0 - 424 106 420 106 420 106 c 1 - 197 106 l 1 - 133 16 l 1 - 130 14 127 14 123 14 c 0 - 120 14 106 17 97 33 c 0 - 94 37 94 40 94 40 c 1 - 142 106 l 1 - 16 106 l 1 - 16 106 10 106 12 116 c 0 - 13 120 19 149 30 172 c 0 - 33 178 38 177 38 177 c 1 - 191 177 l 1 - 240 245 l 1 - 43 245 l 1 - 43 245 36 245 38 255 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ntilde -Encoding: 241 241 175 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 540 21 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ntilde -Encoding: 209 209 143 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 89 0 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/numbersign.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/numbersign.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/numbersign.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/numbersign.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: numbersign -Encoding: 35 35 3 -Width: 475 -VWidth: 0 -Flags: W -HStem: 166 65<40 107 188 244 324 391> 304 65<87 154 234 291 371 438> -LayerCount: 2 -Fore -SplineSet -371 369 m 1 - 371 369 412 369 440 369 c 0 - 445 369 447 368 447 364 c 3 - 447 348 434 304 423 304 c 2 - 353 304 l 1 - 324 231 l 1 - 394 231 l 2 - 399 231 400 230 400 226 c 3 - 400 210 387 166 376 166 c 2 - 306 166 l 1 - 256 23 l 2 - 255 20 246 16 219 16 c 0 - 208 16 192 18 192 21 c 0 - 192 21 193 22 193 23 c 0 - 194 27 244 166 244 166 c 1 - 169 166 l 1 - 119 23 l 2 - 118 20 109 16 82 16 c 0 - 71 16 56 18 56 21 c 0 - 56 21 57 22 57 23 c 0 - 58 27 107 166 107 166 c 1 - 38 166 l 2 - 33 166 31 168 31 172 c 3 - 31 188 45 231 56 231 c 2 - 126 231 l 1 - 154 304 l 1 - 85 304 l 2 - 80 304 78 306 78 310 c 3 - 78 326 92 369 103 369 c 2 - 173 369 l 1 - 223 512 l 2 - 224 515 238 520 265 520 c 0 - 276 520 286 517 286 514 c 0 - 286 514 285 513 285 512 c 0 - 284 508 234 369 234 369 c 1 - 310 369 l 1 - 359 512 l 2 - 360 515 374 520 401 520 c 0 - 412 520 423 517 423 514 c 0 - 423 514 422 513 422 512 c 0 - 421 508 371 369 371 369 c 1 -291 304 m 1 - 216 304 l 1 - 188 231 l 1 - 263 231 l 1 - 291 304 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oacute -Encoding: 243 243 177 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 557 10 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oacute -Encoding: 211 211 145 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 210 -16 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: obreve -Encoding: 335 335 335 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 527 20 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Obreve -Encoding: 334 334 334 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 -1 N 1 0 0 1 167 22 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ocircumflex -Encoding: 244 244 178 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 545 1 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ocircumflex -Encoding: 212 212 146 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 104 25 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: odieresis -Encoding: 246 246 180 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 483 21 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Odieresis -Encoding: 214 214 148 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 139 12 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: oe -Encoding: 339 339 400 -Width: 639 -Flags: W -HStem: -6 81<361 473> -6 39<146 211> 184 37<396 437> 402 36<221 277 455 542> -VStem: 15 122<54 239> 289 103<225 296> 509 116<294 402> -LayerCount: 2 -Fore -SplineSet -396 221 m 1x3e - 434 221 509 292 509 364 c 0 - 509 382 504 402 483 402 c 0 - 436 402 401 271 396 221 c 1x3e -256 399 m 0 - 183 399 137 229 137 122 c 0 - 137 99 137 33 170 33 c 0x7e - 243 33 289 204 289 305 c 0 - 289 337 289 399 256 399 c 0 -517 438 m 0 - 567 438 625 417 625 349 c 0 - 625 248 455 184 394 184 c 1 - 393 181 392 164 392 159 c 0 - 392 123 402 75 451 75 c 0 - 495 75 547 136 550 139 c 1 - 559 139 564 115 564 109 c 1 - 551 88 445 -6 383 -6 c 0xbe - 340 -6 307 14 288 51 c 1 - 246 16 198 -6 154 -6 c 0 - 73 -6 15 45 15 139 c 0 - 15 280 150 438 267 438 c 0 - 320 438 366 424 391 382 c 1 - 431 417 475 438 517 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_O_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_O_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_O_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_O_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: OE -Encoding: 338 338 399 -Width: 956 -Flags: W -HStem: -10 42<253 419> -2 43<600 792> 303 46<651 773> 605 36<702 871> 609 42<344 496 738 871> -VStem: 50 141<146 385> 794 28<229 269> 830 28<390 425> 903 35<499 567> -LayerCount: 2 -Fore -SplineSet -411 609 m 3xaf80 - 276 609 190 399 190 238 c 0 - 190 126 226 32 316 32 c 0 - 426 32 469 79 480 136 c 0 - 480 136 523 352 544 461 c 0 - 552 502 544 546 514 575 c 0 - 486 602 443 609 411 609 c 3xaf80 -536 -2 m 0x7780 - 524 -2 469 -3 417 -6 c 0 - 381 -8 341 -10 290 -10 c 0 - 153 -10 50 112 50 255 c 0 - 50 498 223 651 433 651 c 0xaf80 - 530 651 554 642 622 642 c 0 - 660 642 886 647 940 648 c 1 - 939 631 939 614 939 596 c 0 - 939 564 938 532 938 504 c 1 - 935 501 923 499 916 499 c 0 - 909 499 904 502 903 507 c 0 - 894 561 880 605 824 605 c 2 - 749 605 l 0 - 728 605 708 605 701 594 c 0 - 694 582 692 562 686 534 c 2 - 651 359 l 2 - 650 353 668 349 688 349 c 2 - 736 349 l 2 - 790 349 805 360 830 417 c 0 - 832 422 835 425 842 425 c 0 - 849 425 856 423 858 420 c 1 - 822 232 l 1 - 820 230 812 229 805 229 c 0 - 798 229 794 231 794 236 c 0 - 792 283 781 292 773 296 c 0 - 763 301 740 303 706 303 c 0 - 681 303 640 301 638 289 c 2 - 608 138 l 2 - 607 132 597 81 601 61 c 0 - 604 47 632 41 655 41 c 0 - 716 41 l 2 - 750 41 782 51 807 73 c 0 - 830 94 849 122 873 166 c 0 - 875 170 881 172 888 172 c 0 - 897 172 911 169 913 166 c 1 - 886 113 847 41 832 -2 c 1 - 809 -2 659 -2 536 -2 c 0x7780 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/o.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/o.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/o.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/o.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -StartChar: o -Encoding: 111 111 79 -Width: 444 -Flags: W -HStem: -6 39<146 211> 399 39<216 279> -VStem: 15 122<54 239> 289 122<191 383> -LayerCount: 2 -Back -SplineSet -252.9296875 393.5546875 m 0 - 233.3984375 393.5546875 215.087890625 385.7421875 197.998046875 370.1171875 c 0 - 180.908203125 354.4921875 166.911132812 334.635742188 156.005859375 310.546875 c 0 - 145.100585938 286.458007812 136.555664062 260.661132812 130.37109375 233.154296875 c 0 - 124.186523438 205.647460938 121.09375 179.362304688 121.09375 154.296875 c 0 - 121.09375 114.909179688 125.9765625 83.740234375 135.7421875 60.791015625 c 0 - 145.5078125 37.841796875 159.1796875 26.3671875 176.7578125 26.3671875 c 0 - 195.963867188 26.3671875 213.948242188 34.2607421875 230.712890625 50.048828125 c 0 - 247.477539062 65.8369140625 261.067382812 85.8564453125 271.484375 110.107421875 c 0 - 281.901367188 134.358398438 290.0390625 160.237304688 295.8984375 187.744140625 c 0 - 301.7578125 215.250976562 304.6875 241.536132812 304.6875 266.6015625 c 0 - 304.6875 306.640625 300.374023438 337.809570312 291.748046875 360.107421875 c 0 - 283.122070312 382.405273438 270.182617188 393.5546875 252.9296875 393.5546875 c 0 -266.6015625 424.8046875 m 0 - 304.362304688 424.8046875 332.844726562 411.865234375 352.05078125 385.986328125 c 0 - 371.256835938 360.107421875 380.859375 325.1953125 380.859375 281.25 c 0 - 380.859375 247.721679688 374.430664062 213.623046875 361.572265625 178.955078125 c 0 - 348.713867188 144.287109375 332.112304688 113.525390625 311.767578125 86.669921875 c 0 - 291.422851562 59.814453125 267.578125 37.841796875 240.234375 20.751953125 c 0 - 212.890625 3.662109375 185.546875 -4.8828125 158.203125 -4.8828125 c 0 - 120.442382812 -4.8828125 92.1220703125 7.4873046875 73.2421875 32.2265625 c 0 - 54.3623046875 56.9658203125 44.921875 91.1455078125 44.921875 134.765625 c 0 - 44.921875 168.293945312 51.26953125 202.555664062 63.96484375 237.548828125 c 0 - 76.66015625 272.541992188 93.1806640625 303.7109375 113.525390625 331.0546875 c 0 - 133.870117188 358.3984375 157.633789062 380.859375 184.814453125 398.4375 c 0 - 211.995117188 416.015625 239.2578125 424.8046875 266.6015625 424.8046875 c 0 -256.484375 438.4765625 m 3 - 282.490234375 438.4765625 305.001953125 434.391601562 324.021484375 426.22265625 c 0 - 343.040039062 418.053710938 357.952148438 406.5546875 368.7578125 391.724609375 c 0 - 379.563476562 376.89453125 387.478515625 360.287109375 392.502929688 341.903320312 c 0 - 397.52734375 323.518554688 400.0390625 302.975585938 400.0390625 280.2734375 c 0 - 400.0390625 244.118164062 393.84375 208.655273438 381.452148438 173.883789062 c 0 - 369.060546875 139.112304688 352.4609375 108.537109375 331.651367188 82.1591796875 c 0 - 310.841796875 55.7802734375 285.775390625 34.5166015625 256.452148438 18.3662109375 c 0 - 227.129882812 2.2158203125 196.541015625 -5.859375 164.6875 -5.859375 c 0 - 138.681640625 -5.859375 116.169921875 -1.7744140625 97.150390625 6.39453125 c 0 - 78.1318359375 14.5634765625 63.2197265625 26.0625 52.4140625 40.892578125 c 0 - 41.6083984375 55.72265625 33.693359375 72.330078125 28.6689453125 90.7138671875 c 0 - 23.64453125 109.098632812 21.1328125 129.641601562 21.1328125 152.34375 c 0 - 21.1328125 178.461914062 25.041015625 205.2109375 32.857421875 232.591796875 c 0 - 40.673828125 259.971679688 51.880859375 285.825195312 66.478515625 310.150390625 c 0 - 81.076171875 334.4765625 97.8896484375 356.290039062 116.919921875 375.591796875 c 0 - 135.94921875 394.892578125 157.625 410.19921875 181.947265625 421.509765625 c 0 - 206.26953125 432.821289062 231.115234375 438.4765625 256.484375 438.4765625 c 3 -EndSplineSet -Fore -SplineSet -256 399 m 0 - 183 399 137 229 137 122 c 0 - 137 99 137 33 170 33 c 0 - 243 33 289 204 289 305 c 0 - 289 337 289 399 256 399 c 0 -267 438 m 0 - 348 438 411 406 411 290 c 0 - 411 149 271 -6 154 -6 c 0 - 73 -6 15 45 15 139 c 0 - 15 280 150 438 267 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_O.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_O.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_O.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_O.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: O -Encoding: 79 79 47 -Width: 688 -Flags: W -HStem: -10 42<255 385> 609 42<326 452> -VStem: 48 141<146 381> 522 141<253 490> -LayerCount: 2 -Fore -SplineSet -393 609 m 3 - 258 609 188 399 188 238 c 0 - 188 126 225 32 318 32 c 3 - 450 32 522 239 522 400 c 0 - 522 512 481 609 393 609 c 3 -414 651 m 0 - 574 651 663 510 663 384 c 0 - 663 134 450 -10 288 -10 c 0 - 151 -10 48 112 48 255 c 0 - 48 498 253 651 414 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ogonek -Encoding: 731 731 484 -Width: 238 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 487 808 N 1 0 0 1 266 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ograve -Encoding: 242 242 176 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 491 10 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ograve -Encoding: 210 210 144 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 47 -16 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: ohorn -Encoding: 417 417 686 -Width: 444 -Flags: W -HStem: -6 39<146 211> 399 39<216 279> -VStem: 15 122<54 239> 289 122<191 343> 438 74<389 458> -LayerCount: 2 -Fore -SplineSet -256 399 m 0 - 183 399 137 229 137 122 c 0 - 137 99 137 33 170 33 c 0 - 243 33 289 204 289 305 c 0 - 289 337 289 399 256 399 c 0 -388 387 m 1 - 396 382 406 376 417 375 c 0 - 424 374 440 379 444 389 c 0 - 450 404 433 411 438 442 c 0 - 443 473 486 488 512 471 c 1 - 542 394 467 334 406 343 c 1 - 410 328 411 310 411 290 c 0 - 411 149 271 -6 154 -6 c 0 - 73 -6 15 45 15 139 c 0 - 15 280 150 438 267 438 c 0 - 318 438 362 426 388 387 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: Ohorn -Encoding: 416 416 687 -Width: 688 -Flags: W -HStem: -10 42<255 385> 609 42<326 454> -VStem: 48 141<146 381> 522 141<253 490> 650 89<599 690> -LayerCount: 2 -Fore -SplineSet -393 609 m 0xf0 - 258 609 188 399 188 238 c 0 - 188 126 225 32 318 32 c 0 - 450 32 522 239 522 400 c 0 - 522 512 481 609 393 609 c 0xf0 -559 603 m 1 - 583 592 608 581 628 582 c 0 - 649 583 666 594 668 606 c 0 - 671 627 645 630 650 661 c 0 - 655 692 704 709 730 692 c 1 - 733 685 739 671 739 663 c 0xe8 - 740 592 669 547 615 543 c 1 - 647 495 663 439 663 384 c 0 - 663 134 450 -10 288 -10 c 0 - 151 -10 48 112 48 255 c 0 - 48 498 253 651 414 651 c 0 - 472 651 521 632 559 603 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ohungarumlaut -Encoding: 337 337 337 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 2 -Refer: 252 779 N 1 0 0 1 572 10 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ohungarumlaut -Encoding: 336 336 336 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 147 -16 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: omacron -Encoding: 333 333 333 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 528 20 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Omacron -Encoding: 332 332 332 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 144 167 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onedotenleader.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onedotenleader.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onedotenleader.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onedotenleader.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: onedotenleader -Encoding: 8228 8228 212 -Width: 649 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 571 -489 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: one -Encoding: 49 49 17 -Width: 514 -Flags: W -HStem: -3 28<102 162 307 357> 607 20G<379 409> -VStem: 101 313 -LayerCount: 2 -Fore -SplineSet -184 468 m 1 - 177 472 174 483 174 490 c 0 - 174 492 175 495 178 498 c 1 - 278 552 354 595 404 627 c 9 - 406 627 l 2 - 411 627 416 605 414 592 c 1 - 414 592 387 537 366 429 c 2 - 312 132 l 2 - 306 100 301 71 302 45 c 0 - 303 34 351 25 358 25 c 0 - 361 25 359 15 358 8 c 0 - 357 3 356 -1 355 -3 c 1 - 319 -1 237 2 201 2 c 0 - 165 2 138 -1 101 -3 c 1 - 97 2 101 25 106 25 c 0 - 117 25 164 34 169 45 c 0 - 178 65 182 82 185 101 c 2 - 244 405 l 2 - 256 464 262 494 243 494 c 0 - 236 494 202 477 184 468 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" one.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" one.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onehalf.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onehalf.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onehalf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onehalf.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: onehalf -Encoding: 189 189 123 -Width: 729 -Flags: W -HStem: -2 74<500 619> 248 22<53 99 196 239> 325 54<524 624> -VStem: 598 88<227 319> -LayerCount: 2 -Fore -SplineSet -686 290 m 0 - 686 236 629 178 588 144 c 0 - 556 118 539 98 500 72 c 1 - 589 72 l 2 - 619 72 631 100 645 121 c 0 - 647 124 650 126 654 126 c 0 - 658 126 666 125 668 123 c 1 - 656 95 615 9 609 -2 c 9 - 403 -2 l 1 - 401 1 399 9 399 12 c 1 - 453 64 478 88 534 149 c 0 - 574 193 598 236 598 274 c 0 - 598 305 583 325 552 325 c 0 - 512 325 485 289 479 284 c 1 - 476 284 464 290 466 302 c 1 - 481 324 529 379 592 379 c 0 - 655 379 686 335 686 290 c 0 -95 529 m 1 - 91 531 88 544 88 548 c 0 - 88 549 89 551 91 553 c 1 - 152 584 222 615 253 631 c 9 - 255 631 l 2 - 258 631 261 617 260 609 c 1 - 260 609 244 576 231 510 c 2 - 199 335 l 2 - 195 315 193 291 193 288 c 0 - 193 271 238 271 242 271 c 0 - 244 271 242 259 241 255 c 0 - 240 252 240 249 239 248 c 1 - 218 249 163 252 142 252 c 0 - 121 252 73 249 51 248 c 1 - 49 251 53 271 56 271 c 0 - 63 271 95 274 101 284 c 0 - 105 291 108 304 110 316 c 2 - 145 496 l 2 - 152 531 157 550 145 550 c 0 - 141 550 106 534 95 529 c 1 -618 618 m 2 - 177 -8 l 1 - 177 -8 151 -7 151 4 c 0 - 151 6 152 8 153 10 c 26 - 594 636 l 1 - 594 636 619 634 619 623 c 0 - 619 621 619 619 618 618 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: one.onum -Encoding: 65553 -1 406 -Width: 288 -Flags: W -HStem: -4 36<31 85 229 271> 4 28<35 148> -VStem: 28 318 -LayerCount: 2 -Fore -SplineSet -224 436 m 0xa0 - 266 439 308 445 347 451 c 1 - 349 448 350 434 348 425 c 0 - 347 420 345 415 343 415 c 0 - 332 414 289 397 285 386 c 0 - 276 361 267 313 266 306 c 2 - 235 146 l 2 - 228 113 224 84 225 57 c 0 - 226 46 264 32 271 32 c 0x60 - 274 32 273 23 271 15 c 0 - 269 7 268 -1 266 -4 c 1xa0 - 229 -2 183 4 148 4 c 0x60 - 110 4 66 -2 28 -4 c 1 - 24 1 30 32 35 32 c 0 - 46 32 88 46 93 57 c 0 - 104 82 113 124 114 131 c 2 - 146 291 l 2 - 153 324 155 346 152 373 c 0 - 150 391 129 393 121 393 c 0 - 114 393 102 392 102 392 c 0 - 98 392 100 407 102 417 c 0 - 103 420 102 423 105 429 c 1 - 142 430 188 433 224 436 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/one.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/one.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: one.prop -Encoding: 65577 -1 464 -Width: 342 -Flags: HW -LayerCount: 2 -Fore -Refer: 17 49 N 1 0 0 1 -100 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onequarter.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onequarter.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/onequarter.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/onequarter.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: onequarter -Encoding: 188 188 122 -Width: 688 -Flags: W -HStem: -1 21G<151 191 513 531> 107 41<413 504 591 627> 248 22<53 99 196 239> -LayerCount: 2 -Fore -SplineSet -623 391 m 0 - 629 391 636 380 635 375 c 2 - 591 148 l 25 - 624 148 l 18 - 628 148 628 144 628 139 c 0 - 628 128 622 113 618 107 c 1 - 583 107 l 25 - 563 3 l 1 - 563 3 541 -1 520 -1 c 0 - 506 -1 483 1 484 5 c 2 - 504 107 l 25 - 353 107 l 1 - 349 109 347 118 348 122 c 1 - 605 381 l 2 - 611 387 619 391 623 391 c 0 -535 275 m 25 - 413 148 l 25 - 511 148 l 25 - 535 275 l 25 -95 529 m 1 - 91 531 88 544 88 548 c 0 - 88 549 89 551 91 553 c 1 - 152 584 222 615 253 631 c 9 - 255 631 l 2 - 258 631 261 617 260 609 c 1 - 260 609 244 576 231 510 c 2 - 199 335 l 2 - 195 315 193 291 193 288 c 0 - 193 271 238 271 242 271 c 0 - 244 271 242 259 241 255 c 0 - 240 252 240 249 239 248 c 1 - 218 249 163 252 142 252 c 0 - 121 252 73 249 51 248 c 1 - 49 251 53 271 56 271 c 0 - 63 271 95 274 101 284 c 0 - 105 291 108 304 110 316 c 2 - 145 496 l 2 - 152 531 157 550 145 550 c 0 - 141 550 106 534 95 529 c 1 -618 618 m 2 - 177 -8 l 1 - 177 -8 151 -7 151 4 c 0 - 151 6 152 8 153 10 c 26 - 594 636 l 1 - 594 636 619 634 619 623 c 0 - 619 621 619 619 618 618 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ordfeminine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ordfeminine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ordfeminine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ordfeminine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: ordfeminine -Encoding: 170 170 105 -Width: 389 -Flags: W -HStem: 241 58<95 175 248 322> 498 43<196 287> -VStem: 54 90<299 406> -LayerCount: 2 -Fore -SplineSet -260 240 m 0 - 236 240 214 251 214 280 c 0 - 214 283 215 289 216 294 c 0 - 217 299 217 303 218 306 c 1 - 203 282 158 241 115 241 c 0 - 75 241 54 276 54 321 c 0 - 54 439 183 541 273 541 c 0 - 299 541 336 534 350 529 c 1 - 307 341 l 2 - 307 338 304 322 304 319 c 0 - 304 313 306 306 314 306 c 0 - 330 306 363 342 365 346 c 1 - 370 343 375 328 373 319 c 1 - 361 298 299 240 260 240 c 0 -231 498 m 0 - 182 498 144 424 144 346 c 0 - 144 315 153 299 169 299 c 0 - 193 299 228 366 243 431 c 2 - 257 490 l 1 - 252 495 241 498 231 498 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ordmasculine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ordmasculine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ordmasculine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ordmasculine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: ordmasculine -Encoding: 186 186 120 -Width: 349 -Flags: W -HStem: 245 29<152 200> 511 28<201 247> -VStem: 56 90<277 419> 255 90<363 510> -LayerCount: 2 -Back -SplineSet -262.6953125 510.7421875 m 3 - 254.231445312 510.7421875 246.500976562 508.463867188 239.501953125 503.90625 c 0 - 232.502929688 499.348632812 226.725585938 493.65234375 222.16796875 486.81640625 c 0 - 217.610351562 479.98046875 213.37890625 471.435546875 209.47265625 461.181640625 c 0 - 205.56640625 450.927734375 202.555664062 441.487304688 200.439453125 432.861328125 c 0 - 198.323242188 424.235351562 196.2890625 414.387695312 194.3359375 403.3203125 c 0 - 191.40625 383.463867188 189.778320312 364.013671875 189.453125 344.970703125 c 0 - 189.127929688 325.927734375 192.626953125 309.5703125 199.951171875 295.8984375 c 0 - 207.275390625 282.2265625 217.7734375 275.390625 231.4453125 275.390625 c 0 - 241.862304688 275.390625 251.139648438 278.564453125 259.27734375 284.912109375 c 0 - 267.415039062 291.259765625 274.006835938 300.129882812 279.052734375 311.5234375 c 0 - 284.098632812 322.916992188 288.166992188 333.821289062 291.259765625 344.23828125 c 0 - 294.352539062 354.655273438 297.200195312 366.862304688 299.8046875 380.859375 c 1 - 302.734375 400.715820312 304.362304688 420.329101562 304.6875 439.697265625 c 0 - 305.012695312 459.065429688 301.513671875 475.749023438 294.189453125 489.74609375 c 0 - 286.865234375 503.743164062 276.3671875 510.7421875 262.6953125 510.7421875 c 3 -275.390625 540.0390625 m 0 - 317.3828125 540.0390625 349.202148438 526.286132812 370.849609375 498.779296875 c 0 - 392.497070312 471.272460938 399.4140625 436.848632812 391.6015625 395.5078125 c 0 - 383.7890625 354.166992188 363.118164062 318.766601562 329.58984375 289.306640625 c 0 - 296.061523438 259.846679688 259.114257812 245.1171875 218.75 245.1171875 c 0 - 176.7578125 245.1171875 144.938476562 259.033203125 123.291015625 286.865234375 c 0 - 101.643554688 314.697265625 94.7265625 349.284179688 102.5390625 390.625 c 0 - 110.3515625 431.640625 131.103515625 466.796875 164.794921875 496.09375 c 0 - 198.486328125 525.390625 235.3515625 540.0390625 275.390625 540.0390625 c 0 -EndSplineSet -Fore -SplineSet -231 511 m 0 - 178 511 146 401 146 330 c 0 - 146 314 148 274 170 274 c 0 - 223 274 255 385 255 451 c 0 - 255 472 251 511 231 511 c 0 -239 539 m 0 - 297 539 345 518 345 441 c 0 - 345 348 243 245 158 245 c 0 - 100 245 56 279 56 341 c 0 - 56 434 154 539 239 539 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: oslash -Encoding: 248 248 182 -Width: 444 -Flags: W -HStem: -6 39<146 211> 399 39<216 279> -VStem: 15 122<54 239> 289 122<191 383> -LayerCount: 2 -Fore -SplineSet -326 448 m 17 - 332 448 353 444 354 438 c 9 - 107 -19 l 17 - 101 -20 84 -16 80 -8 c 9 - 326 448 l 17 -EndSplineSet -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Oslash -Encoding: 216 216 150 -Width: 688 -Flags: W -HStem: -10 42<255 385> 609 42<326 452> -VStem: 48 141<146 381> 522 141<253 490> -LayerCount: 2 -Fore -SplineSet -102 -13 m 17 - 94 -10 73 6 78 12 c 9 - 582 653 l 17 - 590 651 611 636 606 630 c 9 - 102 -13 l 17 -EndSplineSet -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: otilde -Encoding: 245 245 179 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 520 21 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Otilde -Encoding: 213 213 147 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 83 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/paragraph.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/paragraph.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/paragraph.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/paragraph.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: paragraph -Encoding: 182 182 116 -Width: 546 -Flags: W -HStem: -80 45<193 270> 607 36<265 422 513 579> -VStem: 66 198<350 514> -LayerCount: 2 -Fore -SplineSet -307 644 m 0 - 361 644 419 640 454 640 c 0 - 492 640 547 642 583 646 c 1 - 586 640 582 617 576 610 c 1 - 564 609 522 606 515 593 c 0 - 504 573 497 543 489 501 c 2 - 429 189 l 2 - 398 29 288 -80 210 -80 c 0 - 177 -80 148 -70 137 -62 c 1 - 132 -54 128 -43 128 -30 c 0 - 128 -6 144 18 166 18 c 0 - 183 18 196 9 207 -6 c 0 - 216 -19 225 -35 243 -35 c 0 - 281 -35 286 31 316 186 c 1 - 381 524 l 2 - 387 553 393 586 391 598 c 0 - 389 607 380 607 373 607 c 0 - 330 607 265 541 265 447 c 0 - 265 382 279 337 324 316 c 1 - 326 315 328 311 328 309 c 0 - 328 286 269 267 239 267 c 0 - 120 267 66 361 66 430 c 0 - 66 571 224 644 307 644 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/parenleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/parenleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/parenleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/parenleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenleft -Encoding: 40 40 8 -Width: 270 -VWidth: 0 -Flags: W -HStem: -118 12<209 214> -VStem: 38 286 -LayerCount: 2 -Fore -SplineSet -316 730 m 1 - 322 728 325 722 324 718 c 1 - 251 649 87 408 108 160 c 0 - 120 22 155 -52 214 -106 c 1 - 214 -109 214 -116 208 -118 c 1 - 140 -97 53 4 38 173 c 0 - 13 463 221 660 316 730 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/parenright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/parenright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/parenright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/parenright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenright -Encoding: 41 41 9 -Width: 268 -VWidth: 0 -Flags: W -HStem: 719 12<74 79> -VStem: -37 285 -LayerCount: 2 -Fore -SplineSet --28 -118 m 1 - -34 -116 -38 -109 -37 -105 c 1 - 36 -36 201 204 180 452 c 0 - 168 590 132 665 73 719 c 1 - 73 722 73 728 79 730 c 1 - 147 709 233 608 248 439 c 0 - 273 149 67 -48 -28 -118 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/partialdiff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/partialdiff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/partialdiff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/partialdiff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,72 +0,0 @@ -StartChar: partialdiff -Encoding: 8706 8706 227 -Width: 449 -Flags: W -HStem: 0 54<101 221> 310 52<176 266> 566 61<193 292> -VStem: 319 104<360 537> -LayerCount: 2 -Back -SplineSet -271.484375 309.5703125 m 0 - 254.557617188 309.5703125 239.338867188 299.723632812 225.830078125 280.029296875 c 0 - 212.321289062 260.334960938 202.473632812 235.026367188 196.2890625 204.1015625 c 1 - 188.151367188 166.340820312 185.709960938 136.311523438 188.96484375 114.013671875 c 0 - 192.219726562 91.7158203125 197.998046875 76.0908203125 206.298828125 67.138671875 c 0 - 214.599609375 58.1865234375 225.5859375 53.7109375 239.2578125 53.7109375 c 0 - 280.2734375 53.7109375 310.872070312 107.096679688 331.0546875 213.8671875 c 0 - 343.098632812 277.668945312 323.2421875 309.5703125 271.484375 309.5703125 c 0 -337.890625 626.953125 m 3 - 359.526367188 626.953125 378.715820312 622.873046875 395.459960938 614.712890625 c 0 - 412.204101562 606.552734375 425.766601562 595.788085938 436.146484375 582.41796875 c 0 - 446.52734375 569.047851562 455.041992188 552.869140625 461.690429688 533.881835938 c 0 - 468.337890625 514.89453125 472.94921875 495.547851562 475.522460938 475.840820312 c 0 - 478.095703125 456.133789062 479.3828125 434.890625 479.3828125 412.109375 c 0 - 479.3828125 355.340820312 472.702148438 301.772460938 459.341796875 251.40234375 c 0 - 445.981445312 201.033203125 427.444335938 157.322265625 403.731445312 120.271484375 c 0 - 380.018554688 83.2197265625 350.810546875 53.912109375 316.106445312 32.34765625 c 0 - 281.40234375 10.7822265625 243.7421875 0 203.125 0 c 0 - 155.924804688 0 120.60546875 15.9501953125 97.16796875 47.8515625 c 0 - 73.73046875 79.7529296875 68.0341796875 126.953125 80.078125 189.453125 c 0 - 86.2626953125 221.028320312 100.341796875 250.163085938 122.314453125 276.85546875 c 0 - 144.287109375 303.547851562 170.735351562 324.299804688 201.66015625 339.111328125 c 0 - 232.584960938 353.922851562 263.997070312 361.328125 295.8984375 361.328125 c 0 - 306.965820312 361.328125 316.975585938 360.595703125 325.927734375 359.130859375 c 0 - 334.879882812 357.666015625 341.633789062 356.201171875 346.19140625 354.736328125 c 0 - 350.749023438 353.271484375 353.190429688 352.5390625 353.515625 352.5390625 c 0 - 358.073242188 352.5390625 361.328125 355.143554688 363.28125 360.3515625 c 0 - 366.418945312 369.764648438 369.294921875 383.461914062 371.908203125 401.444335938 c 0 - 374.522460938 419.426757812 375.829101562 437.3046875 375.829101562 455.078125 c 0 - 375.829101562 489.684570312 370.995117188 514.423828125 361.328125 529.296875 c 0 - 345.703125 554.036132812 317.057617188 566.40625 275.390625 566.40625 c 0 - 268.229492188 566.40625 261.067382812 565.592773438 253.90625 563.96484375 c 0 - 246.745117188 562.336914062 239.094726562 559.407226562 230.95703125 555.17578125 c 0 - 222.819335938 550.944335938 216.633789062 547.688476562 212.40234375 545.41015625 c 0 - 208.170898438 543.131835938 201.416015625 538.818359375 192.138671875 532.470703125 c 0 - 182.861328125 526.123046875 177.409179688 522.4609375 175.78125 521.484375 c 1 - 173.176757812 522.786132812 172.119140625 528.645507812 172.607421875 539.0625 c 0 - 173.095703125 549.479492188 176.106445312 557.291992188 181.640625 562.5 c 0 - 200.1953125 579.1015625 224.284179688 593.994140625 253.90625 607.177734375 c 0 - 283.528320312 620.361328125 311.5234375 626.953125 337.890625 626.953125 c 3 -EndSplineSet -Fore -SplineSet -215 310 m 0 - 180 310 152 264 140 204 c 0 - 118 89 145 54 183 54 c 0 - 235 54 260 142 274 214 c 1 - 290 296 249 310 215 310 c 0 -281 627 m 3 - 393 627 423 519 423 412 c 3 - 423 183 312 0 146 0 c 0 - 57 0 -2 58 23 189 c 0 - 42 287 142 361 239 361 c 0 - 276 361 294 353 297 353 c 0 - 301 353 305 355 307 360 c 0 - 313 377 319 417 319 455 c 3 - 319 484 316 512 305 529 c 0 - 284 561 246 566 219 566 c 3 - 181 566 146 539 119 521 c 1 - 115 525 112 550 125 562 c 0 - 158 591 224 627 281 627 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/percent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/percent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/percent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/percent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: percent -Encoding: 37 37 5 -Width: 683 -Flags: W -HStem: -1 29<453 502> 265 28<486 534> 333 29<170 219> 599 28<203 250> -LayerCount: 2 -Fore -SplineSet -517 265 m 0 - 464 265 436 155 441 84 c 0 - 442 68 450 28 472 28 c 0 - 525 28 551 139 546 205 c 0 - 544 226 537 265 517 265 c 0 -522 293 m 0 - 580 293 630 272 635 195 c 0 - 641 102 547 -1 462 -1 c 0 - 404 -1 357 33 353 95 c 0 - 347 188 437 293 522 293 c 0 -234 599 m 0 - 181 599 153 489 158 418 c 0 - 159 402 167 362 189 362 c 0 - 242 362 268 473 263 539 c 0 - 261 560 254 599 234 599 c 0 -239 627 m 0 - 297 627 347 606 352 529 c 0 - 358 436 264 333 179 333 c 0 - 121 333 74 367 70 429 c 0 - 64 522 154 627 239 627 c 0 -577 604 m 2 - 141 -14 l 1 - 141 -14 108 -6 108 5 c 0 - 108 7 109 9 110 11 c 26 - 546 628 l 1 - 546 628 578 619 578 608 c 0 - 578 606 578 605 577 604 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/periodcentered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/periodcentered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/periodcentered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/periodcentered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: periodcentered -Encoding: 183 183 117 -Width: 231 -Flags: W -HStem: 184 146<77 150> -VStem: 46 137<217 300> -LayerCount: 2 -Fore -SplineSet -46 244 m 0 - 46 290 88 330 129 330 c 19 - 160 330 183 305 183 273 c 0 - 183 230 143 184 102 184 c 19 - 69 184 46 211 46 244 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/period.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/period.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/period.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/period.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: period -Encoding: 46 46 14 -Width: 211 -Flags: W -HStem: -11 135<32 104> -VStem: 7 123<15 100> -LayerCount: 2 -Fore -SplineSet -7 59 m 0 - 14 95 47 124 81 124 c 27 - 114 124 137 95 130 59 c 0 - 123 23 91 -11 57 -11 c 27 - 22 -11 0 23 7 59 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/perthousand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/perthousand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/perthousand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/perthousand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: perthousand -Encoding: 8240 8240 214 -Width: 982 -Flags: W -HStem: -1 29<490 539 794 843> 265 28<523 570 827 874> 333 29<207 256> 599 28<240 287> -LayerCount: 2 -Fore -SplineSet -857 265 m 0 - 804 265 777 155 782 84 c 0 - 783 68 790 28 812 28 c 0 - 865 28 892 139 887 205 c 0 - 885 226 877 265 857 265 c 0 -863 293 m 0 - 921 293 970 272 975 195 c 0 - 981 102 888 -1 803 -1 c 0 - 745 -1 698 33 694 95 c 0 - 688 188 778 293 863 293 c 0 -554 265 m 0 - 501 265 473 155 478 84 c 0 - 479 68 487 28 509 28 c 0 - 562 28 588 139 583 205 c 0 - 581 226 574 265 554 265 c 0 -559 293 m 0 - 617 293 667 272 672 195 c 0 - 678 102 584 -1 499 -1 c 0 - 441 -1 394 33 390 95 c 0 - 384 188 474 293 559 293 c 0 -270 599 m 0 - 217 599 190 489 195 418 c 0 - 196 402 204 362 226 362 c 0 - 279 362 305 473 300 539 c 0 - 298 560 290 599 270 599 c 0 -276 627 m 0 - 334 627 384 606 389 529 c 0 - 395 436 301 333 216 333 c 0 - 158 333 111 367 107 429 c 0 - 101 522 191 627 276 627 c 0 -614 604 m 2 - 178 -14 l 1 - 178 -14 145 -6 145 5 c 0 - 145 7 146 9 147 11 c 26 - 583 628 l 1 - 583 628 615 619 615 608 c 0 - 615 606 615 605 614 604 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/p.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/p.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/p.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/p.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: p -Encoding: 112 112 80 -Width: 484 -Flags: W -HStem: -214 31<-52 -10> -205 29<134 179> -5 43<172 244> 356 82<291 393> -VStem: 332 126<216 352> -LayerCount: 2 -Fore -SplineSet -294 356 m 0x38 - 265 356 235 336 214 315 c 1 - 209 289 180 146 180 146 c 2 - 165 71 177 38 202 38 c 0 - 271 38 332 210 332 292 c 0 - 332 324 325 356 294 356 c 0x38 -362 438 m 0 - 424 438 458 388 458 320 c 0 - 458 156 294 -5 175 -5 c 0 - 169 -5 157 -4 148 0 c 1 - 123 -123 l 2 - 121 -132 120 -140 120 -150 c 0 - 120 -155 124 -170 134 -173 c 0 - 151 -177 177 -176 180 -176 c 0 - 184 -177 181 -204 176 -206 c 1 - 163 -206 153 -205 142 -205 c 0x78 - 92 -205 6 -207 -51 -214 c 1 - -56 -213 -54 -186 -49 -183 c 1xb8 - -31 -183 -19 -178 -10 -167 c 0 - -3 -158 1 -147 6 -125 c 2 - 79 227 l 1 - 32 180 l 1 - 28 185 25 199 25 206 c 0 - 25 217 34 228 40 233 c 2 - 90 280 l 1 - 119 434 l 1 - 130 437 168 438 179 438 c 0 - 190 438 225 436 235 431 c 1 - 232 413 224 373 222 364 c 1 - 249 394 312 438 362 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_P.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_P.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_P.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_P.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: P -Encoding: 80 80 48 -Width: 543 -Flags: W -HStem: -4 36<-5 60 202 253> 279 40<279 354> 605 39<115 167 305 393> -LayerCount: 2 -Fore -SplineSet -559 454 m 0 - 537 337 418 279 326 279 c 0 - 300 279 287 289 280 294 c 0 - 276 297 270 311 270 316 c 0 - 270 320 273 323 275 323 c 1 - 284 320 291 319 305 319 c 0 - 350 319 409 376 422 440 c 0 - 439 527 413 605 352 605 c 0 - 331 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 - 285 642 334 645 388 645 c 0 - 501 645 580 558 559 454 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/plus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/plus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/plus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/plus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: plus -Encoding: 43 43 11 -Width: 456 -Flags: W -HStem: 208 50<26 192 255 420> -LayerCount: 2 -Back -SplineSet -206.0546875 18.5546875 m 25 - 298.828125 508.7890625 l 1 - 287.596679688 38.248046875 l 1 - 374.0234375 492.1875 l 1025 -EndSplineSet -Fore -SplineSet -27 208 m 2 - 24 208 22 211 22 216 c 0 - 22 229 27 245 37 258 c 1 - 200 258 l 1 - 232 425 l 2 - 234 438 276 440 280 440 c 0 - 288 440 290 437 289 433 c 2 - 255 258 l 1 - 419 258 l 2 - 421 258 422 255 422 250 c 0 - 422 237 420 220 409 208 c 1 - 247 208 l 1 - 213 38 l 2 - 211 28 187 22 171 22 c 0 - 161 22 156 26 157 30 c 2 - 192 208 l 1 - 27 208 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/plusminus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/plusminus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/plusminus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/plusminus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: plusminus -Encoding: 177 177 111 -Width: 499 -Flags: W -HStem: 11 50<12 406> 300 50<69 235 298 463> -LayerCount: 2 -Fore -SplineSet -405 61 m 2 - 407 61 408 58 408 53 c 0 - 408 40 407 23 396 11 c 1 - 14 11 l 2 - 11 11 9 14 9 19 c 0 - 9 32 13 48 23 61 c 1 - 405 61 l 2 -70 300 m 2 - 67 300 65 303 65 308 c 0 - 65 321 70 337 80 350 c 1 - 243 350 l 1 - 275 517 l 2 - 277 530 319 532 323 532 c 0 - 331 532 333 528 332 524 c 2 - 298 350 l 1 - 462 350 l 2 - 464 350 465 347 465 342 c 0 - 465 329 463 312 452 300 c 1 - 290 300 l 1 - 256 130 l 2 - 254 120 230 114 214 114 c 0 - 204 114 199 118 200 122 c 2 - 235 300 l 1 - 70 300 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/propersubset.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/propersubset.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/propersubset.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/propersubset.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: propersubset -Encoding: 8834 8834 241 -Width: 426 -Flags: W -HStem: 11 59<123 353> 361 59<166 420> -LayerCount: 2 -Fore -SplineSet -227 361 m 2 - 169 361 108 302 91 215 c 0 - 74 127 116 69 177 69 c 2 - 348 69 l 2 - 348 69 361 62 354 28 c 0 - 352 19 344 11 344 11 c 1 - 167 11 l 2 - 65 11 6 107 27 216 c 0 - 48 322 138 420 237 420 c 2 - 423 420 l 1 - 423 420 427 411 425 399 c 0 - 419 369 404 361 404 361 c 1 - 227 361 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/proportional.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/proportional.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/proportional.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/proportional.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: proportional -Encoding: 8733 8733 236 -Width: 625 -Flags: W -HStem: 36 71<133 232 505 547> 344 72<169 268 537 616> -LayerCount: 2 -Fore -SplineSet -555 109 m 1 - 563 109 563 99 561 88 c 0 - 557 67 541 48 531 41 c 1 - 412 41 370 158 360 158 c 2 - 359 158 l 1 - 298 96 232 36 143 36 c 0 - 57 36 9 125 27 218 c 0 - 48 324 148 416 247 416 c 0 - 335 416 385 341 413 294 c 0 - 414 292 417 291 418 293 c 0 - 466 345 539 417 610 417 c 0 - 617 417 620 386 616 364 c 0 - 615 357 611 344 606 344 c 0 - 602 344 598 344 591 344 c 0 - 530 344 439 235 440 234 c 0 - 455 205 486 109 555 109 c 1 -109 224 m 0 - 95 156 135 107 183 107 c 0 - 243 107 306 183 333 213 c 0 - 334 215 291 344 222 344 c 0 - 173 344 122 290 109 224 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: q -Encoding: 113 113 81 -Width: 443 -Flags: W -HStem: -215 21G<120 139> -205 21<125 270 319 352> -7 86<64 184> 385 54<223 332> -VStem: 11 123<84 216> -LayerCount: 2 -Fore -SplineSet -349 -206 m 1x78 - 335 -206 283 -205 270 -205 c 0x78 - 213 -205 157 -211 121 -215 c 1xb8 - 119 -213 119 -184 125 -184 c 0 - 153 -181 181 -168 186 -143 c 2 - 229 82 l 1 - 208 48 150 -7 93 -7 c 0 - 35 -7 11 54 11 111 c 0 - 11 269 168 438 314 438 c 0 - 348 438 384 433 409 417 c 1 - 355 136 l 2 - 354 132 305 -130 305 -130 c 2 - 304 -137 303 -144 303 -150 c 0 - 303 -166 310 -177 353 -177 c 0 - 357 -177 354 -203 349 -206 c 1x78 -280 333 m 0 - 283 350 282 385 256 385 c 0 - 191 385 134 265 134 153 c 0 - 134 99 150 79 167 79 c 0 - 201 79 253 182 270 269 c 0 - 275 295 276 307 280 333 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: Q -Encoding: 81 81 49 -Width: 689 -Flags: W -HStem: -137 65<503 602> 609 42<327 453> -VStem: 49 141<146 381> 523 141<251 490> -LayerCount: 2 -Fore -SplineSet -415 651 m 0 - 575 651 664 510 664 384 c 0 - 664 175 522 55 396 10 c 1 - 474 -35 514 -71 608 -71 c 0 - 630 -71 651 -66 658 -64 c 1 - 665 -64 673 -68 677 -74 c 1 - 665 -84 578 -137 522 -137 c 0 - 418 -137 347 -57 229 -8 c 0 - 116 39 49 138 49 255 c 0 - 49 498 254 651 415 651 c 0 -394 609 m 0 - 259 609 189 399 189 238 c 0 - 189 126 226 32 319 32 c 0 - 451 32 523 239 523 400 c 0 - 523 512 482 609 394 609 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/questiondown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/questiondown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/questiondown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/questiondown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: questiondown -Encoding: 191 191 125 -Width: 355 -Flags: W -HStem: -203 71<61 161> 304 135<209 281> -VStem: -20 71<-127 -46> 179 90<100 182> 183 123<328 412> -LayerCount: 2 -Fore -SplineSet -306 369 m 0xe8 - 299 333 265 304 231 304 c 27 - 198 304 176 333 183 369 c 0 - 190 405 222 438 256 438 c 27 - 291 438 313 405 306 369 c 0xe8 -146 218 m 1 - 146 224 153 234 158 237 c 1 - 181 237 269 188 269 133 c 3 - 269 69 214 43 189 25 c 0 - 163 6 114 -11 82 -38 c 0 - 62 -55 52 -70 52 -94 c 3 - 52 -117 64 -132 88 -132 c 0 - 117 -132 148 -82 177 -82 c 0 - 222 -82 234 -130 219 -167 c 1 - 207 -182 184 -203 138 -203 c 0 - 57 -203 -20 -133 -20 -61 c 0 - -20 -7 -7 33 66 79 c 0 - 82 89 115 102 141 120 c 0 - 162 134 179 150 179 167 c 3xf0 - 179 195 154 213 146 218 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/question.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/question.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/question.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/question.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: question -Encoding: 63 63 31 -Width: 366 -Flags: W -HStem: -11 135<64 136> 560 71<184 284> -VStem: 39 123<15 100> 76 90<246 327> 293 71<474 555> -LayerCount: 2 -Fore -SplineSet -39 59 m 0xe8 - 46 95 80 124 114 124 c 27 - 147 124 169 95 162 59 c 0 - 155 23 123 -11 89 -11 c 27 - 54 -11 32 23 39 59 c 0xe8 -200 210 m 1 - 200 204 192 193 187 190 c 1 - 164 190 76 240 76 295 c 3 - 76 359 131 384 156 402 c 0 - 182 420 230 439 263 466 c 0 - 282 482 293 497 293 521 c 3 - 293 544 281 560 257 560 c 0 - 228 560 197 510 168 510 c 0 - 123 510 111 558 126 595 c 1 - 138 610 161 631 207 631 c 0 - 288 631 365 560 365 488 c 0 - 365 434 352 394 279 349 c 0 - 263 339 230 325 204 308 c 0 - 183 294 166 278 166 261 c 3xd8 - 166 233 192 215 200 210 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblbase -Encoding: 8222 8222 208 -Width: 341 -Flags: HW -LayerCount: 2 -Fore -Refer: 207 8221 N 1 0 0 1 -123 -567 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: quotedbl -Encoding: 34 34 2 -Width: 326 -Flags: W -HStem: 424 258<138 140 288 290> -VStem: 103 99<552 656> 253 99<552 656> -LayerCount: 2 -Fore -SplineSet -324 682 m 27 - 351 682 363 676 352 618 c 0 - 341 563 307 503 288 438 c 0 - 285 428 275 424 268 424 c 0 - 261 424 252 429 253 437 c 0 - 262 525 253 576 253 621 c 1 - 256 639 288 682 324 682 c 27 -174 682 m 27 - 201 682 212 676 201 618 c 0 - 190 563 157 503 138 438 c 0 - 135 428 124 424 117 424 c 0 - 110 424 102 429 103 437 c 0 - 112 525 103 576 103 621 c 1 - 106 639 138 682 174 682 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: quotedblleft -Encoding: 8220 8220 206 -Width: 340 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N 1 0 0 1 154 0 2 -Refer: 203 8216 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotedblright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblright -Encoding: 8221 8221 207 -Width: 341 -Flags: HW -LayerCount: 2 -Fore -Refer: 206 8220 N -1 -0 0 -1 565 1152 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: quoteleft -Encoding: 8216 8216 203 -Width: 187 -Flags: HW -HStem: 440 272 -VStem: 125 116<461 565> -LayerCount: 2 -Fore -SplineSet -138 535 m 0 - 160 645 281 712 291 712 c 0 - 299 712 307 704 309 691 c 1 - 235 649 230 616 228 605 c 0 - 222 575 229 555 237 541 c 0 - 247 525 257 516 253 499 c 0 - 247 471 210 440 175 440 c 0 - 167 440 146 446 138 454 c 1 - 131 470 131 500 138 535 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotereversed.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotereversed.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotereversed.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotereversed.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotereversed -Encoding: 8219 8219 448 -Width: 187 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N 1 0 -0.5 -1 270 1152 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quoteright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quoteright -Encoding: 8217 8217 204 -Width: 187 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N -1 -0 0 -1 411 1152 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesinglbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesinglbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesinglbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesinglbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotesinglbase -Encoding: 8218 8218 205 -Width: 175 -Flags: HW -LayerCount: 2 -Fore -Refer: 204 8217 N 1 0 0 1 -124 -567 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesingle.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesingle.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesingle.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/quotesingle.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: quotesingle -Encoding: 39 39 7 -Width: 175 -Flags: W -HStem: 424 258<138 140> -VStem: 103 99<552 656> -LayerCount: 2 -Back -SplineSet -103.515625 681.640625 m 2 - 118.1640625 681.640625 l 2 - 127.604492188 681.640625 134.846679688 677.571289062 139.892578125 669.43359375 c 0 - 144.938476562 661.295898438 147.4609375 644.206054688 147.4609375 618.1640625 c 0 - 147.4609375 598.958007812 142.415039062 569.254882812 132.32421875 529.052734375 c 0 - 122.233398438 488.850585938 116.2109375 458.659179688 114.2578125 438.4765625 c 0 - 113.932617188 433.918945312 112.223632812 430.338867188 109.130859375 427.734375 c 0 - 106.038085938 425.129882812 102.5390625 423.828125 98.6328125 423.828125 c 0 - 95.0517578125 423.828125 91.796875 424.967773438 88.8671875 427.24609375 c 0 - 85.9375 429.524414062 84.3095703125 432.6171875 83.984375 436.5234375 c 0 - 81.0546875 467.448242188 74.7880859375 502.685546875 65.185546875 542.236328125 c 0 - 55.5830078125 581.787109375 50.78125 607.747070312 50.78125 620.1171875 c 0 - 50.78125 630.208007812 56.640625 642.985351562 68.359375 658.447265625 c 0 - 80.078125 673.909179688 91.796875 681.640625 103.515625 681.640625 c 2 -EndSplineSet -Fore -SplineSet -174 682 m 27 - 201 682 212 676 201 618 c 0 - 190 563 157 503 138 438 c 0 - 135 428 124 424 117 424 c 0 - 110 424 102 429 103 437 c 0 - 112 525 103 576 103 621 c 1 - 106 639 138 682 174 682 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: racute -Encoding: 341 341 339 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 583 37 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Racute -Encoding: 340 340 338 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 129 -16 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/radical.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/radical.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/radical.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/radical.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: radical -Encoding: 8730 8730 235 -Width: 570 -Flags: HW -LayerCount: 2 -Fore -SplineSet -14 146 m 1 - 3 153 -6 170 -4 181 c 0 - -1 194 11 200 22 207 c 0 - 56 229 164 304 179 316 c 0 - 188 323 203 324 204 316 c 1 - 207 285 207 273 212 248 c 2 - 253 46 l 1 - 269 88 529 772 529 772 c 1 - 580 766 l 1 - 580 766 280 -24 233 -149 c 1 - 216 -167 190 -176 184 -176 c 0 - 180 -176 177 -175 176 -171 c 2 - 95 191 l 1 - 14 146 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: rcaron -Encoding: 345 345 343 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 513 12 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Rcaron -Encoding: 344 344 342 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 -30 -3 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/registered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/registered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/registered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/registered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: registered -Encoding: 174 174 108 -Width: 601 -Flags: W -HStem: 87 43<208 379> 229 16<192 218 277 300 423 439> 347 19<288 299> 471 19<222 244 302 341> 575 45<256 431> -LayerCount: 2 -Fore -SplineSet -334 489 m 0 - 379 489 415 464 409 417 c 0 - 405 385 364 359 346 354 c 1 - 367 316 393 281 393 281 c 0 - 415 249 438 245 441 245 c 1 - 442 242 439 230 439 229 c 1 - 428 228 413 227 398 227 c 0 - 370 227 356 240 342 262 c 0 - 297 341 l 0 - 297 341 294 347 291 347 c 0 - 285 347 l 9 - 279 288 l 2 - 277 271 275 260 277 252 c 0 - 278 247 295 244 300 244 c 1 - 301 241 300 231 298 229 c 1 - 283 231 261 231 245 231 c 0 - 229 231 207 231 192 229 c 1 - 190 231 192 241 194 244 c 1 - 199 244 216 247 218 252 c 0 - 222 260 223 271 225 288 c 2 - 243 431 l 2 - 245 448 246 459 244 467 c 0 - 243 472 226 473 221 473 c 1 - 220 476 222 487 224 489 c 1 - 241 488 262 488 278 488 c 0 - 294 488 313 489 334 489 c 0 -321 471 m 0 - 313 471 304 471 302 467 c 0 - 300 462 298 454 297 442 c 2 - 288 365 l 17 - 303 365 l 0 - 326 365 348 384 352 414 c 0 - 356 445 345 471 321 471 c 0 -346 575 m 0 - 232 575 127 476 112 353 c 0 - 97 230 177 130 291 130 c 0 - 405 130 511 230 526 353 c 0 - 541 476 460 575 346 575 c 0 -351 620 m 0 - 488 620 587 501 568 354 c 0 - 549 207 422 87 285 87 c 0 - 148 87 52 207 71 354 c 0 - 90 501 214 620 351 620 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/r.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/r.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/r.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/r.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: r -Encoding: 114 114 82 -Width: 421 -Flags: W -HStem: -6 21G<98 109> 338 101<293 393> 354 84<83 182> -VStem: 108 119<231 396> 205 230<248 392> -LayerCount: 2 -Fore -SplineSet -366 438 m 3xc8 - 394 438 403 435 420 426 c 1 - 428 416 436 402 436 383 c 0 - 436 336 405 312 379 312 c 0 - 359 312 346 324 334 330 c 0 - 324 335 324 338 308 338 c 0xc8 - 280 338 205 213 178 89 c 10 - 158 0 l 17 - 148 -3 115 -6 104 -6 c 0 - 93 -6 58 -3 46 0 c 1 - 104 302 l 2 - 105 306 108 329 108 334 c 0 - 108 343 104 354 94 354 c 0 - 73 354 27 301 24 295 c 1 - 17 295 11 315 11 321 c 1 - 28 352 109 438 162 438 c 0 - 201 438 228 414 228 369 c 0xb0 - 228 355 221 321 219 311 c 0 - 217 299 205 247 205 248 c 1 - 229 338 313 438 366 438 c 3xc8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_R.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_R.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_R.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_R.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: R -Encoding: 82 82 50 -Width: 629 -Flags: W -HStem: -4 36<-5 60 202 252 559 620> 292 38<249 270> 605 39<115 167 305 398> -LayerCount: 2 -Fore -SplineSet -247 642 m 0 - 285 642 334 645 388 645 c 0 - 501 645 571 568 548 447 c 0 - 531 362 425 318 387 309 c 1 - 435 213 439 195 483 127 c 0 - 537 43 606 27 621 27 c 1 - 624 20 620 -2 619 -4 c 1 - 593 -6 598 -8 561 -8 c 0 - 412 -8 378 64 361 97 c 0 - 268 277 l 0 - 268 277 262 292 255 292 c 0 - 242 292 l 9 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 -249 330 m 17 - 291 330 l 0 - 343 330 390 364 411 438 c 0 - 431 508 426 605 352 605 c 0 - 331 605 312 605 305 594 c 0 - 298 582 295 562 289 534 c 2 - 249 330 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ring -Encoding: 730 730 483 -Width: 218 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 357 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: sacute -Encoding: 347 347 345 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 520 37 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Sacute -Encoding: 346 346 344 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 159 0 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scaron -Encoding: 353 353 351 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 479 12 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scaron -Encoding: 352 352 350 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 -44 0 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scedilla -Encoding: 351 351 349 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 360 -1 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scedilla -Encoding: 350 350 348 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 -1 N 1 0 0 1 8 -2 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scircumflex -Encoding: 349 349 347 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 481 21 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scircumflex -Encoding: 348 348 346 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 33 25 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/second.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/second.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/second.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/second.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: second -Encoding: 8243 8243 216 -Width: 269 -Flags: W -HStem: 473 210 -VStem: 169 80<599 673> 291 80<599 673> -LayerCount: 2 -Fore -SplineSet -337 683 m 0 - 356 683 375 671 371 651 c 0 - 362 605 299 515 269 482 c 0 - 264 477 258 473 254 473 c 0 - 248 473 244 477 245 484 c 0 - 246 487 273 597 291 650 c 0 - 295 662 319 683 337 683 c 0 -215 683 m 0 - 234 683 253 671 249 651 c 0 - 240 605 176 515 146 482 c 0 - 141 477 135 473 131 473 c 0 - 125 473 122 477 123 484 c 0 - 124 487 151 597 169 650 c 0 - 173 662 197 683 215 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/section.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/section.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/section.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/section.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: section -Encoding: 167 167 102 -Width: 427 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -90 49<60 154> 589 49<279 373> -LayerCount: 2 -Fore -SplineSet -367 638 m 0 - 265 638 173 553 157 475 c 0 - 144 409 201 355 236 312 c 0 - 275 263 318 208 302 127 c 0 - 293 84 277 64 250 36 c 0 - 250 36 226 15 216 -3 c 24 - 209 -14 212 -21 209 -33 c 17 - 248 -8 363 103 378 180 c 0 - 396 270 353 317 306 375 c 0 - 272 417 212 491 221 536 c 0 - 228 573 272 589 300 589 c 0 - 314 589 327 584 334 576 c 0 - 341 568 349 557 367 557 c 0 - 393 557 406 575 410 596 c 0 - 411 602 413 615 410 625 c 1 - 398 631 380 638 367 638 c 0 -183 511 m 0 - 183 511 206 533 216 551 c 24 - 223 562 221 569 224 581 c 17 - 185 556 70 445 55 368 c 0 - 37 278 80 231 127 173 c 0 - 161 131 221 57 212 12 c 0 - 205 -25 160 -41 132 -41 c 0 - 118 -41 107 -38 101 -30 c 0 - 94 -21 85 -9 67 -9 c 0 - 41 -9 26 -30 22 -51 c 0 - 21 -57 21 -69 23 -76 c 1 - 33 -82 53 -90 66 -90 c 0 - 168 -90 260 -5 276 73 c 0 - 289 139 232 192 197 235 c 0 - 157 284 115 340 131 421 c 0 - 140 464 154 481 183 511 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/semicolon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/semicolon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/semicolon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/semicolon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: semicolon -Encoding: 59 59 27 -Width: 232 -Flags: W -HStem: 298 135<99 171> -VStem: 21 116<26 110> 55 82<-24 109> 74 123<324 409> -LayerCount: 2 -Fore -SplineSet --18 -101 m 1xc0 - -10 -96 55 -48 55 0 c 0xa0 - 55 28 21 28 21 66 c 0 - 21 104 61 132 103 132 c 0 - 115 132 129 126 134 120 c 1 - 136 115 137 110 137 99 c 0 - 137 68 127 24 108 -10 c 0 - 77 -66 47 -89 -2 -120 c 1 - -10 -118 -18 -111 -18 -101 c 1xc0 -197 367 m 0x90 - 190 331 158 298 124 298 c 27 - 89 298 67 331 74 367 c 0 - 81 403 114 433 148 433 c 27 - 181 433 204 403 197 367 c 0x90 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: seven -Encoding: 55 55 23 -Width: 514 -Flags: W -HStem: -10 21G<69 73> 514 107<122 376> -LayerCount: 2 -Fore -SplineSet -35 13 m 1 - 85 72 257 326 376 514 c 1 - 166 514 l 2 - 121 514 97 469 78 432 c 0 - 76 429 75 427 66 426 c 0 - 57 425 49 430 46 434 c 1 - 67 482 118 591 131 621 c 1 - 146 621 393 622 393 622 c 2 - 425 622 469 626 475 626 c 0 - 481 626 480 616 479 611 c 0 - 477 602 463 584 442 552 c 2 - 86 -8 l 1 - 82 -10 74 -10 72 -10 c 0 - 65 -10 31 -6 35 13 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" seven.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" seven.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: seven.onum -Encoding: 65559 -1 412 -Width: 438 -Flags: W -HStem: 347 100<147 391> -LayerCount: 2 -Fore -SplineSet -438 446 m 2 - 461 446 494 449 500 449 c 0 - 506 449 506 445 505 440 c 0 - 502 427 490 405 468 375 c 2 - 78 -178 l 1 - 75 -179 74 -179 72 -179 c 0 - 55 -179 43 -163 46 -150 c 0 - 47 -147 48 -144 50 -141 c 2 - 391 347 l 1 - 192 347 l 1 - 147 347 117 290 107 270 c 1 - 99 269 80 267 74 275 c 1 - 90 320 130 405 143 435 c 0 - 146 443 154 446 162 446 c 2 - 438 446 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/seven.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: seven.prop -Encoding: 65583 -1 470 -Width: 424 -Flags: HW -LayerCount: 2 -Fore -Refer: 23 55 N 1 0 0 1 9 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/s.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/s.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/s.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/s.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: s -Encoding: 115 115 83 -Width: 357 -Flags: W -HStem: -7 39<94 190> 400 38<151 244> -VStem: 53 90<273 372> 201 91<65 164> -LayerCount: 2 -Fore -SplineSet -218 438 m 3 - 270 438 304 425 325 408 c 1 - 334 398 336 377 336 369 c 3 - 336 348 318 319 287 319 c 3 - 263 319 242 345 229 364 c 0 - 216 384 205 400 182 400 c 3 - 161 400 143 381 143 355 c 0 - 143 319 201 280 237 245 c 0 - 260 223 292 195 292 134 c 0 - 292 47 208 -7 113 -7 c 3 - 74 -7 32 6 11 23 c 1 - 2 34 -1 50 -1 61 c 3 - -1 86 18 113 46 113 c 3 - 70 113 85 95 104 69 c 0 - 121 46 133 32 157 32 c 3 - 178 32 201 56 201 74 c 0 - 201 117 138 156 101 197 c 0 - 77 224 53 244 53 303 c 0 - 53 381 123 438 218 438 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_S.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_S.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_S.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_S.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,115 +0,0 @@ -StartChar: S -Encoding: 83 83 51 -Width: 482 -Flags: W -HStem: -10 41<132 252> 613 41<264 369> -VStem: 32 39<105 193> 413 37<459 557> -LayerCount: 2 -Back -SplineSet -298.0078125 654.296875 m 0 - 313.905273438 654.296875 329.366210938 652.89453125 344.391601562 650.090820312 c 0 - 359.41796875 647.287109375 376.563476562 643.36328125 395.830078125 638.3203125 c 0 - 415.095703125 633.27734375 431.642578125 629.48828125 445.46875 626.953125 c 1 - 429.1875 511.71875 419.748046875 454.1015625 417.1484375 454.1015625 c 2 - 403.4765625 454.1015625 l 2 - 398.731445312 454.1015625 395.045898438 454.36328125 392.419921875 454.885742188 c 0 - 389.793945312 455.409179688 387.399414062 456.948242188 385.236328125 459.501953125 c 0 - 383.07421875 462.055664062 381.9921875 465.790039062 381.9921875 470.703125 c 0 - 381.9921875 478.837890625 381.034179688 488.076171875 379.1171875 498.419921875 c 0 - 377.200195312 508.762695312 373.8671875 519.97265625 369.118164062 532.048828125 c 0 - 364.368164062 544.125 358.576171875 555.102539062 351.7421875 564.982421875 c 0 - 344.907226562 574.861328125 335.94921875 583.102539062 324.868164062 589.705078125 c 0 - 313.786132812 596.307617188 301.578125 599.609375 288.2421875 599.609375 c 0 - 274.575195312 599.609375 262.186523438 596.91015625 251.076171875 591.512695312 c 0 - 239.965820312 586.115234375 231.133789062 579.473632812 224.580078125 571.588867188 c 0 - 218.026367188 563.704101562 212.525390625 554.94921875 208.076171875 545.325195312 c 0 - 203.626953125 535.701171875 200.576171875 527.028320312 198.923828125 519.307617188 c 0 - 197.271484375 511.586914062 196.4453125 504.825195312 196.4453125 499.0234375 c 0 - 196.4453125 493.297851562 197.03515625 487.666015625 198.21484375 482.126953125 c 0 - 199.39453125 476.588867188 201.494140625 471.014648438 204.514648438 465.403320312 c 0 - 207.534179688 459.79296875 210.32421875 454.774414062 212.8828125 450.349609375 c 0 - 215.442382812 445.923828125 219.462890625 440.829101562 224.9453125 435.064453125 c 0 - 230.427734375 429.299804688 234.768554688 424.702148438 237.96875 421.272460938 c 0 - 241.16796875 417.841796875 246.370117188 413.108398438 253.575195312 407.072265625 c 0 - 260.780273438 401.036132812 265.93359375 396.741210938 269.033203125 394.188476562 c 0 - 272.133789062 391.635742188 277.778320312 387.146484375 285.966796875 380.719726562 c 0 - 294.155273438 374.293945312 299.470703125 370.108398438 301.9140625 368.1640625 c 0 - 306.762695312 364.264648438 314.2890625 358.55859375 324.495117188 351.047851562 c 0 - 334.700195312 343.536132812 342.568359375 337.599609375 348.099609375 333.23828125 c 0 - 353.631835938 328.875976562 360.321289062 322.572265625 368.168945312 314.327148438 c 0 - 376.016601562 306.081054688 381.986328125 298.07421875 386.077148438 290.305664062 c 0 - 390.168945312 282.537109375 393.765625 272.770507812 396.869140625 261.004882812 c 0 - 399.971679688 249.239257812 401.5234375 236.45703125 401.5234375 222.65625 c 0 - 401.5234375 192.46484375 396.415039062 164.359375 386.19921875 138.340820312 c 0 - 375.982421875 112.322265625 362.60546875 90.439453125 346.067382812 72.6904296875 c 0 - 329.528320312 54.94140625 310.744140625 39.7099609375 289.71484375 26.9970703125 c 0 - 268.684570312 14.2841796875 247.416992188 4.978515625 225.911132812 -0.9189453125 c 0 - 204.405273438 -6.81640625 183.515625 -9.765625 163.2421875 -9.765625 c 0 - 119.901367188 -9.765625 66.1904296875 -1.3017578125 2.109375 15.625 c 1 - 5.3642578125 43.6767578125 6.9921875 72.3232421875 6.9921875 101.5625 c 0 - 6.9921875 112.060546875 6.8291015625 127.319335938 6.50390625 147.338867188 c 0 - 6.1787109375 167.358398438 6.015625 177.490234375 6.015625 177.734375 c 0 - 6.015625 179.069335938 6.365234375 180.236328125 7.0634765625 181.236328125 c 0 - 7.76171875 182.236328125 8.7490234375 183.010742188 10.0244140625 183.559570312 c 0 - 11.2998046875 184.109375 12.61328125 184.556640625 13.96484375 184.903320312 c 0 - 15.31640625 185.25 16.873046875 185.465820312 18.6337890625 185.552734375 c 0 - 20.3955078125 185.639648438 21.8681640625 185.688476562 23.052734375 185.700195312 c 0 - 24.2373046875 185.711914062 25.54296875 185.689453125 26.970703125 185.6328125 c 0 - 28.3974609375 185.575195312 29.2255859375 185.546875 29.453125 185.546875 c 0 - 31.94921875 185.546875 36.1513671875 184.682617188 42.0595703125 182.953125 c 0 - 47.9677734375 181.223632812 51.578125 179.484375 52.890625 177.734375 c 1 - 52.890625 164.182617188 55.28125 149.869140625 60.0625 134.795898438 c 0 - 64.8447265625 119.721679688 71.4609375 105.500976562 79.9140625 92.1328125 c 0 - 88.3662109375 78.765625 99.3369140625 67.7177734375 112.828125 58.990234375 c 0 - 126.318359375 50.2626953125 140.844726562 45.8984375 156.40625 45.8984375 c 0 - 171.690429688 45.8984375 185.586914062 48.4560546875 198.09765625 53.5712890625 c 0 - 210.608398438 58.685546875 220.696289062 65.384765625 228.362304688 73.6669921875 c 0 - 236.028320312 81.94921875 242.640625 90.673828125 248.201171875 99.83984375 c 0 - 253.760742188 109.005859375 257.853515625 118.318359375 260.48046875 127.775390625 c 0 - 263.107421875 137.233398438 264.97265625 144.971679688 266.077148438 150.9921875 c 0 - 267.182617188 157.01171875 267.734375 161.694335938 267.734375 165.0390625 c 0 - 267.734375 175.034179688 265.5546875 184.87109375 261.193359375 194.547851562 c 0 - 256.833007812 204.225585938 250.380859375 213.599609375 241.837890625 222.670898438 c 0 - 233.294921875 231.741210938 225.376953125 239.4921875 218.083984375 245.922851562 c 0 - 210.791015625 252.354492188 201.44921875 260.009765625 190.056640625 268.889648438 c 0 - 178.665039062 277.768554688 170.703125 284.166992188 166.171875 288.0859375 c 0 - 163.719726562 290.146484375 158.90234375 294.151367188 151.720703125 300.102539062 c 0 - 144.538085938 306.052734375 139.584960938 310.19140625 136.860351562 312.517578125 c 0 - 134.135742188 314.844726562 129.624023438 318.837890625 123.326171875 324.499023438 c 0 - 117.02734375 330.159179688 112.5234375 334.522460938 109.813476562 337.587890625 c 0 - 107.103515625 340.654296875 103.251953125 345.055664062 98.259765625 350.793945312 c 0 - 93.2666015625 356.53125 89.6337890625 361.486328125 87.3603515625 365.658203125 c 0 - 85.0869140625 369.831054688 82.3173828125 375.0078125 79.052734375 381.190429688 c 0 - 75.787109375 387.372070312 73.447265625 393.286132812 72.0322265625 398.931640625 c 0 - 70.6171875 404.578125 69.3515625 410.897460938 68.236328125 417.891601562 c 0 - 67.1201171875 424.884765625 66.5625 432.072265625 66.5625 439.453125 c 0 - 66.5625 464.442382812 71.501953125 488.447265625 81.380859375 511.466796875 c 0 - 91.259765625 534.486328125 104.310546875 554.461914062 120.533203125 571.392578125 c 0 - 136.756835938 588.323242188 154.956054688 603.150390625 175.130859375 615.873046875 c 0 - 195.305664062 628.595703125 216.012695312 638.180664062 237.251953125 644.626953125 c 0 - 258.4921875 651.073242188 278.744140625 654.296875 298.0078125 654.296875 c 0 -EndSplineSet -Fore -SplineSet -324 654 m 0 - 378 654 419 640 472 627 c 1 - 466 575 459 525 450 465 c 1 - 446 461 443 459 439 459 c 0 - 436 459 413 458 413 466 c 0 - 416 521 390 613 320 613 c 0 - 285 613 240 593 227 528 c 0 - 215 467 280 412 328 372 c 0 - 380 329 445 287 423 171 c 0 - 402 64 290 -10 190 -10 c 0 - 136 -10 74 2 22 16 c 1 - 21 59 28 155 32 182 c 1 - 37 188 57 195 62 195 c 0 - 69 195 71 194 71 188 c 0 - 69 135 107 31 189 31 c 0 - 235 31 281 57 295 126 c 0 - 309 195 230 252 191 285 c 0 - 134 333 77 376 97 478 c 0 - 117 579 230 654 324 654 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: six -Encoding: 54 54 22 -Width: 514 -VWidth: 0 -Flags: W -HStem: -6 34<187 247> 314 51<250 346> 604 23<452 473> -VStem: 41 127<86 279> 311 128<128 303> -LayerCount: 2 -Fore -SplineSet -319 365 m 0 - 394 365 438 309 438 223 c 0 - 438 96 330 -6 206 -6 c 0 - 128 -6 41 63 41 174 c 0 - 41 264 79 363 165 456 c 0 - 230 527 344 609 469 627 c 1 - 475 623 475 610 474 604 c 1 - 354 553 275 478 223 367 c 0 - 183 280 168 197 168 130 c 0 - 168 63 189 28 214 28 c 0 - 269 28 311 148 311 223 c 0 - 311 271 300 314 260 314 c 0 - 251 314 243 315 237 312 c 1 - 234 314 232 318 232 326 c 3 - 232 338 283 365 319 365 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" six.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" six.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: six.onum -Encoding: 65558 -1 411 -Width: 456 -VWidth: 0 -Flags: W -HStem: -6 51<197 274> -VStem: 63 123<69 264> 322 123<130 293> -LayerCount: 2 -Fore -SplineSet -271 336 m 3 - 271 347 298 358 326 358 c 0 - 390 358 445 292 445 213 c 0 - 445 100 329 -6 223 -6 c 0 - 132 -6 63 53 63 157 c 0 - 63 291 184 507 490 630 c 1 - 498 627 501 607 500 597 c 1 - 388 549 287 464 228 326 c 0 - 195 248 187 171 187 117 c 0 - 187 70 200 45 234 45 c 0 - 287 45 322 141 322 219 c 0 - 322 264 314 284 305 293 c 0 - 295 303 279 309 272 311 c 1 - 271 316 271 326 271 336 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/six.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/six.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: six.prop -Encoding: 65582 -1 469 -Width: 481 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 22 54 N 1 0 0 1 -6 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: slash -Encoding: 47 47 15 -Width: 394 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet -455 737 m 1 - 41 -12 l 2 - 38 -17 10 -33 -12 -33 c 0 - -16 -33 -22 -29 -23 -27 c 9 - 392 722 l 2 - 397 730 425 743 443 743 c 0 - 449 743 453 740 455 737 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/space.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/space.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/space.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/space.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: space -Encoding: 32 32 0 -Width: 215 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/sterling.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/sterling.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/sterling.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/sterling.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: sterling -Encoding: 163 163 98 -Width: 463 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 100<225 342> 300 41<73 359> 571 55<282 383> -VStem: 121 102<202 449> -LayerCount: 2 -Fore -SplineSet -82 341 m 1 - 97 341 360 341 370 341 c 1 - 381 330 358 304 352 300 c 1 - 56 300 l 17 - 52 306 74 341 82 341 c 1 -222 264 m 0 - 207 191 162 141 135 119 c 1 - 154 129 177 134 198 134 c 0 - 232 134 278 92 325 92 c 0 - 359 92 378 123 388 138 c 1 - 392 140 399 136 402 131 c 24 - 406 125 404 118 403 112 c 1 - 387 81 327 -8 256 -8 c 0 - 194 -8 158 50 91 50 c 0 - 74 50 29 10 10 -6 c 1 - 3 -6 -2 12 0 21 c 1 - 16 43 59 79 74 100 c 1 - 95 136 108 179 118 227 c 0 - 128 276 115 355 121 382 c 0 - 156 554 282 626 367 626 c 0 - 399 626 408 614 423 602 c 1 - 433 581 414 522 376 522 c 0 - 333 522 338 571 299 571 c 0 - 263 571 240 515 228 448 c 0 - 216 378 233 319 222 264 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/summation.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/summation.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/summation.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/summation.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: summation -Encoding: 8721 8721 232 -Width: 557 -Flags: W -HStem: 2 57<157 415> 2 28<-7 27> 594 47<295 473> 612 28<110 136> -VStem: 518 33<494 538> -LayerCount: 2 -Fore -SplineSet -453 0 m 1xa8 - 354 0 184 2 101 2 c 0 - 40 2 -8 -3 -8 -3 c 1 - -9 -1 -10 7 -8 15 c 0 - -6 23 -4 30 -2 30 c 0 - 8 30 42 51 53 63 c 2 - 265 299 l 2 - 270 304 271 310 269 314 c 0 - 261 334 203 478 152 578 c 0 - 143 595 122 612 111 612 c 0 - 109 612 109 619 110 626 c 0 - 111 633 115 641 117 643 c 1 - 117 643 162 641 223 641 c 0x58 - 307 641 453 646 552 646 c 1 - 549 597 551 543 551 499 c 1 - 548 496 536 494 529 494 c 0 - 522 494 519 496 518 501 c 0 - 504 550 468 594 408 594 c 27 - 388 594 382 594 357 594 c 0 - 325 594 298 589 295 581 c 1 - 399 352 l 1 - 400 346 400 339 399 333 c 0 - 398 328 396 324 393 321 c 0 - 296 221 160 82 157 69 c 0 - 156 62 158 59 220 59 c 0 - 251 59 253 59 277 59 c 0 - 324 59 382 63 411 78 c 0 - 431 88 463 122 487 166 c 0 - 489 170 494 172 501 172 c 0 - 510 172 525 169 527 166 c 1 - 500 113 468 43 453 0 c 1xa8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: tbar -Encoding: 359 359 398 -Width: 342 -Flags: W -HStem: -8 84<117 216> 272 38<25 303> 369 45<66 129 252 340> -VStem: 72 120<33 186> -LayerCount: 2 -Fore -SplineSet -33 311 m 1 - 60 311 288 311 301 311 c 0 - 305 311 307 307 306 303 c 0 - 305 298 300 279 295 272 c 1 - 268 272 39 272 26 272 c 0 - 22 272 22 279 23 283 c 0 - 24 288 26 304 33 311 c 1 -EndSplineSet -Refer: 84 116 N 1 0 0 1 23 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: Tbar -Encoding: 358 358 397 -Width: 582 -Flags: W -HStem: -4 36<114 179 320 371> 297 38<139 472> 599 43<157 293 420 547> -VStem: 578 35<472 559> -LayerCount: 2 -Fore -SplineSet -147 335 m 1 - 174 335 457 335 470 335 c 0 - 474 335 476 331 475 327 c 0 - 474 322 469 304 464 297 c 1 - 437 297 154 297 141 297 c 0 - 137 297 137 304 138 308 c 0 - 139 313 140 328 147 335 c 1 -EndSplineSet -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: tcaron -Encoding: 357 357 355 -Width: 298 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 789 N 1 0 0 1 208 14 2 -Refer: 84 116 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Tcaron -Encoding: 356 356 354 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 0 6 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/t.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/t.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/t.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/t.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: t -Encoding: 116 116 84 -Width: 320 -Flags: W -HStem: -8 84<94 193> 369 45<43 106 229 317> -VStem: 49 120<33 186> -LayerCount: 2 -Fore -SplineSet -115 414 m 1 - 130 492 l 1 - 141 506 229 557 237 557 c 0 - 243 557 250 554 254 551 c 1 - 229 414 l 1 - 314 414 l 2 - 318 414 318 407 318 402 c 0 - 318 392 314 377 309 369 c 1 - 220 369 l 1 - 173 129 l 2 - 172 123 169 102 169 97 c 0 - 169 88 173 76 183 76 c 0 - 204 76 249 130 252 136 c 1 - 259 136 266 115 266 109 c 1 - 249 78 163 -8 110 -8 c 0 - 78 -8 49 12 49 62 c 0 - 49 76 55 107 58 120 c 2 - 106 369 l 1 - 34 369 l 2 - 33 369 32 370 32 372 c 0 - 32 382 57 414 79 414 c 2 - 115 414 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_T.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_T.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_T.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_T.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: T -Encoding: 84 84 52 -Width: 582 -Flags: W -HStem: -4 36<114 179 320 371> 599 43<157 293 420 547> -VStem: 578 35<472 559> -LayerCount: 2 -Fore -SplineSet -355 642 m 0 - 516 642 l 0 - 581 642 596 660 613 660 c 0 - 620 660 621 659 624 657 c 1 - 613 478 l 1 - 610 475 594 471 586 471 c 0 - 581 471 578 472 578 476 c 0 - 581 539 551 599 505 599 c 2 - 420 599 l 1 - 331 142 l 2 - 323 100 316 70 320 50 c 0 - 322 37 363 33 375 32 c 1 - 378 25 373 2 368 -4 c 1 - 334 0 278 3 240 3 c 0 - 202 3 146 0 110 -4 c 1 - 107 2 111 25 117 32 c 1 - 129 33 172 37 179 50 c 0 - 190 70 196 100 204 142 c 2 - 293 599 l 1 - 208 599 l 2 - 162 599 108 539 87 476 c 0 - 85 472 82 471 77 471 c 0 - 69 471 55 475 53 478 c 1 - 111 657 l 1 - 115 659 116 660 123 660 c 0 - 140 660 149 642 214 642 c 0 - 355 642 l 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_T_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_T_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_T_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_T_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: T_h -Encoding: 65575 -1 462 -Width: 1000 -VWidth: 0 -Flags: W -HStem: -8 84<805 904> -4 36<114 179 320 371> 331 107<773 879> 599 43<157 293 420 562> -VStem: 760 120<33 187> 803 119<215 389> -LayerCount: 2 -Fore -SplineSet -624 521 m 2xb4 - 635 576 607 599 571 599 c 2 - 420 599 l 1 - 331 142 l 2 - 323 100 316 70 320 50 c 0 - 322 37 363 33 375 32 c 1 - 378 25 373 2 368 -4 c 1 - 334 0 278 3 240 3 c 0 - 202 3 146 0 110 -4 c 1 - 107 2 111 25 117 32 c 1 - 129 33 172 37 179 50 c 0 - 190 70 196 100 204 142 c 2 - 293 599 l 1 - 208 599 l 2 - 162 599 108 539 87 476 c 0 - 85 472 82 471 77 471 c 0 - 69 471 55 475 53 478 c 1 - 111 657 l 1 - 115 659 116 660 123 660 c 0 - 140 660 149 642 214 642 c 0 - 355 642 l 2 - 507 642 668 643 776 685 c 1 - 781 682 782 672 782 666 c 0 - 782 658 753 602 750 588 c 0 - 750 588 696 316 694 307 c 0 - 691 295 689 278 687 268 c 1 - 716 334 803 438 852 438 c 3 - 907 438 922 410 922 354 c 0x74 - 922 321 907 253 902 228 c 2 - 884 129 l 2 - 883 125 880 102 880 97 c 0 - 880 88 884 76 894 76 c 0 - 915 76 960 130 963 136 c 1 - 970 136 977 115 977 109 c 1 - 960 78 874 -8 821 -8 c 0 - 789 -8 760 12 760 62 c 0xb8 - 760 76 767 112 769 120 c 1 - 791 236 l 2 - 794 248 803 301 803 311 c 0 - 803 321 798 331 787 331 c 0 - 759 331 682 213 655 89 c 10 - 636 0 l 17 - 626 -3 592 -6 581 -6 c 0 - 570 -6 535 -3 523 0 c 1 - 624 521 l 2xb4 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" T h -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: thorn -Encoding: 254 254 188 -Width: 485 -Flags: W -HStem: -214 31<-51 -9> -205 29<135 180> -5 43<173 245> 356 82<292 394> 618 28<95 152> 661 20G<264 277> -VStem: 154 126<544 665> 333 126<216 352> -LayerCount: 2 -Fore -SplineSet -267 589 m 2xbf - 264 571 225 373 223 364 c 1 - 250 394 313 438 363 438 c 0 - 425 438 459 388 459 320 c 0 - 459 156 295 -5 176 -5 c 0 - 170 -5 158 -4 149 0 c 1 - 124 -123 l 2 - 122 -132 121 -140 121 -150 c 0 - 121 -155 125 -170 135 -173 c 0 - 152 -177 178 -176 181 -176 c 0 - 185 -177 182 -204 177 -206 c 1 - 164 -206 153 -205 142 -205 c 0x7f - 92 -205 7 -207 -50 -214 c 1 - -55 -213 -53 -186 -48 -183 c 1 - -30 -183 -18 -178 -9 -167 c 0 - -2 -158 2 -147 7 -125 c 2 - 80 227 l 1 - 33 180 l 1 - 29 185 26 199 26 206 c 0 - 26 217 35 228 41 233 c 2 - 91 280 l 1 - 145 548 l 2 - 149 566 154 589 154 600 c 0 - 154 619 111 618 95 618 c 1 - 92 622 95 642 99 646 c 1 - 153 651 253 673 274 681 c 1 - 279 678 280 668 280 662 c 0 - 280 654 272 612 267 589 c 2xbf -295 356 m 0 - 266 356 236 336 215 315 c 1 - 210 289 181 146 181 146 c 2 - 166 71 178 38 203 38 c 0 - 272 38 333 210 333 292 c 0 - 333 324 326 356 295 356 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Thorn -Encoding: 222 222 156 -Width: 542 -Flags: W -HStem: -4 36<-5 60 202 253> 132 43<248 329> 461 40<286 366> 608 36<116 166 305 371> -LayerCount: 2 -Fore -SplineSet -355 501 m 0 - 471 501 552 414 531 310 c 0 - 509 193 390 132 298 132 c 0 - 266 132 253 143 248 150 c 0 - 245 154 243 167 243 172 c 0 - 243 176 245 179 247 179 c 1 - 256 176 262 175 276 175 c 0 - 321 175 380 232 393 296 c 0 - 410 383 385 461 324 461 c 0 - 303 461 286 457 277 445 c 0 - 269 435 267 418 261 390 c 2 - 213 142 l 2 - 205 100 198 70 202 50 c 0 - 204 37 245 33 257 32 c 1 - 260 25 255 2 250 -4 c 1 - 216 0 159 3 121 3 c 0 - 83 3 27 0 -9 -4 c 1 - -12 2 -7 25 -1 32 c 1 - 11 33 53 37 60 50 c 0 - 71 70 77 100 85 142 c 2 - 155 501 l 2 - 163 543 170 573 166 593 c 0 - 164 606 122 607 110 608 c 1 - 107 615 113 639 118 645 c 1 - 158 642 209 642 247 642 c 0 - 285 642 340 644 376 648 c 1 - 379 642 375 619 369 612 c 1 - 357 611 315 608 308 595 c 0 - 298 577 291 546 284 508 c 0 - 284 508 284 497 286 497 c 0 - 288 497 289 498 291 498 c 0 - 305 501 334 501 355 501 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: three -Encoding: 51 51 19 -Width: 514 -Flags: W -HStem: -5 37<180 270> 308 31<197 243> 550 77<263 365> -VStem: 52 108<49 111> 333 128<141 288> 353 111<434 526> -LayerCount: 2 -Fore -SplineSet -342 627 m 0xf4 - 388 627 464 601 464 503 c 0xf4 - 464 419 381 374 344 363 c 1 - 399 356 461 303 461 231 c 0 - 461 81 302 -5 192 -5 c 0 - 127 -5 83 12 61 28 c 1 - 57 33 52 47 52 58 c 0 - 52 111 88 123 109 123 c 0 - 144 123 151 95 160 76 c 0 - 172 53 198 32 222 32 c 0 - 278 32 333 101 333 211 c 0xf8 - 333 276 309 313 243 313 c 0 - 229 313 213 311 201 308 c 1 - 198 313 197 320 197 325 c 0 - 197 329 199 336 201 339 c 1 - 264 347 353 389 353 463 c 0 - 353 522 318 550 277 550 c 0 - 222 550 174 487 165 479 c 1 - 157 479 146 492 146 501 c 1 - 174 550 264 627 342 627 c 0xf4 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" three.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" three.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: three.onum -Encoding: 65555 -1 408 -Width: 404 -Flags: W -HStem: -179 50<48 171> 382 70<231 333> -LayerCount: 2 -Fore -SplineSet -312 452 m 0 - 353 452 414 432 398 352 c 0 - 384 283 328 236 275 192 c 1 - 310 192 416 165 396 62 c 0 - 370 -76 181 -179 65 -179 c 0 - 30 -179 8 -169 -6 -162 c 1 - -8 -155 -10 -143 -8 -134 c 0 - -2 -106 29 -80 50 -80 c 0 - 89 -80 78 -129 123 -129 c 0 - 181 -129 249 -67 266 21 c 0 - 281 94 254 137 193 137 c 0 - 180 137 164 131 144 125 c 1 - 138 128 137 138 139 146 c 0 - 140 150 143 164 146 169 c 1 - 206 192 268 230 285 314 c 0 - 294 358 267 382 244 382 c 0 - 206 382 180 349 166 338 c 0 - 162 335 160 334 158 334 c 0 - 151 334 146 347 148 356 c 0 - 148 358 149 359 150 360 c 0 - 193 408 241 452 312 452 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/three.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/three.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: three.prop -Encoding: 65579 -1 466 -Width: 464 -Flags: HW -LayerCount: 2 -Fore -Refer: 19 51 N 1 0 0 1 -50 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/threequarters.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/threequarters.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/threequarters.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/threequarters.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: threequarters -Encoding: 190 190 124 -Width: 695 -Flags: W -HStem: -1 21G<155 195 521 539> 107 41<421 513 599 635> 239 30<99 182> 433 23<138 170> 580 49<164 248> -VStem: 220 91<320 425> 236 78<503 575> -LayerCount: 2 -Fore -SplineSet -631 391 m 0xf8 - 637 391 644 380 643 375 c 2 - 599 148 l 25 - 632 148 l 18 - 636 148 637 144 637 139 c 0 - 637 128 630 113 626 107 c 1 - 592 107 l 25 - 571 3 l 1 - 571 3 549 -1 528 -1 c 0 - 514 -1 492 1 493 5 c 2 - 513 107 l 25 - 361 107 l 1 - 357 109 355 118 356 122 c 1 - 613 381 l 2 - 619 387 627 391 631 391 c 0xf8 -543 275 m 25 - 421 148 l 25 - 519 148 l 25 - 543 275 l 25 -232 629 m 0 - 264 629 314 616 314 555 c 0xfa - 314 498 249 470 228 466 c 1 - 246 465 310 457 310 385 c 0 - 310 287 188 239 117 239 c 0 - 81 239 52 251 42 262 c 1 - 39 269 37 281 39 291 c 0 - 42 308 57 330 79 330 c 0 - 97 330 105 315 113 296 c 0 - 120 278 132 270 147 270 c 0 - 181 270 220 312 220 363 c 0xfc - 220 396 207 436 170 436 c 0 - 166 436 149 436 139 433 c 1 - 138 436 138 438 138 443 c 0 - 138 447 138 454 139 456 c 1 - 168 460 236 478 236 539 c 0xfa - 236 560 225 580 192 580 c 0 - 159 580 126 540 121 535 c 1 - 117 536 104 546 108 556 c 1 - 140 599 188 629 232 629 c 0 -622 618 m 2 - 181 -8 l 1 - 181 -8 155 -7 155 4 c 0 - 155 6 156 8 157 10 c 26 - 598 636 l 1 - 598 636 623 634 623 623 c 0 - 623 621 623 619 622 618 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: tildecomb.cap -Encoding: 65540 -1 263 -Width: 365 -GlyphClass: 4 -Flags: W -HStem: 711 49<347 454> 752 49<216 323> -VStem: 182 307 -LayerCount: 2 -Fore -SplineSet -279 801 m 0x60 - 303 801 320 798 341 785 c 0 - 362 772 383 760 414 760 c 0xa0 - 448 760 473 793 479 801 c 1x60 - 482 800 488 795 488 787 c 0 - 488 772 479 757 470 747 c 0 - 445 721 420 711 391 711 c 0xa0 - 367 711 350 714 329 727 c 0 - 308 740 287 752 256 752 c 0x60 - 222 752 196 719 190 711 c 1xa0 - 187 712 182 717 182 725 c 0 - 182 740 191 755 200 765 c 0 - 225 791 250 801 279 801 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tildecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: tildecomb -Encoding: 771 771 243 -Width: 0 -VWidth: 971 -GlyphClass: 4 -Flags: W -HStem: 479 49<-222 -132> 521 49<-349 -256> -VStem: -387 294 -LayerCount: 2 -Fore -SplineSet --287 569 m 0x60 - -264 569 -247 563 -230 554 c 0 - -209 543 -194 527 -165 527 c 0xa0 - -133 527 -107 561 -100 569 c 1x60 - -97 568 -92 566 -93 558 c 0 - -95 542 -105 526 -114 516 c 0 - -140 489 -165 479 -192 479 c 0xa0 - -215 479 -230 484 -248 494 c 0 - -268 505 -286 521 -315 521 c 0x60 - -347 521 -374 487 -381 479 c 1xa0 - -384 480 -388 483 -387 491 c 0 - -385 507 -375 522 -366 532 c 0 - -340 559 -314 569 -287 569 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/tilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/tilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: tilde -Encoding: 732 732 485 -Width: 333 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 406 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: two -Encoding: 50 50 18 -Width: 514 -Flags: W -HStem: 0 107<165 379> 544 83<256 370> -VStem: 344 139<393 520> -LayerCount: 2 -Fore -SplineSet -482 479 m 0 - 482 395 425 330 350 264 c 0 - 261 186 163 107 165 107 c 9 - 333 107 l 2 - 385 107 404 141 416 172 c 0 - 418 177 423 181 431 181 c 0 - 438 181 443 177 447 174 c 1 - 426 125 378 18 370 0 c 9 - 370 0 45 0 38 0 c 1 - 34 0 30 9 31 21 c 1 - 85 70 196 187 251 254 c 0 - 312 328 344 396 344 457 c 0 - 344 508 316 544 263 544 c 0 - 206 544 161 490 154 481 c 1 - 145 481 137 493 136 501 c 1 - 147 525 239 627 334 627 c 0 - 405 627 482 574 482 479 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" two.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" two.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: two.onum -Encoding: 65554 -1 407 -Width: 414 -Flags: W -HStem: 0 100<175 358> 371 81<215 334> -LayerCount: 2 -Fore -SplineSet -291 452 m 0 - 378 452 427 394 413 322 c 0 - 405 280 369 252 360 245 c 0 - 294 192 229 148 175 110 c 0 - 172 107 170 100 175 100 c 2 - 302 100 l 2 - 356 100 368 133 391 171 c 0 - 394 176 395 178 401 178 c 0 - 405 178 424 175 427 170 c 1 - 406 120 373 49 354 0 c 1 - 215 1 l 1 - 215 1 36 0 29 0 c 1 - 22 3 24 13 26 23 c 1 - 149 130 267 230 280 296 c 0 - 288 335 271 371 222 371 c 0 - 157 371 106 288 99 288 c 1 - 88 288 82 307 84 316 c 0 - 86 324 87 328 88 329 c 0 - 114 364 211 452 291 452 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/two.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/two.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: two.prop -Encoding: 65578 -1 465 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 18 50 N 1 0 0 1 -47 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uacute -Encoding: 250 250 184 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 585 10 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uacute -Encoding: 218 218 152 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 264 -16 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ubreve -Encoding: 365 365 361 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 532 20 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ubreve -Encoding: 364 364 360 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 -1 N 1 0 0 1 190 22 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ucircumflex -Encoding: 251 251 185 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 545 1 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ucircumflex -Encoding: 219 219 153 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 139 25 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: udieresis -Encoding: 252 252 186 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 517 21 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Udieresis -Encoding: 220 220 154 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 165 12 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/u.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/u.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/u.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/u.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: u -Encoding: 117 117 85 -Width: 520 -Flags: W -HStem: -8 107<98 210> -8 84<321 420> 354 84<79 178> -VStem: 62 119<41 215> 104 119<242 396> 275 120<33 192> -LayerCount: 2 -Fore -SplineSet -282 110 m 0x74 - 286 131 291 151 294 162 c 1 - 257 83 165 -8 123 -8 c 3xb4 - 73 -8 62 16 62 76 c 0x74 - 62 107 75 174 80 199 c 8 - 88 239 94 262 100 302 c 18 - 101 306 104 329 104 334 c 0 - 104 343 100 354 90 354 c 0 - 69 354 24 301 21 295 c 1 - 14 295 7 315 7 321 c 1 - 24 352 105 438 158 438 c 0 - 197 438 224 414 224 369 c 0x6c - 224 355 217 321 215 311 c 0 - 213 299 192 194 192 194 c 2 - 190 182 181 130 181 120 c 0 - 181 110 185 100 196 100 c 0xb4 - 224 100 306 243 330 363 c 10 - 344 431 l 17 - 354 434 387 437 398 437 c 0 - 409 437 444 434 456 431 c 1 - 399 129 l 2 - 398 124 396 102 396 97 c 0 - 396 88 399 76 409 76 c 0 - 430 76 476 130 479 136 c 1 - 486 136 492 115 492 109 c 1 - 475 78 390 -8 337 -8 c 0 - 305 -8 275 12 275 62 c 0 - 275 69 278 89 282 110 c 0x74 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_U.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_U.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_U.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_U.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: U -Encoding: 85 85 53 -Width: 675 -Flags: W -HStem: -9 70<263 389> 610 36<97 148 289 354 517 574 664 736> -LayerCount: 2 -Fore -SplineSet -229 640 m 0 - 267 640 322 642 358 646 c 1 - 361 640 357 617 351 610 c 1 - 339 609 296 606 289 593 c 0 - 278 573 272 543 264 501 c 2 - 230 322 l 2 - 217 256 209 207 220 155 c 0 - 238 69 305 62 340 62 c 0 - 412 62 501 131 534 302 c 2 - 566 468 l 2 - 574 510 581 567 577 587 c 0 - 573 606 525 609 513 610 c 1 - 510 617 515 640 520 646 c 1 - 562 642 590 640 632 640 c 0 - 672 640 702 644 740 646 c 1 - 743 640 739 617 733 610 c 1 - 721 609 671 608 659 587 c 0 - 648 567 630 511 622 469 c 2 - 585 279 l 2 - 546 80 412 -9 281 -9 c 0 - 205 -9 138 18 106 77 c 0 - 80 125 77 192 97 294 c 2 - 137 501 l 2 - 145 543 152 573 148 593 c 0 - 146 606 105 609 93 610 c 1 - 90 617 95 640 100 646 c 1 - 134 642 191 640 229 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ugrave -Encoding: 249 249 183 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 511 10 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ugrave -Encoding: 217 217 151 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 99 -16 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: uhorn -Encoding: 432 432 689 -Width: 520 -Flags: W -HStem: -8 107<98 210> -8 84<321 420> 354 84<79 178> -VStem: 62 119<41 215> 104 119<242 396> 275 120<33 193> -LayerCount: 2 -Fore -SplineSet -282 110 m 0x74 - 286 131 291 151 294 162 c 1 - 257 83 165 -8 123 -8 c 0xb4 - 73 -8 62 16 62 76 c 0x74 - 62 107 75 174 80 199 c 0 - 88 239 94 262 100 302 c 0 - 101 306 104 329 104 334 c 0 - 104 343 100 354 90 354 c 0 - 69 354 24 301 21 295 c 1 - 14 295 7 315 7 321 c 1 - 24 352 105 438 158 438 c 0 - 197 438 224 414 224 369 c 0x6c - 224 355 217 321 215 311 c 0 - 213 299 192 194 192 194 c 2 - 190 182 181 130 181 120 c 0 - 181 110 185 100 196 100 c 0xb4 - 224 100 306 243 330 363 c 2 - 344 431 l 1 - 354 434 387 437 398 437 c 0 - 432 437 458 426 480 446 c 0 - 496 460 476 470 481 501 c 0 - 486 532 522 550 558 529 c 1 - 561 522 563 510 563 502 c 0 - 564 441 513 411 464 399 c 0 - 453 396 450 398 448 386 c 2 - 399 129 l 2 - 398 124 396 102 396 97 c 0 - 396 88 399 76 409 76 c 0 - 430 76 476 130 479 136 c 1 - 486 136 492 115 492 109 c 1 - 475 78 390 -8 337 -8 c 0 - 305 -8 275 12 275 62 c 0 - 275 69 278 89 282 110 c 0x74 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: Uhorn -Encoding: 431 431 688 -Width: 675 -Flags: W -HStem: -9 70<263 389> 610 36<97 148 289 354 517 574> -VStem: 699 89<655 743> -LayerCount: 2 -Fore -SplineSet -229 640 m 0 - 267 640 322 642 358 646 c 1 - 361 640 357 617 351 610 c 1 - 339 609 296 606 289 593 c 0 - 278 573 272 543 264 501 c 2 - 230 322 l 2 - 217 256 209 207 220 155 c 0 - 238 69 305 62 340 62 c 0 - 412 62 501 131 534 302 c 2 - 566 468 l 2 - 574 510 581 567 577 587 c 0 - 573 606 525 609 513 610 c 1 - 510 617 515 640 520 646 c 1 - 562 642 590 641 632 641 c 0 - 671 641 693 643 717 660 c 0 - 735 672 694 684 699 715 c 0 - 704 746 753 763 779 746 c 1 - 782 739 788 724 788 716 c 0 - 789 674 764 646 733 628 c 0 - 707 613 673 612 659 587 c 0 - 648 567 630 511 622 469 c 2 - 585 279 l 2 - 546 80 412 -9 281 -9 c 0 - 205 -9 138 18 106 77 c 0 - 80 125 77 192 97 294 c 2 - 137 501 l 2 - 145 543 152 573 148 593 c 0 - 146 606 105 609 93 610 c 1 - 90 617 95 640 100 646 c 1 - 134 642 191 640 229 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uhungarumlaut -Encoding: 369 369 365 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 0 0 2 -Refer: 252 779 N 1 0 0 1 579 10 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uhungarumlaut -Encoding: 368 368 364 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 174 -16 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: umacron -Encoding: 363 363 359 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 539 20 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Umacron -Encoding: 362 362 358 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 151 167 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/underscore.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/underscore.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/underscore.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/underscore.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: underscore -Encoding: 95 95 63 -Width: 462 -Flags: W -HStem: -44 61<-28 383> -LayerCount: 2 -Fore -SplineSet --35 -34 m 1 - -35 -34 -26 17 -12 17 c 2 - 396 17 l 2 - 399 17 398 13 398 9 c 0 - 398 3 395 -13 383 -38 c 0 - 380 -44 374 -44 374 -44 c 1 - -30 -44 l 1 - -30 -44 -37 -44 -35 -34 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00A0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00A0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00A0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00A0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni00A0 -Encoding: 160 160 95 -Width: 215 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00AD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00AD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00AD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00AD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni00AD -Encoding: 173 173 715 -Width: 281 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 197 8208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,67 +0,0 @@ -StartChar: uni00B2 -Encoding: 178 178 112 -Width: 331 -Flags: W -HStem: 248 74<142 261> 575 54<166 266> -VStem: 240 88<477 569> -LayerCount: 2 -Back -SplineSet -365.33203125 539.94140625 m 0 - 365.33203125 516.33984375 358.310546875 494.393554688 344.268554688 474.10546875 c 0 - 330.2265625 453.81640625 309.799804688 432.076171875 282.98828125 408.88671875 c 0 - 275.548828125 402.452148438 267.651367188 395.708007812 259.297851562 388.654296875 c 0 - 250.944335938 381.600585938 243.15625 375.08203125 235.93359375 369.09765625 c 0 - 228.7109375 363.11328125 221.565429688 357.220703125 214.497070312 351.41796875 c 0 - 207.427734375 345.616210938 201.154296875 340.486328125 195.676757812 336.030273438 c 0 - 190.198242188 331.573242188 185.350585938 327.625976562 181.134765625 324.186523438 c 0 - 176.91796875 320.747070312 173.7265625 318.118164062 171.559570312 316.30078125 c 0 - 169.393554688 314.483398438 168.391601562 313.57421875 168.5546875 313.57421875 c 2 - 272.6953125 313.57421875 l 2 - 287.15625 313.57421875 298.220703125 317.166992188 305.888671875 324.3515625 c 0 - 313.556640625 331.537109375 319.647460938 341.049804688 324.16015625 352.890625 c 0 - 325.521484375 356.46484375 328.548828125 358.251953125 333.2421875 358.251953125 c 0 - 336.336914062 358.251953125 339.767578125 356.862304688 343.53515625 354.08203125 c 1 - 342.766601562 352.283203125 326.823242188 316.938476562 295.703125 248.046875 c 1 - 89.84375 248.046875 l 2 - 88.576171875 248.046875 87.4794921875 249.370117188 86.5546875 252.016601562 c 0 - 85.6298828125 254.6640625 85.3134765625 257.708984375 85.60546875 261.15234375 c 1 - 102.861328125 276.5859375 125.736328125 299.077148438 154.231445312 328.624023438 c 0 - 182.7265625 358.171875 205.26171875 382.940429688 221.8359375 402.9296875 c 0 - 260.182617188 449.176757812 279.35546875 490.478515625 279.35546875 526.8359375 c 0 - 279.35546875 542.758789062 274.96875 555.575195312 266.1953125 565.287109375 c 0 - 257.420898438 574.998046875 245.056640625 579.853515625 229.1015625 579.853515625 c 0 - 220.993164062 579.853515625 212.885742188 578.215820312 204.779296875 574.94140625 c 0 - 196.672851562 571.666992188 189.5859375 567.5234375 183.520507812 562.510742188 c 0 - 177.455078125 557.498046875 172.829101562 553.407226562 169.642578125 550.23828125 c 0 - 166.45703125 547.069335938 163.874023438 544.232421875 161.89453125 541.728515625 c 1 - 159.321289062 541.728515625 156.842773438 543.068359375 154.458984375 545.749023438 c 0 - 152.07421875 548.4296875 150.71875 551.061523438 150.390625 553.642578125 c 1 - 152.3046875 557.923828125 156.997070312 564.06640625 164.466796875 572.072265625 c 0 - 171.936523438 580.077148438 181.114257812 588.556640625 191.998046875 597.510742188 c 0 - 202.8828125 606.46484375 215.7421875 614.19921875 230.577148438 620.71484375 c 0 - 245.411132812 627.23046875 259.65234375 630.48828125 273.30078125 630.48828125 c 0 - 297.178710938 630.48828125 318.487304688 622.228515625 337.224609375 605.708007812 c 0 - 355.962890625 589.1875 365.33203125 567.264648438 365.33203125 539.94140625 c 0 -EndSplineSet -Fore -SplineSet -328 540 m 0 - 328 486 271 428 230 394 c 0 - 198 368 181 348 142 322 c 1 - 231 322 l 2 - 261 322 273 350 287 371 c 0 - 289 374 292 376 296 376 c 0 - 300 376 308 375 310 373 c 1 - 298 345 257 259 251 248 c 9 - 45 248 l 1 - 43 251 41 259 41 262 c 1 - 95 314 120 338 176 399 c 0 - 216 443 240 486 240 524 c 0 - 240 555 225 575 194 575 c 0 - 154 575 127 539 121 534 c 1 - 118 534 106 540 108 552 c 1 - 123 574 171 629 234 629 c 0 - 297 629 328 585 328 540 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni00B3 -Encoding: 179 179 113 -Width: 330 -Flags: W -HStem: 239 30<104 187> 433 23<142 174> 580 49<169 253> -VStem: 224 91<320 425> 241 78<503 575> -LayerCount: 2 -Fore -SplineSet -237 629 m 0xe8 - 269 629 319 616 319 555 c 0xe8 - 319 498 254 470 233 466 c 1 - 251 465 315 457 315 385 c 0 - 315 287 193 239 122 239 c 0 - 86 239 57 251 47 262 c 1 - 44 269 42 281 44 291 c 0 - 47 308 62 330 84 330 c 0 - 102 330 110 315 118 296 c 0 - 125 278 137 270 152 270 c 0 - 186 270 224 312 224 363 c 0xf0 - 224 396 212 436 175 436 c 0 - 171 436 154 436 144 433 c 1 - 143 436 142 438 142 443 c 0 - 142 447 143 454 144 456 c 1 - 173 460 241 478 241 539 c 0 - 241 560 230 580 197 580 c 0 - 164 580 131 540 126 535 c 1 - 122 536 109 546 113 556 c 1 - 145 599 193 629 237 629 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni00B9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni00B9 -Encoding: 185 185 119 -Width: 275 -Flags: W -HStem: 246 25<54 102 200 238> 606 20G<252 255> -VStem: 52 212 -LayerCount: 2 -Fore -SplineSet -154 499 m 2 - 159 525 156 545 145 545 c 0 - 137 545 112 534 101 529 c 1 - 97 530 93 541 95 549 c 0 - 95 550 96 555 97 556 c 1 - 167 585 250 626 252 626 c 2 - 253 626 l 2 - 257 626 264 609 264 606 c 1 - 259 595 246 561 238 523 c 2 - 202 338 l 2 - 199 320 195 291 200 284 c 0 - 206 275 236 271 241 271 c 1 - 243 271 237 247 236 246 c 1 - 215 247 166 250 145 250 c 0 - 124 250 74 247 52 246 c 1 - 50 249 54 271 57 271 c 1 - 64 271 95 277 103 285 c 0 - 109 291 121 328 123 339 c 2 - 154 499 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0122.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0122.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0122.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0122.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0122 -Encoding: 290 290 303 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 569 0 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0123.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0123.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0123.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0123.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0123 -Encoding: 291 291 304 -Width: 433 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 786 N 1 0 0 1 86 45 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0136.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0136.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0136.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0136.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0136 -Encoding: 310 310 316 -Width: 671 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 564 0 2 -Refer: 43 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0137.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0137.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0137.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0137.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0137 -Encoding: 311 311 317 -Width: 491 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 433 0 2 -Refer: 75 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013B -Encoding: 315 315 320 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 471 0 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni013C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013C -Encoding: 316 316 321 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 332 0 2 -Refer: 76 108 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0145.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0145.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0145.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0145.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0145 -Encoding: 325 325 328 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 539 0 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0146.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0146.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0146.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0146.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0146 -Encoding: 326 326 329 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 462 0 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0156.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0156.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0156.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0156.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0156 -Encoding: 342 342 340 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 499 0 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0157.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0157.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0157.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0157.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0157 -Encoding: 343 343 341 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 342 0 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0162.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0162.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0162.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0162.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0162 -Encoding: 354 354 352 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 -1 N 1 0 0 1 61 8 2 -Refer: 52 84 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0163.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0163.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0163.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0163.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0163 -Encoding: 355 355 353 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 340 4 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0218.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0218.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0218.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0218.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0218 -Encoding: 536 536 401 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 408 0 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0219.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0219.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0219.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0219.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0219 -Encoding: 537 537 402 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 348 0 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021A -Encoding: 538 538 403 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 463 0 2 -Refer: 52 84 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni021B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021B -Encoding: 539 539 404 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 806 N 1 0 0 1 333 0 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0237.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0237.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0237.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0237.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: uni0237 -Encoding: 567 567 391 -Width: 279 -VWidth: 0 -Flags: W -HStem: -213 21<-83 -77> 354 84<93 191> -VStem: 118 119<241 396> -LayerCount: 2 -Fore -SplineSet -113 302 m 2 - 114 306 118 329 118 334 c 0 - 118 343 114 354 104 354 c 0 - 83 354 37 301 34 295 c 1 - 27 295 21 315 21 321 c 1 - 38 352 119 438 172 438 c 0 - 211 438 237 414 237 369 c 0 - 237 355 231 321 229 311 c 0 - 229 311 206 190 191 117 c 0 - 175 35 146 -19 106 -73 c 0 - 64 -129 -50 -205 -77 -213 c 1 - -82 -213 -86 -200 -86 -191 c 1 - 17 -112 46 -48 74 98 c 0 - 113 302 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BB -Encoding: 699 699 415 -Width: 181 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 786 N 1 0 0 1 -82 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BC -Encoding: 700 700 416 -Width: 191 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 789 N 1 0 0 1 -73 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni02BE -Encoding: 702 702 420 -Width: 182 -Flags: W -HStem: 436 38<20 69> 647 37<60 95> -VStem: 15 148 -LayerCount: 2 -Fore -SplineSet -63 685 m 1 - 144 685 173 614 163 561 c 0 - 151 502 94 436 15 436 c 1 - 14 446 17 464 22 474 c 1 - 65 474 99 518 107 561 c 24 - 116 605 99 647 56 647 c 1 - 55 657 57 673 63 685 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02BF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni02BF -Encoding: 703 703 421 -Width: 182 -Flags: W -HStem: 436 38<89 122> 647 37<115 163> -VStem: 20 148 -LayerCount: 2 -Fore -SplineSet -168 685 m 1 - 170 673 165 657 160 647 c 1 - 117 647 84 605 75 561 c 24 - 66 518 84 474 127 474 c 1 - 128 464 124 446 119 436 c 1 - 40 436 8 502 20 561 c 0 - 30 614 87 685 168 685 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02C0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02C0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02C0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni02C0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02C0 -Encoding: 704 704 417 -Width: 220 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 352 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0302.cap -Encoding: 65538 -1 261 -Width: 344 -GlyphClass: 4 -Flags: W -HStem: 688 137 -VStem: 178 253 -LayerCount: 2 -Fore -SplineSet -326 824 m 0 - 330 824 333 819 337 814 c 0 - 358 786 409 726 431 703 c 1 - 430 695 425 690 419 688 c 1 - 408 691 339 726 312 746 c 1 - 278 726 199 692 184 688 c 1 - 180 690 177 697 178 703 c 1 - 232 745 294 797 312 814 c 0 - 318 820 323 824 326 824 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0302.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0302 -Encoding: 770 770 242 -Width: 0 -VWidth: 998 -GlyphClass: 4 -Flags: W -HStem: 479 164 -VStem: -364 216 -LayerCount: 2 -Fore -SplineSet --231 643 m 0 - -228 643 -225 641 -221 633 c 0 - -190 572 -156 516 -148 501 c 1 - -150 491 -155 481 -160 479 c 1 - -177 493 -225 534 -246 557 c 1 - -276 534 -339 491 -360 479 c 1 - -364 481 -366 491 -364 501 c 1 - -353 512 -289 581 -244 633 c 0 - -238 639 -235 643 -231 643 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0304.cap -Encoding: 65541 -1 264 -Width: 343 -GlyphClass: 4 -Flags: W -HStem: 544 42<164 410> -VStem: 161 251<544 586> -LayerCount: 2 -Fore -SplineSet -401 544 m 1 - 164 544 l 1 - 164 544 161 547 161 553 c 0 - 161 560 169 586 174 586 c 2 - 407 586 l 2 - 409 586 412 583 412 579 c 0 - 412 574 409 553 401 544 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0304.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0304 -Encoding: 772 772 245 -Width: 0 -VWidth: 945 -GlyphClass: 4 -Flags: W -HStem: 479 42<-362 -130> -VStem: -364 236<479 521> -LayerCount: 2 -Fore -SplineSet --139 479 m 1 - -361 479 l 1 - -361 479 -364 481 -364 487 c 0 - -364 494 -357 521 -352 521 c 2 - -133 521 l 2 - -131 521 -128 518 -128 514 c 0 - -128 509 -131 488 -139 479 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0305.cap -Encoding: 65546 -1 269 -Width: 513 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 773 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0305.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0305 -Encoding: 773 773 246 -Width: 513 -GlyphClass: 4 -Flags: W -HStem: 717 70<139 667> -LayerCount: 2 -Fore -SplineSet -128 727 m 0 - 128 729 142 787 152 787 c 2 - 681 787 l 2 - 683 787 687 786 685 778 c 0 - 682 760 669 728 667 724 c 0 - 664 718 658 717 658 717 c 1 - 132 717 l 1 - 132 717 126 717 128 727 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0306.cap -Encoding: 65542 -1 265 -Width: 225 -GlyphClass: 4 -Flags: W -HStem: 688 54<216 319> -VStem: 180 22<767 804> 360 18<787 805> -LayerCount: 2 -Fore -SplineSet -271 742 m 0 - 304 742 342 762 360 804 c 0 - 360 806 362 807 364 807 c 0 - 370 807 379 799 378 794 c 0 - 378 793 376 788 376 786 c 0 - 357 734 308 688 259 688 c 0 - 210 688 177 731 180 787 c 0 - 180 789 181 793 181 794 c 0 - 182 799 193 807 199 807 c 0 - 201 807 202 806 202 804 c 0 - 203 762 230 742 271 742 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0306.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: uni0306 -Encoding: 774 774 247 -Width: 0 -VWidth: 970 -GlyphClass: 4 -Flags: W -HStem: 479 55<-290 -189> -VStem: -328 22<560 594> -147 18<577 595> -LayerCount: 2 -Fore -SplineSet --238 533 m 0 - -202 533 -165 552 -147 594 c 0 - -147 596 -146 597 -144 597 c 0 - -138 597 -129 589 -130 584 c 0 - -130 583 -132 578 -132 576 c 0 - -151 524 -200 479 -249 479 c 0 - -298 479 -331 521 -328 577 c 0 - -328 579 -327 583 -327 584 c 0 - -326 589 -315 597 -309 597 c 0 - -307 597 -306 596 -306 594 c 0 - -305 552 -268 533 -238 533 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0307.cap -Encoding: 65544 -1 267 -Width: 198 -GlyphClass: 4 -Flags: W -HStem: 711 135<256 328> -VStem: 231 123<737 822> -LayerCount: 2 -Fore -SplineSet -231 780 m 0 - 238 816 272 846 306 846 c 27 - 339 846 361 816 354 780 c 0 - 347 744 315 711 281 711 c 27 - 246 711 224 744 231 780 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0307.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni0307 -Encoding: 775 775 248 -Width: 0 -VWidth: 945 -GlyphClass: 4 -Flags: W -HStem: 479 135<-281 -209> -VStem: -306 123<505 589> -LayerCount: 2 -Fore -SplineSet --306 548 m 0 - -299 584 -265 613 -231 613 c 27 - -198 613 -176 584 -183 548 c 0 - -190 512 -222 479 -256 479 c 27 - -291 479 -313 512 -306 548 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: uni0308.cap -Encoding: 65549 -1 272 -Width: 407 -GlyphClass: 4 -Flags: W -HStem: 700 135<170 242 360 432> -VStem: 146 123<726 811> 335 123<726 811> -LayerCount: 2 -Back -SplineSet -332.96484375 744.140625 m 0 - 335.3984375 757.76953125 341.9375 769.314453125 352.58203125 778.776367188 c 0 - 363.2265625 788.23828125 374.916015625 792.96875 387.65234375 792.96875 c 0 - 400.31640625 792.96875 410.116210938 788.2578125 417.051757812 778.834960938 c 0 - 423.98828125 769.412109375 426.232421875 757.846679688 423.78515625 744.140625 c 0 - 421.3515625 730.51171875 414.8125 718.966796875 404.16796875 709.504882812 c 0 - 393.5234375 700.04296875 381.833984375 695.3125 369.09765625 695.3125 c 0 - 356.43359375 695.3125 346.633789062 700.0234375 339.698242188 709.446289062 c 0 - 332.76171875 718.869140625 330.517578125 730.434570312 332.96484375 744.140625 c 0 -168.90234375 744.140625 m 0 - 171.3359375 757.76953125 177.875 769.314453125 188.51953125 778.776367188 c 0 - 199.1640625 788.23828125 210.853515625 792.96875 223.58984375 792.96875 c 0 - 236.25390625 792.96875 246.053710938 788.2578125 252.989257812 778.834960938 c 0 - 259.92578125 769.412109375 262.169921875 757.846679688 259.72265625 744.140625 c 0 - 257.30078125 730.575195312 250.6171875 719.045898438 239.673828125 709.552734375 c 0 - 228.729492188 700.059570312 216.858398438 695.3125 204.05859375 695.3125 c 0 - 191.458007812 695.3125 181.833984375 700.005859375 175.184570312 709.392578125 c 0 - 168.536132812 718.779296875 166.44140625 730.361328125 168.90234375 744.140625 c 0 -EndSplineSet -Fore -SplineSet -335 770 m 0 - 342 806 375 835 409 835 c 27 - 442 835 465 806 458 770 c 0 - 451 734 419 700 385 700 c 27 - 350 700 328 734 335 770 c 0 -146 770 m 0 - 153 806 186 835 220 835 c 27 - 253 835 276 806 269 770 c 0 - 262 734 229 700 195 700 c 27 - 160 700 139 734 146 770 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0308 -Encoding: 776 776 249 -Width: 0 -VWidth: 1024 -GlyphClass: 4 -Flags: W -HStem: 479 136<-351 -277 -179 -106> -VStem: -377 126<505 588> -206 127<505 588> -LayerCount: 2 -Fore -SplineSet --129 614 m 0 - -94 614 -72 584 -79 547 c 0 - -86 510 -121 479 -156 479 c 0 - -191 479 -213 510 -206 547 c 0 - -199 584 -164 614 -129 614 c 0 --301 614 m 0 - -266 614 -244 584 -251 547 c 0 - -258 510 -292 479 -327 479 c 0 - -362 479 -384 510 -377 547 c 0 - -370 584 -336 614 -301 614 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.narrow.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.narrow.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0308.narrow.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.narrow -Encoding: 65550 -1 273 -Width: 407 -GlyphClass: 4 -Flags: W -HStem: 433 135<149 221 323 395> -VStem: 124 123<459 544> 298 123<459 544> -LayerCount: 2 -Fore -SplineSet -298 502 m 0 - 305 538 338 567 372 567 c 27 - 405 567 428 538 421 502 c 0 - 414 466 382 433 348 433 c 27 - 313 433 291 466 298 502 c 0 -124 502 m 0 - 131 538 164 567 198 567 c 27 - 231 567 254 538 247 502 c 0 - 240 466 208 433 174 433 c 27 - 139 433 117 466 124 502 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A.cap -Encoding: 65539 -1 262 -Width: 279 -GlyphClass: 4 -Flags: W -HStem: 645 44<252 329> 794 43<265 341> -VStem: 206 180 -LayerCount: 2 -Fore -SplineSet -248 741 m 0 - 242 712 259 688 286 688 c 0 - 313 688 339 712 345 741 c 0 - 351 770 334 794 307 794 c 0 - 280 794 254 770 248 741 c 0 -206 741 m 0 - 216 794 265 837 314 837 c 0 - 363 837 396 794 386 741 c 0 - 376 688 326 645 277 645 c 0 - 228 645 196 688 206 741 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 251 -Width: 0 -VWidth: 980 -GlyphClass: 4 -Flags: W -HStem: 479 44<-292 -215> 628 43<-280 -203> -VStem: -338 180 -LayerCount: 2 -Fore -SplineSet --296 575 m 0 - -302 546 -285 522 -258 522 c 0 - -231 522 -205 546 -199 575 c 0 - -193 604 -210 628 -237 628 c 0 - -264 628 -290 604 -296 575 c 0 --338 575 m 0 - -328 628 -278 671 -229 671 c 0 - -180 671 -148 628 -158 575 c 0 - -168 522 -218 479 -267 479 c 0 - -316 479 -348 522 -338 575 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni030B.cap -Encoding: 65548 -1 271 -Width: 421 -GlyphClass: 4 -Flags: W -HStem: 714 115 -LayerCount: 2 -Fore -SplineSet -348 714 m 1 - 344 717 339 723 339 727 c 1 - 344 735 401 797 442 821 c 0 - 451 826 473 829 487 829 c 0 - 509 829 542 821 542 798 c 0 - 542 759 363 716 348 714 c 1 -162 714 m 1 - 158 717 153 723 153 727 c 1 - 158 735 216 797 257 821 c 0 - 266 826 288 829 302 829 c 0 - 324 829 356 821 356 798 c 0 - 356 759 177 716 162 714 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B -Encoding: 779 779 252 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 -68 0 2 -Refer: 191 769 N 1 0 0 1 80 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni030C.cap -Encoding: 65551 -1 274 -Width: 448 -GlyphClass: 4 -Flags: W -HStem: 713 137 -VStem: 273 253 -LayerCount: 2 -Fore -SplineSet -378 713 m 0 - 374 713 371 718 367 723 c 0 - 346 751 295 811 273 834 c 1 - 274 842 279 848 285 850 c 1 - 296 847 365 811 392 791 c 1 - 426 811 505 846 520 850 c 1 - 524 848 527 840 526 834 c 1 - 472 792 410 740 392 723 c 0 - 386 717 381 713 378 713 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni030C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030C -Encoding: 780 780 253 -Width: 0 -VWidth: 990 -GlyphClass: 4 -Flags: W -HStem: 479 164 -VStem: -340 216 -LayerCount: 2 -Fore -SplineSet --257 479 m 0 - -260 479 -264 480 -268 488 c 0 - -299 549 -332 605 -340 620 c 1 - -338 630 -334 641 -329 643 c 1 - -312 629 -264 587 -243 564 c 1 - -213 587 -150 631 -129 643 c 1 - -125 641 -123 630 -125 620 c 1 - -136 609 -200 540 -245 488 c 0 - -251 482 -253 479 -257 479 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0312.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0312.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0312.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0312.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0312 -Encoding: 786 786 254 -Width: 127 -GlyphClass: 4 -Flags: W -VStem: 111 74<473 565> -LayerCount: 2 -Fore -SplineSet -218 620 m 1 - 222 620 234 613 234 610 c 1 - 227 608 186 577 186 553 c 0 - 186 532 211 527 211 496 c 0 - 211 470 179 456 150 455 c 0 - 138 455 125 457 116 462 c 1 - 112 469 111 475 111 483 c 0 - 111 530 176 607 218 620 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0315.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0315.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0315.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0315.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0315 -Encoding: 789 789 255 -Width: 127 -GlyphClass: 4 -Flags: W -HStem: 443 222 -VStem: 141 95<547 631> 161 74<526 649> -LayerCount: 2 -Fore -SplineSet -103 465 m 0xa0 - 103 471 161 507 161 546 c 0xa0 - 161 567 141 574 141 602 c 0xc0 - 141 660 195 665 232 665 c 1 - 234 659 235 650 235 639 c 0 - 235 626 234 611 231 596 c 0 - 219 534 162 466 122 443 c 1 - 120 443 l 2 - 114 443 103 458 103 465 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0323.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0323.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0323.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0323.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0323.cap -Encoding: 65545 -1 268 -Width: 278 -GlyphClass: 4 -Flags: W -HStem: -176 145<79 154> -VStem: 50 134<-147 -60> -LayerCount: 2 -Fore -SplineSet -50 -104 m 0 - 58 -64 94 -31 131 -31 c 0 - 168 -31 192 -64 184 -104 c 0 - 176 -144 140 -176 103 -176 c 0 - 66 -176 42 -144 50 -104 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0324.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0324.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0324.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0324.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0324 -Encoding: 804 804 710 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 -20 -664 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0325.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0325.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0325.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0325.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0325 -Encoding: 805 805 711 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 0 -723 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0326.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0326.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0326.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0326.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0326 -Encoding: 806 806 256 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -213 158<-277 -261> -VStem: -277 95<-160 -81> -LayerCount: 2 -Fore -SplineSet --306 -99 m 0 - -306 -64 -238 -55 -194 -55 c 1 - -184 -66 -183 -80 -183 -101 c 0 - -183 -148 -267 -204 -310 -213 c 1 - -311 -213 -311 -213 -312 -213 c 0 - -319 -213 -333 -206 -333 -199 c 0 - -333 -196 -277 -171 -277 -147 c 0 - -277 -126 -306 -125 -306 -99 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327.cap -Encoding: 65543 -1 266 -Width: 396 -GlyphClass: 4 -Flags: W -HStem: -168 23<118 180> -67 38<172 189> -VStem: 192 54<-128 -69> -LayerCount: 2 -Fore -SplineSet -166 -4 m 1 - 196 -4 l 9 - 172 -29 l 25 - 189 -29 l 2 - 214 -29 246 -49 246 -78 c 0 - 246 -130 186 -168 122 -168 c 3 - 108 -168 83 -163 77 -158 c 1 - 75 -156 73 -151 73 -148 c 0 - 73 -131 82 -120 93 -120 c 3 - 113 -120 119 -145 148 -145 c 3 - 173 -145 192 -127 192 -104 c 0 - 192 -81 177 -67 163 -67 c 0 - 151 -67 145 -70 133 -75 c 0 - 131 -75 117 -67 117 -62 c 0 - 117 -57 138 -41 166 -4 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0327.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327 -Encoding: 807 807 257 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -159 22<-286 -227> -63 35<-234 -218> -VStem: -215 50<-123 -64> -LayerCount: 2 -Fore -SplineSet --240 -4 m 1 - -212 -4 l 9 - -234 -28 l 25 - -218 -28 l 2 - -194 -28 -165 -47 -165 -74 c 0 - -165 -123 -221 -159 -282 -159 c 3 - -295 -159 -318 -154 -324 -149 c 1 - -326 -147 -328 -144 -328 -141 c 0 - -328 -125 -320 -113 -310 -113 c 3 - -291 -113 -284 -137 -257 -137 c 3 - -233 -137 -215 -120 -215 -98 c 0 - -215 -76 -230 -63 -243 -63 c 0 - -254 -63 -260 -66 -271 -71 c 0 - -273 -71 -286 -65 -286 -60 c 0 - -286 -55 -266 -39 -240 -4 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0328.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0328.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0328.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0328.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0328 -Encoding: 808 808 487 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -213 62<-214 -126> 21 14<-62 -51> -VStem: -245 198 -LayerCount: 2 -Fore -SplineSet --95 35 m 3 - -79 35 -31 27 -47 21 c 0 - -97 2 -173 -47 -185 -109 c 0 - -188 -124 -187 -151 -156 -151 c 3 - -110 -151 -83 -118 -77 -118 c 3 - -76 -118 -73 -127 -75 -135 c 0 - -76 -140 -76 -148 -80 -152 c 0 - -105 -180 -148 -213 -189 -213 c 0 - -240 -213 -249 -163 -245 -137 c 0 - -232 -58 -121 35 -95 35 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni032D -Encoding: 813 813 477 -Width: 667 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 0 -703 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni032E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni032E -Encoding: 814 814 476 -Width: 458 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 774 N 1 0 0 1 0 -662 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0330.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0330.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0330.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0330.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0330 -Encoding: 816 816 478 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 0 -646 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0331.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0331.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0331.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni0331.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0331 -Encoding: 817 817 479 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 245 772 N 1 0 0 1 0 -593 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E00.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E00.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E00.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E00.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E00 -Encoding: 7680 7680 489 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 711 805 N 1 0 0 1 454 0 2 -Refer: 33 65 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E01 -Encoding: 7681 7681 490 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 711 805 N 1 0 0 1 398 -3 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E02.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E02.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E02.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E02.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E02 -Encoding: 7682 7682 491 -Width: 575 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 66 N 1 0 0 1 -1 0 3 -Refer: 267 -1 N 1 0 0 1 71 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E03.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E03.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E03.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E03.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E03 -Encoding: 7683 7683 492 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 98 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 460 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E04.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E04.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E04.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E04.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E04 -Encoding: 7684 7684 493 -Width: 575 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 66 N 1 0 0 1 -1 0 3 -Refer: 268 -1 N 1 0 0 1 84 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E05.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E05.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E05.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E05.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E05 -Encoding: 7685 7685 494 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 378 -34 2 -Refer: 66 98 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E06.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E06.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E06.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E06.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E06 -Encoding: 7686 7686 495 -Width: 575 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 437 3 2 -Refer: 34 66 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E07.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E07.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E07.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E07.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E07 -Encoding: 7687 7687 496 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 375 0 2 -Refer: 66 98 N 1 0 0 1 -21 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E08.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E08.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E08.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E08.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E08 -Encoding: 7688 7688 497 -Width: 630 -Flags: HW -LayerCount: 2 -Fore -Refer: 133 199 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 251 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E09.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E09.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E09.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E09.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E09 -Encoding: 7689 7689 498 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 165 231 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 548 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0A -Encoding: 7690 7690 499 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 267 -1 N 1 0 0 1 99 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0B -Encoding: 7691 7691 500 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 649 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0C -Encoding: 7692 7692 438 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 132 -27 2 -Refer: 36 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0D -Encoding: 7693 7693 439 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 406 -34 2 -Refer: 68 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0E -Encoding: 7694 7694 432 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 464 9 2 -Refer: 36 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E0F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0F -Encoding: 7695 7695 433 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 411 6 2 -Refer: 68 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E10.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E10.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E10.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E10.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E10 -Encoding: 7696 7696 436 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 -1 N 1 0 0 1 81 3 2 -Refer: 36 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E11.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E11.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E11.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E11.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E11 -Encoding: 7697 7697 437 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 503 3 2 -Refer: 68 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E12.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E12.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E12.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E12.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E12 -Encoding: 7698 7698 501 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 475 0 2 -Refer: 36 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E13.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E13.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E13.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E13.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E13 -Encoding: 7699 7699 502 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 395 -3 2 -Refer: 68 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E14.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E14.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E14.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E14.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E14 -Encoding: 7700 7700 503 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 289 274 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 47 71 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E15.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E15.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E15.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E15.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E15 -Encoding: 7701 7701 504 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 501 103 2 -Refer: 290 275 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E16.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E16.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E16.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E16.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E16 -Encoding: 7702 7702 505 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 289 274 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 139 71 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E17.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E17.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E17.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E17.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E17 -Encoding: 7703 7703 506 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 290 275 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 510 105 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E18.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E18.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E18.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E18.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E18 -Encoding: 7704 7704 507 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 455 -1 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E19.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E19.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E19.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E19.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E19 -Encoding: 7705 7705 508 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 364 -3 2 -Refer: 69 101 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1A -Encoding: 7706 7706 509 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 442 -1 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1B -Encoding: 7707 7707 510 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 347 -3 2 -Refer: 69 101 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1E -Encoding: 7710 7710 511 -Width: 512 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 81 15 2 -Refer: 38 70 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E1F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1F -Encoding: 7711 7711 512 -Width: 310 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 102 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 581 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E20.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E20.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E20.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E20.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E20 -Encoding: 7712 7712 513 -Width: 662 -Flags: HW -LayerCount: 2 -Fore -Refer: 39 71 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 155 166 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E21.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E21.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E21.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E21.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E21 -Encoding: 7713 7713 514 -Width: 433 -Flags: HW -LayerCount: 2 -Fore -Refer: 71 103 N 1 0 0 1 0 0 3 -Refer: 245 772 N 1 0 0 1 483 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E22.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E22.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E22.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E22.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E22 -Encoding: 7714 7714 515 -Width: 690 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 165 15 2 -Refer: 40 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E23.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E23.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E23.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E23.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E23 -Encoding: 7715 7715 516 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 444 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E24.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E24.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E24.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E24.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E24 -Encoding: 7716 7716 426 -Width: 690 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 268 -1 N 1 0 0 1 149 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E25.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E25.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E25.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E25.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E25 -Encoding: 7717 7717 427 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 416 -34 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E26.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E26.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E26.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E26.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E26 -Encoding: 7718 7718 517 -Width: 690 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 272 -1 N 1 0 0 1 136 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E27.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E27.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E27.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E27.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E27 -Encoding: 7719 7719 518 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 435 254 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E28.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E28.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E28.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E28.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E28 -Encoding: 7720 7720 424 -Width: 690 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 266 -1 N 1 0 0 1 -60 8 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E29.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E29.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E29.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E29.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E29 -Encoding: 7721 7721 425 -Width: 492 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 257 807 N 1 0 0 1 300 3 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2A -Encoding: 7722 7722 428 -Width: 690 -Flags: HW -LayerCount: 2 -Fore -Refer: 476 814 N 1 0 0 1 498 3 2 -Refer: 40 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2B -Encoding: 7723 7723 429 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 476 814 N 1 0 0 1 402 0 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2C -Encoding: 7724 7724 519 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 316 0 2 -Refer: 41 73 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2D -Encoding: 7725 7725 520 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 308 -3 2 -Refer: 73 105 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2E -Encoding: 7726 7726 521 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 141 207 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 81 160 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E2F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2F -Encoding: 7727 7727 522 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 173 239 N 1 0 0 1 -3 0 3 -Refer: 191 769 N 1 0 0 1 482 143 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E30.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E30.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E30.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E30.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E30 -Encoding: 7728 7728 523 -Width: 671 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 239 12 2 -Refer: 43 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E31.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E31.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E31.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E31.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E31 -Encoding: 7729 7729 524 -Width: 491 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 107 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 506 256 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E32.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E32.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E32.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E32.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E32 -Encoding: 7730 7730 525 -Width: 671 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 141 -27 2 -Refer: 43 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E33.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E33.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E33.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E33.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E33 -Encoding: 7731 7731 526 -Width: 491 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 400 -33 2 -Refer: 75 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E34.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E34.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E34.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E34.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E34 -Encoding: 7732 7732 527 -Width: 671 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 506 3 2 -Refer: 43 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E35.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E35.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E35.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E35.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E35 -Encoding: 7733 7733 528 -Width: 491 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 412 1 2 -Refer: 75 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E36.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E36.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E36.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E36.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E36 -Encoding: 7734 7734 529 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 102 -28 2 -Refer: 44 76 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E37.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E37.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E37.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E37.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E37 -Encoding: 7735 7735 530 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 299 -34 2 -Refer: 76 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E38.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E38.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E38.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E38.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E38 -Encoding: 7736 7736 531 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 529 7734 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 -30 165 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E39.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E39.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E39.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E39.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E39 -Encoding: 7737 7737 532 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 530 7735 N 1 0 0 1 0 0 3 -Refer: 245 772 N 1 0 0 1 463 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3A -Encoding: 7738 7738 533 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 455 2 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3B -Encoding: 7739 7739 534 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 320 0 2 -Refer: 76 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3C -Encoding: 7740 7740 535 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 451 -1 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3D -Encoding: 7741 7741 536 -Width: 276 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 296 -3 2 -Refer: 76 108 N 1 0 0 1 -20 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3E -Encoding: 7742 7742 537 -Width: 838 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 328 31 2 -Refer: 45 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E3F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3F -Encoding: 7743 7743 538 -Width: 737 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 109 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 683 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E40.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E40.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E40.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E40.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E40 -Encoding: 7744 7744 539 -Width: 838 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 242 15 2 -Refer: 45 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E41.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E41.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E41.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E41.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E41 -Encoding: 7745 7745 540 -Width: 737 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 109 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 625 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E42.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E42.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E42.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E42.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E42 -Encoding: 7746 7746 541 -Width: 838 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 228 -27 2 -Refer: 45 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E43.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E43.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E43.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E43.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E43 -Encoding: 7747 7747 542 -Width: 737 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 543 -34 2 -Refer: 77 109 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E44.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E44.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E44.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E44.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E44 -Encoding: 7748 7748 543 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 170 15 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E45.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E45.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E45.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E45.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E45 -Encoding: 7749 7749 544 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 525 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E46.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E46.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E46.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E46.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E46 -Encoding: 7750 7750 545 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 189 -29 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E47.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E47.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E47.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E47.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E47 -Encoding: 7751 7751 546 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 452 -34 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E48.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E48.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E48.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E48.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E48 -Encoding: 7752 7752 547 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 543 1 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E49.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E49.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E49.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E49.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E49 -Encoding: 7753 7753 548 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 446 0 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4A -Encoding: 7754 7754 549 -Width: 698 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 541 -2 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4B -Encoding: 7755 7755 550 -Width: 523 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 433 -3 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4C -Encoding: 7756 7756 551 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 147 213 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 221 151 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4D -Encoding: 7757 7757 552 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 179 245 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 546 122 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4E -Encoding: 7758 7758 553 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 151 142 2 -Refer: 147 213 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E4F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4F -Encoding: 7759 7759 554 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 540 147 2 -Refer: 179 245 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E50.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E50.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E50.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E50.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E50 -Encoding: 7760 7760 555 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 135 71 2 -Refer: 332 332 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E51.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E51.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E51.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E51.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E51 -Encoding: 7761 7761 556 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 523 103 2 -Refer: 333 333 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E52.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E52.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E52.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E52.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E52 -Encoding: 7762 7762 557 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 188 71 2 -Refer: 332 332 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E53.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E53.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E53.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E53.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E53 -Encoding: 7763 7763 558 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 533 105 2 -Refer: 333 333 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E54.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E54.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E54.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E54.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E54 -Encoding: 7764 7764 559 -Width: 543 -Flags: HW -LayerCount: 2 -Fore -Refer: 48 80 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 119 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E55.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E55.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E55.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E55.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E55 -Encoding: 7765 7765 560 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 80 112 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 559 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E56.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E56.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E56.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E56.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E56 -Encoding: 7766 7766 561 -Width: 543 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 60 15 2 -Refer: 48 80 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E57.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E57.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E57.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E57.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E57 -Encoding: 7767 7767 562 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 80 112 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 531 8 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E58.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E58.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E58.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E58.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E58 -Encoding: 7768 7768 563 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 67 15 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E59.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E59.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E59.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E59.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E59 -Encoding: 7769 7769 564 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 114 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 469 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5A -Encoding: 7770 7770 565 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 128 -27 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5B -Encoding: 7771 7771 566 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 312 -31 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5C -Encoding: 7772 7772 567 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 565 7770 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 55 165 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5D -Encoding: 7773 7773 568 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 566 7771 N 1 0 0 1 0 0 3 -Refer: 245 772 N 1 0 0 1 490 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5E -Encoding: 7774 7774 569 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 498 3 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E5F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5F -Encoding: 7775 7775 570 -Width: 421 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 375 3 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E60.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E60.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E60.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E60.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E60 -Encoding: 7776 7776 571 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 50 16 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E61.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E61.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E61.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E61.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E61 -Encoding: 7777 7777 572 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 115 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 461 9 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E62.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E62.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E62.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E62.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E62 -Encoding: 7778 7778 434 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 51 83 N 1 0 0 1 1 0 3 -Refer: 268 -1 N 1 0 0 1 52 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E63.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E63.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E63.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E63.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E63 -Encoding: 7779 7779 435 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 363 -34 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E64.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E64.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E64.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E64.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E64 -Encoding: 7780 7780 573 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 346 N 1 0 0 1 0 0 3 -Refer: 267 -1 N 1 0 0 1 30 75 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E65.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E65.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E65.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E65.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E65 -Encoding: 7781 7781 574 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 345 347 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 421 104 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E66.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E66.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E66.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E66.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E66 -Encoding: 7782 7782 575 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 350 352 N 1 0 0 1 0 0 3 -Refer: 267 -1 N 1 0 0 1 62 132 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E67.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E67.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E67.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E67.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E67 -Encoding: 7783 7783 576 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 351 353 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 491 168 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E68.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E68.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E68.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E68.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E68 -Encoding: 7784 7784 577 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 50 16 2 -Refer: 434 7778 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E69.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E69.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E69.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E69.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E69 -Encoding: 7785 7785 578 -Width: 357 -Flags: HW -LayerCount: 2 -Fore -Refer: 435 7779 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 461 9 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6A -Encoding: 7786 7786 579 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 105 29 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6B -Encoding: 7787 7787 580 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 458 106 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6C -Encoding: 7788 7788 440 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 84 N 1 0 0 1 0 0 3 -Refer: 268 -1 N 1 0 0 1 105 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6D -Encoding: 7789 7789 441 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 321 -34 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6E -Encoding: 7790 7790 422 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 468 9 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E6F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6F -Encoding: 7791 7791 423 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 340 6 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E70.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E70.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E70.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E70.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E70 -Encoding: 7792 7792 581 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 457 0 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E71.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E71.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E71.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E71.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E71 -Encoding: 7793 7793 582 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 322 -3 2 -Refer: 84 116 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E72.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E72.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E72.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E72.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E72 -Encoding: 7794 7794 583 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 710 804 N 1 0 0 1 515 2 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E73.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E73.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E73.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E73.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E73 -Encoding: 7795 7795 584 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 710 804 N 1 0 0 1 449 0 2 -Refer: 85 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E74.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E74.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E74.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E74.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E74 -Encoding: 7796 7796 585 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 486 -1 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E75.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E75.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E75.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E75.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E75 -Encoding: 7797 7797 586 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 478 816 N 1 0 0 1 432 -3 2 -Refer: 85 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E76.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E76.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E76.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E76.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E76 -Encoding: 7798 7798 587 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 511 -1 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E77.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E77.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E77.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E77.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E77 -Encoding: 7799 7799 588 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 813 N 1 0 0 1 433 -3 2 -Refer: 85 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E78.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E78.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E78.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E78.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E78 -Encoding: 7800 7800 589 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 356 360 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 220 121 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E79.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E79.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E79.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E79.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E79 -Encoding: 7801 7801 590 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 357 361 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 571 147 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7A -Encoding: 7802 7802 591 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 147 107 2 -Refer: 358 362 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7B -Encoding: 7803 7803 592 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 530 94 2 -Refer: 359 363 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7C -Encoding: 7804 7804 593 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 65 1 2 -Refer: 54 86 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7D -Encoding: 7805 7805 594 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 491 6 2 -Refer: 86 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7E -Encoding: 7806 7806 595 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 91 -26 2 -Refer: 54 86 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E7F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7F -Encoding: 7807 7807 596 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 362 -34 2 -Refer: 86 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E86.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E86.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E86.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E86.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E86 -Encoding: 7814 7814 603 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 267 -1 N 1 0 0 1 237 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E87.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E87.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E87.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E87.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E87 -Encoding: 7815 7815 604 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 645 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E88.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E88.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E88.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E88.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E88 -Encoding: 7816 7816 605 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 1 0 3 -Refer: 268 -1 N 1 0 0 1 240 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E89.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E89.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E89.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E89.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E89 -Encoding: 7817 7817 606 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 490 -34 2 -Refer: 87 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8A -Encoding: 7818 7818 607 -Width: 643 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 152 15 2 -Refer: 56 88 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8B -Encoding: 7819 7819 608 -Width: 499 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 120 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 535 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8C -Encoding: 7820 7820 609 -Width: 643 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 88 N 1 0 0 1 0 0 3 -Refer: 272 -1 N 1 0 0 1 126 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8D -Encoding: 7821 7821 610 -Width: 499 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 519 10 2 -Refer: 88 120 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8E -Encoding: 7822 7822 611 -Width: 562 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 114 15 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E8F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8F -Encoding: 7823 7823 612 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 248 775 N 1 0 0 1 508 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E90.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E90.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E90.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E90.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E90 -Encoding: 7824 7824 613 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 97 4 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E91.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E91.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E91.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E91.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E91 -Encoding: 7825 7825 614 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 482 3 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E92.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E92.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E92.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E92.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E92 -Encoding: 7826 7826 442 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 58 90 N 1 0 0 1 0 0 3 -Refer: 268 -1 N 1 0 0 1 127 -24 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E93.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E93.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E93.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E93.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E93 -Encoding: 7827 7827 443 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 375 -28 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E94.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E94.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E94.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E94.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E94 -Encoding: 7828 7828 615 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 482 6 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E95.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E95.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E95.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E95.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E95 -Encoding: 7829 7829 616 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 376 6 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E96.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E96.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E96.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E96.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E96 -Encoding: 7830 7830 431 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 479 817 N 1 0 0 1 431 6 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E97.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E97.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E97.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E97.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E97 -Encoding: 7831 7831 444 -Width: 320 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 439 110 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E98.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E98.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E98.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E98.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E98 -Encoding: 7832 7832 617 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 651 6 2 -Refer: 87 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E99.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E99.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E99.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1E99.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E99 -Encoding: 7833 7833 618 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 504 6 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA0 -Encoding: 7840 7840 672 -Width: 605 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 107 -27 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA1 -Encoding: 7841 7841 673 -Width: 477 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 419 -34 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA2 -Encoding: 7842 7842 619 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 219 210 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA3 -Encoding: 7843 7843 620 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 562 9 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA4 -Encoding: 7844 7844 621 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 0.786834 0 0 0.981481 350 80 2 -Refer: 261 -1 N 1 0 0 1 92 -17 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA5 -Encoding: 7845 7845 622 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 242 770 N 1 0 0 1 515 4 2 -Refer: 191 769 N 0.876136 0 0 0.870229 627 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA6 -Encoding: 7846 7846 623 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 261 -1 N 1 0 0 1 92 -17 2 -Refer: 259 -1 N 0.781309 0 0 0.981481 40 61 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA7 -Encoding: 7847 7847 624 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 515 4 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 190 768 N 0.872402 0 0 0.870229 334 125 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA8 -Encoding: 7848 7848 713 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 92 -17 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 270 -1 N 0.944516 0 0 0.910829 350 281 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EA9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA9 -Encoding: 7849 7849 625 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 659 44 2 -Refer: 242 770 N 1 0 0 1 515 4 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAA -Encoding: 7850 7850 626 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 0.97057 0 0 0.8375 104 219 2 -Refer: 261 -1 N 1 0 0 1 92 -17 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAB -Encoding: 7851 7851 627 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 0.936452 0 0 0.884615 531 231 2 -Refer: 242 770 N 0.994497 0 0 0.896296 522 75 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAC -Encoding: 7852 7852 628 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 107 -27 2 -Refer: 128 194 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAD -Encoding: 7853 7853 629 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 407 -34 2 -Refer: 160 226 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAE -Encoding: 7854 7854 630 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 0.78453 0 0 0.981481 253 71 2 -Refer: 247 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EAF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAF -Encoding: 7855 7855 631 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 0.876136 0 0 0.870229 525 157 2 -Refer: 247 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB0 -Encoding: 7856 7856 632 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 0.783554 0 0 0.977177 128 75 2 -Refer: 247 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB1 -Encoding: 7857 7857 633 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 0.872402 0 0 0.870229 479 164 2 -Refer: 247 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB2 -Encoding: 7858 7858 634 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 270 -1 N 0.944516 0 0 0.910829 243 310 2 -Refer: 247 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB3 -Encoding: 7859 7859 635 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 250 777 N 1 0 0 1 555 78 2 -Refer: 247 774 N 0.962702 0 0 0.878918 507 67 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB4 -Encoding: 7860 7860 636 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 263 -1 N 0.969772 0 0 0.831689 108 222 2 -Refer: 247 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB5 -Encoding: 7861 7861 637 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 247 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 243 771 N 0.936452 0 0 0.884615 522 232 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB6 -Encoding: 7862 7862 638 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 107 -27 2 -Refer: 277 258 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB7 -Encoding: 7863 7863 639 -Width: 477 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 407 -34 2 -Refer: 278 259 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB8 -Encoding: 7864 7864 640 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 113 -27 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EB9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB9 -Encoding: 7865 7865 641 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 258 803 N 1 0 0 1 360 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBA -Encoding: 7866 7866 642 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 188 239 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBB -Encoding: 7867 7867 643 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 539 9 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBC -Encoding: 7868 7868 644 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 33 1 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBD -Encoding: 7869 7869 645 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 506 6 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EBE -Encoding: 7870 7870 646 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 0.786834 0 0 0.981481 315 80 2 -Refer: 261 -1 N 1 0 0 1 57 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EBF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EBF -Encoding: 7871 7871 647 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 242 770 N 1 0 0 1 492 4 2 -Refer: 191 769 N 0.876136 0 0 0.870229 604 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC0 -Encoding: 7872 7872 648 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 57 -17 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 0.781309 0 0 0.981481 4 61 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC1 -Encoding: 7873 7873 649 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 492 4 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 190 768 N 0.872402 0 0 0.870229 312 125 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC2 -Encoding: 7874 7874 650 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 270 -1 N 1 0 0 1 308 255 2 -Refer: 261 -1 N 1 0 0 1 57 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC3 -Encoding: 7875 7875 651 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 637 44 2 -Refer: 242 770 N 1 0 0 1 492 4 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC4 -Encoding: 7876 7876 652 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 263 -1 N 0.97057 0 0 0.8375 83 219 2 -Refer: 261 -1 N 1 0 0 1 72 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC5 -Encoding: 7877 7877 653 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 0.936452 0 0 0.884615 507 231 2 -Refer: 242 770 N 0.994497 0 0 0.896296 498 75 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC6 -Encoding: 7878 7878 654 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 113 -27 2 -Refer: 136 202 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC7 -Encoding: 7879 7879 655 -Width: 384 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 360 -34 2 -Refer: 168 234 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC8 -Encoding: 7880 7880 656 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 83 239 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EC9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC9 -Encoding: 7881 7881 657 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 445 9 2 -Refer: 244 305 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECA -Encoding: 7882 7882 658 -Width: 344 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 -32 -27 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECB -Encoding: 7883 7883 659 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 316 -34 2 -Refer: 73 105 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECC -Encoding: 7884 7884 660 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 178 -35 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECD -Encoding: 7885 7885 661 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 368 -33 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECE -Encoding: 7886 7886 662 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 260 239 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ECF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECF -Encoding: 7887 7887 663 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 542 9 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED0 -Encoding: 7888 7888 664 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 0.786834 0 0 0.981481 379 80 2 -Refer: 261 -1 N 1 0 0 1 121 -17 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED1 -Encoding: 7889 7889 665 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 3 -Refer: 242 770 N 1 0 0 1 498 4 2 -Refer: 191 769 N 0.876136 0 0 0.870229 610 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED2 -Encoding: 7890 7890 666 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 3 -Refer: 261 -1 N 1 0 0 1 121 -17 2 -Refer: 259 -1 N 0.781309 0 0 0.981481 69 61 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED3 -Encoding: 7891 7891 667 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 0.872402 0 0 0.870229 317 125 2 -Refer: 242 770 N 1 0 0 1 498 4 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED4 -Encoding: 7892 7892 668 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 372 255 2 -Refer: 261 -1 N 1 0 0 1 121 -17 2 -Refer: 47 79 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED5 -Encoding: 7893 7893 669 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 643 44 2 -Refer: 242 770 N 1 0 0 1 498 4 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED6 -Encoding: 7894 7894 670 -Width: 688 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 0.97057 0 0 0.8375 104 219 2 -Refer: 261 -1 N 1 0 0 1 92 -17 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED7 -Encoding: 7895 7895 671 -Width: 444 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 0.936452 0 0 0.884615 511 231 2 -Refer: 242 770 N 0.994497 0 0 0.896296 501 75 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED8 -Encoding: 7896 7896 674 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 136 15 2 -Refer: 660 7884 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1ED9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED9 -Encoding: 7897 7897 675 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 518 6 2 -Refer: 661 7885 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDA -Encoding: 7898 7898 690 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 198 17 2 -Refer: 687 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDB -Encoding: 7899 7899 691 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 686 417 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 521 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDC -Encoding: 7900 7900 692 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 116 16 2 -Refer: 687 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDD -Encoding: 7901 7901 693 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 686 417 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 485 -21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDE -Encoding: 7902 7902 694 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 260 239 2 -Refer: 687 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EDF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDF -Encoding: 7903 7903 695 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 542 9 2 -Refer: 686 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE0 -Encoding: 7904 7904 696 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 100 14 2 -Refer: 687 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE1 -Encoding: 7905 7905 697 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 498 16 2 -Refer: 686 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE2 -Encoding: 7906 7906 698 -Width: 688 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 178 -35 2 -Refer: 687 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE3 -Encoding: 7907 7907 699 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 368 -33 2 -Refer: 686 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE4 -Encoding: 7908 7908 676 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 143 -28 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE5 -Encoding: 7909 7909 677 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 440 -34 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE6 -Encoding: 7910 7910 678 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 246 239 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE7 -Encoding: 7911 7911 679 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 543 9 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE8 -Encoding: 7912 7912 700 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 248 17 2 -Refer: 688 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EE9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE9 -Encoding: 7913 7913 701 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 689 432 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 536 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEA -Encoding: 7914 7914 702 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 259 -1 N 1 0 0 1 135 16 2 -Refer: 688 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEB -Encoding: 7915 7915 703 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 689 432 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 498 -21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEC -Encoding: 7916 7916 704 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 246 239 2 -Refer: 688 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EED.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EED.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EED.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EED.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EED -Encoding: 7917 7917 705 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 543 9 2 -Refer: 689 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEE -Encoding: 7918 7918 706 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 102 14 2 -Refer: 688 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EEF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEF -Encoding: 7919 7919 707 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 505 16 2 -Refer: 689 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF0 -Encoding: 7920 7920 708 -Width: 675 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 143 -28 2 -Refer: 688 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF1 -Encoding: 7921 7921 709 -Width: 520 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 440 -34 2 -Refer: 689 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF4 -Encoding: 7924 7924 680 -Width: 562 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 -1 N 1 0 0 1 90 -27 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF5 -Encoding: 7925 7925 681 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 803 N 1 0 0 1 502 -66 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF6 -Encoding: 7926 7926 682 -Width: 562 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 -1 N 1 0 0 1 197 239 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF7 -Encoding: 7927 7927 683 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 777 N 1 0 0 1 532 9 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF8 -Encoding: 7928 7928 684 -Width: 562 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 41 1 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni1EF9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF9 -Encoding: 7929 7929 685 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 493 6 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2002.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2002.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2002.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2002.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2002 -Encoding: 8194 8194 192 -Width: 466 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2003.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2003.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2003.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2003.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2003 -Encoding: 8195 8195 193 -Width: 787 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2009.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2009.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2009.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2009.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2009 -Encoding: 8201 8201 194 -Width: 89 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200A -Encoding: 8202 8202 195 -Width: 44 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni200B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200B -Encoding: 8203 8203 196 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2010.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2010.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2010.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2010.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni2010 -Encoding: 8208 8208 197 -Width: 281 -Flags: W -VStem: 62 251<202 260> -LayerCount: 2 -Fore -SplineSet -86 261 m 2 - 308 272 l 2 - 313 272 313 266 313 261 c 0 - 313 248 298 200 288 199 c 10 - 67 188 l 2 - 64 188 62 195 62 203 c 0 - 62 214 75 260 86 261 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2011.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2011.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2011.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2011.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni2011 -Encoding: 8209 8209 198 -Width: 281 -Flags: W -VStem: 62 251<202 260> -LayerCount: 2 -Fore -SplineSet -86 261 m 2 - 308 272 l 2 - 313 272 313 266 313 261 c 0 - 313 248 298 200 288 199 c 10 - 67 188 l 2 - 64 188 62 195 62 203 c 0 - 62 214 75 260 86 261 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2015.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2015.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2015.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2015.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni2015 -Encoding: 8213 8213 202 -Width: 981 -Flags: W -HStem: 189 72<70 981> -LayerCount: 2 -Fore -SplineSet -983 262 m 2 - 990 262 990 252 990 246 c 0 - 990 225 974 194 969 189 c 9 - 67 189 l 2 - 60 189 61 199 61 205 c 0 - 61 226 77 257 82 262 c 9 - 983 262 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni201F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni201F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni201F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni201F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni201F -Encoding: 8223 8223 447 -Width: 340 -Flags: HW -LayerCount: 2 -Fore -Refer: 206 8220 N 1 0 -0.5 -1 270 1152 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni202F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni202F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni202F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni202F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -StartChar: uni202F -Encoding: 8239 8239 473 -Width: 166 -VWidth: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2038.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2038.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2038.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2038.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2038 -Encoding: 8248 8248 217 -Width: 347 -Flags: W -HStem: -60 170 -VStem: 63 227 -LayerCount: 2 -Fore -SplineSet -274 -60 m 0 - 262 -60 215 -17 188 27 c 1 - 147 -17 79 -60 67 -60 c 0 - 60 -60 63 -36 63 -36 c 1 - 70 -25 136 16 191 101 c 0 - 195 108 193 110 200 110 c 0 - 220 110 210 94 242 32 c 0 - 255 9 289 -31 290 -35 c 1 - 289 -38 281 -60 274 -60 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni203E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni203E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni203E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni203E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni203E -Encoding: 8254 8254 220 -Width: 651 -Flags: W -HStem: 716 72<84 575> -LayerCount: 2 -Fore -SplineSet -577 788 m 2 - 584 788 584 778 584 772 c 0 - 584 751 567 721 562 716 c 9 - 81 716 l 2 - 74 716 74 725 74 731 c 0 - 74 752 91 783 96 788 c 9 - 577 788 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2042.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2042.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2042.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2042.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni2042 -Encoding: 8258 8258 714 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 10 42 N 1 0 0 1 407 -393 2 -Refer: 10 42 N 1 0 0 1 -28 -393 2 -Refer: 10 42 N 1 0 0 1 189 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2213.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2213.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2213.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uni2213.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: uni2213 -Encoding: 8723 8723 234 -Width: 500 -Flags: W -HStem: 208 70<27 190 273 440> 506 70<86 489> -LayerCount: 2 -Fore -SplineSet -256 205 m 2 - 221 25 l 1 - 221 25 205 16 163 10 c 0 - 160 10 160 10 158 10 c 0 - 152 10 153 13 154 17 c 2 - 190 203 l 2 - 190 205 191 208 186 208 c 2 - 13 208 l 1 - 13 208 7 208 9 218 c 0 - 10 222 15 250 26 273 c 0 - 29 279 34 278 34 278 c 1 - 200 278 l 2 - 203 278 206 282 206 284 c 2 - 240 462 l 1 - 240 462 240 467 246 469 c 0 - 269 476 296 477 300 477 c 0 - 309 477 308 471 308 471 c 1 - 271 283 l 2 - 270 280 270 278 273 278 c 2 - 448 278 l 2 - 452 278 455 278 454 271 c 0 - 452 262 444 235 434 214 c 0 - 431 208 427 208 427 208 c 1 - 260 208 l 2 - 257 208 256 207 256 205 c 2 -499 576 m 1 - 499 576 508 577 504 565 c 0 - 488 518 481 509 478 506 c 1 - 71 506 l 1 - 71 506 63 505 68 519 c 0 - 73 533 77 551 86 571 c 0 - 89 577 93 576 93 576 c 1 - 499 576 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/universal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/universal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/universal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/universal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: universal -Encoding: 8704 8704 226 -Width: 636 -Flags: W -HStem: -4 21G<183 195> 381 59<223 359> 616 35<7 48 200 255 419 469 583 641> 616 27<423 469> -LayerCount: 2 -Fore -SplineSet -174 4 m 1xe0 - 71 510 l 2 - 65 546 62 563 58 583 c 0 - 53 607 15 616 8 616 c 0 - 5 616 6 626 7 632 c 0 - 8 637 11 648 13 651 c 1xe0 - 49 649 91 644 131 644 c 0xd0 - 173 644 225 649 258 651 c 1 - 262 646 256 616 251 616 c 0 - 240 616 203 605 193 594 c 0 - 191 591 189 589 188 583 c 0 - 186 574 193 542 197 517 c 24 - 202 489 209 444 209 444 c 1 - 209 444 212 440 215 440 c 0 - 249 438 282 439 304 439 c 0 - 341 439 364 439 396 440 c 0 - 399 440 402 443 403 445 c 1 - 447 520 l 1 - 463 543 476 563 479 580 c 0 - 482 595 474 599 470 603 c 0 - 459 614 423 618 416 618 c 0 - 411 618 418 645 421 651 c 1 - 457 649 480 646 520 646 c 0 - 562 646 600 649 642 651 c 1 - 643 649 643 643 642 637 c 0 - 641 631 639 619 637 619 c 0 - 626 619 568 596 555 578 c 0 - 535 550 516 517 516 517 c 2 - 250 75 l 0 - 235 52 206 -4 186 -4 c 0 - 180 -4 175 1 174 4 c 1xe0 -358 378 m 0 - 340 380 314 381 293 381 c 0 - 265 381 255 381 227 379 c 0 - 225 379 223 374 223 374 c 1 - 255 200 l 1 - 359 374 l 1 - 359 374 360 378 358 378 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: uogonek -Encoding: 371 371 385 -Width: 521 -Flags: W -HStem: -213 61<275 357> -8 107<98 210> 354 84<79 178> -VStem: 62 119<41 215> 104 119<242 396> 235 60<-169 -88> -LayerCount: 2 -Fore -SplineSet -235 -156 m 0xf4 - 235 -94 285 -51 326 -7 c 1 - 297 -3 275 19 275 58 c 0 - 275 65 278 89 282 110 c 0 - 286 131 291 151 294 162 c 1 - 257 83 165 -8 123 -8 c 3 - 73 -8 62 16 62 76 c 0xf4 - 62 107 75 174 80 199 c 8 - 88 239 94 262 100 302 c 18 - 101 306 104 329 104 334 c 0 - 104 343 100 354 90 354 c 0 - 69 354 24 301 21 295 c 1 - 14 295 7 315 7 321 c 1 - 24 352 105 438 158 438 c 0 - 197 438 224 414 224 369 c 0xec - 224 355 217 321 215 311 c 0 - 213 299 192 194 192 194 c 2 - 190 182 181 130 181 120 c 0 - 181 110 185 100 196 100 c 0 - 224 100 306 243 330 363 c 10 - 344 431 l 17 - 354 434 387 437 398 437 c 0 - 409 437 444 434 456 431 c 1 - 399 129 l 2 - 398 124 396 102 396 97 c 0 - 396 88 399 76 409 76 c 0 - 430 76 476 130 479 136 c 1 - 486 136 492 115 492 109 c 1 - 483 92 454 60 421 33 c 0 - 361 -16 295 -65 295 -119 c 0 - 295 -142 306 -152 330 -152 c 0 - 371 -152 395 -122 402 -117 c 1 - 409 -119 407 -139 405 -143 c 0 - 383 -181 335 -213 294 -213 c 0 - 256 -213 235 -182 235 -156 c 0xf4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: Uogonek -Encoding: 370 370 384 -Width: 675 -Flags: W -HStem: -213 61<287 369> -9 70<263 370> 610 36<97 148 289 354 517 574 664 736> -VStem: 247 60<-169 -90> -LayerCount: 2 -Fore -SplineSet -307 -119 m 0 - 307 -142 318 -152 342 -152 c 0 - 383 -152 407 -122 414 -117 c 1 - 421 -119 419 -139 417 -143 c 0 - 395 -181 347 -213 306 -213 c 0 - 268 -213 247 -182 247 -156 c 0 - 247 -95 301 -47 341 -3 c 1 - 321 -7 302 -9 281 -9 c 0 - 205 -9 138 18 106 77 c 0 - 80 125 77 192 97 294 c 2 - 137 501 l 2 - 145 543 152 573 148 593 c 0 - 146 606 105 609 93 610 c 1 - 90 617 95 640 100 646 c 1 - 134 642 191 640 229 640 c 0 - 267 640 322 642 358 646 c 1 - 361 640 357 617 351 610 c 1 - 339 609 296 606 289 593 c 0 - 278 573 272 543 264 501 c 2 - 230 322 l 2 - 217 256 209 207 220 155 c 0 - 238 69 305 62 340 62 c 0 - 412 62 501 131 534 302 c 2 - 566 468 l 2 - 574 510 581 567 577 587 c 0 - 573 606 525 609 513 610 c 1 - 510 617 515 640 520 646 c 1 - 562 642 590 640 632 640 c 0 - 672 640 702 644 740 646 c 1 - 743 640 739 617 733 610 c 1 - 721 609 671 608 659 587 c 0 - 648 567 630 511 622 469 c 2 - 585 279 l 2 - 561 157 501 76 428 32 c 0 - 380 3 307 -68 307 -119 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uring -Encoding: 367 367 363 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 517 18 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uring -Encoding: 366 366 362 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 262 -1 N 1 0 0 1 185 66 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: utilde -Encoding: 361 361 357 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 771 N 1 0 0 1 530 20 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Utilde -Encoding: 360 360 356 -Width: 675 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 -1 N 1 0 0 1 107 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/v.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/v.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/v.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/v.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: v -Encoding: 118 118 86 -Width: 454 -VWidth: 0 -Flags: W -HStem: -5 21G<115 157> 348 91<72 181> -VStem: 90 119<110 348> 340 100<275 355> -LayerCount: 2 -Fore -SplineSet -230 109 m 1 - 261 131 295 166 316 206 c 0 - 337 247 340 279 340 300 c 0 - 340 324 323 355 299 375 c 1 - 299 411 340 438 363 438 c 0 - 400 438 439 415 439 349 c 0 - 439 225 188 -5 126 -5 c 1 - 105 44 90 164 90 283 c 2 - 90 326 l 2 - 90 335 89 348 79 348 c 0 - 64 348 25 301 22 295 c 1 - 15 295 9 315 9 321 c 1 - 27 353 107 438 160 438 c 0 - 202 438 209 413 209 384 c 2 - 209 384 209 365 209 353 c 24 - 209 333 l 2 - 209 226 222 119 230 109 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_V.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_V.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_V.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_V.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: V -Encoding: 86 86 54 -Width: 612 -Flags: W -HStem: -11 21G<236 245> 610 36<61 103 258 318 488 550 627 697> -LayerCount: 2 -Fore -SplineSet -192 640 m 0 - 230 640 286 642 322 646 c 1 - 325 640 320 617 314 610 c 1 - 302 609 259 608 254 584 c 0 - 251 568 256 538 262 511 c 0 - 289 381 333 182 333 182 c 1 - 333 182 501 482 516 509 c 0 - 529 534 548 566 552 587 c 0 - 555 605 495 609 483 610 c 1 - 480 617 486 640 491 646 c 1 - 533 642 555 640 597 640 c 0 - 637 640 662 644 700 646 c 1 - 703 640 699 617 693 610 c 1 - 681 609 641 609 627 593 c 0 - 609 573 592 544 573 512 c 0 - 461 316 397 210 292 29 c 0 - 281 11 251 -11 240 -11 c 0 - 232 -11 233 -4 230 3 c 1 - 129 498 l 2 - 123 526 116 558 112 578 c 0 - 106 603 68 609 56 610 c 1 - 53 617 59 640 64 646 c 1 - 98 642 154 640 192 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wacute -Encoding: 7811 7811 600 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 658 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wacute -Encoding: 7810 7810 599 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 260 -1 N 1 0 0 1 335 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: wcircumflex -Encoding: 373 373 367 -Width: 708 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 676 21 2 -Refer: 87 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wcircumflex -Encoding: 372 372 366 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 240 22 2 -Refer: 55 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wdieresis -Encoding: 7813 7813 602 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 639 10 2 -Refer: 87 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wdieresis -Encoding: 7812 7812 601 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 224 14 2 -Refer: 55 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/w.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/w.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/w.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/w.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: w -Encoding: 119 119 87 -Width: 708 -VWidth: 0 -Flags: W -HStem: -5 21G<116 162 374 417> 348 91<71 180> -VStem: 89 119<122 348> 339 108<246 328> 595 100<275 355> -LayerCount: 2 -Fore -SplineSet -447 396 m 1 - 447 345 453 281 460 225 c 0 - 468 164 477 114 481 109 c 1 - 506 123 546 157 571 201 c 0 - 592 238 595 273 595 295 c 0 - 595 323 578 355 554 375 c 1 - 554 411 595 438 618 438 c 0 - 655 438 694 415 694 349 c 0 - 694 225 453 -4 381 -4 c 1 - 367 15 358 57 350 100 c 0 - 344 132 340 165 339 188 c 1 - 308 123 197 23 127 -5 c 1 - 106 44 89 164 89 283 c 2 - 89 326 l 2 - 89 335 88 348 78 348 c 0 - 63 348 24 301 21 295 c 1 - 14 295 8 315 8 321 c 1 - 26 353 106 438 159 438 c 0 - 201 438 208 413 208 384 c 2 - 208 384 208 365 208 353 c 0 - 208 333 l 2 - 208 226 221 128 229 118 c 1 - 253 135 284 176 303 213 c 0 - 317 240 331 280 337 315 c 1 - 345 348 426 396 447 396 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_W.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_W.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_W.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_W.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: W -Encoding: 87 87 55 -Width: 856 -Flags: W -HStem: -11 21G<208 218 523 532> 610 36<62 109 266 320 727 788 867 937> -LayerCount: 2 -Fore -SplineSet -195 640 m 0 - 233 640 288 642 324 646 c 1 - 327 640 323 617 317 610 c 1 - 305 609 258 605 258 572 c 0 - 258 567 260 539 264 511 c 0 - 281 392 301 245 301 245 c 1 - 301 245 458 547 492 610 c 0 - 502 629 518 646 528 646 c 0 - 532 646 533 642 535 631 c 0 - 563 467 609 209 609 209 c 1 - 609 209 740 478 756 509 c 0 - 768 534 785 566 789 587 c 0 - 792 605 735 609 723 610 c 1 - 720 617 726 640 731 646 c 1 - 773 642 795 640 837 640 c 0 - 877 640 903 644 941 646 c 1 - 944 640 939 617 933 610 c 1 - 921 609 881 609 867 593 c 0 - 849 573 830 546 813 512 c 0 - 721 327 666 220 573 39 c 0 - 560 15 538 -11 527 -11 c 0 - 519 -11 515 -4 512 3 c 1 - 441 408 l 1 - 441 408 326 184 254 43 c 0 - 248 32 223 -11 212 -11 c 0 - 204 -11 201 -4 198 3 c 1 - 130 498 l 2 - 127 527 125 536 119 576 c 0 - 115 602 71 609 59 610 c 1 - 55 617 61 640 66 646 c 1 - 100 642 157 640 195 640 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wgrave -Encoding: 7809 7809 598 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 571 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wgrave -Encoding: 7808 7808 597 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 209 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/x.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/x.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/x.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/x.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: x -Encoding: 120 120 88 -Width: 499 -VWidth: 0 -Flags: W -HStem: -8 84<267 368> -7 74<53 124> 348 91<111 213> 364 74<352 419> -LayerCount: 2 -Fore -SplineSet -199 438 m 0x60 - 226 438 240 412 248 384 c 2 - 274 290 l 1 - 313 366 l 1 - 337 411 368 438 407 438 c 0 - 431 438 465 430 478 418 c 1 - 483 409 489 387 489 371 c 0 - 489 345 471 312 436 312 c 0 - 413 312 399 329 392 340 c 0 - 386 350 377 364 370 364 c 0 - 359 364 351 352 339 332 c 2 - 288 245 l 1 - 327 115 l 2 - 333 96 340 76 357 76 c 0 - 378 76 424 130 427 136 c 1 - 434 136 440 115 440 109 c 1 - 423 78 337 -8 284 -8 c 0x90 - 250 -8 236 24 224 57 c 0 - 224 59 214 94 200 140 c 1 - 162 65 l 1 - 138 20 107 -7 68 -7 c 0 - 37 -7 19 0 3 11 c 1 - -4 17 -12 37 -12 58 c 0 - -12 84 5 120 40 120 c 0 - 63 120 77 103 84 92 c 0 - 90 83 98 67 105 67 c 0 - 115 67 125 74 141 102 c 2 - 187 185 l 1 - 150 308 l 2 - 147 317 138 348 118 348 c 0 - 103 348 65 301 62 295 c 1 - 55 295 48 315 48 321 c 1 - 66 353 146 438 199 438 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_X.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_X.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_X.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_X.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,141 +0,0 @@ -StartChar: X -Encoding: 88 88 56 -Width: 643 -Flags: W -HStem: -4 36<-52 23 120 183 310 365 543 598> 610 36<89 145 306 361 473 527 633 702> -LayerCount: 2 -Back -SplineSet -276.6015625 640.625 m 0 - 290.081054688 640.625 304.116210938 640.922851562 318.708984375 641.517578125 c 0 - 333.30078125 642.112304688 350.911132812 643.036132812 371.5390625 644.290039062 c 0 - 392.16796875 645.543945312 404.466796875 646.275390625 408.4375 646.484375 c 1 - 408.522460938 645.975585938 408.502929688 644.810546875 408.379882812 642.989257812 c 0 - 408.256835938 641.16796875 408.1953125 639.728515625 408.1953125 638.671875 c 0 - 408.1953125 633.049804688 407.22265625 626.924804688 405.278320312 620.295898438 c 0 - 403.333007812 613.666015625 401.45703125 610.3515625 399.6484375 610.3515625 c 0 - 390.661132812 610.3515625 380.217773438 608.546875 368.319335938 604.9375 c 0 - 356.420898438 601.327148438 349.611328125 596.296875 347.890625 589.84375 c 1 - 346.588867188 582.03125 347.565429688 574.870117188 350.8203125 568.359375 c 1 - 420.15625 404.296875 l 1 - 429.21875 414.126953125 441.640625 427.303710938 457.421875 443.828125 c 0 - 473.204101562 460.352539062 486.985351562 474.841796875 498.765625 487.296875 c 0 - 510.546875 499.750976562 522.462890625 512.62109375 534.515625 525.90625 c 0 - 546.568359375 539.19140625 556.052734375 550.478515625 562.96875 559.765625 c 0 - 569.885742188 569.052734375 573.713867188 575.823242188 574.453125 580.078125 c 0 - 575.87109375 588.112304688 570.033203125 595.166015625 556.940429688 601.240234375 c 0 - 543.846679688 607.314453125 529.176757812 610.3515625 512.9296875 610.3515625 c 0 - 511.956054688 610.3515625 511.469726562 613.932617188 511.469726562 621.09375 c 0 - 511.469726562 625.696289062 512.384765625 630.688476562 514.213867188 636.071289062 c 0 - 516.043945312 641.454101562 517.89453125 644.924804688 519.765625 646.484375 c 1 - 524.958007812 646.178710938 536.125976562 645.435546875 553.270507812 644.25390625 c 0 - 570.4140625 643.072265625 585.1875 642.171875 597.58984375 641.553710938 c 0 - 609.991210938 640.934570312 621.159179688 640.625 631.09375 640.625 c 0 - 645.071289062 640.625 658.956054688 640.942382812 672.747070312 641.578125 c 0 - 686.5390625 642.212890625 701.629882812 643.096679688 718.021484375 644.229492188 c 0 - 734.413085938 645.362304688 746.126953125 646.114257812 753.1640625 646.484375 c 1 - 753.41015625 645.74609375 753.533203125 643.466796875 753.533203125 639.6484375 c 0 - 753.533203125 633.907226562 752.625976562 627.58984375 750.811523438 620.694335938 c 0 - 748.997070312 613.798828125 747.176757812 610.3515625 745.3515625 610.3515625 c 0 - 736.874023438 610.3515625 723.161132812 607.325195312 704.211914062 601.271484375 c 0 - 685.262695312 595.21875 669.353515625 585.549804688 656.484375 572.265625 c 2 - 443.59375 347.65625 l 1 - 516.103515625 177.124023438 555.817382812 85.978515625 562.734375 74.21875 c 0 - 567.250976562 66.3154296875 573.198242188 59.375 580.576171875 53.3984375 c 0 - 587.955078125 47.421875 595.240234375 43.037109375 602.43359375 40.2451171875 c 0 - 609.625976562 37.453125 615.758789062 35.41796875 620.829101562 34.1416015625 c 0 - 625.900390625 32.865234375 629.647460938 32.2265625 632.0703125 32.2265625 c 0 - 632.623046875 32.2265625 632.963867188 31.7216796875 633.092773438 30.712890625 c 0 - 633.220703125 29.703125 633.165039062 28.322265625 632.923828125 26.568359375 c 0 - 632.682617188 24.8154296875 632.400390625 23.06640625 632.077148438 21.322265625 c 0 - 631.752929688 19.5771484375 631.384765625 17.6494140625 630.970703125 15.537109375 c 0 - 630.556640625 13.42578125 630.272460938 11.8271484375 630.1171875 10.7421875 c 0 - 629.466796875 7.4873046875 627.513671875 2.6044921875 624.2578125 -3.90625 c 1 - 551.9921875 0 508.373046875 1.953125 493.3984375 1.953125 c 0 - 478.416992188 1.953125 463.008789062 1.625 447.17578125 0.9677734375 c 0 - 431.342773438 0.310546875 413.98046875 -0.5517578125 395.090820312 -1.6181640625 c 0 - 376.200195312 -2.6845703125 360.791992188 -3.447265625 348.8671875 -3.90625 c 1 - 348.287109375 -3.1806640625 347.99609375 -0.2509765625 347.99609375 4.8828125 c 0 - 347.99609375 10.2421875 349.155273438 16.138671875 351.473632812 22.57421875 c 0 - 353.791992188 29.0087890625 355.852539062 32.2265625 357.65625 32.2265625 c 0 - 365.375 32.2265625 376.262695312 34.87109375 390.321289062 40.16015625 c 0 - 404.37890625 45.44921875 412.044921875 51.9189453125 413.3203125 59.5703125 c 1 - 414.513671875 63.1513671875 414.513671875 66.7314453125 413.3203125 70.3125 c 2 - 332.265625 262.6953125 l 1 - 331.080078125 261.340820312 323.022460938 252.266601562 308.090820312 235.473632812 c 0 - 293.16015625 218.681640625 278.838867188 202.446289062 265.127929688 186.768554688 c 0 - 251.416992188 171.08984375 236.618164062 153.987304688 220.731445312 135.458007812 c 0 - 204.844726562 116.9296875 191.9296875 101.241210938 181.987304688 88.3935546875 c 0 - 172.044921875 75.544921875 166.799804688 67.564453125 166.25 64.453125 c 0 - 164.45703125 54.58984375 170.294921875 46.7529296875 183.764648438 40.9423828125 c 0 - 197.235351562 35.1318359375 211.904296875 32.2265625 227.7734375 32.2265625 c 0 - 229.7265625 32.2265625 229.7265625 25.390625 227.7734375 11.71875 c 0 - 226.9921875 6.25 225.365234375 1.0419921875 222.890625 -3.90625 c 1 - 164.296875 0 124.909179688 1.953125 104.7265625 1.953125 c 0 - 93.890625 1.953125 82.837890625 1.73046875 71.568359375 1.28515625 c 0 - 60.298828125 0.83984375 50.6962890625 0.3388671875 42.76171875 -0.216796875 c 0 - 34.8271484375 -0.7734375 25.447265625 -1.4326171875 14.623046875 -2.193359375 c 0 - 3.7978515625 -2.955078125 -5.2294921875 -3.525390625 -12.4609375 -3.90625 c 1 - -12.4609375 -3.634765625 -12.7197265625 -1.7705078125 -13.23828125 1.685546875 c 0 - -13.7568359375 5.142578125 -13.8232421875 7.8359375 -13.4375 9.765625 c 0 - -10.94140625 24.7392578125 -8.337890625 32.2265625 -5.625 32.2265625 c 0 - 1.7939453125 32.2265625 15.8857421875 35.3623046875 36.65234375 41.6337890625 c 0 - 57.41796875 47.90625 71.9716796875 55.837890625 80.3125 65.4296875 c 2 - 305.8984375 324.21875 l 1 - 222.890625 524.4140625 l 2 - 221.94140625 526.659179688 219.7734375 531.87890625 216.388671875 540.073242188 c 0 - 213.002929688 548.267578125 210.447265625 554.3203125 208.721679688 558.231445312 c 0 - 206.99609375 562.143554688 204.723632812 567.111328125 201.904296875 573.135742188 c 0 - 199.083984375 579.16015625 196.529296875 583.962890625 194.237304688 587.543945312 c 0 - 191.9453125 591.125976562 189.778320312 593.845703125 187.734375 595.703125 c 0 - 182.848632812 600.145507812 175.747070312 603.697265625 166.430664062 606.358398438 c 0 - 157.114257812 609.020507812 149.2421875 610.3515625 142.8125 610.3515625 c 0 - 141.920898438 610.3515625 141.474609375 614.2578125 141.474609375 622.0703125 c 0 - 141.474609375 626.571289062 142.377929688 631.3828125 144.184570312 636.505859375 c 0 - 145.991210938 641.62890625 147.8125 644.955078125 149.6484375 646.484375 c 1 - 159.826171875 646.032226562 173.228515625 645.270507812 189.854492188 644.19921875 c 0 - 206.48046875 643.127929688 221.77734375 642.263671875 235.745117188 641.608398438 c 0 - 249.712890625 640.953125 263.33203125 640.625 276.6015625 640.625 c 0 -EndSplineSet -Fore -SplineSet -233 641 m 0 - 278 641 328 644 365 646 c 1 - 366 640 361 610 356 610 c 1 - 343 610 309 605 305 590 c 0 - 304 584 305 574 308 568 c 2 - 377 404 l 1 - 428 460 507 538 527 570 c 0 - 530 574 531 577 531 580 c 0 - 534 597 502 610 471 610 c 1 - 466 610 471 641 477 646 c 1 - 508 642 563 640 596 640 c 0 - 643 640 679 642 706 646 c 1 - 708 640 703 610 698 610 c 1 - 691 610 636 609 587 559 c 2 - 393 360 l 1 - 445 236 509 91 520 74 c 0 - 540 40 589 32 602 32 c 1 - 604 23 601 4 595 -4 c 1 - 559 -2 487 2 450 2 c 0 - 399 2 357 -2 306 -4 c 1 - 302 1 309 32 314 32 c 0 - 324 32 368 42 371 60 c 0 - 372 63 371 67 370 70 c 2 - 287 267 l 1 - 269 247 160 127 126 81 c 0 - 120 73 116 67 115 64 c 0 - 110 41 158 32 185 32 c 1 - 188 25 186 7 181 -4 c 1 - 152 -2 95 2 62 2 c 0 - 15 2 -19 -2 -56 -4 c 1 - -59 2 -55 25 -49 32 c 1 - -42 32 22 34 59 77 c 2 - 267 314 l 1 - 181 524 l 2 - 170 550 157 586 146 596 c 0 - 135 606 97 610 86 610 c 1 - 81 610 87 641 93 646 c 1 - 137 644 188 641 233 641 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: yacute -Encoding: 253 253 187 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 582 10 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Yacute -Encoding: 221 221 155 -Width: 562 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 207 -16 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ycircumflex -Encoding: 375 375 369 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 770 N 1 0 0 1 529 21 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ycircumflex -Encoding: 374 374 368 -Width: 562 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 -1 N 1 0 0 1 90 22 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ydieresis -Encoding: 255 255 189 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 776 N 1 0 0 1 506 21 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ydieresis -Encoding: 376 376 370 -Width: 562 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 -1 N 1 0 0 1 101 11 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/yen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/yen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/yen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/yen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: yen -Encoding: 165 165 100 -Width: 616 -Flags: W -HStem: -4 35<119 183 320 370> 127 43<117 433> 214 43<133 450> 592 35<95 137 288 347 455 511 585 653> -LayerCount: 2 -Fore -SplineSet -136 214 m 2 - 133 214 131 217 131 221 c 0 - 131 232 136 246 146 257 c 1 - 448 257 l 2 - 450 257 451 254 451 250 c 0 - 451 239 450 224 439 214 c 1 - 136 214 l 2 -119 127 m 2 - 116 127 114 130 114 134 c 0 - 114 145 119 159 129 170 c 1 - 432 170 l 2 - 434 170 435 167 435 163 c 0 - 435 152 433 137 422 127 c 1 - 119 127 l 2 -207 138 m 2 - 232 269 l 0 - 233 276 233 280 231 288 c 0 - 218 340 163 509 163 509 c 2 - 154 535 154 542 147 561 c 0 - 138 584 105 591 93 592 c 1 - 90 599 94 621 99 627 c 1 - 132 623 188 620 225 620 c 0 - 262 620 315 623 350 627 c 1 - 353 621 349 599 343 592 c 1 - 331 591 289 589 284 566 c 0 - 283 562 286 559 288 552 c 2 - 352 342 l 1 - 356 337 451 472 504 548 c 0 - 509 556 511 562 512 569 c 0 - 515 586 463 591 451 592 c 1 - 448 599 453 621 458 627 c 1 - 499 623 515 620 556 620 c 0 - 595 620 619 625 656 627 c 1 - 659 621 655 599 649 592 c 1 - 637 591 596 589 579 568 c 0 - 557 541 399 338 363 282 c 0 - 358 275 356 271 355 265 c 0 - 330 138 l 2 - 321 97 316 67 320 48 c 0 - 322 35 361 32 373 31 c 1 - 376 24 371 2 366 -4 c 1 - 333 0 278 3 241 3 c 0 - 204 3 151 0 116 -4 c 1 - 113 2 117 24 123 31 c 1 - 135 32 176 35 183 48 c 0 - 194 67 198 97 207 138 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: y -Encoding: 121 121 89 -Width: 489 -Flags: W -HStem: -213 78<-26 59> 348 91<57 196> -VStem: 139 118<25 262> 360 100<244 355> -LayerCount: 2 -Fore -SplineSet -126 438 m 0 - 266 438 257 85 257 25 c 1 - 292 68 360 191 360 297 c 0 - 360 335 334 363 319 375 c 1 - 319 408 357 438 385 438 c 0 - 420 438 460 416 460 348 c 0 - 460 119 121 -213 -11 -213 c 0 - -46 -213 -74 -194 -74 -152 c 0 - -74 -135 -60 -112 -45 -104 c 1 - -30 -113 15 -135 52 -135 c 0 - 113 -135 128 -104 130 -98 c 0 - 140 -68 139 8 139 50 c 0 - 139 161 117 348 69 348 c 0 - 45 348 16 298 13 295 c 1 - 5 296 -2 318 -1 321 c 1 - 10 340 80 438 126 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Y -Encoding: 89 89 57 -Width: 562 -Flags: W -HStem: -4 36<96 161 303 354> 610 36<72 114 270 330 442 500 577 646> -LayerCount: 2 -Fore -SplineSet -186 142 m 2 - 213 277 l 0 - 214 284 213 289 211 297 c 0 - 198 351 142 524 142 524 c 2 - 133 551 131 558 124 578 c 0 - 115 602 80 609 68 610 c 1 - 65 617 70 640 75 646 c 1 - 109 642 166 640 204 640 c 0 - 242 640 297 642 333 646 c 1 - 336 640 332 617 326 610 c 1 - 314 609 271 608 266 584 c 0 - 265 580 267 575 269 568 c 2 - 336 353 l 1 - 340 348 437 486 492 564 c 0 - 497 572 500 580 501 587 c 0 - 504 605 450 609 438 610 c 1 - 435 617 440 640 445 646 c 1 - 487 642 504 640 546 640 c 0 - 586 640 611 644 649 646 c 1 - 652 640 648 617 642 610 c 1 - 630 609 588 608 570 586 c 0 - 547 558 385 349 348 291 c 0 - 343 284 340 278 339 272 c 0 - 313 142 l 2 - 304 100 299 70 303 50 c 0 - 305 37 345 33 357 32 c 1 - 360 25 355 2 350 -4 c 1 - 316 0 260 3 222 3 c 0 - 184 3 129 0 93 -4 c 1 - 90 2 94 25 100 32 c 1 - 112 33 154 37 161 50 c 0 - 172 70 177 100 186 142 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ygrave -Encoding: 7923 7923 446 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 471 1 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ygrave -Encoding: 7922 7922 445 -Width: 562 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 78 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zacute -Encoding: 378 378 372 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 560 38 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zacute -Encoding: 377 377 371 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 260 -1 N 1 0 0 1 187 -3 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zcaron -Encoding: 382 382 376 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 780 N 1 0 0 1 524 13 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zcaron -Encoding: 381 381 375 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 -1 N 1 0 0 1 24 -3 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zdotaccent -Encoding: 380 380 374 -Width: 430 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 775 N 1 0 0 1 523 21 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zdotaccent -Encoding: 379 379 373 -Width: 593 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 -1 N 1 0 0 1 113 0 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: zero -Encoding: 48 48 16 -Width: 514 -Flags: W -HStem: -5 37<184 238> 590 37<275 330> -LayerCount: 2 -Fore -SplineSet -165 148 m 0 - 165 90 177 32 208 32 c 0 - 268 32 350 233 350 451 c 0 - 350 482 349 590 307 590 c 0 - 245 590 165 388 165 148 c 0 -44 288 m 0 - 81 476 212 627 317 627 c 0 - 444 627 501 491 469 326 c 0 - 437 161 312 -5 191 -5 c 0 - 81 -5 12 123 44 288 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" zero.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" zero.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: zero.onum -Encoding: 65552 -1 405 -Width: 474 -Flags: W -HStem: -7 66<213 304> 372 66<255 346> -LayerCount: 2 -Fore -SplineSet -305 372 m 0 - 251 372 202 302 187 226 c 0 - 169 136 201 60 255 60 c 0 - 309 60 357 130 372 206 c 0 - 390 296 359 372 305 372 c 0 -322 438 m 0 - 441 438 516 339 493 216 c 0 - 470 93 356 -7 236 -7 c 0 - 117 -7 43 93 66 216 c 0 - 89 339 203 438 322 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/zero.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: zero.prop -Encoding: 65576 -1 463 -Width: 515 -Flags: HW -LayerCount: 2 -Fore -Refer: 16 48 N 1 0 0 1 10 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: z -Encoding: 122 122 90 -Width: 430 -Flags: W -HStem: -3 96<245 321> 37 93<68 184> 307 93<229 344> 344 96<92 168> -LayerCount: 2 -Back -SplineSet -117.1875 343.75 m 0 - 127.278320312 343.75 138.752929688 340.657226562 151.611328125 334.47265625 c 0 - 164.469726562 328.288085938 178.955078125 322.102539062 195.068359375 315.91796875 c 0 - 211.181640625 309.733398438 228.515625 306.640625 247.0703125 306.640625 c 1024 -EndSplineSet -Fore -SplineSet -166 439 m 0x10 - 207 439 233 430 259 418 c 0 - 277 410 302 399 340 399 c 0 - 362 399 392 423 408 438 c 1 - 428 438 428 420 429 411 c 0 - 429 397 132 126 129 122 c 1 - 134 124 157 130 170 130 c 0x60 - 197 130 223 125 243 115 c 0 - 260 107 286 93 307 93 c 0 - 336 93 355 133 362 142 c 1 - 372 142 379 126 380 118 c 1 - 361 80 299 -3 247 -3 c 0x80 - 206 -3 180 7 154 19 c 0 - 136 27 111 37 73 37 c 0 - 51 37 21 13 5 -2 c 1 - -15 -2 -15 16 -16 25 c 1 - -16 41 282 310 284 314 c 1 - 279 312 256 307 243 307 c 0x60 - 216 307 190 311 170 321 c 0 - 153 329 127 344 106 344 c 0 - 77 344 58 304 51 295 c 1 - 41 295 34 310 33 318 c 1 - 52 356 114 439 166 439 c 0x10 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldItalic.sfdir/_Z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldItalic.sfdir/_Z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: Z -Encoding: 90 90 58 -Width: 593 -Flags: W -HStem: 0 46<153 426> 596 44<208 450> 627 20G<146 164 576 617> -LayerCount: 2 -Fore -SplineSet -284 596 m 2xc0 - 187 596 159 524 127 463 c 0 - 125 460 123 457 114 457 c 0 - 104 457 91 459 89 462 c 1 - 110 519 136 584 157 646 c 1xa0 - 171 642 262 640 275 640 c 2 - 402 641 l 2 - 478 642 538 644 615 650 c 1 - 619 649 620 628 618 618 c 1 - 615 610 153 46 153 46 c 17 - 349 46 l 2 - 383 46 417 58 442 80 c 0 - 465 101 483 122 507 166 c 0 - 509 170 513 172 520 172 c 0 - 529 172 545 169 547 166 c 1 - 523 114 483 43 466 1 c 1 - 428 1 -1 0 -1 0 c 1 - -13 0 -25 17 -21 21 c 2 - 451 596 l 1 - 284 596 l 2xc0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfd fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfd --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfd 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfd 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10486 @@ +SplineFontDB: 3.0 +FontName: AmiriLatin-Bold +FullName: Amiri Latin Bold +FamilyName: Amiri Latin +Weight: Bold +Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. +Version: 0.8 +ItalicAngle: 0 +UnderlinePosition: -102 +UnderlineWidth: 51 +Ascent: 800 +Descent: 200 +InvalidEm: 0 +LayerCount: 2 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1273891947 +ModificationTime: 0 +PfmFamily: 17 +TTFWeight: 700 +TTFWidth: 5 +LineGap: 90 +VLineGap: 0 +OS2TypoAscent: 700 +OS2TypoAOffset: 0 +OS2TypoDescent: -300 +OS2TypoDOffset: 0 +OS2TypoLinegap: 90 +OS2WinAscent: 0 +OS2WinAOffset: 0 +OS2WinDescent: 0 +OS2WinDOffset: 0 +HheadAscent: 700 +HheadAOffset: 0 +HheadDescent: -300 +HheadDOffset: 0 +OS2SubXSize: 649 +OS2SubYSize: 699 +OS2SubXOff: 0 +OS2SubYOff: 140 +OS2SupXSize: 649 +OS2SupYSize: 699 +OS2SupXOff: 0 +OS2SupYOff: 479 +OS2StrikeYSize: 50 +OS2StrikeYPos: 259 +OS2Vendor: 'PfEd' +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +KernClass2: 117+ 89 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" + 9 ampersand + 3 bar + 10 exclamdown + 10 registered + 12 questiondown + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 9 B uni1E02 + 47 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron + 84 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE + 9 F uni1E1E + 39 G Gcircumflex Gbreve Gdotaccent uni0122 + 121 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A + 16 J IJ Jcircumflex + 9 K uni0136 + 35 L Lacute uni013B Lcaron Ldot Lslash + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 134 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni1E0A uni1E0C uni1E0E uni1E10 + 9 P uni1E56 + 23 R Racute uni0156 Rcaron + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 5 Thorn + 0 + 0 + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 19 b uni1E03 f_b f_f_b + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 84 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe + 13 f uni1E1F f_f + 39 g gcircumflex gbreve gdotaccent uni0123 + 86 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i + 34 j ij jcircumflex uni0237 f_j f_f_j + 32 k uni0137 kgreenlandic f_k f_f_k + 40 l lacute uni013C lcaron lslash f_l f_f_l + 101 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h + 80 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut + 15 p thorn uni1E57 + 1 q + 23 r racute uni0157 rcaron + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 1 x + 37 y yacute ydieresis ycircumflex ygrave + 34 z zacute zdotaccent zcaron uni1E93 + 10 germandbls + 3 eth + 4 ldot + 3 eng + 0 + 0 + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 40 comma period quotesinglbase quotedblbase + 5 slash + 15 colon semicolon + 9 backslash + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 29 guillemotright guilsinglright + 9 parenleft + 14 zero zero.prop + 8 one.prop + 8 two.prop + 10 three.prop + 9 four.prop + 9 five.prop + 8 six.prop + 10 seven.prop + 10 eight.prop + 9 nine.prop + 11 bracketleft + 9 braceleft + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20 quotedbl quotesingle + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 13 J Jcircumflex + 0 + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 1 X + 2 AE + 0 + 9 ampersand + 10 parenright + 8 asterisk + 28 hyphen endash emdash uni2015 + 14 zero zero.prop + 8 two.prop + 9 four.prop + 8 six.prop + 10 seven.prop + 10 eight.prop + 9 nine.prop + 173 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 9 backslash + 12 bracketright + 76 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek + 15 b thorn uni1E03 + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 39 g gcircumflex gbreve gdotaccent uni0123 + 21 j jcircumflex uni0237 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 9 p uni1E57 + 1 q + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 10 braceright + 10 registered + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 29 guillemotright guilsinglright + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 84 f germandbls uni1E1F f_f f_i f_f_i f_j f_f_j f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 35 l lacute uni013C lcaron ldot lslash + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 1 x + 34 z zacute zdotaccent zcaron uni1E93 + 0 + 0 + 0 + 0 + 0 + 49 comma period quotesinglbase quotedblbase ellipsis + 5 slash + 15 colon semicolon + 3 eth + 16 three three.prop + 14 five five.prop + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 12 one one.prop + 6 exclam + 3 bar + 8 question + 0 + 2 at + 0 + 0 + 0 + 0 + 0 + 0 {} -44 {} -32 {} -34 {} -30 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} 0 {} 61 {} 33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} -46 {} -43 {} -40 {} 88 {} 42 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -24 {} 0 {} 0 {} 0 {} -35 {} -11 {} -16 {} -15 {} -12 {} -38 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -44 {} -41 {} -42 {} 107 {} 49 {} -16 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -61 {} -89 {} -82 {} -68 {} -16 {} -12 {} -48 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -11 {} -52 {} -27 {} -17 {} 14 {} -14 {} -14 {} -11 {} -11 {} -10 {} -33 {} -9 {} -57 {} -23 {} -10 {} -7 {} -17 {} -16 {} -10 {} -12 {} -21 {} -8 {} -16 {} -9 {} -21 {} -23 {} -62 {} -62 {} -62 {} -14 {} -36 {} -59 {} -57 {} -28 {} -13 {} -20 {} -8 {} -41 {} -26 {} -53 {} -49 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -28 {} -25 {} -28 {} -5 {} -5 {} -6 {} -16 {} -5 {} -7 {} -7 {} -32 {} -14 {} -13 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -6 {} -7 {} -21 {} -20 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -11 {} -10 {} -14 {} -9 {} -10 {} -10 {} -10 {} -9 {} -28 {} -6 {} -6 {} -7 {} -6 {} -27 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} -13 {} -13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -8 {} 0 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -6 {} -9 {} 0 {} -5 {} 0 {} 0 {} -8 {} -8 {} -29 {} -29 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -6 {} -18 {} -16 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} -67 {} -69 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -28 {} 0 {} -28 {} -27 {} -25 {} 0 {} -24 {} -9 {} -28 {} -22 {} -6 {} -10 {} -11 {} -11 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -19 {} 0 {} -7 {} -5 {} -5 {} 0 {} -12 {} 0 {} -9 {} 0 {} -19 {} -13 {} -20 {} -14 {} -17 {} -15 {} -9 {} -13 {} -43 {} -20 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -27 {} -24 {} -27 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} -14 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -7 {} -11 {} 0 {} -5 {} 0 {} -5 {} 0 {} -12 {} 0 {} 0 {} -5 {} -5 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -16 {} -10 {} 0 {} -20 {} -20 {} -12 {} -7 {} -20 {} -8 {} -20 {} -8 {} -15 {} -15 {} -21 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -17 {} -5 {} -14 {} -15 {} -14 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -10 {} -23 {} -11 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -16 {} -21 {} 0 {} -21 {} -21 {} -18 {} -7 {} -20 {} -13 {} -21 {} -17 {} -17 {} -15 {} -18 {} -18 {} -17 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -18 {} -15 {} -13 {} -15 {} -11 {} -10 {} -11 {} -18 {} 0 {} -9 {} 0 {} -17 {} -6 {} -20 {} -17 {} -17 {} -17 {} 0 {} -15 {} -9 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 30 {} 0 {} 0 {} 0 {} 0 {} 0 {} -54 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -26 {} 0 {} 0 {} -36 {} 0 {} -25 {} 0 {} -16 {} -9 {} -74 {} -73 {} -73 {} 0 {} -17 {} 0 {} 0 {} -33 {} 0 {} -33 {} 0 {} -55 {} -18 {} -68 {} -64 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 8 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} -61 {} -86 {} -75 {} -60 {} -6 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -71 {} 0 {} 0 {} 0 {} 16 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -40 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -52 {} -54 {} 0 {} 0 {} -64 {} -64 {} 0 {} 0 {} 0 {} 0 {} -48 {} 0 {} -42 {} -41 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -17 {} -8 {} 0 {} -17 {} -16 {} -9 {} -8 {} -19 {} -7 {} -16 {} -6 {} -15 {} -15 {} -23 {} -23 {} -23 {} 0 {} -10 {} 0 {} 0 {} -14 {} 0 {} -15 {} 0 {} -14 {} -15 {} -16 {} -15 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -11 {} -26 {} -15 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -13 {} -5 {} 0 {} -19 {} -30 {} 10 {} -27 {} -26 {} -22 {} -8 {} -24 {} -18 {} -26 {} -21 {} -23 {} -23 {} -26 {} -26 {} -26 {} 0 {} -11 {} 0 {} 0 {} -17 {} -12 {} -22 {} -21 {} -21 {} -21 {} -19 {} -18 {} -19 {} -23 {} 0 {} -11 {} 0 {} -21 {} -13 {} -25 {} -21 {} -22 {} -22 {} -10 {} -21 {} -14 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -32 {} -30 {} -39 {} -8 {} 0 {} -7 {} -30 {} -9 {} -13 {} -13 {} -35 {} -39 {} -30 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -22 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -15 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} -5 {} 0 {} 0 {} 0 {} -68 {} 0 {} -11 {} -6 {} -12 {} -88 {} -88 {} -18 {} -14 {} 16 {} -48 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} 0 {} -37 {} -36 {} -21 {} 0 {} -34 {} 0 {} -36 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -28 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -69 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -29 {} -62 {} -60 {} -44 {} -6 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -18 {} 0 {} 45 {} -11 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -36 {} -10 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} -12 {} 0 {} -8 {} 0 {} -8 {} -10 {} -47 {} -47 {} -46 {} 0 {} -28 {} -14 {} -17 {} -38 {} 0 {} -13 {} 0 {} -29 {} -12 {} -42 {} -36 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 10 {} 21 {} 32 {} 0 {} 0 {} 29 {} 27 {} 20 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -8 {} 0 {} -6 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -6 {} -10 {} 0 {} -7 {} 0 {} 0 {} -9 {} -9 {} -18 {} -18 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -8 {} -8 {} -8 {} -10 {} 0 {} -10 {} 0 {} -9 {} -11 {} -7 {} -6 {} -7 {} -6 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} -76 {} -85 {} -17 {} 0 {} 19 {} -60 {} 0 {} 0 {} -37 {} -15 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -16 {} -77 {} 0 {} -77 {} -78 {} -68 {} -15 {} -74 {} -61 {} -78 {} -68 {} -22 {} -66 {} -46 {} -46 {} -49 {} 0 {} 0 {} 0 {} 0 {} -55 {} -33 {} -70 {} -64 {} -26 {} -40 {} -28 {} -30 {} -29 {} -27 {} 0 {} -22 {} 0 {} -64 {} -40 {} -64 {} -39 {} -40 {} -40 {} -30 {} -41 {} -41 {} -24 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} -41 {} -42 {} -11 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -15 {} -28 {} 27 {} -28 {} -27 {} -24 {} 0 {} -26 {} -14 {} -28 {} -22 {} -15 {} -14 {} -14 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} -9 {} -13 {} -8 {} -7 {} -8 {} -22 {} 6 {} -5 {} 6 {} -21 {} -15 {} -25 {} -21 {} -24 {} -22 {} -14 {} -21 {} -21 {} -17 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} -88 {} 0 {} -9 {} 0 {} 0 {} -103 {} -124 {} -32 {} 0 {} 0 {} -56 {} -25 {} -13 {} -46 {} -36 {} 0 {} -17 {} -13 {} -31 {} -14 {} 0 {} -19 {} -85 {} 46 {} -86 {} -84 {} -74 {} -8 {} -78 {} -62 {} -86 {} -72 {} -44 {} -61 {} -47 {} -47 {} -46 {} -11 {} -21 {} 0 {} 0 {} -53 {} -39 {} -75 {} -73 {} -47 {} -43 {} -34 {} -34 {} -36 {} -39 {} 25 {} -12 {} 25 {} -75 {} -46 {} -77 {} -53 {} -59 {} -54 {} -42 {} -64 {} -71 {} -43 {} -43 {} 0 {} -14 {} -15 {} -9 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} -81 {} 0 {} -9 {} 0 {} 0 {} -97 {} -104 {} -31 {} 0 {} 0 {} -49 {} -23 {} -13 {} -41 {} -33 {} 0 {} -17 {} -13 {} -29 {} -13 {} 0 {} -20 {} -75 {} 44 {} -71 {} -70 {} -65 {} -8 {} -68 {} -52 {} -71 {} -62 {} -40 {} -52 {} -44 {} -44 {} -43 {} -11 {} -21 {} 0 {} 0 {} -47 {} -36 {} -65 {} -63 {} -45 {} -43 {} -31 {} -31 {} -34 {} -39 {} 21 {} -12 {} 21 {} -66 {} -39 {} -69 {} -48 {} -53 {} -48 {} -37 {} -57 {} -63 {} -41 {} -39 {} 0 {} -14 {} -15 {} -9 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 18 {} -28 {} -27 {} 0 {} 0 {} -28 {} 0 {} -26 {} 0 {} -17 {} -15 {} -67 {} -67 {} -67 {} 0 {} -12 {} 0 {} 0 {} -28 {} 0 {} -27 {} 0 {} -50 {} -18 {} -60 {} -56 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} 0 {} -77 {} 0 {} -6 {} 0 {} 0 {} -96 {} -95 {} -35 {} 0 {} 0 {} -68 {} -31 {} -17 {} -54 {} -43 {} 0 {} -21 {} -19 {} -40 {} -18 {} 0 {} -21 {} -85 {} 44 {} -95 {} -92 {} -78 {} -8 {} -93 {} -72 {} -94 {} -75 {} -62 {} -78 {} -62 {} -62 {} -63 {} -13 {} -30 {} 0 {} 0 {} -68 {} -49 {} -86 {} -75 {} -61 {} -63 {} -51 {} -51 {} -50 {} -44 {} 22 {} -12 {} 22 {} -77 {} -59 {} -80 {} -67 {} -69 {} -66 {} -50 {} -74 {} -50 {} -38 {} -48 {} 0 {} -17 {} -18 {} -8 {} -16 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} 0 {} -11 {} 0 {} 0 {} -15 {} -15 {} -41 {} -41 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -10 {} -32 {} -28 {} -32 {} -7 {} 0 {} -7 {} 0 {} -7 {} 0 {} -8 {} -7 {} -6 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -34 {} -31 {} -46 {} -8 {} 0 {} -5 {} -37 {} -9 {} -15 {} -14 {} -69 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 21 {} 17 {} 0 {} -17 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -46 {} -49 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 11 {} -24 {} -23 {} -21 {} 0 {} -21 {} -7 {} -24 {} -20 {} -10 {} -7 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -15 {} 0 {} -13 {} -6 {} -6 {} -8 {} -20 {} 0 {} -6 {} 0 {} -17 {} -15 {} -20 {} -22 {} -26 {} -24 {} -17 {} -16 {} -26 {} -17 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 33 {} 39 {} 63 {} 63 {} 59 {} 29 {} -36 {} 38 {} -64 {} 22 {} 0 {} 23 {} 42 {} -85 {} -65 {} -21 {} 85 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} 68 {} 83 {} -51 {} 0 {} -46 {} -45 {} -42 {} 0 {} -44 {} -33 {} -46 {} -40 {} -34 {} -32 {} -40 {} -40 {} -38 {} 70 {} -15 {} 0 {} 24 {} -24 {} -24 {} -40 {} -40 {} -35 {} -33 {} -33 {} -32 {} -36 {} -31 {} 0 {} -6 {} 0 {} -44 {} -35 {} -46 {} -41 {} -44 {} -43 {} -34 {} -41 {} -37 {} -23 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -41 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} -21 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -79 {} 0 {} 0 {} -24 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -13 {} -13 {} -15 {} 0 {} -22 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -7 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -71 {} 0 {} 0 {} -19 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -22 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} 0 {} 0 {} -21 {} -8 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -32 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 48 {} 0 {} 0 {} 0 {} 80 {} 0 {} 0 {} 60 {} -8 {} 45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 23 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 0 {} 0 {} 0 {} -13 {} -12 {} 0 {} 5 {} -9 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 35 {} 38 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} -14 {} 16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -10 {} -16 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} -4 {} 0 {} 0 {} 0 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} -17 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -13 {} 0 {} 0 {} 0 {} -41 {} -40 {} -6 {} 0 {} -39 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -14 {} 0 {} 0 {} -5 {} -4 {} 0 {} 0 {} -6 {} 0 {} -4 {} 0 {} 0 {} 0 {} -11 {} -11 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -62 {} -78 {} -67 {} -67 {} -20 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -44 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -23 {} -24 {} -11 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -80 {} 0 {} 0 {} -24 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -16 {} -16 {} -16 {} 0 {} -13 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -6 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -79 {} 0 {} 0 {} -23 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -13 {} -13 {} -16 {} 0 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -7 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} -18 {} -6 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -70 {} 0 {} 0 {} -18 {} -47 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -29 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -26 {} -5 {} 0 {} -11 {} -10 {} -5 {} 0 {} -7 {} 0 {} -11 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} -22 {} -10 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} 0 {} 0 {} -10 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -31 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} -4 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} -13 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -27 {} 22 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -25 {} -10 {} 0 {} -31 {} -31 {} -12 {} 0 {} -21 {} 0 {} -31 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} -14 {} -61 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -27 {} 22 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -25 {} -9 {} 0 {} -26 {} -25 {} -11 {} 0 {} -19 {} 0 {} -27 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -11 {} -10 {} 0 {} 0 {} -27 {} -26 {} -8 {} 0 {} -24 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} -14 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -27 {} 22 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -24 {} -11 {} 0 {} -31 {} -30 {} -12 {} 0 {} -22 {} 0 {} -30 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} -22 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 16 {} 0 {} 0 {} 25 {} 18 {} 54 {} 54 {} 55 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 63 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -10 {} -10 {} -8 {} 0 {} -9 {} 0 {} -10 {} 0 {} 0 {} 0 {} 45 {} 45 {} 45 {} 0 {} 0 {} 34 {} 48 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -73 {} -23 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -23 {} 0 {} 0 {} -10 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 21 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} -52 {} -46 {} -56 {} -9 {} -13 {} -8 {} -28 {} -12 {} -16 {} -17 {} -33 {} -33 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -25 {} -25 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -8 {} -22 {} -21 {} -32 {} -15 {} -12 {} -15 {} -12 {} -11 {} -30 {} 0 {} -15 {} -17 {} -17 {} -34 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} -41 {} -71 {} -64 {} -36 {} -8 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} -42 {} -43 {} 0 {} 0 {} -92 {} -95 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -39 {} -33 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} -53 {} -62 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -10 {} 0 {} 0 {} -36 {} 0 {} -43 {} -40 {} -36 {} 0 {} -40 {} -19 {} 0 {} -34 {} -16 {} -21 {} -16 {} -16 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -33 {} -18 {} -18 {} 0 {} -12 {} -11 {} -19 {} 0 {} 0 {} 0 {} -25 {} -10 {} -27 {} -22 {} 0 {} -22 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -43 {} -39 {} -36 {} -8 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -25 {} -47 {} -44 {} -31 {} 0 {} 45 {} -18 {} 10 {} 0 {} 0 {} 0 {} 5 {} 25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -25 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -21 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} -74 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -19 {} -26 {} -10 {} 0 {} -14 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} 15 {} 6 {} 0 {} 0 {} 0 {} -66 {} 0 {} 0 {} 0 {} 0 {} -76 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -24 {} -27 {} -16 {} 0 {} -21 {} 0 {} -24 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} -19 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -95 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -38 {} -35 {} -38 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -55 {} -53 {} -47 {} -57 {} -12 {} 0 {} -10 {} -27 {} -15 {} -17 {} -18 {} -30 {} -29 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -17 {} -17 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -12 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 133 {} 92 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -13 {} 0 {} 0 {} -22 {} 0 {} -28 {} -26 {} 0 {} 0 {} -29 {} 0 {} 0 {} -21 {} -21 {} -25 {} -27 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} -21 {} -24 {} -25 {} 0 {} -25 {} -22 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -15 {} -16 {} 0 {} -14 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -23 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} -10 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -17 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} -10 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 36 {} 36 {} 30 {} 0 {} 0 {} 13 {} -50 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -20 {} -18 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -17 {} -18 {} 0 {} 0 {} 0 {} -33 {} 0 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -23 {} -23 {} -20 {} 144 {} 95 {} -20 {} -21 {} -16 {} -16 {} -16 {} 0 {} -14 {} -25 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -19 {} 0 {} 0 {} -26 {} 0 {} -28 {} -26 {} 0 {} 0 {} -27 {} 0 {} 0 {} -25 {} -21 {} -22 {} -25 {} -25 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -22 {} -25 {} 0 {} -23 {} -22 {} -17 {} -12 {} -14 {} -12 {} -20 {} -10 {} -22 {} -23 {} 0 {} -22 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} 0 {} 122 {} 73 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} -14 {} 0 {} 0 {} -16 {} 0 {} 0 {} -15 {} 0 {} -13 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -14 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -13 {} -10 {} 0 {} -10 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -46 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 72 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 79 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -12 {} -10 {} -14 {} 0 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -22 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -31 {} -25 {} -24 {} -21 {} 0 {} -15 {} 0 {} -37 {} -23 {} -48 {} -44 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -4 {} 0 {} -12 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -11 {} -10 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -20 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -18 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -17 {} -17 {} -24 {} 0 {} 0 {} 0 {} -33 {} -8 {} -38 {} -35 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -22 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -13 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -15 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} -9 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -22 {} -16 {} -15 {} -25 {} -13 {} -15 {} 0 {} -21 {} -16 {} -39 {} -35 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -13 {} -23 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -21 {} 13 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -17 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -12 {} -25 {} 25 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} -14 {} -23 {} 27 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} -23 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2011, Sebastian Kosch,,, (),+AAoA-with Reserved Font Name Crimson.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" +GaspTable: 1 65535 15 1 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +BeginPrivate: 0 +EndPrivate +Grid +-1000 711.0078125 m 1 + 2000 711.0078125 l 1025 +-1000 486.03515625 m 1 + 2000 486.03515625 l 1025 +-249.0234375 -196.77734375 m 25 + -249.0234375 887.20703125 l 1025 +-1000 639.6484375 m 1 + 2000 639.6484375 l 1025 +490.234375 626.953125 m 25 + 0 626.953125 l 1 + 490.234375 626.953125 l 25 +770.5078125 -221.6796875 m 25 + 1166.9921875 -221.6796875 l 1025 +0 646.484375 m 25 + 546.875 646.484375 l 1025 +0 654.296875 m 25 + 546.875 654.296875 l 1025 +542 -212.890625 m 25 + 0 -212.890625 l 1 + 542 -212.890625 l 25 +546.875 679.6875 m 25 + 0 678.7109375 l 1 + 546.875 679.6875 l 25 +546.875 432.6171875 m 25 + -6 432.6171875 l 1 + 546.875 432.6171875 l 25 +546.875 438.4765625 m 25 + -6 438.4765625 l 1 + 546.875 438.4765625 l 25 +EndSplineSet +BeginChars: 65601 492 + +StartChar: space +Encoding: 32 32 0 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclam +Encoding: 33 33 1 +Width: 263 +Flags: HW +HStem: -11 146<79 182> 607 20G<117 150> +VStem: 58 146<12 113> 70 125<362 612> +LayerCount: 2 +Fore +SplineSet +58 64 m 0xe0 + 58 103 91 136 131 136 c 27 + 172 136 204 101 204 62 c 0 + 204 23 172 -11 132 -11 c 27 + 91 -11 58 22 58 64 c 0xe0 +135 627 m 0 + 165 627 195 603 195 561 c 0 + 195 534 167 302 154 216 c 1 + 150 203 147 194 135 190 c 1 + 130 190 118 197 112 207 c 1 + 101 272 70 512 70 562 c 0xd0 + 70 603 100 627 135 627 c 0 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 2 +Width: 323 +Flags: HW +HStem: 421 263<73 109 230 265> +VStem: 35 91<496 662> 191 91<496 662> +LayerCount: 2 +Fore +SplineSet +252 684 m 0 + 266 684 273 680 282 668 c 1 + 282 635 273 504 266 443 c 1 + 262 436 251 426 242 421 c 1 + 238 421 234 424 232 429 c 1 + 208 512 191 571 191 603 c 0 + 191 635 215 684 252 684 c 0 +96 684 m 0 + 110 684 117 680 126 668 c 1 + 126 635 116 504 109 443 c 1 + 105 436 95 426 86 421 c 1 + 82 421 78 424 76 429 c 1 + 52 512 35 571 35 603 c 0 + 35 635 59 684 96 684 c 0 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 3 +Width: 463 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: 145 65<60 377> 331 65<86 405> +LayerCount: 2 +Fore +SplineSet +399 331 m 1 + 244 331 243 331 77 331 c 1 + 65 331 80 392 93 396 c 9 + 411 396 l 17 + 425 396 412 337 399 331 c 1 +371 145 m 1 + 216 145 216 145 50 145 c 1 + 38 145 54 206 67 210 c 9 + 385 210 l 17 + 399 210 384 151 371 145 c 1 +370 516 m 1 + 293 35 l 2 + 292 31 278 22 263 22 c 0 + 253 22 252 26 252 26 c 1 + 329 506 l 1 + 332 515 339 519 358 519 c 0 + 367 519 367 518 370 516 c 1 +213 516 m 1 + 135 35 l 2 + 134 31 121 22 106 22 c 0 + 96 22 95 26 95 26 c 1 + 172 506 l 1 + 175 515 181 519 200 519 c 0 + 209 519 210 518 213 516 c 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 4 +Width: 505 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -10 39<217 302> 439 21G<415 418> 587 39<208 273> 633 20G<278 285> +VStem: 53 39<128 185> 60 124<451 531> 170 38<-35 4> 281 38<609 649> 334 123<86 180> 388 38<439 502> +LayerCount: 2 +Fore +SplineSet +259 626 m 0xf580 + 314 626 359 612 416 600 c 1 + 421 550 423 501 426 444 c 1 + 423 440 420 439 416 439 c 0 + 413 439 390 437 388 445 c 0 + 380 498 336 587 264 587 c 0 + 228 587 184 568 184 506 c 0xf540 + 184 448 257 392 319 353 c 0 + 381 313 457 287 457 163 c 0 + 457 60 356 -10 253 -10 c 0 + 198 -10 131 2 75 15 c 1 + 65 56 55 148 53 174 c 1 + 57 180 75 187 80 187 c 0 + 87 187 91 185 92 179 c 0xf980 + 101 128 159 29 243 29 c 0 + 278 29 334 46 334 121 c 0 + 334 194 243 243 196 275 c 0 + 128 321 60 359 60 457 c 0 + 60 554 162 626 259 626 c 0xf580 +281 652 m 17 + 289 652 319 652 319 645 c 9 + 208 -39 l 17 + 199 -39 170 -37 170 -30 c 9xf3 + 281 652 l 17 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 5 +Width: 669 +Flags: HW +HStem: 0 30<456 520> 268 29<441 505> 329 30<166 230> 597 29<151 215> +VStem: 38 93<399 552> 251 93<403 557> 328 93<69 223> 541 93<74 228> +LayerCount: 2 +Fore +SplineSet +183 597 m 3xfd + 135 597 131 535 131 488 c 24 + 131 431 150 359 198 359 c 3 + 246 359 251 420 251 466 c 24 + 251 524 231 597 183 597 c 3xfd +190 626 m 0 + 280 626 344 563 344 480 c 0 + 344 398 277 329 191 329 c 0 + 100 329 38 394 38 476 c 0 + 38 558 104 626 190 626 c 0 +473 268 m 3 + 425 268 421 206 421 159 c 24xfb + 421 102 440 30 488 30 c 3 + 536 30 541 91 541 137 c 24 + 541 195 521 268 473 268 c 3 +480 297 m 0 + 570 297 634 234 634 151 c 0 + 634 69 567 0 481 0 c 0 + 390 0 328 64 328 146 c 0 + 328 228 394 297 480 297 c 0 +608 620 m 1 + 104 -5 l 2 + 100 -11 81 -20 64 -20 c 0 + 49 -20 50 -8 50 -8 c 1 + 554 617 l 1 + 562 624 576 630 593 630 c 0 + 602 630 608 625 608 620 c 1 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 6 +Width: 679 +Flags: HW +HStem: -4 74<191 339> -3 81<480 560> 273 31<469 518 595 664> 595 35<270 337> +VStem: 55 127<135 242> 136 113<437 560> 360 101<445 574> +LayerCount: 2 +Fore +SplineSet +373 93 m 1xba + 346 130 253 258 219 306 c 1 + 198 287 182 260 182 215 c 0 + 182 151 222 70 311 70 c 0 + 344 70 360 82 373 93 c 1xba +305 595 m 0 + 271 595 249 561 249 514 c 0x36 + 249 463 280 419 297 397 c 1 + 340 419 360 456 360 501 c 0 + 360 532 349 595 305 595 c 0 +288 630 m 0 + 387 630 461 585 461 517 c 0 + 461 429 382 382 322 361 c 1 + 349 325 429 217 459 177 c 1 + 482 204 519 244 519 256 c 0 + 519 278 478 271 471 273 c 1 + 467 279 467 303 472 305 c 1 + 538 304 l 2 + 572 303 619 305 663 307 c 1 + 667 305 667 280 661 274 c 1 + 654 273 611 274 594 260 c 0 + 580 249 512 169 486 142 c 1 + 493 134 538 78 559 78 c 0 + 586 78 610 116 621 130 c 1 + 630 130 641 122 646 112 c 1 + 642 100 568 -3 507 -3 c 3x76 + 454 -3 426 28 399 59 c 1 + 355 17 296 -4 231 -4 c 3 + 150 -4 55 53 55 152 c 0xba + 55 266 138 313 191 346 c 1 + 170 376 136 414 136 479 c 0 + 136 567 196 630 288 630 c 0 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 7 +Width: 176 +Flags: HW +HStem: 440 254<81 118> +VStem: 32 108<519 671> +LayerCount: 2 +Fore +SplineSet +104 694 m 0 + 120 694 134 688 141 673 c 1 + 136 611 130 526 118 459 c 1 + 114 453 104 444 93 440 c 1 + 89 440 84 442 81 446 c 1 + 60 503 32 566 32 612 c 0 + 32 655 63 694 104 694 c 0 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 8 +Width: 284 +Flags: HW +VStem: 32 108<144 452> +LayerCount: 2 +Fore +SplineSet +141 298 m 0 + 141 72 236 -74 274 -107 c 1 + 275 -110 271 -131 266 -134 c 1 + 193 -101 32 35 32 298 c 0 + 32 561 193 696 266 729 c 1 + 271 726 275 706 274 703 c 1 + 236 670 141 524 141 298 c 0 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 9 +Width: 284 +Flags: HW +VStem: 144 108<144 452> +LayerCount: 2 +Fore +SplineSet +252 298 m 0 + 252 35 92 -101 19 -134 c 1 + 14 -131 9 -110 10 -107 c 1 + 48 -74 144 72 144 298 c 0 + 144 524 48 670 10 703 c 1 + 9 706 14 726 19 729 c 1 + 92 696 252 561 252 298 c 0 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 10 +Width: 430 +Flags: HW +HStem: 414 87<41 140> +VStem: 151 89<302 398> +LayerCount: 2 +Fore +SplineSet +281 604 m 0 + 302 627 333 625 348 611 c 0 + 364 595 368 567 347 544 c 0 + 316 509 279 520 252 494 c 1 + 252 494 246 486 246 481 c 0 + 246 477 248 476 253 474 c 0 + 287 458 314 474 357 455 c 0 + 385 443 394 412 385 393 c 0 + 375 373 349 361 321 373 c 0 + 278 392 277 429 244 447 c 1 + 244 447 234 453 230 450 c 0 + 228 449 227 448 226 442 c 0 + 222 405 245 386 240 339 c 0 + 237 309 210 291 190 293 c 0 + 169 297 148 318 151 348 c 0 + 156 395 191 407 198 444 c 1 + 198 444 199 454 196 458 c 0 + 195 460 193 460 187 459 c 0 + 151 451 138 425 92 414 c 0 + 62 407 38 427 34 447 c 0 + 31 468 44 494 74 501 c 0 + 120 512 142 481 180 486 c 1 + 180 486 192 487 193 492 c 0 + 194 495 192 498 189 503 c 0 + 170 535 141 538 117 579 c 0 + 101 605 112 636 130 646 c 0 + 150 656 178 650 194 624 c 0 + 218 583 195 553 212 519 c 1 + 212 519 217 509 222 508 c 0 + 224 508 227 508 231 512 c 0 + 256 539 250 569 281 604 c 0 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 11 +Width: 529 +Flags: HW +HStem: 212 57<33 234 292 496> +VStem: 235 57<11 212 269 471> +LayerCount: 2 +Fore +SplineSet +235 463 m 1 + 246 472 272 474 276 474 c 0 + 286 474 292 472 292 465 c 2 + 291 269 l 1 + 490 269 l 2 + 496 269 499 261 499 255 c 0 + 499 234 493 222 485 212 c 1 + 292 212 l 1 + 292 19 l 1 + 280 11 256 8 246 8 c 0 + 240 8 235 12 235 16 c 2 + 235 212 l 1 + 36 212 l 2 + 31 212 30 218 30 228 c 0 + 30 232 32 257 40 269 c 1 + 234 269 l 1 + 235 463 l 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 12 +Width: 218 +Flags: HW +HStem: -153 289 +VStem: 88 85<-35 68> +LayerCount: 2 +Fore +SplineSet +116 136 m 0 + 133 136 148 128 159 120 c 1 + 167 105 173 80 173 57 c 0 + 173 -36 107 -119 39 -153 c 1 + 28 -150 19 -136 19 -130 c 1 + 38 -118 88 -74 88 -26 c 0 + 88 6 41 3 41 66 c 0 + 41 82 55 136 116 136 c 0 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 13 +Width: 366 +Flags: HW +HStem: 205 67<72 305> +VStem: 55 257 +LayerCount: 2 +Fore +SplineSet +69 261 m 1 + 69 261 273 271 305 272 c 0 + 309 272 312 272 312 264 c 0 + 312 247 305 222 297 205 c 1 + 251 202 151 198 62 194 c 0 + 57 194 55 196 55 205 c 0 + 55 224 62 246 69 261 c 1 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 14 +Width: 228 +Flags: HW +HStem: -11 146<63 165> +VStem: 41 146<12 113> +LayerCount: 2 +Fore +SplineSet +41 64 m 0 + 41 103 74 136 114 136 c 27 + 155 136 188 101 188 62 c 0 + 188 23 155 -11 115 -11 c 27 + 74 -11 41 22 41 64 c 0 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 15 +Width: 412 +Flags: HW +LayerCount: 2 +Fore +SplineSet +365 743 m 0 + 379 743 383 739 384 735 c 1 + 95 -14 l 2 + 93 -21 80 -34 46 -34 c 0 + 31 -34 28 -27 28 -27 c 1 + 317 722 l 1 + 321 730 336 743 365 743 c 0 +EndSplineSet +EndChar + +StartChar: zero +Encoding: 48 48 16 +Width: 532 +Flags: HW +HStem: -3 41<235 307> 569 41<231 307> +VStem: 51 127<164 431> 354 127<170 447> +LayerCount: 2 +Fore +SplineSet +270 569 m 0 + 207 569 178 448 178 295 c 0 + 178 142 220 38 270 38 c 0 + 333 38 354 167 354 320 c 0 + 354 473 324 569 270 569 c 0 +269 610 m 0 + 386 610 481 499 481 304 c 0 + 481 134 386 -3 269 -3 c 0 + 152 -3 51 109 51 304 c 0 + 51 474 152 610 269 610 c 0 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 17 +Width: 532 +Flags: HW +HStem: -4 36<145 210 353 417> 608 20G<338 345> +VStem: 218 127<40 521> +LayerCount: 2 +Fore +SplineSet +218 142 m 2 + 218 471 l 2 + 218 514 213 522 197 522 c 0 + 188 522 148 512 127 500 c 1 + 119 504 114 513 114 519 c 0 + 114 521 113 529 116 530 c 0 + 228 578 337 628 340 628 c 2 + 342 628 l 2 + 348 628 353 614 354 609 c 1 + 354 609 345 581 345 518 c 2 + 345 142 l 2 + 345 100 345 70 353 50 c 0 + 358 37 402 33 415 32 c 1 + 420 25 419 2 415 -4 c 1 + 377 0 322 3 281 3 c 0 + 240 3 185 0 147 -4 c 1 + 143 2 142 25 147 32 c 1 + 160 33 205 37 210 50 c 0 + 218 70 218 100 218 142 c 2 +EndSplineSet +EndChar + +StartChar: two +Encoding: 50 50 18 +Width: 532 +Flags: HW +HStem: 0 100<185 406> 551 76<181 319> +VStem: 314 128<373 505> 444 33<152 193> +LayerCount: 2 +Fore +SplineSet +478 188 m 1 + 467 142 425 19 419 0 c 9 + 63 0 l 1 + 58 5 56 13 55 18 c 1 + 130 101 190 158 258 265 c 0 + 303 336 314 394 314 438 c 0 + 314 502 263 551 210 551 c 0 + 142 551 106 489 98 481 c 1 + 93 481 77 490 77 505 c 1 + 94 542 163 627 272 627 c 0 + 366 627 442 568 442 463 c 0 + 442 403 413 346 368 293 c 0 + 314 231 252 162 185 100 c 1 + 353 100 l 2 + 412 100 428 152 444 187 c 0 + 446 192 452 193 458 193 c 0 + 465 193 473 192 478 188 c 1 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 19 +Width: 532 +Flags: HW +HStem: -6 41<201 300> 306 32<171 228> 555 72<191 305> +VStem: 314 114<434 520> 338 130<126 260> +LayerCount: 2 +Fore +SplineSet +281 627 m 0xf0 + 328 627 429 600 429 502 c 0xf0 + 429 420 346 373 322 363 c 1 + 353 361 468 332 468 215 c 0 + 468 77 332 -6 207 -6 c 0 + 144 -6 96 14 76 30 c 1 + 69 39 64 62 64 72 c 0 + 64 95 82 124 115 124 c 0 + 141 124 162 97 178 78 c 0 + 196 57 221 35 246 35 c 0 + 307 35 338 86 338 174 c 0xe8 + 338 247 297 314 232 314 c 0 + 226 314 203 313 178 306 c 1 + 174 311 170 321 170 329 c 0 + 170 333 169 335 170 338 c 1 + 226 348 314 378 314 447 c 0 + 314 507 282 555 223 555 c 0 + 170 555 122 512 115 504 c 1 + 108 506 104 522 104 531 c 1 + 140 579 203 627 281 627 c 0xf0 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 20 +Width: 532 +Flags: HW +HStem: -5 21G<345 382> 170 66<131 305 428 484> 609 20G<398 405> +VStem: 305 123<-1 170 236 455> +LayerCount: 2 +Fore +SplineSet +402 629 m 0 + 408 629 428 614 428 602 c 10 + 428 236 l 25 + 473 236 l 2 + 480 236 486 218 486 190 c 0 + 486 175 477 170 477 170 c 9 + 428 170 l 25 + 428 4 l 17 + 428 4 402 -5 361 -5 c 0 + 328 -5 305 -1 305 8 c 2 + 305 170 l 25 + 57 170 l 17 + 49 174 47 181 47 194 c 1 + 164 340 279 486 383 615 c 0 + 390 623 394 629 402 629 c 0 +305 455 m 17 + 131 236 l 1 + 305 236 l 1 + 305 455 l 17 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 21 +Width: 532 +Flags: HW +HStem: -6 41<203 303> 320 93<168 318> 515 105<185 399> 611 20G<418 427> +VStem: 341 125<134 249> +LayerCount: 2 +Fore +SplineSet +271 413 m 0xe8 + 367 413 466 328 466 225 c 0 + 466 87 335 -6 210 -6 c 0 + 147 -6 98 14 78 30 c 1 + 71 39 66 62 66 72 c 0 + 66 95 84 124 117 124 c 0 + 143 124 164 97 180 78 c 0 + 198 57 224 35 249 35 c 0 + 310 35 341 86 341 174 c 0 + 341 263 262 320 206 320 c 0 + 144 320 126 311 116 307 c 1 + 110 307 106 320 106 326 c 1 + 107 329 153 571 161 620 c 1 + 203 620 273 620 335 620 c 0xe8 + 376 620 411 628 425 631 c 1xd8 + 430 629 438 628 438 617 c 0 + 438 600 408 536 401 523 c 1 + 350 518 297 517 255 516 c 0 + 224 515 199 515 189 515 c 1 + 187 505 167 400 167 400 c 1 + 191 406 235 413 271 413 c 0xe8 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 22 +Width: 532 +Flags: HW +HStem: -6 41<232 308> 338 58<215 299> 604 25<407 432> +VStem: 63 128<130 323> 341 128<116 288> +LayerCount: 2 +Fore +SplineSet +198 319 m 1 + 193 285 191 243 191 216 c 0 + 191 134 211 35 273 35 c 0 + 311 35 341 90 341 178 c 0 + 341 261 316 338 247 338 c 0 + 235 338 212 333 198 319 c 1 +290 396 m 0 + 385 396 469 344 469 202 c 0 + 469 88 367 -6 263 -6 c 0 + 154 -6 63 109 63 236 c 3 + 63 344 119 438 177 499 c 0 + 261 588 361 621 427 630 c 1 + 435 624 436 614 434 604 c 1 + 311 553 241 470 210 371 c 1 + 235 386 266 396 290 396 c 0 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 23 +Width: 532 +Flags: HW +HStem: -11 21G<164 168> 523 98<121 395> +VStem: 57 35<436 484> +LayerCount: 2 +Fore +SplineSet +381 622 m 2 + 415 622 463 626 469 626 c 0 + 475 626 476 616 476 611 c 0 + 476 602 465 584 449 552 c 2 + 184 -8 l 1 + 180 -11 169 -11 167 -11 c 0 + 160 -11 124 -6 124 13 c 1 + 165 72 306 335 395 523 c 1 + 169 523 l 2 + 120 523 105 478 92 441 c 0 + 91 438 90 437 80 436 c 0 + 70 435 61 439 57 443 c 1 + 70 491 93 591 100 621 c 1 + 116 621 381 622 381 622 c 2 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 24 +Width: 532 +Flags: HW +HStem: -6 41<223 320> 578 40<221 298> +VStem: 62 128<69 222> 76 126<434 540> 324 122<412 546> 343 128<87 183> +LayerCount: 2 +Fore +SplineSet +270 35 m 3xe4 + 318 35 343 71 343 115 c 3 + 343 190 263 248 234 269 c 0 + 229 273 228 273 226 273 c 0 + 224 273 222 274 221 272 c 0 + 200 246 189 201 189 152 c 27 + 189 96 212 35 270 35 c 3xe4 +262 578 m 3 + 226 578 202 543 202 500 c 3 + 202 433 262 390 286 377 c 0 + 289 375 294 372 298 372 c 0 + 301 372 303 374 304 375 c 0 + 322 401 324 436 324 475 c 3xd8 + 324 519 306 578 262 578 c 3 +264 618 m 27 + 354 618 446 571 446 478 c 3xd8 + 446 416 394 369 338 346 c 0 + 336 345 336 342 338 341 c 0 + 374 320 471 251 471 163 c 3 + 471 59 366 -6 262 -6 c 27 + 163 -6 62 32 62 149 c 3xe4 + 62 230 128 281 187 299 c 0 + 189 300 189 301 185 304 c 0 + 151 333 76 383 76 475 c 3 + 76 561 172 618 264 618 c 27 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 25 +Width: 532 +Flags: HW +HStem: -6 25<100 125> 229 58<233 317> 589 41<224 300> +VStem: 63 128<336 508> 341 128<301 494> +LayerCount: 2 +Fore +SplineSet +334 305 m 1 + 340 333 341 377 341 408 c 0 + 341 490 321 589 259 589 c 0 + 221 589 191 534 191 446 c 0 + 191 363 216 286 285 286 c 0 + 297 286 320 291 334 305 c 1 +99 20 m 1 + 222 71 291 154 322 253 c 1 + 297 238 266 229 242 229 c 0 + 147 229 63 280 63 422 c 0 + 63 536 166 630 270 630 c 0 + 379 630 469 515 469 388 c 3 + 469 280 413 186 355 125 c 0 + 271 36 171 3 105 -6 c 1 + 97 0 97 10 99 20 c 1 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 26 +Width: 255 +Flags: HW +HStem: -11 146<76 179> 274 146<76 179> +VStem: 55 146<12 113 297 398> +LayerCount: 2 +Fore +SplineSet +55 350 m 0 + 55 389 88 421 128 421 c 27 + 169 421 201 386 201 347 c 0 + 201 308 169 274 129 274 c 27 + 88 274 55 308 55 350 c 0 +55 64 m 0 + 55 103 88 136 128 136 c 27 + 169 136 201 101 201 62 c 0 + 201 23 169 -11 129 -11 c 27 + 88 -11 55 22 55 64 c 0 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 27 +Width: 248 +Flags: HW +HStem: 274 147<72 169> +VStem: 48 144<298 400> 107 85<-35 68> +LayerCount: 2 +Fore +SplineSet +136 136 m 0xa0 + 153 136 168 128 179 120 c 1 + 187 105 192 80 192 57 c 0 + 192 -36 127 -119 59 -153 c 1 + 48 -150 38 -136 38 -130 c 1 + 57 -118 107 -74 107 -26 c 0 + 107 6 61 3 61 66 c 0 + 61 82 75 136 136 136 c 0xa0 +48 351 m 0xc0 + 48 390 82 422 122 422 c 27 + 161 422 191 390 191 351 c 0 + 191 312 162 274 122 274 c 27 + 81 274 48 312 48 351 c 0xc0 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 28 +Width: 483 +Flags: HW +LayerCount: 2 +Fore +SplineSet +434 44 m 0 + 434 37 424 -15 418 -15 c 0 + 417 -15 415 -14 413 -13 c 2 + 47 173 l 2 + 32 181 29 195 29 212 c 0 + 29 223 37 230 47 235 c 2 + 411 418 l 2 + 413 419 415 420 416 420 c 0 + 419 420 426 400 433 364 c 0 + 434 358 430 355 430 355 c 1 + 119 204 l 1 + 431 50 l 1 + 431 50 434 49 434 44 c 0 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 29 +Width: 545 +Flags: HW +HStem: 131 58<78 472> 271 58<78 472> +LayerCount: 2 +Fore +SplineSet +465 131 m 1 + 308 131 237 131 69 131 c 1 + 57 131 71 183 85 188 c 9 + 478 188 l 17 + 492 188 479 138 465 131 c 1 +465 271 m 1 + 308 271 237 271 69 271 c 1 + 57 271 71 324 85 329 c 9 + 478 329 l 17 + 492 329 479 278 465 271 c 1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 30 +Width: 483 +Flags: HW +LayerCount: 2 +Fore +SplineSet +50 44 m 0 + 50 49 53 50 53 50 c 1 + 364 204 l 1 + 54 355 l 1 + 54 355 50 358 51 364 c 0 + 58 400 64 420 67 420 c 0 + 68 420 70 419 72 418 c 2 + 437 235 l 2 + 447 230 454 223 454 212 c 0 + 454 195 452 181 437 173 c 2 + 70 -13 l 2 + 68 -14 66 -15 65 -15 c 0 + 59 -15 50 37 50 44 c 0 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 31 +Width: 389 +Flags: HW +HStem: -11 146<89 188> 566 65<131 244> +VStem: 65 144<13 115> 111 37<192 250> 273 83<417 537> +LayerCount: 2 +Fore +SplineSet +65 64 m 0xe8 + 65 105 99 136 136 136 c 0 + 177 136 209 104 209 64 c 0 + 209 24 179 -11 140 -11 c 0 + 104 -11 65 20 65 64 c 0xe8 +113 506 m 0 + 76 506 53 538 53 570 c 0 + 53 587 60 609 67 615 c 1 + 81 623 107 632 155 632 c 0 + 199 632 356 596 356 460 c 0 + 356 374 285 341 233 309 c 0 + 207 292 170 274 153 250 c 0 + 146 240 148 219 148 209 c 1 + 146 203 139 191 134 191 c 0 + 126 191 115 199 111 203 c 1xd8 + 104 219 92 262 92 301 c 0 + 92 358 135 389 170 412 c 0 + 219 444 273 487 273 520 c 0 + 273 541 256 566 221 566 c 0 + 186 566 154 506 113 506 c 0 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 32 +Width: 749 +Flags: HW +HStem: -121 20<259 285> -7 61<475 575> -5 97<244 354> 380 53<386 491> 525 39<332 539> +VStem: 45 47<54 278> 174 120<97 213> 403 119<54 158> 672 43<167 392> +LayerCount: 2 +Fore +SplineSet +436 564 m 0xdf80 + 627 564 715 435 715 283 c 0 + 715 134 613 -7 499 -7 c 0xdf80 + 451 -7 403 17 403 77 c 0 + 403 85 404 97 407 105 c 1 + 388 69 329 -5 269 -5 c 3xbf80 + 219 -5 174 15 174 117 c 3 + 174 260 335 433 474 433 c 0 + 508 433 561 427 580 420 c 9 + 525 124 l 2 + 524 120 522 105 522 100 c 0 + 522 86 519 54 545 54 c 0 + 594 54 672 154 672 276 c 0 + 672 408 606 525 436 525 c 0 + 237 525 92 336 92 166 c 0 + 92 52 154 -34 224 -75 c 0 + 259 -96 280 -99 299 -102 c 1 + 299 -110 276 -121 260 -121 c 0 + 243 -121 229 -117 216 -112 c 0 + 126 -79 45 23 45 161 c 0 + 45 352 209 564 436 564 c 0xdf80 +433 380 m 3 + 352 380 294 257 294 145 c 0 + 294 109 311 92 333 92 c 3xbf80 + 374 92 417 161 438 268 c 2 + 458 367 l 17 + 449 377 446 380 433 380 c 3 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 33 +Width: 659 +Flags: HW +HStem: -4 36<138 205 382 442 604 664> 4 28<144 202> 220 47<205 369> 627 20G<331 341> +LayerCount: 2 +Fore +SplineSet +92 131 m 2xb0 + 300 609 l 2 + 306 622 325 646 336 646 c 0 + 345 646 355 643 357 640 c 1 + 557 145 l 2 + 570 115 575 95 584 74 c 0 + 601 34 653 32 661 32 c 1 + 666 23 667 0 663 -4 c 1xb0 + 624 -2 575 4 532 4 c 0x70 + 487 4 420 -2 385 -4 c 1 + 380 1 380 32 385 32 c 1 + 402 32 429 38 443 50 c 0 + 449 55 451 59 451 66 c 0 + 451 75 393 215 393 215 c 1 + 393 215 389 219 386 219 c 0 + 349 221 316 220 292 220 c 0 + 252 220 225 220 191 219 c 0 + 188 219 185 216 184 214 c 1 + 184 214 160 159 149 132 c 0 + 139 108 127 72 127 65 c 0 + 127 40 194 32 202 32 c 1 + 208 25 206 0 203 -4 c 1xb0 + 169 0 141 4 98 4 c 0x70 + 53 4 25 0 -9 -4 c 1 + -13 0 -15 20 -11 31 c 1 + 1 31 48 46 58 62 c 0 + 75 89 80 104 92 131 c 2xb0 +288 465 m 1 + 205 273 l 1 + 205 273 205 270 207 270 c 0 + 227 268 266 267 288 267 c 0 + 318 267 336 267 366 269 c 0 + 368 269 369 273 369 273 c 1 + 288 465 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 34 +Width: 604 +Flags: HW +HStem: -3 41<36 103 253 372> 324 38<245 344> 605 39<36 102 247 347> +VStem: 108 137<50 324 362 602> 379 145<424 566> 417 153<110 262> +LayerCount: 2 +Fore +SplineSet +245 324 m 1xf4 + 245 106 l 2 + 245 100 244 62 252 50 c 0 + 260 39 289 38 314 38 c 0 + 359 38 417 71 417 172 c 0 + 417 245 388 324 295 324 c 2 + 245 324 l 1xf4 +245 362 m 1 + 295 362 l 2 + 344 362 379 403 379 476 c 0xf8 + 379 569 348 605 298 605 c 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 362 l 1 +327 645 m 0 + 418 645 524 603 524 490 c 0xf8 + 524 412 444 367 418 357 c 0 + 410 354 412 352 413 352 c 0 + 462 346 571 290 571 188 c 0xf4 + 571 124 529 65 468 29 c 0 + 410 -5 337 -4 265 -3 c 0 + 224 -3 75 -2 37 -3 c 1 + 33 3 32 26 37 33 c 1 + 50 34 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0 + 218 642 270 645 327 645 c 0 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 35 +Width: 658 +Flags: HW +HStem: -7 43<322 497> 609 42<302 481> +VStem: 39 156<200 431> 595 34<156 192> +LayerCount: 2 +Fore +SplineSet +377 651 m 0 + 441 651 522 645 580 633 c 1 + 582 622 613 497 613 485 c 0 + 613 479 600 471 588 471 c 3 + 583 471 578 471 574 475 c 1 + 564 513 524 609 386 609 c 0 + 248 609 195 481 195 344 c 0 + 195 192 258 36 405 36 c 0 + 464 36 500 54 526 78 c 0 + 567 115 593 191 595 199 c 1 + 610 199 621 195 629 188 c 1 + 629 177 604 45 589 39 c 0 + 527 17 465 -7 375 -7 c 0 + 191 -7 39 129 39 314 c 0 + 39 502 191 651 377 651 c 0 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 36 +Width: 743 +Flags: HW +HStem: -3 41<36 103 254 423> 605 39<36 102 247 398> +VStem: 108 137<48 602> 546 155<202 448> +LayerCount: 2 +Fore +SplineSet +245 534 m 2 + 245 138 l 2 + 245 132 244 81 252 61 c 0 + 258 47 289 38 314 38 c 0 + 473 38 546 127 546 317 c 0 + 546 508 443 605 298 605 c 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 +327 645 m 0 + 553 645 702 528 702 328 c 0 + 702 99 531 -3 320 -3 c 0 + 279 -3 75 -2 37 -3 c 1 + 33 3 32 26 37 33 c 1 + 50 34 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0 + 218 642 269 644 327 645 c 0 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 37 +Width: 587 +Flags: HW +HStem: -3 36<35 100> -2 43<252 458> 303 46<245 388> 605 36<36 102 247 433> +VStem: 108 137<49 300 350 602> 424 30<378 425> +LayerCount: 2 +Fore +SplineSet +177 642 m 0xbc + 218 642 437 647 495 648 c 1 + 502 599 514 548 523 504 c 1 + 520 501 507 499 500 499 c 0 + 493 499 487 502 485 507 c 0 + 464 561 439 605 379 605 c 2 + 298 605 l 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 359 l 2 + 245 353 266 349 287 349 c 2 + 338 349 l 2 + 396 349 408 360 424 417 c 0 + 425 422 429 425 436 425 c 0 + 443 425 451 423 454 420 c 1 + 454 232 l 1 + 452 230 444 229 437 229 c 0 + 430 229 424 231 423 236 c 0 + 411 283 398 292 389 296 c 0 + 377 301 352 303 315 303 c 0 + 288 303 245 301 245 289 c 2 + 245 138 l 2 + 245 132 244 81 252 61 c 0 + 258 47 291 41 316 41 c 0 + 380 41 l 2 + 417 41 449 51 471 73 c 0 + 492 94 507 122 524 166 c 0 + 525 170 530 172 537 172 c 0 + 547 172 564 169 567 166 c 1 + 548 113 521 41 514 -2 c 1x7c + 473 -2 75 -2 37 -3 c 1 + 33 3 32 26 37 33 c 1 + 50 34 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0xbc +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 38 +Width: 536 +Flags: HW +HStem: -4 36<35 100 252 326> 299 46<245 388> 605 36<36 102 247 433> +VStem: 108 137<41 296 346 602> 424 30<374 421> +LayerCount: 2 +Fore +SplineSet +177 642 m 0 + 218 642 437 647 495 648 c 1 + 502 599 514 548 523 504 c 1 + 520 501 507 499 500 499 c 0 + 493 499 487 502 485 507 c 0 + 464 561 439 605 379 605 c 2 + 298 605 l 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 355 l 2 + 245 349 266 345 287 345 c 2 + 338 345 l 2 + 396 345 408 356 424 413 c 0 + 425 418 429 421 436 421 c 0 + 443 421 451 419 454 416 c 1 + 454 229 l 1 + 452 227 444 225 437 225 c 0 + 430 225 424 227 423 232 c 0 + 411 279 398 288 389 292 c 0 + 377 297 352 299 315 299 c 0 + 288 299 245 297 245 285 c 2 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 311 33 324 32 c 1 + 329 25 328 2 324 -4 c 1 + 286 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 39 +Width: 705 +Flags: HW +HStem: -7 42<323 483> 255 36<415 477 634 688> 609 42<301 483> +VStem: 39 156<201 428> 487 135<46 242> +LayerCount: 2 +Fore +SplineSet +487 179 m 0 + 487 199 488 208 482 229 c 0 + 475 253 430 255 418 255 c 0 + 413 255 412 286 417 291 c 1 + 467 289 516 285 566 285 c 0 + 607 285 648 289 687 291 c 1 + 691 278 689 255 686 255 c 1 + 678 255 645 249 634 242 c 0 + 628 238 622 219 622 200 c 0 + 622 164 622 129 622 96 c 0 + 622 87 628 72 628 67 c 0 + 628 56 607 47 594 42 c 0 + 532 19 465 -7 375 -7 c 0 + 190 -7 39 129 39 314 c 0 + 39 497 191 651 377 651 c 0 + 441 651 522 645 580 633 c 1 + 582 622 613 497 613 485 c 0 + 613 479 600 471 588 471 c 3 + 583 471 578 471 574 475 c 1 + 564 513 526 609 388 609 c 0 + 243 609 195 476 195 339 c 0 + 195 187 264 35 402 35 c 0 + 439 35 461 43 479 51 c 0 + 483 53 487 56 487 65 c 0 + 487 80 487 132 487 179 c 0 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 40 +Width: 723 +Flags: HW +HStem: -4 36<35 100 252 317 407 472 624 689> 310 50<246 480> 610 36<35 100 252 317 407 472 624 689> +VStem: 108 137<40 306 359 602> 480 137<40 308 359 602> +LayerCount: 2 +Fore +SplineSet +177 640 m 0 + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 244 573 245 543 245 501 c 2 + 245 362 l 1 + 245 360 246 359 246 359 c 1 + 284 358 321 356 365 356 c 0 + 401 356 444 358 479 359 c 1 + 479 359 481 361 481 363 c 0 + 480 501 l 2 + 480 543 480 573 472 593 c 0 + 467 606 423 609 410 610 c 1 + 405 617 406 640 410 646 c 1 + 448 642 508 640 549 640 c 0 + 590 640 649 642 687 646 c 1 + 691 640 692 617 687 610 c 1 + 674 609 629 606 624 593 c 0 + 616 573 617 543 617 501 c 2 + 617 142 l 2 + 617 100 616 70 624 50 c 0 + 629 37 674 33 687 32 c 1 + 692 25 691 2 687 -4 c 1 + 649 0 588 3 547 3 c 0 + 506 3 448 0 410 -4 c 1 + 406 2 405 25 410 32 c 1 + 423 33 467 37 472 50 c 0 + 480 70 480 100 480 142 c 2 + 480 303 l 0 + 480 305 478 308 478 308 c 1 + 442 309 405 310 365 310 c 0 + 257 310 248 308 245 306 c 1 + 244 305 245 302 245 302 c 1 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 277 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 41 +Width: 351 +Flags: HW +HStem: -4 36<35 100 252 317> 610 36<35 100 252 317> +VStem: 108 137<40 602> +LayerCount: 2 +Fore +SplineSet +177 640 m 0 + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 244 573 245 543 245 501 c 2 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 277 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 42 +Width: 336 +Flags: HW +HStem: -213 60<-60 64> 610 36<29 94 246 311> +VStem: 102 137<-9 602> +LayerCount: 2 +Fore +SplineSet +171 640 m 0 + 212 640 271 642 309 646 c 1 + 313 640 314 617 309 610 c 1 + 296 609 251 606 246 593 c 0 + 238 573 238 543 238 501 c 2 + 238 140 l 2 + 238 -83 127 -213 -51 -213 c 3 + -70 -213 -97 -202 -106 -195 c 1 + -113 -184 -122 -174 -122 -153 c 3 + -122 -120 -94 -88 -63 -88 c 3 + -41 -88 -24 -104 -8 -120 c 0 + 8 -136 23 -153 38 -153 c 3 + 100 -153 102 -30 102 132 c 2 + 102 501 l 2 + 102 543 102 573 94 593 c 0 + 89 606 44 609 31 610 c 1 + 26 617 27 640 31 646 c 1 + 69 642 130 640 171 640 c 0 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 43 +Width: 702 +Flags: HW +HStem: -4 36<36 98 253 316 648 714> 610 36<35 100 252 317 426 482 597 674> +VStem: 108 137<40 299 329 602> +LayerCount: 2 +Fore +SplineSet +177 640 m 0 + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 244 573 245 543 245 501 c 2 + 245 329 l 1 + 288 363 323 394 346 418 c 0 + 405 478 432 502 473 557 c 0 + 483 570 483 582 483 589 c 0 + 483 610 442 611 428 611 c 1 + 423 619 423 637 426 646 c 1 + 462 644 517 640 553 640 c 0 + 596 640 638 642 674 646 c 1 + 677 639 677 618 672 612 c 1 + 663 611 597 604 562 569 c 2 + 562 569 451 457 378 380 c 0 + 372 373 372 369 375 364 c 0 + 446 268 551 127 551 127 c 1 + 623 35 705 32 713 32 c 1 + 718 25 714 -2 713 -4 c 1 + 685 -6 625 -8 585 -8 c 0 + 510 -8 460 32 436 65 c 0 + 411 100 307 237 264 295 c 0 + 261 298 256 299 254 299 c 0 + 250 299 247 297 245 293 c 1 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 277 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 44 +Width: 565 +Flags: HW +HStem: -3 36<35 100> -2 43<252 458> 610 36<35 100 252 317> +VStem: 108 137<49 602> +LayerCount: 2 +Fore +SplineSet +245 138 m 2xb0 + 245 132 244 81 252 61 c 0 + 258 47 291 41 316 41 c 0 + 380 41 l 2 + 417 41 449 51 471 73 c 0 + 492 94 507 122 524 166 c 0 + 525 170 530 172 537 172 c 0 + 547 172 564 169 567 166 c 1 + 548 113 521 41 514 -2 c 1 + 487 -2 308 -2 177 -2 c 0x70 + 107 -2 50 -3 37 -3 c 1 + 33 3 32 26 37 33 c 1 + 50 34 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0 + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 244 573 245 543 245 501 c 2 + 245 138 l 2xb0 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 45 +Width: 885 +Flags: HW +HStem: -4 36<18 84 191 263 571 637 797 860> 610 36<60 122 783 832> +LayerCount: 2 +Fore +SplineSet +167 641 m 0 + 200 641 231 644 270 646 c 1 + 298 584 381 398 454 232 c 1 + 454 232 457 230 458 230 c 0 + 459 230 462 235 462 236 c 2 + 462 236 535 416 577 533 c 24 + 592 575 610 643 610 643 c 1 + 619 642 696 640 715 640 c 0 + 748 640 790 644 829 646 c 1 + 833 642 838 617 833 609 c 1 + 825 609 792 606 782 599 c 0 + 772 592 768 585 769 559 c 0 + 772 491 777 273 783 148 c 0 + 785 110 786 75 796 50 c 0 + 802 36 850 32 858 32 c 1 + 862 23 863 6 860 -4 c 1 + 821 -2 770 4 727 4 c 0 + 682 4 618 -2 573 -4 c 1 + 569 0 568 24 571 32 c 1 + 583 32 631 37 640 51 c 0 + 645 59 648 75 648 85 c 0 + 648 95 648 127 647 145 c 2 + 637 485 l 2 + 637 488 637 511 630 511 c 0 + 628 511 627 509 625 504 c 2 + 453 39 l 2 + 450 30 429 -2 411 -2 c 0 + 408 -2 405 -1 402 0 c 1 + 185 511 l 1 + 178 308 178 284 172 131 c 0 + 171 110 174 70 176 63 c 0 + 182 42 253 32 261 32 c 1 + 264 25 266 6 263 -4 c 1 + 224 -2 185 4 142 4 c 0 + 97 4 65 -2 20 -4 c 1 + 16 3 16 21 19 31 c 1 + 31 31 91 41 102 66 c 0 + 106 76 112 136 113 152 c 0 + 119 266 128 521 130 567 c 0 + 130 574 130 582 125 589 c 0 + 117 600 79 610 62 610 c 1 + 56 618 60 644 62 646 c 1 + 107 644 122 641 167 641 c 0 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 46 +Width: 742 +Flags: HW +HStem: -4 36<29 101 200 274> 610 37<35 101 478 556 642 722> 610 29<38 96> +VStem: 121 60<49 506> 569 60<243 598> +LayerCount: 2 +Fore +SplineSet +147 640 m 0xb8 + 181 640 223 642 254 646 c 1 + 291 570 447 391 567 242 c 1 + 569 249 569 268 569 282 c 2 + 569 465 l 0 + 569 502 565 575 558 590 c 0 + 550 608 491 611 479 611 c 1 + 477 611 474 638 479 647 c 1xd8 + 524 645 553 640 598 640 c 0xb8 + 641 640 682 645 721 647 c 1 + 723 641 725 620 719 610 c 1 + 711 610 646 609 638 588 c 0 + 633 574 629 503 629 468 c 2 + 629 136 l 2 + 629 79 631 50 633 -1 c 1 + 630 -4 611 -5 608 -5 c 0 + 599 -5 588 5 578 18 c 2 + 180 507 l 1 + 180 153 l 2 + 180 118 186 73 191 59 c 0 + 198 40 263 33 271 33 c 1 + 277 23 275 2 273 -4 c 1 + 234 -2 193 4 150 4 c 0 + 105 4 76 -2 31 -4 c 1 + 26 5 29 32 31 32 c 1 + 43 32 101 40 109 58 c 0 + 116 73 121 119 121 156 c 0 + 121 284 121 374 121 502 c 0 + 121 529 116 571 103 590 c 0 + 94 603 51 610 39 610 c 0xd8 + 34 610 32 641 37 646 c 1 + 67 644 102 640 147 640 c 0xb8 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 47 +Width: 742 +Flags: HW +HStem: -10 42<315 460> 609 42<282 426> +VStem: 39 156<207 434> 547 156<207 434> +LayerCount: 2 +Fore +SplineSet +348 609 m 3 + 233 609 195 472 195 354 c 3 + 195 205 246 32 392 32 c 3 + 508 32 547 167 547 285 c 3 + 547 434 494 609 348 609 c 3 +371 651 m 0 + 543 651 703 503 703 320 c 0 + 703 137 543 -10 371 -10 c 0 + 199 -10 39 137 39 320 c 0 + 39 503 199 651 371 651 c 0 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 48 +Width: 571 +Flags: HW +HStem: -4 36<35 100 252 317> 280 50<289 371> 605 39<36 102 247 350> +VStem: 108 137<40 602> 407 146<382 546> +LayerCount: 2 +Fore +SplineSet +552 471 m 0 + 552 354 455 280 356 280 c 0 + 321 280 295 296 288 303 c 0 + 284 307 281 319 281 327 c 0 + 281 331 283 334 285 334 c 1 + 295 331 310 330 325 330 c 0 + 373 330 407 382 407 457 c 0 + 407 534 363 605 298 605 c 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 277 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0 + 218 642 270 645 328 645 c 0 + 450 645 552 582 552 471 c 0 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 49 +Width: 742 +Flags: HW +HStem: -140 67<527 695> 609 42<282 426> +VStem: 39 156<209 434> 547 156<208 434> +LayerCount: 2 +Fore +SplineSet +371 651 m 0 + 543 651 703 503 703 320 c 0 + 703 174 600 50 471 7 c 1 + 561 -37 588 -72 688 -72 c 0 + 727 -72 751 -64 758 -64 c 1 + 764 -64 775 -69 780 -77 c 0 + 782 -80 782 -82 782 -82 c 1 + 728 -110 642 -140 582 -140 c 0 + 475 -140 399 -32 294 0 c 0 + 153 37 39 166 39 320 c 0 + 39 503 199 651 371 651 c 0 +348 609 m 0 + 233 609 195 472 195 354 c 0 + 195 205 246 32 392 32 c 0 + 508 32 547 167 547 285 c 0 + 547 434 494 609 348 609 c 0 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 50 +Width: 676 +Flags: HW +HStem: -4 36<36 98 253 316 647 713> 292 38<245 279> 605 39<36 102 247 356> +VStem: 108 137<40 292 330 602> 396 146<397 554> +LayerCount: 2 +Fore +SplineSet +328 645 m 0 + 450 645 541 584 541 467 c 0 + 541 387 456 321 409 309 c 1 + 480 213 550 127 550 127 c 1 + 622 35 704 32 712 32 c 1 + 717 25 713 -2 712 -4 c 1 + 684 -6 624 -8 584 -8 c 0 + 509 -8 459 32 435 65 c 0 + 277 277 l 0 + 277 277 267 292 259 292 c 0 + 245 292 l 9 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 277 0 216 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0 + 218 642 270 645 328 645 c 0 +396 457 m 0 + 396 534 378 605 298 605 c 0 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 330 l 17 + 289 330 l 0 + 345 330 396 382 396 457 c 0 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 51 +Width: 508 +Flags: HW +HStem: -10 41<181 310> 613 41<208 322> +VStem: 46 41<134 193> 53 130<473 552> 340 128<92 183> 396 40<459 526> +LayerCount: 2 +Fore +SplineSet +261 654 m 0xd8 + 319 654 365 640 425 627 c 1 + 430 575 433 525 436 465 c 1 + 433 461 429 459 425 459 c 0 + 422 459 398 458 396 466 c 0 + 388 521 341 613 266 613 c 0 + 228 613 183 593 183 528 c 0xd4 + 183 467 264 412 324 372 c 0 + 388 329 468 287 468 171 c 0 + 468 64 362 -10 255 -10 c 0 + 197 -10 128 2 69 16 c 1 + 59 59 48 155 46 182 c 1 + 50 188 69 195 74 195 c 0 + 81 195 86 194 87 188 c 0xe8 + 96 135 157 31 245 31 c 0 + 295 31 340 57 340 126 c 0 + 340 195 244 252 195 285 c 0 + 124 333 53 376 53 478 c 0 + 53 579 160 654 261 654 c 0xd8 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 52 +Width: 619 +Flags: HW +HStem: -4 36<169 233 386 450> 599 43<100 241 378 519> +VStem: 8 38<472 525> 241 137<40 599> 573 38<472 525> +LayerCount: 2 +Fore +SplineSet +472 642 m 0 + 542 642 555 660 573 660 c 0 + 581 660 581 659 585 657 c 1 + 611 478 l 1 + 608 475 592 471 583 471 c 0 + 578 471 574 472 573 476 c 0 + 563 539 519 599 469 599 c 2 + 378 599 l 1 + 378 142 l 2 + 378 100 378 70 386 50 c 0 + 391 37 435 33 448 32 c 1 + 453 25 452 2 448 -4 c 1 + 410 0 350 3 309 3 c 0 + 268 3 209 0 171 -4 c 1 + 167 2 166 25 171 32 c 1 + 184 33 228 37 233 50 c 0 + 241 70 241 100 241 142 c 2 + 241 599 l 1 + 150 599 l 2 + 100 599 56 539 46 476 c 0 + 45 472 41 471 36 471 c 0 + 27 471 11 475 8 478 c 1 + 34 657 l 1 + 38 659 38 660 46 660 c 0 + 64 660 77 642 147 642 c 0 + 234 642 385 642 472 642 c 0 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 53 +Width: 712 +Flags: HW +HStem: -9 70<315 466> 610 36<20 84 237 301 471 542 638 712> +VStem: 92 137<163 602> 560 61<171 595> +LayerCount: 2 +Fore +SplineSet +162 640 m 0 + 203 640 261 642 299 646 c 1 + 303 640 304 617 299 610 c 1 + 286 609 242 606 237 593 c 0 + 229 573 229 543 229 501 c 2 + 229 322 l 2 + 229 256 231 207 253 155 c 0 + 290 69 364 62 402 62 c 0 + 480 62 560 131 560 302 c 2 + 560 468 l 2 + 560 510 554 567 546 587 c 0 + 538 606 486 609 473 610 c 1 + 468 617 469 640 473 646 c 1 + 519 642 550 640 595 640 c 0 + 638 640 669 644 709 646 c 1 + 713 640 714 617 709 610 c 1 + 696 609 642 608 634 587 c 0 + 626 567 620 511 620 469 c 2 + 620 279 l 2 + 620 80 494 -9 353 -9 c 0 + 271 -9 194 18 147 77 c 0 + 109 125 92 192 92 294 c 2 + 92 501 l 2 + 92 543 92 573 84 593 c 0 + 79 606 35 609 22 610 c 1 + 17 617 18 640 22 646 c 1 + 60 642 121 640 162 640 c 0 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 54 +Width: 667 +Flags: HW +HStem: -11 21G<320 330> 610 36<-5 51 218 277 454 532 614 684> +LayerCount: 2 +Fore +SplineSet +137 640 m 0 + 178 640 237 642 275 646 c 1 + 279 640 280 617 275 610 c 1 + 262 609 215 608 215 584 c 0 + 215 568 227 538 239 511 c 0 + 296 381 384 182 384 182 c 1 + 384 182 503 482 513 509 c 0 + 522 534 535 566 535 587 c 0 + 535 605 469 609 456 610 c 1 + 451 617 452 640 456 646 c 1 + 502 642 528 640 573 640 c 0 + 616 640 642 644 682 646 c 1 + 686 640 687 617 682 610 c 1 + 669 609 626 609 614 593 c 0 + 599 573 588 544 574 512 c 0 + 494 316 446 210 371 29 c 0 + 363 11 337 -11 325 -11 c 0 + 316 -11 316 -4 311 3 c 1 + 98 498 l 2 + 86 526 73 558 64 578 c 0 + 52 603 10 609 -3 610 c 1 + -8 617 -7 640 -3 646 c 1 + 35 642 96 640 137 640 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 55 +Width: 928 +Flags: HW +HStem: -11 21G<288 299 626 637> 610 36<-5 52 218 277 710 786 870 940> +LayerCount: 2 +Fore +SplineSet +137 640 m 0 + 178 640 237 642 275 646 c 1 + 279 640 280 617 275 610 c 1 + 262 609 216 608 216 584 c 0 + 216 568 228 539 239 511 c 0 + 282 392 335 245 335 245 c 1 + 335 245 442 547 465 610 c 0 + 472 629 484 646 495 646 c 0 + 499 646 503 642 507 631 c 0 + 571 467 674 209 674 209 c 1 + 674 209 759 478 769 509 c 0 + 777 534 789 566 789 587 c 0 + 789 605 726 609 713 610 c 1 + 708 617 709 640 713 646 c 1 + 759 642 784 640 829 640 c 0 + 872 640 898 644 938 646 c 1 + 942 640 943 617 938 610 c 1 + 925 609 882 609 870 593 c 0 + 855 573 841 546 830 512 c 0 + 769 327 732 220 670 39 c 0 + 661 15 643 -11 631 -11 c 0 + 622 -11 617 -4 612 3 c 1 + 451 408 l 1 + 451 408 375 184 327 43 c 0 + 323 32 305 -11 293 -11 c 0 + 284 -11 279 -4 274 3 c 1 + 98 498 l 2 + 88 527 73 558 64 578 c 0 + 52 603 11 609 -2 610 c 1 + -8 617 -6 640 -2 646 c 1 + 36 642 96 640 137 640 c 0 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 56 +Width: 693 +Flags: HW +HStem: -4 36<-8 69 173 249 382 435 628 696> 610 36<17 85 259 313 429 497 611 680> +LayerCount: 2 +Fore +SplineSet +172 641 m 0 + 220 641 273 644 312 646 c 1 + 314 640 315 610 310 610 c 1 + 296 610 260 605 259 590 c 0 + 259 584 262 574 266 568 c 2 + 375 404 l 1 + 418 460 487 538 502 570 c 0 + 504 574 505 578 505 580 c 0 + 505 597 465 610 432 610 c 1 + 427 610 426 641 431 646 c 1 + 465 642 525 640 561 640 c 0 + 612 640 650 642 678 646 c 1 + 681 640 682 610 677 610 c 1 + 669 610 610 609 568 559 c 2 + 401 360 l 1 + 483 236 582 91 597 74 c 0 + 625 40 680 32 694 32 c 1 + 698 23 699 4 694 -4 c 1 + 655 -2 578 2 538 2 c 0 + 483 2 439 -2 384 -4 c 1 + 379 1 380 32 385 32 c 0 + 396 32 440 42 440 60 c 0 + 440 63 439 67 437 70 c 2 + 307 267 l 1 + 292 247 201 127 173 81 c 0 + 168 73 165 67 165 64 c 0 + 165 41 217 32 246 32 c 1 + 251 25 252 7 249 -4 c 1 + 217 -2 156 2 120 2 c 0 + 69 2 34 -2 -5 -4 c 1 + -10 2 -10 25 -5 32 c 1 + 3 32 70 34 101 77 c 2 + 275 314 l 1 + 138 524 l 2 + 120 550 100 586 86 596 c 0 + 72 606 31 610 19 610 c 1 + 14 610 14 641 19 646 c 1 + 67 644 124 641 172 641 c 0 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 57 +Width: 609 +Flags: HW +HStem: -4 36<155 220 372 437> 610 36<1 56 224 283 399 470 554 623> +VStem: 228 137<40 319> +LayerCount: 2 +Fore +SplineSet +228 142 m 2 + 228 277 l 0 + 228 284 226 289 222 297 c 0 + 197 350 100 524 100 524 c 2 + 85 551 82 558 70 578 c 0 + 55 602 16 609 3 610 c 1 + -2 617 -1 640 3 646 c 1 + 41 642 102 640 143 640 c 0 + 184 640 243 642 281 646 c 1 + 285 640 286 617 281 610 c 1 + 268 609 221 608 221 584 c 0 + 221 580 224 575 228 568 c 2 + 345 353 l 1 + 350 348 426 486 468 564 c 0 + 472 572 473 580 473 587 c 0 + 473 605 414 609 401 610 c 1 + 396 617 397 640 401 646 c 1 + 447 642 466 640 511 640 c 0 + 554 640 580 644 620 646 c 1 + 624 640 625 617 620 610 c 1 + 607 609 563 608 548 586 c 0 + 529 557 398 349 370 291 c 0 + 367 284 365 278 365 272 c 0 + 365 142 l 2 + 365 100 364 70 372 50 c 0 + 377 37 422 33 435 32 c 1 + 440 25 439 2 435 -4 c 1 + 397 0 336 3 295 3 c 0 + 254 3 196 0 158 -4 c 1 + 154 2 153 25 158 32 c 1 + 171 33 215 37 220 50 c 0 + 228 70 228 100 228 142 c 2 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 58 +Width: 625 +Flags: HW +HStem: 0 46<202 490> 596 44<151 404> 627 20G<76 88 531 574> +LayerCount: 2 +Fore +SplineSet +228 596 m 2xc0 + 124 596 108 524 86 463 c 0 + 85 460 84 457 74 457 c 0 + 63 457 48 459 45 462 c 1 + 56 519 70 584 80 646 c 1xa0 + 96 642 194 640 208 640 c 2 + 345 641 l 2 + 427 642 490 644 572 650 c 1 + 576 649 581 628 581 618 c 1 + 579 610 202 46 202 46 c 17 + 412 46 l 2 + 449 46 483 58 505 80 c 0 + 526 101 540 122 557 166 c 0 + 558 170 564 172 571 172 c 0 + 581 172 597 169 600 166 c 1 + 584 114 556 43 547 1 c 1 + 506 1 45 0 45 0 c 1 + 32 0 17 17 20 21 c 2 + 407 596 l 1 + 228 596 l 2xc0 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 59 +Width: 301 +Flags: HW +VStem: 73 104<-78 711> +LayerCount: 2 +Fore +SplineSet +92 752 m 0 + 193 752 257 761 292 768 c 1 + 294 768 298 765 298 759 c 0 + 298 746 290 734 288 733 c 0 + 259 718 204 713 178 707 c 9 + 178 -74 l 1 + 204 -80 259 -86 288 -101 c 0 + 290 -102 298 -113 298 -126 c 0 + 298 -132 294 -135 292 -135 c 1 + 257 -128 193 -119 92 -119 c 0 + 79 -118 73 -108 73 -97 c 0 + 73 729 l 0 + 73 740 79 751 92 752 c 0 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 60 +Width: 409 +Flags: HW +LayerCount: 2 +Fore +SplineSet +26 737 m 1 + 30 742 37 743 45 743 c 0 + 68 743 79 736 82 728 c 2 + 82 728 381 -19 381 -25 c 1 + 380 -29 368 -35 354 -35 c 0 + 346 -35 330 -32 324 -18 c 0 + 210 270 115 513 26 737 c 1 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 61 +Width: 301 +Flags: HW +VStem: 124 104<-78 711> +LayerCount: 2 +Fore +SplineSet +210 752 m 0 + 223 751 229 740 229 729 c 0 + 229 -97 l 0 + 229 -108 223 -118 210 -119 c 0 + 109 -119 45 -128 10 -135 c 1 + 8 -135 4 -132 4 -126 c 0 + 4 -113 12 -102 14 -101 c 0 + 43 -86 98 -80 124 -74 c 1 + 124 707 l 17 + 98 713 43 718 14 733 c 0 + 12 734 4 746 4 759 c 0 + 4 765 8 768 10 768 c 1 + 45 761 109 752 210 752 c 0 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 62 +Width: 381 +Flags: HW +HStem: 409 244 +VStem: 37 288 +LayerCount: 2 +Fore +SplineSet +182 653 m 0 + 188 653 196 649 201 640 c 0 + 251 553 272 509 325 427 c 1 + 325 416 315 409 307 409 c 1 + 250 462 182 543 182 543 c 25 + 182 543 114 462 57 409 c 1 + 49 409 37 416 37 427 c 1 + 90 509 113 553 163 640 c 0 + 168 649 176 653 182 653 c 0 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 63 +Width: 481 +Flags: HW +HStem: -42 55<12 459> +LayerCount: 2 +Fore +SplineSet +8 -32 m 1 + 8 -32 12 13 22 13 c 2 + 461 13 l 2 + 463 13 465 12 465 8 c 0 + 465 -1 461 -15 455 -36 c 0 + 453 -42 449 -42 449 -42 c 1 + 15 -42 l 1 + 15 -42 8 -42 8 -32 c 1 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 64 +Width: 243 +Flags: HW +LayerCount: 2 +Fore +Refer: 190 768 N 1 0 0 1 390 24 2 +EndChar + +StartChar: a +Encoding: 97 97 65 +Width: 460 +Flags: HW +HStem: -8 68<121 234 327 419> 401 37<170 283> +VStem: 30 132<76 169> 42 105<285 363> 262 127<67 218 250 369> +LayerCount: 2 +Fore +SplineSet +222 61 m 0xe8 + 246 61 262 75 262 81 c 2 + 262 218 l 1 + 242 208 217 200 197 187 c 0 + 170 169 161 142 162 121 c 0 + 163 79 197 61 222 61 c 0xe8 +242 438 m 0 + 323 438 389 377 389 289 c 2 + 389 106 l 2 + 389 80 399 66 412 66 c 0 + 426 66 436 74 440 76 c 1 + 444 74 447 66 447 60 c 3 + 447 53 446 50 443 45 c 1 + 429 32 384 -6 343 -6 c 0 + 311 -6 278 20 269 43 c 1 + 260 35 193 -8 158 -8 c 0 + 84 -8 30 53 30 111 c 0xe8 + 30 149 56 181 81 189 c 0 + 118 201 212 239 262 258 c 1 + 262 265 262 271 262 278 c 2 + 262 304 l 2 + 262 353 238 401 204 401 c 0 + 167 401 157 363 147 319 c 0 + 142 297 127 276 93 276 c 0 + 67 276 42 296 42 323 c 0xd8 + 42 336 48 349 56 363 c 1 + 69 376 156 438 242 438 c 0 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 66 +Width: 529 +Flags: HW +HStem: -8 43<207 308> 366 72<236 309> 609 31<-1 55> 659 20G<188 193> +VStem: 67 127<49 345 392 600> 359 141<131 309> +LayerCount: 2 +Fore +SplineSet +238 -8 m 0 + 187 -8 140 15 115 15 c 0 + 97 15 86 11 79 8 c 1 + 76 8 55 25 55 32 c 1 + 62 50 67 84 67 148 c 2 + 67 545 l 2 + 67 562 67 575 60 592 c 0 + 55 604 13 609 1 609 c 1 + -3 609 -4 637 1 641 c 1 + 110 651 187 679 190 679 c 1 + 196 678 203 667 204 662 c 1 + 204 662 194 618 194 563 c 2 + 194 405 l 2 + 194 400 194 388 200 393 c 0 + 215 405 263 438 296 438 c 0 + 409 438 499 350 499 230 c 0 + 499 74 365 -8 238 -8 c 0 +247 366 m 0 + 220 366 206 355 197 345 c 0 + 194 342 194 339 194 336 c 2 + 194 96 l 2 + 194 63 217 35 258 35 c 0 + 320 35 359 119 359 191 c 0 + 359 325 308 366 247 366 c 0 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 67 +Width: 436 +Flags: HW +HStem: -9 82<221 325> 387 51<188 312> +VStem: 30 123<148 284> +LayerCount: 2 +Fore +SplineSet +403 373 m 0 + 403 345 382 312 347 312 c 0 + 321 312 304 338 288 356 c 0 + 271 375 246 387 222 387 c 0 + 179 387 153 312 153 252 c 0 + 153 115 232 73 294 73 c 0 + 351 73 382 100 403 122 c 1 + 410 120 415 110 415 104 c 3 + 415 97 414 89 412 86 c 0 + 394 59 328 -9 235 -9 c 0 + 126 -9 30 67 30 195 c 0 + 30 314 150 438 285 438 c 0 + 339 438 373 427 384 420 c 1 + 393 410 403 398 403 373 c 0 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 68 +Width: 534 +Flags: HW +HStem: -8 62<161 288> 27 31<467 513> 386 50<206 317> 609 31<263 319> 659 20G<453 457> +VStem: 31 139<119 291> 331 127<69 370 434 600> +LayerCount: 2 +Fore +SplineSet +287 436 m 0xbe + 308 436 318 435 326 434 c 1 + 330 434 331 448 331 456 c 0 + 331 480 331 513 331 545 c 0 + 331 564 331 575 324 592 c 0 + 319 604 278 609 266 609 c 1 + 262 609 261 637 266 641 c 1 + 375 651 451 679 454 679 c 1 + 460 678 468 667 469 662 c 1 + 469 662 458 618 458 563 c 2 + 458 105 l 26 + 458 90 458 78 467 68 c 0 + 476 58 502 59 511 59 c 1 + 513 57 514 53 514 46 c 0 + 514 40 512 33 508 27 c 1x7e + 450 21 353 -7 340 -7 c 0 + 336 -7 331 2 331 17 c 2 + 331 32 l 18 + 331 34 331 39 328 37 c 0 + 312 26 260 -8 208 -8 c 0 + 114 -8 31 80 31 195 c 0 + 31 361 198 436 287 436 c 0xbe +255 386 m 0 + 193 386 170 315 170 237 c 0 + 170 130 208 55 269 55 c 0xbe + 296 55 331 78 331 91 c 2 + 331 342 l 2 + 331 360 296 386 255 386 c 0 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 69 +Width: 449 +Flags: HW +HStem: -9 82<225 326> 236 39<159 284> 396 40<196 276> +VStem: 31 127<144 236 275 290> 298 121<283 362> +LayerCount: 2 +Fore +SplineSet +159 275 m 1 + 168 274 262 280 285 283 c 0 + 297 284 298 293 298 299 c 11 + 298 344 282 396 238 396 c 3 + 180 396 159 308 159 275 c 1 +158 236 m 1 + 158 99 251 73 295 73 c 0 + 352 73 383 100 404 122 c 1 + 411 120 416 110 416 104 c 3 + 416 97 415 89 413 86 c 0 + 395 59 329 -9 236 -9 c 0 + 127 -9 31 67 31 195 c 0 + 31 318 136 437 248 437 c 0 + 376 437 419 346 419 289 c 0 + 419 268 408 249 393 248 c 0 + 327 242 230 238 158 236 c 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 70 +Width: 346 +Flags: HW +HStem: -4 36<24 89 231 296> 372 46<31 97 224 337> 611 70<235 314> +VStem: 97 127<40 372 418 528> +LayerCount: 2 +Back +SplineSet +298.828125 681.640625 m 0 + 317.708007812 681.640625 338.541992188 678.385742188 361.328125 671.875 c 1 + 386.71875 658.528320312 399.4140625 643.5546875 399.4140625 626.953125 c 0 + 399.4140625 609.375 394.938476562 593.75 385.986328125 580.078125 c 128 + 377.034179688 566.40625 364.909179688 559.5703125 349.609375 559.5703125 c 0 + 342.7734375 559.5703125 336.018554688 560.954101562 329.345703125 563.720703125 c 128 + 322.672851562 566.487304688 317.463867188 569.3359375 313.720703125 572.265625 c 128 + 309.977539062 575.1953125 304.931640625 579.508789062 298.583984375 585.205078125 c 128 + 292.236328125 590.901367188 287.760742188 594.7265625 285.15625 596.6796875 c 0 + 273.112304688 606.4453125 260.090820312 611.328125 246.09375 611.328125 c 0 + 238.28125 611.328125 231.4453125 601.969726562 225.5859375 583.251953125 c 128 + 219.7265625 564.534179688 216.796875 543.9453125 216.796875 521.484375 c 0 + 216.796875 483.073242188 218.098632812 443.684570312 220.703125 403.3203125 c 1 + 334.9609375 403.3203125 l 2 + 338.8671875 403.3203125 340.8203125 399.088867188 340.8203125 390.625 c 0 + 340.8203125 386.393554688 338.37890625 380.696289062 333.49609375 373.53515625 c 128 + 328.61328125 366.374023438 323.567382812 361.002929688 318.359375 357.421875 c 1 + 223.6328125 357.421875 l 1 + 223.6328125 141.6015625 l 2 + 223.6328125 94.4658203125 226.237304688 63.8671875 231.4453125 49.8046875 c 0 + 234.700195312 41.015625 255.534179688 35.15625 293.9453125 32.2265625 c 1 + 296.223632812 28.6455078125 297.282226562 22.4609375 297.119140625 13.671875 c 128 + 296.956054688 4.8828125 295.8984375 -0.9765625 293.9453125 -3.90625 c 1 + 249.674804688 0.6513671875 205.078125 2.9296875 160.15625 2.9296875 c 128 + 115.234375 2.9296875 70.6376953125 0.6513671875 26.3671875 -3.90625 c 1 + 24.4140625 -0.9765625 23.3564453125 4.8828125 23.193359375 13.671875 c 128 + 23.0302734375 22.4609375 24.0888671875 28.6455078125 26.3671875 32.2265625 c 1 + 64.7783203125 35.15625 85.6123046875 41.015625 88.8671875 49.8046875 c 0 + 94.0751953125 62.8251953125 96.6796875 93.4248046875 96.6796875 141.6015625 c 2 + 96.6796875 357.421875 l 1 + 27.34375 357.421875 l 1 + 24.0888671875 358.723632812 22.4609375 362.956054688 22.4609375 370.1171875 c 1 + 30.9248046875 381.8359375 41.3408203125 392.903320312 53.7109375 403.3203125 c 1 + 96.6796875 403.3203125 l 1 + 96.6796875 432.6171875 l 2 + 96.6796875 464.518554688 103.759765625 496.174804688 117.919921875 527.587890625 c 128 + 132.080078125 559.000976562 149.495117188 585.693359375 170.166015625 607.666015625 c 128 + 190.836914062 629.638671875 212.809570312 647.4609375 236.083984375 661.1328125 c 128 + 259.358398438 674.8046875 280.2734375 681.640625 298.828125 681.640625 c 0 +EndSplineSet +Fore +SplineSet +299 682 m 0 + 330 682 347 676 361 672 c 1 + 378 663 399 650 399 627 c 27 + 399 595 382 560 350 560 c 19 + 321 560 304 582 285 597 c 0 + 274 606 262 611 246 611 c 0 + 230 611 217 577 217 531 c 0 + 217 486 219 433 221 403 c 1 + 228 403 303 403 335 403 c 0 + 339 403 341 395 341 390 c 0 + 341 381 328 364 318 357 c 1 + 289 357 256 357 224 357 c 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 270 97 357 c 1 + 71 357 52 357 27 357 c 1 + 22 359 22 366 22 370 c 1 + 32 384 42 393 54 403 c 1 + 67 403 87 403 97 403 c 9 + 97 433 l 2 + 97 567 226 682 299 682 c 0 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 71 +Width: 466 +Flags: HW +HStem: -213 55<172 302> -14 108<143 339> 145 36<186 262> 357 60<380 448> 396 36<173 248> +VStem: 23 107<-119 -53> 38 118<216 357> 48 95<69 120> 275 118<221 361> 363 85<-92 3> +LayerCount: 2 +Fore +SplineSet +210 396 m 0xea80 + 159 396 156 344 156 300 c 0 + 156 245 175 181 226 181 c 0 + 277 181 275 235 275 278 c 0 + 275 332 261 396 210 396 c 0xea80 +254 -14 m 0 + 218 -14 165 -14 146 -14 c 1 + 139 -22 131 -35 131 -57 c 0 + 131 -121 180 -158 248 -158 c 0 + 342 -158 363 -109 363 -77 c 0xe440 + 363 -36 316 -14 254 -14 c 0 +318 94 m 0 + 408 89 448 19 448 -14 c 0 + 448 -132 320 -213 187 -213 c 0 + 91 -213 23 -167 23 -101 c 0xf440 + 23 -62 70 -24 106 -6 c 1 + 73 3 48 49 48 90 c 0xf1 + 48 108 92 140 129 161 c 1 + 73 183 38 231 38 287 c 0 + 38 368 115 433 215 433 c 0xea + 259 433 292 427 319 408 c 0 + 322 405 323 405 325 405 c 2 + 447 417 l 1 + 450 416 458 412 458 406 c 0 + 458 399 444 364 434 357 c 1 + 413 359 404 360 379 363 c 0 + 377 363 373 362 373 360 c 1 + 389 339 394 319 394 292 c 0 + 394 211 318 145 217 145 c 0 + 199 145 182 146 166 149 c 1 + 155 140 143 129 143 119 c 0xf180 + 143 104 166 95 189 95 c 0 + 226 95 284 96 318 94 c 0 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 72 +Width: 569 +Flags: HW +HStem: -4 36<14 79 221 279 304 357 499 564> 356 1<214 299> 609 31<18 74> 659 20G<208 212> +VStem: 86 127<40 331 357 601> 365 127<40 327> +LayerCount: 2 +Fore +SplineSet +359 436 m 0 + 470 436 492 359 492 205 c 2 + 492 142 l 2 + 492 100 491 70 499 50 c 0 + 504 37 549 33 562 32 c 1 + 567 25 566 2 562 -4 c 1 + 524 0 469 3 428 3 c 0 + 387 3 344 0 306 -4 c 1 + 302 2 301 25 306 32 c 1 + 319 33 352 37 357 50 c 0 + 365 70 365 100 365 142 c 2 + 365 219 l 2 + 365 289 351 356 299 356 c 0 + 260 356 213 322 213 302 c 2 + 213 142 l 2 + 213 106 213 70 221 50 c 0 + 226 37 264 33 277 32 c 1 + 282 25 281 2 277 -4 c 1 + 239 0 191 3 150 3 c 0 + 109 3 54 0 16 -4 c 1 + 12 2 11 25 16 32 c 1 + 29 33 74 37 79 50 c 0 + 87 70 86 100 86 142 c 2 + 86 545 l 2 + 86 562 86 575 79 592 c 0 + 74 604 33 609 21 609 c 1 + 17 609 16 637 21 641 c 1 + 130 651 206 679 209 679 c 1 + 215 678 223 667 224 662 c 1 + 224 662 213 601 213 562 c 0 + 213 363 l 0 + 213 360 213 358 214 357 c 1 + 216 357 219 360 221 362 c 0 + 248 393 314 436 359 436 c 0 +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 73 +Width: 307 +Flags: HW +HStem: -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> 531 141<102 204> +VStem: 82 142<552 651> 99 127<40 344> +LayerCount: 2 +Fore +SplineSet +226 302 m 2xf4 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 251 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1 + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 228 377 227 363 c 0 + 226 342 226 308 226 302 c 2xf4 +82 602 m 0xf8 + 82 641 114 672 153 672 c 0 + 192 672 224 641 224 602 c 0 + 224 563 192 531 153 531 c 0 + 114 531 82 563 82 602 c 0xf8 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 74 +Width: 279 +Flags: HW +HStem: -213 23<-10 4> 354 30<15 73> 416 20G<189 211> 529 145<91 194> +VStem: 70 145<550 653> 87 127<-42 344> +LayerCount: 2 +Fore +SplineSet +87 62 m 2xf4 + 87 254 l 2xf4 + 87 264 86 319 78 334 c 0 + 70 349 24 354 17 354 c 1 + 14 356 13 384 18 384 c 1 + 92 390 171 417 208 436 c 1 + 215 434 225 422 225 419 c 1 + 222 411 216 377 215 363 c 0xf8 + 214 342 214 308 214 302 c 2 + 214 117 l 2 + 214 35 203 -47 167 -100 c 0 + 121 -166 35 -213 2 -213 c 1 + -5 -209 -12 -202 -12 -196 c 0 + -12 -194 -12 -190 -11 -189 c 0 + -7 -187 87 -139 87 62 c 2xf4 +70 602 m 0xf8 + 70 642 103 674 143 674 c 0 + 183 674 215 642 215 602 c 0 + 215 562 183 529 143 529 c 0 + 103 529 70 562 70 602 c 0xf8 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 75 +Width: 576 +Flags: HW +HStem: -4 36<14 77 222 285 511 573> 396 34<308 369 474 549> 609 31<18 74> 659 20G<208 212> +VStem: 86 127<40 196 230 601> +LayerCount: 2 +Fore +SplineSet +213 142 m 2 + 213 100 213 70 221 50 c 0 + 226 37 271 33 284 32 c 1 + 289 25 288 2 284 -4 c 1 + 246 0 191 3 150 3 c 0 + 109 3 54 0 16 -4 c 1 + 12 2 11 25 16 32 c 1 + 29 33 74 37 79 50 c 0 + 87 70 86 100 86 142 c 2 + 86 545 l 2 + 86 562 86 575 79 592 c 0 + 74 604 33 609 21 609 c 1 + 17 609 16 637 21 641 c 1 + 130 651 206 679 209 679 c 1 + 215 678 223 667 224 662 c 1 + 224 662 213 601 213 562 c 0 + 212 230 l 1 + 229 236 252 251 286 280 c 0 + 354 339 371 359 371 374 c 0 + 371 386 327 395 309 396 c 1 + 306 405 306 427 311 429 c 1 + 311 429 398 425 439 425 c 0 + 474 425 503 428 547 430 c 1 + 553 420 550 399 544 396 c 1 + 514 393 473 383 448 365 c 0 + 427 350 379 303 319 250 c 1 + 388 169 402 158 457 96 c 0 + 511 36 543 35 574 35 c 1 + 580 24 575 8 574 6 c 1 + 558 0 512 -6 475 -6 c 0 + 418 -6 370 18 341 52 c 2 + 341 52 274 124 226 184 c 0 + 222 190 213 196 213 196 c 1 + 213 142 l 2 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 76 +Width: 298 +Flags: HW +HStem: -4 36<14 79 221 286> 609 31<18 74> 659 20G<208 212> +VStem: 86 127<40 601> +LayerCount: 2 +Fore +SplineSet +86 545 m 2 + 86 562 86 575 79 592 c 0 + 74 604 33 609 21 609 c 1 + 17 609 16 637 21 641 c 1 + 130 651 206 679 209 679 c 1 + 215 678 223 667 224 662 c 1 + 224 662 213 601 213 562 c 0 + 213 142 l 18 + 213 100 213 70 221 50 c 0 + 226 37 271 33 284 32 c 1 + 289 25 288 2 284 -4 c 1 + 246 0 191 3 150 3 c 0 + 109 3 54 0 16 -4 c 1 + 12 2 11 25 16 32 c 1 + 29 33 74 37 79 50 c 0 + 87 70 86 100 86 142 c 2 + 86 545 l 2 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 77 +Width: 862 +Flags: HW +HStem: -4 36<26 91 234 292 315 370 512 575 597 650 792 857> 354 30<27 86> 356 79<303 393 579 698> +VStem: 99 127<40 331> 377 127<40 331> 658 127<40 327> +LayerCount: 2 +Fore +SplineSet +371 436 m 0xbc + 433 436 469 414 492 352 c 1 + 535 394 607 436 652 436 c 0 + 763 436 785 359 785 205 c 2 + 785 142 l 2 + 785 100 784 70 792 50 c 0 + 797 37 842 33 855 32 c 1 + 860 25 859 2 855 -4 c 1 + 817 0 762 3 721 3 c 0 + 680 3 637 0 599 -4 c 1 + 595 2 594 25 599 32 c 1 + 612 33 645 37 650 50 c 0 + 658 70 658 100 658 142 c 2 + 658 219 l 2 + 658 289 644 356 592 356 c 0 + 553 356 500 323 500 303 c 8 + 500 301 500 299 500 297 c 0 + 502 270 504 239 504 205 c 2 + 504 142 l 2 + 504 100 504 70 512 50 c 0 + 517 37 560 33 573 32 c 1 + 578 25 577 2 573 -4 c 1 + 535 0 482 3 441 3 c 0 + 400 3 355 0 317 -4 c 1 + 313 2 312 25 317 32 c 1 + 330 33 365 37 370 50 c 0 + 378 70 377 100 377 142 c 2 + 377 219 l 2 + 377 289 364 356 312 356 c 0xbc + 273 356 226 322 226 302 c 2 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 251 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1xdc + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 226 364 227 363 c 0 + 227 360 227 358 228 357 c 1 + 230 357 233 360 235 362 c 0 + 262 393 326 436 371 436 c 0xbc +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 78 +Width: 582 +Flags: HW +HStem: -4 36<26 91 234 292 317 370 512 577> 354 30<27 86> 356 1<228 312> 416 20G<202 223> +VStem: 99 127<40 331> 377 127<40 327> +LayerCount: 2 +Fore +SplineSet +371 436 m 0xbc + 482 436 504 359 504 205 c 2 + 504 142 l 2 + 504 100 504 70 512 50 c 0 + 517 37 562 33 575 32 c 1 + 580 25 579 2 575 -4 c 1 + 537 0 482 3 441 3 c 0 + 400 3 357 0 319 -4 c 1 + 315 2 314 25 319 32 c 1 + 332 33 365 37 370 50 c 0 + 378 70 377 100 377 142 c 2 + 377 219 l 2 + 377 289 364 356 312 356 c 0xbc + 273 356 226 322 226 302 c 2 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 251 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1xdc + 104 390 183 417 220 436 c 1 + 226 436 237 424 237 419 c 1 + 235 411 227 364 227 363 c 0 + 227 360 227 358 228 357 c 1 + 230 357 233 360 235 362 c 0 + 262 393 326 436 371 436 c 0xbc +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 79 +Width: 519 +Flags: HW +HStem: -7 41<224 315> 396 40<204 292> +VStem: 31 139<116 306> 350 139<124 315> +LayerCount: 2 +Fore +SplineSet +248 396 m 3 + 177 396 170 302 170 231 c 27 + 170 145 200 34 271 34 c 3 + 342 34 350 127 350 197 c 27 + 350 284 319 396 248 396 c 3 +259 437 m 0 + 394 437 488 344 488 220 c 0 + 488 97 390 -7 261 -7 c 0 + 125 -7 31 89 31 212 c 0 + 31 335 131 437 259 437 c 0 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 80 +Width: 540 +Flags: HW +HStem: -213 36<11 76 218 283> -8 43<224 318> 354 30<11 70> 366 71<259 324> +VStem: 83 127<-169 1 49 344> 369 141<132 316> +LayerCount: 2 +Fore +SplineSet +318 438 m 0xdc + 436 438 509 337 509 229 c 0 + 509 80 377 -8 270 -8 c 0 + 243 -8 217 1 213 1 c 1 + 210 1 210 -3 210 -15 c 2 + 210 -67 l 2 + 210 -109 210 -139 218 -159 c 0 + 223 -172 268 -176 281 -177 c 1 + 286 -184 285 -207 281 -213 c 1 + 243 -209 188 -206 147 -206 c 0 + 106 -206 51 -209 13 -213 c 1 + 9 -207 8 -184 13 -177 c 1 + 26 -176 71 -172 76 -159 c 0 + 84 -139 83 -109 83 -67 c 2 + 83 254 l 2 + 83 264 83 319 75 334 c 0 + 67 349 20 354 13 354 c 1 + 10 356 9 384 14 384 c 1xec + 88 390 167 417 204 436 c 1 + 211 434 221 422 221 419 c 1 + 219 413 212 402 212 386 c 0 + 212 380 214 378 216 380 c 0 + 245 411 288 438 318 438 c 0xdc +264 366 m 0xdc + 228 366 210 344 210 339 c 2 + 210 94 l 2 + 210 55 243 35 277 35 c 0 + 309 35 369 81 369 194 c 0 + 369 295 343 366 264 366 c 0xdc +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 81 +Width: 521 +Flags: HW +HStem: -213 36<256 320 463 528> -8 62<162 295> 385 51<206 312> +VStem: 31 139<116 286> 328 127<-169 30 62 367> +LayerCount: 2 +Fore +SplineSet +256 385 m 0 + 188 385 170 306 170 237 c 0 + 170 156 195 55 270 55 c 0 + 305 55 328 74 328 78 c 2 + 328 336 l 2 + 328 346 307 385 256 385 c 0 +293 436 m 0 + 330 436 379 413 408 413 c 0 + 429 413 437 418 443 420 c 1 + 449 418 467 403 467 396 c 1 + 462 384 455 351 455 284 c 2 + 455 -67 l 2 + 455 -109 455 -139 463 -159 c 0 + 468 -172 512 -176 525 -177 c 1 + 530 -184 529 -207 525 -213 c 1 + 487 -209 433 -206 392 -206 c 0 + 351 -206 296 -209 258 -213 c 1 + 254 -207 253 -184 258 -177 c 1 + 271 -176 315 -172 320 -159 c 0 + 328 -139 328 -109 328 -67 c 2 + 328 17 l 2 + 328 23 328 34 322 29 c 0 + 307 18 257 -8 211 -8 c 0 + 112 -8 31 83 31 188 c 0 + 31 341 169 436 293 436 c 0 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 82 +Width: 438 +Flags: HW +HStem: -4 36<26 91 234 308> 340 97<271 367> 354 30<27 86> +VStem: 99 127<41 313> +LayerCount: 2 +Fore +SplineSet +355 437 m 11xd0 + 380 437 403 432 416 420 c 1 + 420 414 427 393 427 372 c 0 + 427 339 402 295 369 295 c 3 + 351 295 339 309 327 319 c 0 + 316 329 308 340 291 340 c 11xd0 + 251 340 226 282 226 261 c 2 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 293 33 306 32 c 1 + 311 25 310 2 306 -4 c 1 + 268 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1xb0 + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 227 356 227 342 c 0 + 227 337 232 337 233 339 c 0 + 256 381 293 437 355 437 c 11xd0 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 83 +Width: 394 +Flags: HW +HStem: -8 39<125 227> 398 39<165 268> +VStem: 37 116<268 371> 44 36<84 146> 241 117<55 169> +LayerCount: 2 +Fore +SplineSet +219 438 m 0xe8 + 265 438 296 426 328 419 c 1 + 336 386 349 316 349 299 c 0 + 349 295 338 292 331 292 c 0 + 323 292 318 296 312 300 c 1 + 302 344 277 398 209 398 c 0 + 177 398 153 381 153 346 c 0xe8 + 153 295 210 280 253 259 c 0 + 304 234 358 210 358 127 c 0 + 358 29 268 -8 166 -8 c 0 + 123 -8 76 7 52 13 c 1 + 48 35 44 129 44 140 c 0 + 44 146 54 146 59 146 c 0 + 66 146 77 143 80 137 c 1xd8 + 94 52 147 31 186 31 c 0 + 220 31 241 57 241 84 c 0 + 241 133 187 146 141 171 c 0 + 84 202 37 237 37 303 c 0 + 37 401 142 438 219 438 c 0xe8 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 84 +Width: 333 +Flags: HW +HStem: -7 62<177 271> 372 46<15 80 207 320> +VStem: 80 127<67 372 418 488> +LayerCount: 2 +Fore +SplineSet +207 418 m 1 + 214 418 286 418 318 418 c 0 + 322 418 324 410 324 405 c 0 + 324 396 312 379 302 372 c 1 + 273 372 239 372 207 372 c 1 + 207 130 l 2 + 207 78 224 56 260 56 c 0 + 283 56 309 76 312 79 c 1 + 314 77 318 70 318 65 c 0 + 318 60 313 49 311 47 c 0 + 302 37 258 -7 207 -7 c 0 + 146 -7 80 27 80 136 c 2 + 80 372 l 1 + 54 372 36 372 11 372 c 1 + 6 374 6 381 6 385 c 1 + 16 399 25 408 37 418 c 1 + 50 418 70 418 80 418 c 9 + 80 418 80 450 80 470 c 1 + 117 501 153 543 183 573 c 1 + 194 580 206 579 207 573 c 1 + 207 520 207 470 207 418 c 1 +EndSplineSet +EndChar + +StartChar: u +Encoding: 117 117 85 +Width: 552 +Flags: HW +HStem: -5 60<159 307> 27 31<483 530> 354 30<9 68 275 334> 416 20G<184 206 450 472> +VStem: 82 127<85 344> 347 127<69 344> +LayerCount: 2 +Fore +SplineSet +347 254 m 2xbc + 347 264 346 319 338 334 c 0 + 330 349 284 354 277 354 c 1 + 274 356 273 384 278 384 c 1 + 352 390 431 417 468 436 c 1 + 475 434 485 422 485 419 c 1 + 482 411 476 377 475 363 c 0 + 474 342 474 308 474 302 c 2 + 474 105 l 10 + 474 90 474 78 483 68 c 0 + 492 58 518 59 527 59 c 1 + 529 57 530 53 530 46 c 0 + 530 40 528 33 524 27 c 1x7c + 466 21 369 -7 356 -7 c 0 + 352 -7 347 2 347 17 c 2 + 347 32 l 18 + 347 34 347 39 344 37 c 0 + 328 26 275 -5 207 -5 c 3 + 112 -5 82 78 82 170 c 2 + 82 254 l 2 + 82 264 81 319 73 334 c 0 + 65 349 18 354 11 354 c 1 + 8 356 7 384 12 384 c 1 + 86 390 166 417 203 436 c 1 + 210 434 219 422 219 419 c 1 + 216 411 210 377 209 363 c 0 + 208 342 208 308 208 302 c 2 + 208 214 l 2 + 208 110 224 55 285 55 c 0 + 312 55 347 76 347 91 c 2 + 347 254 l 2xbc +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 86 +Width: 520 +Flags: HW +HStem: -11 21G<246 254> 396 36<-3 46 201 257 315 384 455 524> +LayerCount: 2 +Fore +SplineSet +132 426 m 0 + 173 426 231 430 255 433 c 1 + 260 428 260 402 255 396 c 1 + 243 396 197 387 197 370 c 0 + 197 367 197 360 199 355 c 0 + 234 287 300 163 300 163 c 1 + 300 163 345 262 377 334 c 0 + 382 344 387 359 387 370 c 0 + 387 394 326 396 318 396 c 1 + 313 401 313 426 317 433 c 1 + 346 429 382 426 420 426 c 0 + 461 426 506 431 521 433 c 1 + 525 428 526 403 521 396 c 1 + 509 396 456 392 442 364 c 2 + 292 44 l 2 + 272 6 260 -11 248 -11 c 0 + 245 -11 239 -6 236 -3 c 1 + 179 114 126 224 61 359 c 1 + 48 388 8 396 -0 396 c 1 + -6 404 -4 427 -0 433 c 1 + 25 430 94 426 132 426 c 0 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 87 +Width: 770 +Flags: HW +HStem: -11 21G<244 250 510 516> 396 36<-3 46 201 257 285 332 488 544 573 642 713 773> +VStem: 358 126<313 375> +LayerCount: 2 +Fore +SplineSet +125 426 m 0 + 166 426 231 430 255 433 c 1 + 260 428 260 402 255 396 c 1 + 243 396 197 387 197 370 c 0 + 197 367 197 360 199 355 c 0 + 234 287 294 168 294 168 c 1 + 294 168 358 312 358 327 c 0 + 358 338 352 353 349 359 c 0 + 334 387 296 396 288 396 c 1 + 281 404 283 427 287 433 c 1 + 326 428 381 427 419 426 c 1 + 460 426 518 430 542 433 c 1 + 547 428 547 402 542 396 c 1 + 530 396 484 387 484 370 c 0 + 484 367 484 360 486 355 c 0 + 517 285 568 176 568 176 c 1 + 568 176 604 263 635 334 c 0 + 639 344 645 359 645 370 c 0 + 645 394 584 396 576 396 c 1 + 571 401 571 426 575 433 c 1 + 604 429 640 426 678 426 c 0 + 719 426 755 431 770 433 c 1 + 774 428 775 403 770 396 c 1 + 758 396 717 395 704 366 c 8 + 649 239 618 168 560 43 c 16 + 542 5 521 -11 512 -11 c 0 + 509 -11 503 -6 500 -3 c 1 + 500 -3 423 194 391 270 c 1 + 361 194 295 43 295 43 c 2 + 278 5 255 -11 246 -11 c 0 + 243 -11 237 -6 234 -3 c 1 + 166 143 127 225 61 359 c 1 + 47 388 8 396 -0 396 c 1 + -6 404 -4 427 -0 433 c 1 + 25 430 87 426 125 426 c 0 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 88 +Width: 544 +Flags: HW +HStem: -4 36<6 69 168 237 275 324 487 540> 396 36<15 70 229 277 303 372 461 528> +LayerCount: 2 +Fore +SplineSet +152 426 m 1 + 193 426 251 430 275 433 c 1 + 280 428 280 402 275 396 c 1 + 263 396 228 392 228 375 c 0 + 228 372 234 366 238 361 c 10 + 300 281 l 17 + 328 311 375 361 375 370 c 0 + 375 394 314 396 306 396 c 1 + 301 401 301 426 305 433 c 1 + 334 429 370 426 408 426 c 0 + 449 426 511 431 526 433 c 1 + 530 428 531 403 526 396 c 1 + 508 396 472 393 445 365 c 0 + 410 328 380 295 332 240 c 9 + 386 172 418 131 471 64 c 0 + 491 39 529 32 537 32 c 1 + 544 24 541 2 537 -4 c 1 + 498 1 440 2 402 3 c 1 + 361 3 302 -1 278 -4 c 1 + 273 1 273 26 278 32 c 1 + 290 32 325 37 325 54 c 0 + 325 57 319 62 315 67 c 10 + 245 152 l 17 + 223 129 188 94 172 73 c 0 + 167 67 164 62 164 59 c 0 + 164 35 226 32 234 32 c 1 + 239 27 239 3 235 -4 c 1 + 206 0 170 3 132 3 c 0 + 91 3 23 -2 8 -4 c 1 + 4 1 3 25 8 32 c 1 + 26 32 67 43 90 65 c 0 + 138 111 165 144 213 194 c 25 + 163 260 138 298 85 365 c 0 + 65 390 26 396 18 396 c 1 + 11 404 13 427 17 433 c 1 + 56 428 114 427 152 426 c 1 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 89 +Width: 521 +Flags: HW +HStem: -213 98<17 132> 396 36<-3 46 201 257 315 384 455 524> +LayerCount: 2 +Fore +SplineSet +132 426 m 0 + 173 426 231 430 255 433 c 1 + 260 428 260 402 255 396 c 1 + 243 396 197 387 197 370 c 0 + 197 367 197 360 199 355 c 0 + 234 287 300 163 300 163 c 1 + 300 163 345 262 377 334 c 0 + 382 344 387 359 387 370 c 0 + 387 394 326 396 318 396 c 1 + 313 401 313 426 317 433 c 1 + 346 429 382 426 420 426 c 0 + 461 426 506 431 521 433 c 1 + 525 428 526 403 521 396 c 1 + 509 396 456 392 442 364 c 2 + 442 364 342 153 281 24 c 0 + 251 -39 236 -81 195 -132 c 0 + 144 -196 101 -213 71 -213 c 0 + 30 -213 6 -187 6 -161 c 3 + 6 -139 15 -124 28 -115 c 1 + 105 -115 149 -105 189 -39 c 0 + 207 -10 210 1 223 30 c 1 + 183 111 61 359 61 359 c 1 + 48 388 8 396 -0 396 c 1 + -6 404 -4 427 -0 433 c 1 + 25 430 94 426 132 426 c 0 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 90 +Width: 449 +Flags: HW +HStem: 0 45<173 341> 373 45<104 251> +VStem: 36 34<275 325> +LayerCount: 2 +Fore +SplineSet +146 418 m 2 + 281 418 l 2 + 334 418 367 421 407 426 c 1 + 412 418 410 407 410 402 c 1 + 173 45 l 25 + 284 45 l 2 + 344 45 379 107 387 144 c 0 + 388 149 395 150 399 150 c 0 + 410 150 423 142 424 141 c 1 + 411 103 385 0 385 0 c 1 + 38 0 l 1 + 38 0 28 8 28 17 c 0 + 28 22 30 29 32 33 c 2 + 251 372 l 1 + 251 372 180 373 149 373 c 0 + 99 373 81 315 70 281 c 0 + 69 277 58 274 48 274 c 0 + 42 274 36 276 36 278 c 1 + 39 294 51 372 54 424 c 1 + 54 424 111 418 146 418 c 2 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 91 +Width: 291 +Flags: HW +HStem: -141 25<249 264> 717 25<249 264> +VStem: 78 111<-22 101 501 624> 104 112<89 225 376 512> +LayerCount: 2 +Fore +SplineSet +104 414 m 0xd0 + 104 444 96 467 88 492 c 0 + 83 510 78 529 78 553 c 0 + 78 655 211 738 259 742 c 1 + 262 742 272 725 266 717 c 1 + 239 702 189 658 189 595 c 0xe0 + 189 557 198 540 205 521 c 0 + 211 505 217 486 217 448 c 0 + 217 363 131 301 96 301 c 1 + 131 301 217 238 217 153 c 0xd0 + 217 115 211 96 205 80 c 0 + 198 61 189 45 189 7 c 0 + 189 -56 239 -100 266 -115 c 1 + 272 -123 262 -141 259 -141 c 1 + 211 -137 78 -53 78 49 c 0xe0 + 78 79 85 101 92 123 c 0 + 98 143 104 164 104 188 c 0 + 104 240 60 277 19 290 c 1 + 17 292 16 298 16 301 c 0 + 16 305 17 310 19 312 c 1 + 60 325 104 362 104 414 c 0xd0 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 92 +Width: 197 +Flags: HW +VStem: 73 52<-115 747> +LayerCount: 2 +Fore +SplineSet +124 -105 m 2 + 124 -113 79 -120 77 -120 c 0 + 70 -120 73 -116 73 -112 c 2 + 73 739 l 1 + 73 739 71 745 77 747 c 0 + 94 752 112 752 115 752 c 0 + 124 752 123 746 123 746 c 1 + 124 -105 l 2 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 93 +Width: 291 +Flags: HW +HStem: -141 25<28 43> 717 25<28 43> +VStem: 75 112<89 225 376 512> 102 111<-22 101 501 624> +LayerCount: 2 +Fore +SplineSet +33 742 m 1xd0 + 81 738 214 655 214 553 c 0xd0 + 214 527 208 505 202 486 c 0 + 195 463 187 442 187 414 c 0 + 187 362 232 325 273 312 c 1 + 275 310 276 305 276 301 c 0 + 276 298 275 292 273 290 c 1 + 232 277 187 240 187 188 c 0xe0 + 187 163 193 142 200 121 c 0 + 207 100 214 78 214 49 c 0 + 214 -53 81 -137 33 -141 c 1 + 30 -141 20 -123 26 -115 c 1 + 53 -100 102 -56 102 7 c 0xd0 + 102 44 95 60 88 78 c 0 + 81 95 75 114 75 153 c 0 + 75 238 161 301 196 301 c 1 + 161 301 75 363 75 448 c 0xe0 + 75 495 84 513 92 533 c 0 + 98 548 102 565 102 595 c 0 + 102 658 53 702 26 717 c 1 + 20 725 30 742 33 742 c 1xd0 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 94 +Width: 537 +Flags: HW +HStem: 233 59<314 441> 299 59<102 228> +LayerCount: 2 +Fore +SplineSet +255 267 m 0 + 221 281 182 299 138 299 c 0 + 100 299 66 269 54 253 c 1 + 51 254 48 257 47 261 c 1 + 47 300 109 357 167 357 c 0 + 213 357 254 339 288 324 c 0 + 321 310 361 292 405 292 c 0 + 443 292 477 322 489 338 c 1 + 492 337 495 334 496 330 c 1 + 496 291 434 233 376 233 c 0 + 330 233 289 253 255 267 c 0 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 95 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclamdown +Encoding: 161 161 96 +Width: 241 +Flags: HW +HStem: 286 146<70 173> +VStem: 48 146<309 410> 57 125<-190 60> +LayerCount: 2 +Fore +SplineSet +48 360 m 0xc0 + 48 399 80 433 120 433 c 27 + 161 433 194 399 194 357 c 0 + 194 318 161 286 121 286 c 27 + 80 286 48 321 48 360 c 0xc0 +117 -205 m 0 + 87 -205 57 -181 57 -139 c 0 + 57 -112 85 120 98 206 c 1 + 102 219 105 227 117 231 c 1 + 122 231 134 225 140 215 c 1 + 151 150 182 -90 182 -140 c 0xa0 + 182 -181 152 -205 117 -205 c 0 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 97 +Width: 470 +Flags: HW +HStem: -9 82<234 338> 387 51<200 325> +VStem: 43 123<148 284> 274 34<427 467> +LayerCount: 2 +Fore +SplineSet +274 470 m 17 + 282 470 309 469 309 462 c 1 + 228 -37 l 1 + 219 -37 196 -34 193 -28 c 9 + 274 470 l 17 +EndSplineSet +Refer: 67 99 N 1 0 0 1 13 0 2 +EndChar + +StartChar: sterling +Encoding: 163 163 98 +Width: 466 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -8 100<286 363> 50 84<122 251> 300 41<57 370> 566 55<236 326> +VStem: 97 103<350 471> 127 111<187 299> +LayerCount: 2 +Fore +SplineSet +309 621 m 0xb8 + 343 621 359 612 378 600 c 1 + 382 596 387 578 387 568 c 0 + 387 533 365 511 339 511 c 0 + 312 511 300 522 289 536 c 0 + 277 551 265 566 247 566 c 0 + 208 566 199 515 199 448 c 0xb8 + 199 376 239 331 239 276 c 0 + 239 203 193 141 169 119 c 1 + 187 129 211 134 233 134 c 0x74 + 270 134 302 92 353 92 c 0 + 390 92 404 123 412 138 c 1 + 416 140 424 136 428 131 c 24 + 433 125 433 118 433 112 c 1 + 422 81 377 -8 301 -8 c 0xb4 + 235 -8 208 50 136 50 c 0x74 + 111 50 78 10 61 -6 c 1 + 53 -6 45 7 45 16 c 0 + 45 44 80 76 94 92 c 0 + 118 119 127 179 127 227 c 0xb4 + 127 276 97 348 97 375 c 0 + 97 508 217 621 309 621 c 0xb8 +66 341 m 1 + 82 341 363 341 374 341 c 1 + 388 330 371 304 365 300 c 1 + 46 300 l 17 + 40 306 57 341 66 341 c 1 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 99 +Width: 549 +Flags: HW +HStem: 117 39<236 325> 445 39<224 312> +VStem: 95 91<213 388> 360 91<213 388> +LayerCount: 2 +Fore +SplineSet +281 156 m 0 + 330 156 360 214 360 287 c 0 + 360 377 319 445 268 445 c 0 + 219 445 186 385 186 312 c 0 + 186 222 230 156 281 156 c 0 +384 444 m 1 + 441 498 l 2 + 449 506 474 478 481 455 c 1 + 423 400 l 1 + 441 371 451 336 451 300 c 0 + 451 261 440 224 419 194 c 1 + 472 138 l 2 + 480 130 452 105 429 98 c 1 + 378 151 l 1 + 349 130 313 117 274 117 c 0 + 232 117 193 132 163 156 c 1 + 111 107 l 2 + 103 99 78 127 71 150 c 1 + 124 200 l 1 + 105 229 95 264 95 300 c 0 + 95 343 109 382 132 413 c 1 + 81 468 l 2 + 73 476 101 501 124 508 c 1 + 175 454 l 1 + 203 474 237 484 274 484 c 0 + 316 484 354 469 384 444 c 1 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 100 +Width: 675 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -4 36<183 247 400 465> 146 41<170 483> 224 41<170 483> 592 36<28 83 251 310 426 498 581 650> +VStem: 255 137<40 299> +LayerCount: 2 +Fore +SplineSet +178 187 m 1 + 194 187 476 187 487 187 c 1 + 501 176 483 150 477 146 c 1 + 159 146 l 17 + 153 152 169 187 178 187 c 1 +178 265 m 1 + 194 265 476 265 487 265 c 1 + 501 254 483 228 477 224 c 1 + 159 224 l 17 + 153 230 169 265 178 265 c 1 +255 142 m 2 + 255 258 l 2 + 255 259 254 268 252 273 c 0 + 232 320 127 506 127 506 c 2 + 112 533 109 540 97 560 c 0 + 82 584 44 591 31 592 c 1 + 26 599 27 622 31 628 c 1 + 69 624 129 621 170 621 c 0 + 211 621 270 624 308 628 c 1 + 312 622 313 599 308 592 c 1 + 295 591 248 589 248 565 c 0 + 248 561 251 557 255 550 c 2 + 372 334 l 1 + 377 329 453 468 495 546 c 0 + 499 554 500 561 500 568 c 0 + 500 586 441 591 428 592 c 1 + 423 599 424 622 428 628 c 1 + 474 624 493 621 538 621 c 0 + 581 621 608 626 648 628 c 1 + 652 622 653 599 648 592 c 1 + 635 591 591 589 576 567 c 0 + 557 538 425 327 398 271 c 0 + 395 265 393 255 393 253 c 2 + 392 142 l 2 + 392 100 392 70 400 50 c 0 + 405 37 449 33 462 32 c 1 + 467 25 466 2 462 -4 c 1 + 424 0 364 3 323 3 c 0 + 282 3 223 0 185 -4 c 1 + 181 2 180 25 185 32 c 1 + 198 33 242 37 247 50 c 0 + 255 70 255 100 255 142 c 2 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 101 +Width: 205 +Flags: HW +VStem: 77 52<-115 251 381 747> +LayerCount: 2 +Fore +SplineSet +129 391 m 2 + 129 383 84 376 82 376 c 0 + 75 376 77 380 77 384 c 2 + 77 739 l 1 + 77 739 76 745 82 747 c 0 + 99 752 118 752 121 752 c 0 + 130 752 129 746 129 746 c 1 + 129 391 l 2 +77 -112 m 2 + 77 243 l 1 + 77 243 76 249 82 251 c 0 + 99 256 118 256 121 256 c 0 + 130 256 129 250 129 250 c 1 + 129 -105 l 2 + 129 -113 84 -120 82 -120 c 0 + 75 -120 77 -116 77 -112 c 2 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 102 +Width: 456 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -90 49<136 233> 589 49<224 320> +VStem: 35 69<340 440> 122 57<441 555> 277 57<-7 106> 352 69<108 208> +LayerCount: 2 +Fore +SplineSet +313 638 m 0 + 204 638 122 553 122 475 c 0 + 122 409 194 355 241 312 c 0 + 294 263 352 208 352 127 c 0 + 352 84 336 64 313 36 c 0 + 313 36 293 15 286 -3 c 24 + 281 -14 285 -21 284 -33 c 17 + 321 -8 421 103 421 180 c 0 + 421 270 366 317 304 375 c 0 + 258 417 179 491 179 536 c 0 + 179 573 223 589 253 589 c 0 + 268 589 282 584 291 576 c 0 + 300 568 312 557 331 557 c 0 + 359 557 369 575 369 596 c 0 + 369 602 367 615 362 625 c 1 + 348 631 327 638 313 638 c 0 +143 -90 m 0 + 252 -90 334 -5 334 73 c 0 + 334 139 262 192 215 235 c 0 + 162 284 104 340 104 421 c 0 + 104 464 118 481 143 511 c 0 + 143 511 163 533 170 551 c 24 + 175 562 171 569 172 581 c 17 + 135 556 35 445 35 368 c 0 + 35 278 90 231 152 173 c 0 + 198 131 277 57 277 12 c 0 + 277 -25 233 -41 203 -41 c 0 + 188 -41 176 -38 168 -30 c 0 + 159 -21 145 -9 126 -9 c 0 + 98 -9 87 -30 87 -51 c 0 + 87 -57 90 -69 94 -76 c 1 + 106 -82 129 -90 143 -90 c 0 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 103 +Width: 397 +Flags: HW +LayerCount: 2 +Fore +Refer: 237 776 N 1 0 0 1 437 -53 2 +EndChar + +StartChar: copyright +Encoding: 169 169 104 +Width: 637 +Flags: HW +HStem: 37 43<227 410> 159 24<295 378> 419 25<290 374> 525 45<224 413> +VStem: 52 44<209 397> 180 70<218 375> 412 19<229 249> 541 45<209 397> +LayerCount: 2 +Fore +SplineSet +431 246 m 1 + 431 241 420 187 414 185 c 0 + 389 176 358 159 321 159 c 0 + 238 159 180 212 180 298 c 0 + 180 385 249 444 325 444 c 0 + 351 444 387 434 410 429 c 1 + 411 424 424 373 424 368 c 0 + 424 366 414 362 409 362 c 3 + 407 362 405 361 403 363 c 1 + 399 379 385 419 328 419 c 0 + 271 419 250 360 250 303 c 0 + 250 241 276 184 333 184 c 0 + 357 184 373 190 384 200 c 0 + 401 216 411 247 412 250 c 1 + 418 250 428 249 431 246 c 1 +96 303 m 0 + 96 180 195 80 318 80 c 0 + 441 80 541 180 541 303 c 0 + 541 426 441 525 318 525 c 0 + 195 525 96 426 96 303 c 0 +52 304 m 0 + 52 451 171 570 318 570 c 0 + 465 570 586 451 586 304 c 0 + 586 157 465 37 318 37 c 0 + 171 37 52 157 52 304 c 0 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 105 +Width: 377 +Flags: HW +HStem: 242 47<109 199 258 326> 515 29<141 226> +VStem: 42 96<295 367> 51 77<437 493> 210 93<295 390 417 504> +LayerCount: 2 +Fore +SplineSet +182 289 m 0xe8 + 197 289 210 300 210 304 c 2 + 210 390 l 1 + 196 385 177 379 162 370 c 0 + 142 358 138 344 138 329 c 0 + 139 301 163 289 182 289 c 0xe8 +196 544 m 0 + 255 544 303 501 303 441 c 2 + 303 319 l 2 + 303 301 311 295 320 295 c 0 + 330 295 340 303 343 304 c 1 + 346 303 350 294 350 290 c 3 + 350 285 348 281 346 278 c 1 + 336 269 300 243 270 243 c 0 + 247 243 222 257 215 273 c 1 + 208 268 161 242 136 242 c 0 + 82 242 42 283 42 322 c 0xe8 + 42 347 61 370 79 377 c 0 + 105 387 174 412 210 425 c 1 + 210 430 210 430 210 435 c 2 + 210 452 l 2 + 210 485 193 515 169 515 c 0 + 142 515 135 491 128 462 c 0 + 124 447 112 434 88 434 c 0 + 68 434 51 446 51 465 c 0xd8 + 51 474 55 484 61 493 c 1 + 70 502 134 544 196 544 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 106 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +SplineSet +208 242 m 0 + 208 247 211 253 215 257 c 1 + 343 334 415 409 420 413 c 1 + 426 412 442 405 446 395 c 1 + 442 389 351 277 315 242 c 1 + 351 207 442 96 446 90 c 1 + 442 80 426 72 420 71 c 1 + 415 75 343 151 215 228 c 1 + 211 232 208 237 208 242 c 0 +25 242 m 0 + 25 247 28 253 32 257 c 1 + 160 334 232 409 237 413 c 1 + 243 412 260 405 264 395 c 1 + 260 389 169 277 133 242 c 1 + 169 207 260 96 264 90 c 1 + 260 80 243 72 237 71 c 1 + 232 75 160 151 32 228 c 1 + 28 232 25 237 25 242 c 0 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 107 +Width: 575 +Flags: HW +HStem: 354 57<49 438> +VStem: 438 70<160 354> +LayerCount: 2 +Fore +SplineSet +508 410 m 17 + 508 165 l 1 + 507 164 471 156 450 156 c 0 + 440 156 438 163 438 163 c 1 + 438 163 438 319 438 354 c 1 + 51 354 l 1 + 51 354 45 353 45 363 c 1 + 45 363 50 410 60 410 c 2 + 508 410 l 17 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 108 +Width: 637 +Flags: HW +HStem: 87 43<227 410> 229 16<197 224 287 314 445 464> 347 19<284 299> 471 19<197 224 286 329> 575 45<224 413> +VStem: 52 44<259 447> 227 58<252 347 365 466> 347 61<376 465> 541 45<259 447> +LayerCount: 2 +Fore +SplineSet +317 489 m 0 + 366 489 407 464 407 417 c 0 + 407 385 367 359 348 354 c 1 + 376 316 408 281 408 281 c 0 + 436 249 461 245 464 245 c 1 + 466 242 464 230 464 229 c 1 + 452 228 436 227 420 227 c 0 + 390 227 373 240 355 262 c 0 + 297 341 l 0 + 297 341 293 347 290 347 c 0 + 284 347 l 9 + 284 288 l 2 + 284 271 284 260 287 252 c 0 + 289 247 307 244 312 244 c 1 + 314 241 314 231 312 229 c 1 + 296 231 273 231 256 231 c 0 + 239 231 214 231 198 229 c 1 + 196 231 196 241 198 244 c 1 + 203 244 222 247 224 252 c 0 + 227 260 227 271 227 288 c 2 + 227 431 l 2 + 227 448 227 459 224 467 c 0 + 222 472 203 473 198 473 c 1 + 196 476 196 487 198 489 c 1 + 216 488 240 488 257 488 c 0 + 274 488 294 489 317 489 c 0 +347 414 m 0 + 347 445 332 471 306 471 c 0 + 297 471 288 471 286 467 c 0 + 284 462 284 454 284 442 c 2 + 284 365 l 17 + 300 365 l 0 + 325 365 347 384 347 414 c 0 +96 353 m 0 + 96 230 195 130 318 130 c 0 + 441 130 541 230 541 353 c 0 + 541 476 441 575 318 575 c 0 + 195 575 96 476 96 353 c 0 +52 354 m 0 + 52 501 171 620 318 620 c 0 + 465 620 586 501 586 354 c 0 + 586 207 465 87 318 87 c 0 + 171 87 52 207 52 354 c 0 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 109 +Width: 458 +Flags: HW +HStem: 534 49<550 769> +VStem: 549 227<534 583> +LayerCount: 2 +Fore +SplineSet +109 543 m 4 + 109 545 110 583 121 583 c 6 + 331 583 l 6 + 333 583 335 582 335 576 c 4 + 335 571 335 559 330 541 c 4 + 328 535 323 534 323 534 c 5 + 115 534 l 5 + 115 534 109 533 109 543 c 4 +EndSplineSet +EndChar + +StartChar: degree +Encoding: 176 176 110 +Width: 283 +Flags: HW +HStem: 415 45<95 189> 588 44<94 189> +VStem: 33 46<477 572> 205 45<477 572> +LayerCount: 2 +Fore +SplineSet +79 524 m 0 + 79 489 107 460 142 460 c 0 + 177 460 205 489 205 524 c 0 + 205 559 177 588 142 588 c 0 + 107 588 79 559 79 524 c 0 +33 524 m 0 + 33 584 82 632 142 632 c 0 + 202 632 250 584 250 524 c 0 + 250 464 202 415 142 415 c 0 + 82 415 33 464 33 524 c 0 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 111 +Width: 568 +Flags: HW +HStem: 9 57<52 516> 299 57<52 254 311 516> +VStem: 254 57<98 299 355 558> +LayerCount: 2 +Fore +SplineSet +60 65 m 1 + 510 65 l 2 + 516 65 519 58 519 52 c 0 + 519 31 512 19 504 9 c 1 + 55 9 l 2 + 50 9 49 14 49 24 c 0 + 49 28 52 53 60 65 c 1 +60 355 m 1 + 254 355 l 1 + 254 550 l 1 + 265 559 291 561 295 561 c 0 + 305 561 311 559 311 552 c 2 + 311 355 l 1 + 510 355 l 2 + 516 355 519 348 519 342 c 0 + 519 321 512 309 504 299 c 1 + 311 299 l 1 + 311 105 l 1 + 299 97 275 95 265 95 c 0 + 259 95 254 99 254 103 c 2 + 254 299 l 1 + 55 299 l 2 + 50 299 49 304 49 314 c 0 + 49 318 52 343 60 355 c 1 +EndSplineSet +EndChar + +StartChar: uni00B2 +Encoding: 178 178 112 +Width: 343 +Flags: HW +HStem: 248 69<120 263> 575 52<111 185> +VStem: 199 93<459 560> +LayerCount: 2 +Fore +SplineSet +303 373 m 1 + 296 345 270 259 266 248 c 9 + 44 248 l 1 + 41 251 38 259 37 262 c 1 + 84 314 106 338 153 399 c 0 + 187 443 199 476 199 513 c 0 + 199 552 170 575 137 575 c 0 + 94 575 72 532 67 527 c 1 + 64 527 52 529 52 541 c 1 + 63 563 111 627 179 627 c 0 + 247 627 292 592 292 525 c 0 + 292 472 250 428 213 394 c 0 + 184 368 156 343 120 317 c 1 + 229 317 l 2 + 258 317 268 350 278 371 c 0 + 279 374 285 376 289 376 c 0 + 293 376 300 375 303 373 c 1 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 113 +Width: 330 +Flags: HW +HStem: 239 26<116 185> 582 45<102 179> +VStem: 190 78<490 571> 209 88<304 407> +LayerCount: 2 +Fore +SplineSet +175 627 m 0xe0 + 210 627 269 605 269 545 c 0xe0 + 269 485 218 470 197 466 c 1 + 217 465 297 441 297 368 c 0 + 297 281 201 239 125 239 c 0 + 86 239 56 250 44 260 c 1 + 40 266 35 277 35 286 c 0 + 35 301 45 320 66 320 c 0 + 83 320 94 307 105 290 c 0 + 115 274 133 266 149 266 c 0 + 186 266 209 292 209 346 c 0xd0 + 209 391 179 433 139 433 c 0 + 135 433 117 433 107 430 c 1 + 105 433 102 439 102 444 c 0 + 102 446 103 454 104 456 c 1 + 134 460 190 476 190 525 c 0 + 190 557 168 582 132 582 c 0 + 100 582 73 555 69 550 c 1 + 65 551 54 556 56 566 c 1 + 78 595 128 627 175 627 c 0xe0 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 114 +Width: 230 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 361 23 2 +EndChar + +StartChar: mu +Encoding: 181 181 115 +Width: 499 +Flags: HW +HStem: -8 119<276 366> -4 105<478 555> 416 20G<174 185 427 438> +VStem: 144 101<-200 4> 152 104<263 414> 403 109<322 414> 412 52<158 270> +LayerCount: 2 +Fore +SplineSet +225 215 m 1xa8 + 231 175 251 111 301 111 c 0 + 359 111 412 161 412 212 c 1xaa + 409 235 405 299 405 321 c 0 + 405 334 404 375 403 412 c 1 + 408 420 421 436 433 436 c 0 + 443 436 513 409 513 396 c 0xa4 + 513 365 498 318 487 275 c 0 + 479 245 473 223 464 190 c 17 + 463 110 497 102 515 102 c 0 + 552 102 572 136 582 153 c 1 + 588 153 598 133 600 126 c 0 + 601 122 599 109 598 106 c 0 + 584 65 558 -4 519 -4 c 0x62 + 472 -3 444 57 435 119 c 1 + 415 51 376 -8 321 -8 c 0 + 272 -8 224 74 216 134 c 1 + 218 110 223 -83 244 -198 c 1 + 239 -206 221 -222 203 -222 c 0 + 184 -222 144 -184 144 -171 c 0xb2 + 144 -153 156 109 168 211 c 1 + 168 234 152 349 152 371 c 0 + 152 384 153 406 155 414 c 1 + 159 425 168 436 180 436 c 0 + 190 436 257 409 257 396 c 0 + 257 359 249 328 243 301 c 0 + 235 263 231 242 225 215 c 1xa8 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 116 +Width: 516 +Flags: HW +HStem: -4 36<166 230 407 473> 3 43<296 340> 281 44<291 346> 292 44<396 424> 589 44<291 346> 602 36<399 446> +VStem: 32 259<369 547> 242 49<51 280> 347 49<50 285 336 582> +LayerCount: 2 +Fore +SplineSet +347 330 m 1x2980 + 347 365 347 571 347 584 c 1 + 343 588 328 589 318 589 c 0 + 308 589 297 589 291 583 c 1 + 291 583 291 425 291 325 c 1 + 297 325 343 327 347 330 c 1x2980 +346 285 m 1 + 332 284 307 282 291 281 c 1 + 291 225 291 171 291 115 c 0 + 291 80 291 65 296 51 c 0 + 297 48 307 46 318 46 c 0x6180 + 328 46 339 47 340 50 c 0 + 347 65 346 88 346 109 c 2 + 346 109 346 218 346 285 c 1 +395 292 m 1x1680 + 395 223 395 175 395 114 c 0 + 395 79 394 73 399 59 c 0 + 406 40 463 33 471 33 c 1 + 477 23 475 2 473 -4 c 1x9680 + 438 -2 380 3 320 3 c 24x4280 + 260 3 208 -2 168 -4 c 1 + 163 5 166 32 168 32 c 0 + 180 32 228 40 236 58 c 0 + 243 73 242 92 242 113 c 2 + 242 113 242 215 242 280 c 1x8180 + 117 280 32 341 32 458 c 0 + 32 594 142 637 222 637 c 0 + 280 637 269 633 327 633 c 0x8a80 + 392 633 444 638 444 638 c 1 + 449 633 448 605 443 602 c 1 + 428 602 403 594 398 582 c 0 + 396 575 396 570 396 520 c 0 + 396 460 396 355 396 336 c 1 + 401 335 443 349 443 349 c 1 + 448 349 447 343 447 339 c 0 + 446 329 432 305 425 302 c 0 + 414 297 403 293 395 292 c 1x1680 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 117 +Width: 292 +Flags: HW +HStem: 185 146<97.5 196.5> +VStem: 74.5 144<207 309> +LayerCount: 2 +Fore +SplineSet +74.5 259 m 0 + 74.5 298 106.5 330 146.5 330 c 27 + 185.5 330 217.5 298 217.5 259 c 0 + 217.5 220 187.5 185 148.5 185 c 27 + 107.5 185 74.5 220 74.5 259 c 0 +EndSplineSet +EndChar + +StartChar: cedilla +Encoding: 184 184 118 +Width: 443 +Flags: HW +HStem: -152 27<159 239> -63 62<199 240> +VStem: 245 53<-122 -64> +LayerCount: 2 +Fore +SplineSet +228 -24 m 1 + 236 -23 240 -22 249 -22 c 27 + 275 -22 298 -45 298 -70 c 0 + 298 -116 263 -152 203 -152 c 0 + 182 -152 163 -144 156 -137 c 1 + 154 -134 152 -121 152 -117 c 0 + 152 -111 153 -110 155 -110 c 1 + 159 -112 181 -125 202 -125 c 0 + 235 -125 245 -110 245 -96 c 0 + 245 -82 241 -63 220 -63 c 0 + 214 -63 204 -66 194 -70 c 1 + 191 -70 182 -62 182 -56 c 1 + 191 -41 203 -17 209 -2 c 1 + 240 -2 l 1 + 240 -2 233 -15 228 -24 c 1 +EndSplineSet +EndChar + +StartChar: uni00B9 +Encoding: 185 185 119 +Width: 284 +Flags: HW +HStem: 246 25<53 100 206 253> 606 20G<190 194> +VStem: 111 85<285 544> +LayerCount: 2 +Fore +SplineSet +111 499 m 2 + 111 525 105 545 93 545 c 0 + 84 545 60 534 49 529 c 1 + 44 530 38 541 38 549 c 0 + 38 550 38 555 39 556 c 1 + 108 585 189 626 191 626 c 2 + 192 626 l 2 + 196 626 207 609 208 606 c 1 + 205 595 196 561 196 523 c 2 + 196 338 l 2 + 196 320 199 291 206 284 c 0 + 214 275 247 271 252 271 c 1 + 254 271 253 247 252 246 c 1 + 229 247 177 250 154 250 c 0 + 131 250 78 247 55 246 c 1 + 52 249 52 271 55 271 c 1 + 63 271 95 277 102 285 c 0 + 107 291 111 328 111 339 c 2 + 111 499 l 2 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 120 +Width: 396 +Flags: HW +HStem: 245 30<171 240> 511 29<155 224> +VStem: 34 100<317 465> 263 100<321 469> +LayerCount: 2 +Fore +SplineSet +189 511 m 3 + 137 511 134 450 134 403 c 27 + 134 346 154 275 206 275 c 3 + 258 275 263 335 263 381 c 27 + 263 438 241 511 189 511 c 3 +197 540 m 0 + 294 540 362 478 362 396 c 0 + 362 314 291 245 198 245 c 0 + 101 245 34 309 34 391 c 0 + 34 473 105 540 197 540 c 0 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 121 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +SplineSet +282 242 m 0 + 282 237 279 232 275 228 c 1 + 147 151 75 75 70 71 c 1 + 64 72 48 80 44 90 c 1 + 48 96 139 207 175 242 c 1 + 139 277 48 389 44 395 c 1 + 48 405 64 412 70 413 c 1 + 75 409 147 334 275 257 c 1 + 279 253 282 247 282 242 c 0 +465 242 m 0 + 465 237 462 232 458 228 c 1 + 330 151 258 75 253 71 c 1 + 247 72 231 80 227 90 c 1 + 231 96 321 207 357 242 c 1 + 321 277 231 389 227 395 c 1 + 231 405 247 412 253 413 c 1 + 258 409 330 334 458 257 c 1 + 462 253 465 247 465 242 c 0 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 122 +Width: 719 +Flags: HW +HStem: -3 21G<592 616> 90 45<464 564 649 679> 246 25<46 94 200 246> 606 20G<185 201> +VStem: 105 85<285 544> 564 85<-2 90 135 256> +LayerCount: 2 +Fore +SplineSet +629 377 m 0 + 633 377 649 368 649 358 c 10 + 649 135 l 25 + 673 135 l 17 + 686 123 689 108 683 90 c 1 + 649 90 l 25 + 649 2 l 17 + 649 2 629 -3 603 -3 c 0 + 582 -3 564 0 564 5 c 2 + 564 90 l 25 + 414 90 l 17 + 409 92 402 98 402 106 c 1 + 475 194 553 291 616 369 c 0 + 620 374 624 377 629 377 c 0 +564 135 m 1 + 564 256 l 17 + 542 230 476 149 464 135 c 1 + 459 135 533 135 564 135 c 1 +190 523 m 2 + 190 338 l 2 + 190 320 192 291 199 284 c 0 + 207 275 240 271 245 271 c 1 + 247 271 246 247 245 246 c 1 + 222 247 171 250 148 250 c 0 + 125 250 71 247 48 246 c 1 + 45 249 45 271 48 271 c 1 + 56 271 88 277 95 285 c 0 + 100 291 105 328 105 339 c 2 + 105 499 l 2 + 105 525 98 545 86 545 c 0 + 77 545 53 534 42 529 c 1 + 37 530 31 555 32 556 c 1 + 101 585 184 626 186 626 c 9 + 186 626 200 609 201 606 c 1 + 198 595 190 561 190 523 c 2 +214 -33 m 0 + 199 -36 197 -24 197 -24 c 1 + 534 647 l 1 + 540 656 552 664 569 668 c 0 + 578 670 586 666 587 661 c 1 + 250 -11 l 2 + 247 -18 231 -29 214 -33 c 0 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 123 +Width: 730 +Flags: HW +HStem: -2 69<515 658> 246 25<47 95 201 247> 325 52<506 580> 606 20G<186 190> +VStem: 106 85<285 544> 594 93<209 310> +LayerCount: 2 +Fore +SplineSet +574 377 m 0 + 642 377 687 342 687 275 c 0 + 687 222 645 178 608 144 c 0 + 579 118 551 93 515 67 c 1 + 624 67 l 2 + 653 67 663 100 673 121 c 0 + 674 124 680 126 684 126 c 0 + 688 126 695 125 698 123 c 1 + 691 95 664 9 660 -2 c 9 + 439 -2 l 1 + 436 1 433 9 432 12 c 1 + 479 64 501 88 548 149 c 0 + 582 193 594 226 594 263 c 0 + 594 302 565 325 532 325 c 0 + 489 325 467 282 462 277 c 1 + 459 277 447 279 447 291 c 1 + 458 313 506 377 574 377 c 0 +191 523 m 2 + 191 338 l 2 + 191 320 194 291 201 284 c 0 + 209 275 241 271 246 271 c 1 + 248 271 247 247 246 246 c 1 + 223 247 172 250 149 250 c 0 + 126 250 72 247 49 246 c 1 + 46 249 46 271 49 271 c 1 + 57 271 89 277 96 285 c 0 + 101 291 106 328 106 339 c 2 + 106 499 l 2 + 106 525 99 545 87 545 c 0 + 78 545 54 534 43 529 c 1 + 38 530 32 549 34 556 c 1 + 103 585 185 626 187 626 c 1 + 193 620 201 609 202 606 c 1 + 199 595 191 561 191 523 c 2 +567 661 m 1 + 230 -11 l 2 + 227 -18 211 -29 194 -33 c 0 + 179 -36 177 -24 177 -24 c 1 + 514 647 l 1 + 520 656 532 664 549 668 c 0 + 558 670 566 666 567 661 c 1 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 124 +Width: 722 +Flags: HW +HStem: -3 21G<595 619> 90 45<467 566 651 682> 239 26<114 183> 582 45<100 177> +VStem: 188 78<490 571> 207 88<304 407> 566 85<-2 90 135 256> +LayerCount: 2 +Fore +SplineSet +632 377 m 0xf2 + 636 377 651 368 651 358 c 10 + 651 135 l 25 + 676 135 l 17 + 689 123 692 108 686 90 c 1 + 651 90 l 25 + 651 2 l 17 + 651 2 631 -3 605 -3 c 0 + 584 -3 566 0 566 5 c 2 + 566 90 l 25 + 417 90 l 17 + 412 92 405 98 405 106 c 1 + 478 194 556 291 619 369 c 0 + 623 374 627 377 632 377 c 0xf2 +566 135 m 1 + 566 256 l 17 + 544 230 479 149 467 135 c 1 + 462 135 535 135 566 135 c 1 +173 627 m 0 + 208 627 267 605 267 545 c 0xfa + 267 485 216 470 195 466 c 1 + 215 465 295 441 295 368 c 0 + 295 281 199 239 123 239 c 0 + 84 239 54 250 42 260 c 1 + 38 266 33 277 33 286 c 0 + 33 301 43 320 64 320 c 0 + 81 320 93 307 104 290 c 0 + 114 274 131 266 147 266 c 0 + 184 266 207 292 207 346 c 0xf6 + 207 391 177 433 137 433 c 0 + 133 433 115 433 105 430 c 1 + 103 433 100 439 100 444 c 0 + 100 446 101 454 102 456 c 1 + 132 460 188 476 188 525 c 0xfa + 188 557 166 582 130 582 c 0 + 98 582 71 555 67 550 c 1 + 63 551 52 556 54 566 c 1 + 76 595 126 627 173 627 c 0 +600 661 m 1 + 263 -11 l 2 + 260 -18 244 -29 227 -33 c 0 + 212 -36 210 -24 210 -24 c 1 + 547 647 l 1 + 553 656 565 664 582 668 c 0 + 591 670 599 666 600 661 c 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 125 +Width: 378 +Flags: HW +HStem: -209 65<143 256> 287 146<200 299> +VStem: 31 83<-114 6> 179 144<308 410> 239 37<173 231> +LayerCount: 2 +Fore +SplineSet +322 358 m 0xf0 + 322 317 289 287 252 287 c 0 + 211 287 179 318 179 358 c 0 + 179 398 209 434 248 434 c 0 + 284 434 322 402 322 358 c 0xf0 +276 220 m 1xe8 + 283 204 296 161 296 122 c 0 + 296 65 253 34 218 11 c 0 + 169 -21 114 -64 114 -97 c 0 + 114 -118 132 -144 167 -144 c 0 + 202 -144 233 -83 274 -83 c 0 + 311 -83 335 -115 335 -147 c 0 + 335 -164 327 -186 320 -192 c 1 + 306 -200 280 -209 232 -209 c 0 + 188 -209 31 -173 31 -37 c 0 + 31 49 102 82 154 114 c 0 + 180 131 217 149 234 173 c 0 + 241 183 239 204 239 214 c 1 + 241 220 249 231 254 231 c 0 + 262 231 272 224 276 220 c 1xe8 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 126 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 224 -1 N 1 0 0 1 528 0 2 +EndChar + +StartChar: Aacute +Encoding: 193 193 127 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 631 0 2 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 128 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 588 2 2 +EndChar + +StartChar: Atilde +Encoding: 195 195 129 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 228 -1 N 1 0 0 1 582 5 2 +EndChar + +StartChar: Adieresis +Encoding: 196 196 130 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 146 12 2 +EndChar + +StartChar: Aring +Encoding: 197 197 131 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 227 -1 N 1 0 0 1 590 -66 2 +EndChar + +StartChar: AE +Encoding: 198 198 132 +Width: 879 +Flags: HW +HStem: -4 36<-21 39 138 196 327 391> -2 43<543 749> 4 27<-19 87> 220 47<252 399> 303 46<536 680> 605 36<328 392 539 725> +VStem: 399 137<49 220 267 300 350 508 590 602> 716 30<378 425> +LayerCount: 2 +Fore +SplineSet +399 269 m 1x1f + 399 508 l 1 + 252 273 l 1 + 252 273 251 270 253 270 c 0 + 273 268 305 267 327 267 c 0 + 355 267 373 267 399 269 c 1x1f +469 642 m 0 + 510 642 728 647 786 648 c 1 + 793 599 805 548 814 504 c 1 + 811 501 799 499 792 499 c 0 + 785 499 778 502 776 507 c 0 + 755 561 731 605 671 605 c 2 + 590 605 l 2 + 568 605 546 605 541 594 c 0 + 536 582 536 562 536 534 c 2 + 536 359 l 2 + 536 353 557 349 578 349 c 2 + 630 349 l 2 + 688 349 700 360 716 417 c 0 + 717 422 720 425 727 425 c 0 + 734 425 743 423 746 420 c 1 + 746 232 l 1 + 744 230 735 229 728 229 c 0 + 721 229 716 231 715 236 c 0 + 703 283 690 292 681 296 c 0 + 669 301 643 303 606 303 c 0 + 579 303 536 301 536 289 c 2 + 536 138 l 2 + 536 132 536 81 544 61 c 0 + 550 47 582 41 607 41 c 2 + 672 41 l 2 + 709 41 741 51 763 73 c 0 + 784 94 798 122 815 166 c 0 + 816 170 822 172 829 172 c 0 + 839 172 855 169 858 166 c 1 + 839 113 813 41 806 -2 c 1 + 780 -2 605 -2 474 -2 c 0x5f + 402 -2 343 -3 329 -3 c 1 + 325 3 324 26 329 33 c 1 + 342 34 386 37 391 50 c 0 + 399 70 399 100 399 142 c 2 + 399 220 l 1 + 369 221 343 220 322 220 c 0 + 282 220 260 220 226 219 c 0 + 223 219 220 216 219 214 c 2 + 219 214 181 156 165 129 c 0 + 150 105 133 71 132 64 c 0 + 127 39 186 32 194 32 c 1 + 199 25 199 0 195 -4 c 1x9f + 162 0 130 4 87 4 c 0x3f + 42 4 15 0 -20 -4 c 1x9f + -23 0 -25 20 -19 31 c 1x3f + -7 31 45 46 58 62 c 0 + 80 89 88 104 105 131 c 2 + 392 590 l 0 + 392 591 392 592 391 593 c 0 + 384 607 342 607 329 608 c 1 + 324 615 325 639 329 645 c 1 + 373 642 428 642 469 642 c 0 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 133 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 1 0 2 +Refer: 232 -1 N 1 0 0 1 144 1 2 +EndChar + +StartChar: Egrave +Encoding: 200 200 134 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 224 -1 N 1 0 0 1 519 0 2 +EndChar + +StartChar: Eacute +Encoding: 201 201 135 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 573 0 2 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 136 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 540 2 2 +EndChar + +StartChar: Edieresis +Encoding: 203 203 137 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 97 12 2 +EndChar + +StartChar: Igrave +Encoding: 204 204 138 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 224 -1 N 1 0 0 1 400 0 2 +EndChar + +StartChar: Iacute +Encoding: 205 205 139 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 456 0 2 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 140 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 426 2 2 +EndChar + +StartChar: Idieresis +Encoding: 207 207 141 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 -13 12 2 +EndChar + +StartChar: Eth +Encoding: 208 208 142 +Width: 747 +Flags: HW +HStem: -3 41<41 107 258 427> 301 39<31 376> 605 39<40 106 251 402> +VStem: 112 137<48 602> 550 155<202 448> +LayerCount: 2 +Fore +SplineSet +374 301 m 1 + 346 301 46 301 32 301 c 1 + 28 301 27 331 33 340 c 1 + 61 340 360 340 374 340 c 1 + 378 340 378 310 374 301 c 1 +EndSplineSet +Refer: 36 68 N 1 0 0 1 4 0 2 +EndChar + +StartChar: Ntilde +Encoding: 209 209 143 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 228 -1 N 1 0 0 1 618 5 2 +EndChar + +StartChar: Ograve +Encoding: 210 210 144 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 224 -1 N 1 0 0 1 573 0 2 +EndChar + +StartChar: Oacute +Encoding: 211 211 145 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 660 0 2 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 146 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 621 2 2 +EndChar + +StartChar: Otilde +Encoding: 213 213 147 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 228 -1 N 1 0 0 1 615 5 2 +EndChar + +StartChar: Odieresis +Encoding: 214 214 148 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 183 12 2 +EndChar + +StartChar: multiply +Encoding: 215 215 149 +Width: 454 +Flags: HW +LayerCount: 2 +Fore +SplineSet +191 242 m 1 + 53 381 l 1 + 53 395 71 421 80 421 c 0 + 83 421 85 421 87 419 c 2 + 87 419 228 282 230 280 c 9 + 370 419 l 2 + 371 420 373 421 376 421 c 0 + 385 421 401 388 401 378 c 1 + 401 378 270 247 267 244 c 1 + 268 243 401 104 401 104 c 1 + 401 89 387 62 376 62 c 0 + 374 62 371 62 369 64 c 2 + 369 64 229 205 228 206 c 1 + 84 62 l 2 + 82 60 80 61 78 61 c 0 + 69 61 53 94 53 104 c 1 + 53 104 187 238 191 242 c 1 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 150 +Width: 741 +Flags: HW +HStem: -10 42<315 460> 609 42<282 426> +VStem: 39 156<207 434> 547 156<207 434> +LayerCount: 2 +Fore +SplineSet +528 660 m 17 + 536 657 567 647 565 640 c 9 + 197 -18 l 17 + 189 -15 158 -3 160 4 c 9 + 528 660 l 17 +EndSplineSet +Refer: 47 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ugrave +Encoding: 217 217 151 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 224 -1 N 1 0 0 1 601 0 2 +EndChar + +StartChar: Uacute +Encoding: 218 218 152 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 653 0 2 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 153 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 633 2 2 +EndChar + +StartChar: Udieresis +Encoding: 220 220 154 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 196 12 2 +EndChar + +StartChar: Yacute +Encoding: 221 221 155 +Width: 609 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 632 0 2 +EndChar + +StartChar: Thorn +Encoding: 222 222 156 +Width: 569 +Flags: HW +HStem: -4 36<35 100 252 317> 3 193<155 304> 143 50<289 371> 468 37<248 350> 610 36<35 100 252 317> +VStem: 108 137<40 466 505 602> 410 139<244 407> +LayerCount: 2 +Fore +SplineSet +177 640 m 0x9e + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 246 578 245 555 245 526 c 0 + 245 519 245 513 245 505 c 1 + 270 506 299 507 328 507 c 0 + 450 507 548 444 548 333 c 0 + 548 216 455 143 356 143 c 0xbe + 321 143 295 158 288 165 c 0 + 284 169 281 181 281 189 c 0 + 281 193 283 196 285 196 c 1x5e + 295 193 310 192 325 192 c 0 + 373 192 410 244 410 319 c 0 + 410 396 363 468 298 468 c 0 + 276 468 254 467 249 456 c 0 + 244 444 245 396 245 396 c 1 + 245 142 l 2 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1xbe + 277 0 216 3 175 3 c 0x5e + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0x9e +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 157 +Width: 576 +Flags: HW +HStem: -10 43<21 85 225 269 367 455> 372 46<38 92> 636 46<260 342> +VStem: 92 127<40 372 418 526> 375 9<393 513> 459 90<72 179> +LayerCount: 2 +Fore +SplineSet +321 682 m 0 + 405 682 492 628 492 550 c 0 + 492 503 464 479 442 459 c 0 + 420 439 384 415 384 393 c 0 + 384 357 450 307 479 279 c 0 + 514 245 549 209 549 149 c 0 + 549 50 457 -10 383 -10 c 0 + 350 -10 310 0 294 17 c 1 + 289 27 286 39 286 53 c 0 + 286 84 304 119 333 119 c 0 + 367 119 380 86 389 68 c 0 + 398 50 409 33 428 33 c 0 + 450 33 459 52 459 80 c 0 + 459 128 416 166 377 205 c 0 + 337 245 284 283 284 340 c 0 + 284 368 311 392 333 417 c 0 + 358 445 375 468 375 513 c 0 + 375 569 353 636 296 636 c 0 + 257 636 219 573 219 475 c 0 + 219 142 l 2 + 219 100 219 70 227 50 c 0 + 232 37 256 33 269 32 c 1 + 274 25 273 2 269 -4 c 1 + 231 0 197 3 156 3 c 0 + 115 3 60 0 22 -4 c 1 + 18 2 17 25 22 32 c 1 + 35 33 79 37 84 50 c 0 + 92 70 92 100 92 142 c 2 + 92 142 92 285 92 372 c 1 + 66 372 60 372 35 372 c 1 + 30 374 30 381 30 385 c 1 + 40 399 49 408 61 418 c 1 + 74 418 82 418 92 418 c 9 + 92 433 l 2 + 92 567 218 682 321 682 c 0 +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 158 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 464 13 2 +EndChar + +StartChar: aacute +Encoding: 225 225 159 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 496 12 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 160 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 474 13 2 +EndChar + +StartChar: atilde +Encoding: 227 227 161 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 222 771 N 1 0 0 1 456 14 2 +EndChar + +StartChar: adieresis +Encoding: 228 228 162 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 237 776 N 1 0 0 1 452 14 2 +EndChar + +StartChar: aring +Encoding: 229 229 163 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 110 176 N 1 0 0 1 109 71 2 +EndChar + +StartChar: ae +Encoding: 230 230 164 +Width: 679 +Flags: HW +HStem: -9 82<454 556> -8 68<121 231> 236 39<390 514> 396 40<166 253 427 507> +VStem: 30 132<76 169> 42 105<285 363> 528 121<283 362> +LayerCount: 2 +Fore +SplineSet +197 187 m 0x7a + 170 169 161 142 162 121 c 0 + 163 79 197 61 222 61 c 0 + 246 61 289 83 289 100 c 1 + 282 121 274 157 274 189 c 0 + 274 201 274 203 275 218 c 1 + 256 211 217 200 197 187 c 0x7a +469 396 m 3 + 411 396 390 308 390 275 c 1 + 399 274 493 280 516 283 c 0 + 528 284 528 293 528 299 c 11 + 528 344 513 396 469 396 c 3 +479 437 m 0 + 607 437 649 346 649 289 c 0 + 649 268 638 249 623 248 c 0 + 557 242 461 238 389 236 c 1 + 389 99 481 73 525 73 c 0 + 582 73 614 100 635 122 c 1 + 642 120 646 110 646 104 c 3 + 646 97 646 89 644 86 c 0 + 626 59 560 -9 467 -9 c 0xb6 + 402 -9 345 15 311 62 c 1 + 261 22 191 -8 158 -8 c 0 + 84 -8 30 53 30 111 c 0x7a + 30 149 56 181 81 189 c 0 + 118 201 228 239 278 257 c 1 + 282 260 286 271 286 278 c 0 + 286 291 286 300 284 311 c 0 + 274 367 238 401 204 401 c 0 + 167 401 157 363 147 319 c 0 + 142 297 127 276 93 276 c 0 + 67 276 42 296 42 323 c 0x76 + 42 336 48 349 56 363 c 1 + 69 376 156 438 242 438 c 0 + 288 438 329 419 356 385 c 1 + 390 416 434 437 479 437 c 0 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 165 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 118 184 N 1 0 0 1 17 0 2 +EndChar + +StartChar: egrave +Encoding: 232 232 166 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 471 13 2 +EndChar + +StartChar: eacute +Encoding: 233 233 167 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 517 12 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 168 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 484 13 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 169 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 237 776 N 1 0 0 1 471 14 2 +EndChar + +StartChar: igrave +Encoding: 236 236 170 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 190 768 N 1 0 0 1 405 13 2 +EndChar + +StartChar: iacute +Encoding: 237 237 171 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 191 769 N 1 0 0 1 427 12 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 172 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 221 770 N 1 0 0 1 403 13 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 173 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 237 776 N 1 0 0 1 395 14 2 +EndChar + +StartChar: eth +Encoding: 240 240 174 +Width: 527 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -6 41<218 300> 396 41<213 303> 647 27<96 122> +VStem: 32 135<113 317> 342 136<138 349> +LayerCount: 2 +Fore +SplineSet +358 691 m 17 + 363 685 384 663 379 658 c 9 + 132 490 l 17 + 126 497 107 519 112 524 c 9 + 358 691 l 17 +258 396 m 0 + 189 396 167 296 167 207 c 0 + 167 94 221 35 259 35 c 0 + 324 35 342 132 342 220 c 0 + 342 270 334 325 313 366 c 1 + 301 383 285 396 258 396 c 0 +240 438 m 0 + 264 438 283 435 304 430 c 1 + 279 504 218 592 95 647 c 1 + 93 658 94 669 102 675 c 1 + 168 665 292 613 376 518 c 0 + 434 454 478 369 478 253 c 3 + 478 105 386 -6 257 -6 c 0 + 153 -6 32 58 32 213 c 0 + 32 364 145 438 240 438 c 0 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 175 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 222 771 N 1 0 0 1 530 14 2 +EndChar + +StartChar: ograve +Encoding: 242 242 176 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 490 13 2 +EndChar + +StartChar: oacute +Encoding: 243 243 177 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 552 12 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 178 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 510 13 2 +EndChar + +StartChar: otilde +Encoding: 245 245 179 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 222 771 N 1 0 0 1 503 14 2 +EndChar + +StartChar: odieresis +Encoding: 246 246 180 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 237 776 N 1 0 0 1 494 14 2 +EndChar + +StartChar: divide +Encoding: 247 247 181 +Width: 578 +Flags: HW +HStem: 2 121<242 334> 218 57<58 522> 361 121<242 334> +VStem: 228 121<17 108 376 468> +LayerCount: 2 +Fore +SplineSet +228 422 m 0 + 228 455 255 482 288 482 c 0 + 321 482 349 455 349 422 c 0 + 349 389 321 361 288 361 c 0 + 255 361 228 389 228 422 c 0 +228 62 m 0 + 228 95 255 123 288 123 c 0 + 321 123 349 95 349 62 c 0 + 349 29 321 2 288 2 c 0 + 255 2 228 29 228 62 c 0 +62 218 m 1 + 57 218 56 223 56 233 c 0 + 56 237 57 262 66 274 c 1 + 516 274 l 2 + 522 274 524 267 524 261 c 0 + 524 240 519 228 511 218 c 1 + 62 218 l 1 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 182 +Width: 519 +Flags: HW +HStem: -7 41<224 315> 396 40<204 292> +VStem: 31 139<116 306> 350 139<124 315> +LayerCount: 2 +Fore +SplineSet +364 444 m 17 + 372 441 398 433 396 426 c 9 + 148 -16 l 17 + 140 -13 115 -3 117 4 c 9 + 364 444 l 17 +EndSplineSet +Refer: 79 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ugrave +Encoding: 249 249 183 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 477 13 2 +EndChar + +StartChar: uacute +Encoding: 250 250 184 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 576 12 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 185 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 512 13 2 +EndChar + +StartChar: udieresis +Encoding: 252 252 186 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 237 776 N 1 0 0 1 502 14 2 +EndChar + +StartChar: yacute +Encoding: 253 253 187 +Width: 521 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 590 12 2 +EndChar + +StartChar: thorn +Encoding: 254 254 188 +Width: 522 +Flags: HW +HStem: -213 36<-7 58 201 265> -8 43<207 301> 366 71<241 307> 609 31<-2 54> 659 20G<187 192> +VStem: 66 127<-169 1 49 359 379 601> 351 141<132 316> +LayerCount: 2 +Fore +SplineSet +300 438 m 0 + 418 438 492 337 492 229 c 0 + 492 80 359 -8 252 -8 c 0 + 225 -8 200 1 196 1 c 1 + 193 1 193 -3 193 -15 c 2 + 193 -67 l 2 + 193 -109 193 -139 201 -159 c 0 + 206 -172 250 -176 263 -177 c 1 + 268 -184 267 -207 263 -213 c 1 + 225 -209 170 -206 129 -206 c 0 + 88 -206 33 -209 -5 -213 c 1 + -9 -207 -10 -184 -5 -177 c 1 + 8 -176 53 -172 58 -159 c 0 + 66 -139 66 -109 66 -67 c 2 + 66 545 l 2 + 66 562 66 575 59 592 c 0 + 54 604 12 609 0 609 c 1 + -4 609 -5 637 0 641 c 1 + 109 651 186 679 189 679 c 1 + 195 678 203 667 204 662 c 1 + 204 662 193 601 193 562 c 0 + 193 398 193 401 193 385 c 0 + 193 383 193 382 193 381 c 0 + 194 378 196 378 197 379 c 0 + 226 410 270 438 300 438 c 0 +246 366 m 0 + 210 366 193 344 193 339 c 2 + 193 94 l 2 + 193 55 225 35 259 35 c 0 + 291 35 351 81 351 194 c 0 + 351 295 325 366 246 366 c 0 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 189 +Width: 521 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 237 776 N 1 0 0 1 517 14 2 +EndChar + +StartChar: gravecomb +Encoding: 768 768 190 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 161 +VStem: -347 169 +LayerCount: 2 +Fore +SplineSet +-347 618 m 0 + -347 626 -336 646 -302 646 c 0 + -288 646 -274 643 -269 638 c 0 + -233 596 -178 508 -178 503 c 0 + -178 497 -187 485 -194 485 c 0 + -204 485 -347 580 -347 618 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb +Encoding: 769 769 191 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 161 +VStem: -334 169 +LayerCount: 2 +Fore +SplineSet +-210 647 m 0 + -176 647 -165 627 -165 619 c 0 + -165 581 -307 486 -317 486 c 0 + -324 486 -334 498 -334 504 c 0 + -334 509 -279 597 -243 639 c 0 + -238 644 -224 647 -210 647 c 0 +EndSplineSet +EndChar + +StartChar: uni2010 +Encoding: 8208 8208 192 +Width: 365 +Flags: HW +HStem: 188 72<59 209> 199 73<163 306> +VStem: 56 255 +LayerCount: 2 +Fore +SplineSet +56 199 m 0x60 + 56 246 64 261 67 261 c 2 + 68 261 l 1xa0 + 304 272 l 1 + 305 272 l 2 + 307 272 311 272 311 264 c 0 + 311 216 298 199 298 199 c 1x60 + 62 188 l 1xa0 + 62 188 56 187 56 199 c 0x60 +EndSplineSet +EndChar + +StartChar: uni2011 +Encoding: 8209 8209 193 +Width: 365 +Flags: HW +HStem: 188 72<59 209> 199 73<163 306> +VStem: 56 255 +LayerCount: 2 +Fore +SplineSet +56 199 m 0x60 + 56 246 64 261 67 261 c 2 + 68 261 l 1xa0 + 304 272 l 1 + 305 272 l 2 + 307 272 311 272 311 264 c 0 + 311 216 298 199 298 199 c 1x60 + 62 188 l 1xa0 + 62 188 56 187 56 199 c 0x60 +EndSplineSet +EndChar + +StartChar: figuredash +Encoding: 8210 8210 194 +Width: 543 +Flags: HW +HStem: 189 72<59 480> +LayerCount: 2 +Fore +SplineSet +55 198 m 0 + 55 200 57 262 68 262 c 2 + 483 262 l 2 + 485 262 489 261 489 253 c 0 + 489 235 481 200 480 196 c 0 + 478 190 474 189 474 189 c 1 + 61 189 l 1 + 61 189 55 188 55 198 c 0 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 195 +Width: 546 +Flags: HW +HStem: 189 72<61 482> +LayerCount: 2 +Fore +SplineSet +57 198 m 0 + 57 200 59 262 70 262 c 2 + 485 262 l 2 + 487 262 491 261 491 253 c 0 + 491 235 483 200 482 196 c 0 + 480 190 476 189 476 189 c 1 + 62 189 l 1 + 62 189 57 188 57 198 c 0 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 196 +Width: 921 +Flags: HW +HStem: 189 72<61 858> +LayerCount: 2 +Fore +SplineSet +57 198 m 0 + 57 200 59 262 70 262 c 2 + 861 262 l 2 + 863 262 867 261 867 253 c 0 + 867 235 859 200 858 196 c 0 + 856 190 852 189 852 189 c 1 + 62 189 l 1 + 62 189 57 188 57 198 c 0 +EndSplineSet +EndChar + +StartChar: uni2015 +Encoding: 8213 8213 197 +Width: 1111 +Flags: HW +HStem: 189 72<61 1048> +LayerCount: 2 +Fore +SplineSet +57 198 m 0 + 57 200 59 262 70 262 c 2 + 1051 262 l 2 + 1053 262 1057 261 1057 253 c 0 + 1057 235 1049 200 1048 196 c 0 + 1046 190 1041 189 1041 189 c 1 + 62 189 l 1 + 62 189 57 188 57 198 c 0 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 198 +Width: 205 +Flags: HW +HStem: 440 272<87 155> +VStem: 26 83<517 622> +LayerCount: 2 +Fore +SplineSet +44 535 m 0 + 44 645 162 712 173 712 c 0 + 183 712 193 704 198 691 c 1 + 127 649 127 616 127 605 c 0 + 127 575 139 555 151 541 c 0 + 164 525 176 516 176 499 c 0 + 176 471 142 440 105 440 c 0 + 97 440 73 446 62 454 c 1 + 51 470 44 500 44 535 c 0 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 199 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 229 1152 2 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 200 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 214 585 2 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 201 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N 1 0 0 1 0 0 2 +Refer: 198 8216 N 1 0 0 1 169 0 2 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 202 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 229 1152 2 +Refer: 198 8216 N -1 -0 0 -1 398 1152 2 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 203 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 383 585 2 +Refer: 198 8216 N -1 -0 0 -1 214 585 2 +EndChar + +StartChar: dagger +Encoding: 8224 8224 204 +Width: 387 +Flags: HW +HStem: 422 89<40 99 288 348> 452 24<101 170 217 287> 627 20G<183 205> +VStem: 148 90<557 640> 176 35<389 450 478 594> 185 19<-23 83> +LayerCount: 2 +Fore +SplineSet +149 477 m 8x68 + 162 477 168 480 178 493 c 1 + 178 525 167 591 148 610 c 1 + 148 631 172 646 194 646 c 0 + 215 646 238 631 238 610 c 1 + 219 591 209 525 209 493 c 1 + 219 480 225 477 238 477 c 0x70 + 270 477 298 492 317 511 c 1 + 338 511 354 486 354 465 c 0 + 354 444 338 422 317 422 c 1xb0 + 298 441 271 451 238 452 c 24x70 + 223 452 211 437 211 425 c 1x68 + 218 408 231 384 243 356 c 1 + 222 221 223 180 203 -10 c 1 + 200 -17 199 -22 194 -23 c 1 + 189 -22 188 -15 185 -10 c 1x64 + 165 180 165 221 144 356 c 1 + 155 380 169 408 176 425 c 1 + 176 437 164 452 149 452 c 24x68 + 116 451 89 441 70 422 c 1 + 49 422 33 444 33 465 c 0 + 33 486 49 511 70 511 c 1xa8 + 89 492 117 477 149 477 c 8x68 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 205 +Width: 407 +Flags: HW +HStem: 112 89<50 109 298 357> 146 24<111 180 227 296> 422 89<50 109 298 357> 452 24<111 180 227 296> 627 20G<193 214> +VStem: 158 90<-17 66 557 640> 181 45<14 146 171 254 272 350 369 452 477 609> +LayerCount: 2 +Fore +SplineSet +253 267 m 1x1a + 241 239 228 215 221 198 c 1 + 221 186 233 171 248 171 c 24x5c + 281 172 308 182 327 201 c 1 + 348 201 364 179 364 158 c 0 + 364 137 348 112 327 112 c 1x8c + 308 131 280 146 248 146 c 0 + 235 146 229 143 219 130 c 1 + 219 98 229 32 248 13 c 1 + 248 -8 225 -23 204 -23 c 0 + 182 -23 158 -8 158 13 c 1 + 177 32 188 98 188 130 c 1 + 178 143 172 146 159 146 c 16x4c + 127 146 99 131 80 112 c 1 + 59 112 43 137 43 158 c 0 + 43 179 59 201 80 201 c 1x8c + 99 182 126 172 159 171 c 24 + 174 171 186 186 186 198 c 1 + 179 215 164 243 153 267 c 1 + 167 279 181 304 181 312 c 1 + 181 321 160 349 153 356 c 1 + 164 380 179 408 186 425 c 1 + 186 437 174 452 159 452 c 24x5a + 126 451 99 441 80 422 c 1 + 59 422 43 444 43 465 c 0 + 43 486 59 511 80 511 c 1x2a + 99 492 127 477 159 477 c 8 + 172 477 178 480 188 493 c 1 + 188 525 177 591 158 610 c 1 + 158 631 182 646 204 646 c 0 + 225 646 248 631 248 610 c 1 + 229 591 219 525 219 493 c 1 + 229 480 235 477 248 477 c 0x1c + 280 477 308 492 327 511 c 1 + 348 511 364 486 364 465 c 0 + 364 444 348 422 327 422 c 1x2c + 308 441 281 451 248 452 c 24x1c + 233 452 221 437 221 425 c 1 + 228 408 241 384 253 356 c 1 + 246 349 226 320 226 312 c 1 + 226 304 239 279 253 267 c 1x1a +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 206 +Width: 411 +Flags: HW +HStem: 120 274<133 279> +VStem: 69 272<183 331> +LayerCount: 2 +Fore +SplineSet +69 257 m 0 + 69 332 131 395 206 395 c 0 + 281 395 342 332 342 257 c 0 + 342 182 281 120 206 120 c 0 + 131 120 69 182 69 257 c 0 +EndSplineSet +EndChar + +StartChar: onedotenleader +Encoding: 8228 8228 207 +Width: 228 +Flags: HW +HStem: -11 146<63 165> +VStem: 41 146<12 113> +LayerCount: 2 +Fore +SplineSet +188 62 m 0 + 188 23 155 -11 115 -11 c 27 + 74 -11 41 22 41 64 c 0 + 41 103 74 136 114 136 c 27 + 155 136 188 101 188 62 c 0 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 208 +Width: 771 +Flags: HW +HStem: -11 146<63 165 334 436 606 708> +VStem: 41 146<12 113> 312 146<12 113> 584 146<12 113> +LayerCount: 2 +Fore +SplineSet +730 62 m 0 + 730 23 698 -11 658 -11 c 27 + 617 -11 584 22 584 64 c 0 + 584 103 617 136 657 136 c 27 + 698 136 730 101 730 62 c 0 +459 62 m 0 + 459 23 427 -11 387 -11 c 27 + 346 -11 312 22 312 64 c 0 + 312 103 346 136 386 136 c 27 + 427 136 459 101 459 62 c 0 +188 62 m 0 + 188 23 155 -11 115 -11 c 27 + 74 -11 41 22 41 64 c 0 + 41 103 74 136 114 136 c 27 + 155 136 188 101 188 62 c 0 +EndSplineSet +LCarets2: 2 0 0 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 209 +Width: 1000 +Flags: HW +HStem: 0 30<462 526 793 857> 268 29<447 511 778 842> 329 30<172 236> 597 29<157 221> +VStem: 44 93<399 552> 257 93<403 557> 334 93<69 223> 547 93<74 228> 665 93<69 223> 878 93<74 228> +LayerCount: 2 +Fore +SplineSet +810 268 m 3xf9c0 + 762 268 758 206 758 159 c 24 + 758 102 777 30 825 30 c 3 + 873 30 878 91 878 137 c 24 + 878 195 858 268 810 268 c 3xf9c0 +817 297 m 0 + 907 297 971 234 971 151 c 0 + 971 69 904 0 818 0 c 0 + 727 0 665 64 665 146 c 0 + 665 228 731 297 817 297 c 0 +614 620 m 1 + 110 -5 l 2 + 106 -11 87 -20 70 -20 c 0 + 55 -20 56 -8 56 -8 c 1 + 560 617 l 1 + 568 624 582 630 599 630 c 0 + 608 630 614 625 614 620 c 1 +479 268 m 3 + 431 268 427 206 427 159 c 24xfbc0 + 427 102 446 30 494 30 c 3 + 542 30 547 91 547 137 c 24 + 547 195 527 268 479 268 c 3 +486 297 m 0 + 576 297 640 234 640 151 c 0 + 640 69 573 0 487 0 c 0 + 396 0 334 64 334 146 c 0 + 334 228 400 297 486 297 c 0 +188 597 m 3 + 140 597 137 535 137 488 c 24 + 137 431 156 359 204 359 c 3 + 252 359 257 420 257 466 c 24xfdc0 + 257 524 236 597 188 597 c 3 +196 626 m 0 + 286 626 350 563 350 480 c 0 + 350 398 283 329 197 329 c 0 + 106 329 44 394 44 476 c 0 + 44 558 110 626 196 626 c 0 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 210 +Width: 163 +Flags: HW +HStem: 473 210<64 77> +VStem: 44 102 +LayerCount: 2 +Fore +SplineSet +102 683 m 0 + 122 683 146 671 146 651 c 0 + 146 605 94 515 69 482 c 0 + 65 477 60 473 56 473 c 0 + 50 473 44 477 44 484 c 0 + 44 487 51 597 59 650 c 0 + 61 662 83 683 102 683 c 0 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 211 +Width: 294 +Flags: HW +HStem: 473 210<64 77 196 209> +VStem: 44 232 +LayerCount: 2 +Fore +SplineSet +233 683 m 0 + 253 683 276 671 276 651 c 0 + 276 605 226 515 201 482 c 0 + 197 477 192 473 188 473 c 0 + 182 473 176 477 176 484 c 0 + 176 487 182 597 190 650 c 0 + 192 662 214 683 233 683 c 0 +102 683 m 0 + 122 683 145 671 145 651 c 0 + 145 605 94 515 69 482 c 0 + 65 477 60 473 56 473 c 0 + 50 473 44 477 44 484 c 0 + 44 487 51 597 59 650 c 0 + 61 662 83 683 102 683 c 0 +EndSplineSet +EndChar + +StartChar: uni2038 +Encoding: 8248 8248 212 +Width: 391 +Flags: HW +HStem: -64 187 +VStem: 48 307 +LayerCount: 2 +Fore +SplineSet +201 122 m 0 + 206 122 212 120 215 117 c 1 + 284 17 351 -39 354 -43 c 1 + 353 -48 347 -61 338 -64 c 1 + 332 -61 233 10 201 38 c 1 + 169 10 70 -61 64 -64 c 1 + 55 -61 49 -48 48 -43 c 1 + 51 -39 119 17 188 117 c 1 + 191 120 196 122 201 122 c 0 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 213 +Width: 307 +Flags: HW +VStem: 25 238 +LayerCount: 2 +Fore +SplineSet +25 242 m 0 + 25 247 28 253 32 257 c 1 + 160 334 232 409 237 413 c 1 + 243 412 260 405 264 395 c 1 + 260 389 169 277 133 242 c 1 + 169 207 260 96 264 90 c 1 + 260 80 243 72 237 71 c 1 + 232 75 160 151 32 228 c 1 + 28 232 25 237 25 242 c 0 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 214 +Width: 307 +Flags: HW +VStem: 44 238 +LayerCount: 2 +Fore +SplineSet +282 242 m 0 + 282 237 279 232 275 228 c 1 + 147 151 75 75 70 71 c 1 + 64 72 48 80 44 90 c 1 + 48 96 139 207 175 242 c 1 + 139 277 48 389 44 395 c 1 + 48 405 64 412 70 413 c 1 + 75 409 147 334 275 257 c 1 + 279 253 282 247 282 242 c 0 +EndSplineSet +EndChar + +StartChar: uni203E +Encoding: 8254 8254 215 +Width: 833 +Flags: HW +LayerCount: 2 +Fore +Refer: 235 773 N 1 0 0 1 140 0 2 +EndChar + +StartChar: Euro +Encoding: 8364 8364 216 +Width: 699 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -7 41<353 524> 246 41<50 419> 350 41<50 419> 587 40<333 510> +VStem: 77 146<197 346> 621 33<152 185> +LayerCount: 2 +Fore +SplineSet +59 287 m 1 + 75 287 412 287 423 287 c 1 + 437 276 419 250 413 246 c 1 + 39 246 l 17 + 33 252 50 287 59 287 c 1 +59 391 m 1 + 75 391 412 391 423 391 c 1 + 437 380 419 354 413 350 c 1 + 39 350 l 17 + 33 356 50 391 59 391 c 1 +655 181 m 1 + 655 170 630 43 615 37 c 0 + 554 16 495 -7 406 -7 c 0 + 225 -7 77 132 77 303 c 0 + 77 479 224 627 407 627 c 0 + 470 627 551 621 608 609 c 1 + 610 598 640 479 640 467 c 0 + 640 461 627 453 615 453 c 3 + 610 453 606 453 602 457 c 1 + 592 494 552 587 416 587 c 0 + 280 587 223 463 223 331 c 0 + 223 185 289 34 435 34 c 0 + 493 34 528 52 554 75 c 0 + 594 111 619 183 621 191 c 1 + 636 191 647 188 655 181 c 1 +EndSplineSet +EndChar + +StartChar: minus +Encoding: 8722 8722 217 +Width: 595 +Flags: HW +HStem: 204 72<69 522> +LayerCount: 2 +Fore +SplineSet +64 214 m 1 + 64 214 68 276 78 276 c 2 + 524 276 l 2 + 527 276 531 277 531 270 c 0 + 531 262 527 227 522 210 c 0 + 520 204 516 204 516 204 c 1 + 70 204 l 1 + 70 204 64 204 64 214 c 1 +EndSplineSet +EndChar + +StartChar: uni2213 +Encoding: 8723 8723 218 +Width: 574 +Flags: HW +HStem: 208 70<64 254 324 514> 506 70<65 508> +VStem: 254 70<17 208 278 469> +LayerCount: 2 +Fore +SplineSet +324 205 m 2 + 324 25 l 1 + 324 25 310 16 266 10 c 0 + 263 10 262 10 260 10 c 0 + 254 10 254 13 254 17 c 2 + 254 203 l 2 + 254 205 253 208 248 208 c 2 + 62 208 l 1 + 62 208 56 208 56 218 c 0 + 56 222 56 250 63 273 c 0 + 65 279 70 278 70 278 c 1 + 249 278 l 2 + 252 278 254 282 254 284 c 2 + 254 462 l 1 + 254 462 253 467 259 469 c 0 + 282 476 310 477 314 477 c 0 + 324 477 324 471 324 471 c 1 + 324 283 l 2 + 324 280 325 278 328 278 c 2 + 516 278 l 2 + 520 278 523 278 523 271 c 0 + 523 262 520 235 514 214 c 0 + 512 208 507 208 507 208 c 1 + 328 208 l 2 + 325 208 324 207 324 205 c 2 +508 576 m 1 + 508 576 518 577 516 565 c 0 + 509 518 503 509 500 506 c 1 + 62 506 l 1 + 62 506 55 505 57 519 c 0 + 59 533 58 551 64 571 c 0 + 66 577 71 576 71 576 c 1 + 508 576 l 1 +EndSplineSet +EndChar + +StartChar: radical +Encoding: 8730 8730 219 +Width: 514 +Flags: HW +LayerCount: 2 +Fore +SplineSet +14 146 m 1 + 1 153 -12 170 -12 181 c 0 + -12 194 1 200 11 207 c 0 + 43 229 142 304 156 316 c 0 + 164 323 181 324 184 316 c 1 + 194 285 195 273 206 248 c 2 + 293 46 l 1 + 301 88 438 772 438 772 c 1 + 494 766 l 1 + 494 766 336 -24 312 -149 c 1 + 297 -167 271 -176 265 -176 c 0 + 261 -176 257 -175 255 -171 c 2 + 92 191 l 1 + 14 146 l 1 +EndSplineSet +EndChar + +StartChar: dotlessi +Encoding: 305 305 220 +Width: 307 +Flags: HW +HStem: -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> +VStem: 99 127<40 344> +LayerCount: 2 +Fore +SplineSet +226 302 m 2 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 251 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1 + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 228 377 227 363 c 0 + 226 342 226 308 226 302 c 2 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 221 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 164 +VStem: -363 230 +LayerCount: 2 +Fore +SplineSet +-142 485 m 1 + -152 488 -221 535 -248 558 c 1 + -275 535 -340 491 -354 485 c 1 + -359 487 -363 498 -363 508 c 1 + -356 515 -340 531 -299 584 c 0 + -278 612 -269 627 -261 640 c 0 + -257 647 -254 649 -248 649 c 27 + -242 649 -241 646 -236 640 c 0 + -225 625 -218 611 -200 589 c 0 + -160 536 -140 515 -133 508 c 1 + -133 498 -137 487 -142 485 c 1 +EndSplineSet +EndChar + +StartChar: tildecomb +Encoding: 771 771 222 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 62<-215 -127> 550 61<-353 -265> +VStem: -390 302 +LayerCount: 2 +Fore +SplineSet +-302 610 m 0 + -273 610 -251 595 -230 580 c 0 + -208 563 -178 548 -161 548 c 0 + -118 548 -104 595 -96 600 c 1 + -89 600 -88 593 -88 588 c 0 + -88 570 -97 549 -104 536 c 0 + -124 505 -150 486 -178 486 c 0 + -207 486 -228 502 -249 517 c 0 + -271 534 -297 550 -318 550 c 0 + -361 550 -372 502 -380 497 c 1 + -387 497 -390 507 -390 512 c 0 + -390 530 -382 549 -375 562 c 0 + -355 593 -330 610 -302 610 c 0 +EndSplineSet +EndChar + +StartChar: uni0304 +Encoding: 772 772 223 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 47<-386 -112> +VStem: -388 277<485 532> +LayerCount: 2 +Fore +SplineSet +-388 496 m 0 + -388 520 -376 532 -373 532 c 2 + -116 532 l 2 + -114 532 -110 530 -110 522 c 0 + -110 497 -124 485 -124 485 c 1 + -382 485 l 1 + -382 485 -388 484 -388 496 c 0 +EndSplineSet +EndChar + +StartChar: gravecomb.cap +Encoding: 65536 -1 224 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 138 +VStem: -344 189 +LayerCount: 2 +Fore +SplineSet +-154 730 m 0 + -154 724 -161 711 -168 711 c 0 + -182 711 -344 776 -344 812 c 0 + -344 839 -307 849 -289 849 c 0 + -281 849 -275 847 -271 845 c 0 + -226 811 -154 737 -154 730 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb.cap +Encoding: 65537 -1 225 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 138 +VStem: -349 189 +LayerCount: 2 +Fore +SplineSet +-349 730 m 0 + -349 737 -276 811 -231 845 c 0 + -227 847 -222 849 -214 849 c 0 + -196 849 -159 839 -159 812 c 0 + -159 776 -321 711 -335 711 c 0 + -342 711 -349 724 -349 730 c 0 +EndSplineSet +EndChar + +StartChar: uni0302.cap +Encoding: 65538 -1 226 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 137 +VStem: -375 254 +LayerCount: 2 +Fore +SplineSet +-131 711 m 1 + -143 714 -218 750 -248 770 c 1 + -278 750 -350 715 -365 711 c 1 + -369 713 -375 720 -375 728 c 1 + -367 734 -347 752 -305 791 c 0 + -281 814 -269 829 -261 838 c 0 + -256 844 -252 848 -248 848 c 0 + -244 848 -240 843 -235 838 c 0 + -223 825 -214 814 -194 795 c 0 + -150 752 -129 734 -121 728 c 1 + -121 720 -125 713 -131 711 c 1 +EndSplineSet +EndChar + +StartChar: uni030A.cap +Encoding: 65539 -1 227 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 44<-291 -207> 860 43<-291 -207> +VStem: -346 45<765 850> -197 44<765 850> +LayerCount: 2 +Fore +SplineSet +-301 808 m 0 + -301 779 -278 755 -249 755 c 0 + -220 755 -197 779 -197 808 c 0 + -197 837 -220 860 -249 860 c 0 + -278 860 -301 837 -301 808 c 0 +-346 808 m 0 + -346 861 -302 903 -249 903 c 0 + -196 903 -153 861 -153 808 c 0 + -153 755 -196 711 -249 711 c 0 + -302 711 -346 755 -346 808 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb.cap +Encoding: 65540 -1 228 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 59<-208 -97> 771 58<-378 -269> +LayerCount: 2 +Fore +SplineSet +-313 829 m 0 + -277 829 -252 816 -226 801 c 0 + -198 785 -166 770 -145 770 c 0 + -92 770 -70 814 -60 819 c 1 + -55 819 -52 811 -52 806 c 0 + -52 789 -61 771 -70 759 c 0 + -94 729 -126 711 -161 711 c 0 + -197 711 -223 724 -249 739 c 0 + -277 755 -304 771 -330 771 c 0 + -383 771 -405 726 -415 721 c 1 + -420 721 -423 730 -423 735 c 0 + -423 752 -413 770 -404 782 c 0 + -380 812 -348 829 -313 829 c 0 +EndSplineSet +EndChar + +StartChar: uni0304.cap +Encoding: 65541 -1 229 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 47<-398 -101> +VStem: -399 301<711 758> +LayerCount: 2 +Fore +SplineSet +-399 722 m 0 + -399 746 -388 758 -385 758 c 2 + -104 758 l 2 + -102 758 -99 756 -99 748 c 0 + -99 723 -112 711 -112 711 c 1 + -394 711 l 1 + -394 711 -399 710 -399 722 c 0 +EndSplineSet +EndChar + +StartChar: uni0306.cap +Encoding: 65542 -1 230 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 53<-310 -186> +VStem: -356 215<786 795> +LayerCount: 2 +Fore +SplineSet +-164 808 m 1 + -158 806 -142 795 -142 788 c 0 + -142 785 -143 783 -144 781 c 0 + -171 735 -210 711 -249 711 c 0 + -288 711 -327 735 -354 781 c 0 + -355 783 -356 786 -356 788 c 0 + -356 795 -340 806 -334 808 c 1 + -319 789 -287 764 -249 764 c 0 + -208 764 -178 786 -164 808 c 1 +EndSplineSet +EndChar + +StartChar: uni0306 +Encoding: 774 774 231 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 54<-306 -195> +VStem: -363 19<589 595> -163 21<586 594> +LayerCount: 2 +Fore +SplineSet +-163 604 m 1 + -156 604 -143 589 -143 582 c 3 + -143 580 -143 577 -144 575 c 0 + -159 523 -196 485 -249 485 c 0 + -302 485 -347 523 -362 575 c 0 + -363 577 -363 580 -363 582 c 3 + -363 589 -352 604 -345 604 c 1 + -337 583 -295 539 -249 539 c 0 + -200 539 -172 583 -163 604 c 1 +EndSplineSet +EndChar + +StartChar: uni0327.cap +Encoding: 65543 -1 232 +Width: 1019 +GlyphClass: 4 +Flags: HW +HStem: -163 29<170 257> -68 66<215 244> +VStem: 264 57<-130 -69> +LayerCount: 2 +Fore +SplineSet +244 -26 m 1 + 253 -25 258 -24 268 -24 c 27 + 296 -24 320 -48 320 -75 c 0 + 320 -124 282 -163 219 -163 c 0 + 196 -163 176 -154 168 -146 c 1 + 166 -143 164 -130 164 -126 c 0 + 164 -120 165 -118 167 -118 c 1 + 171 -120 195 -134 217 -134 c 0 + 252 -134 264 -118 264 -103 c 0 + 264 -88 258 -68 236 -68 c 0 + 230 -68 220 -71 209 -75 c 1 + 206 -75 195 -66 195 -60 c 1 + 205 -44 219 -18 225 -2 c 1 + 258 -2 l 1 + 258 -2 249 -16 244 -26 c 1 +EndSplineSet +EndChar + +StartChar: uni0327 +Encoding: 807 807 233 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -152 31<-310 -225> -71 69<-271 -243> -65 39<-247 -222> +VStem: -221 50<-119 -66> +LayerCount: 2 +Fore +SplineSet +-242 -27 m 1xd0 + -242 -27 -231 -26 -224 -26 c 27 + -196 -26 -171 -51 -171 -76 c 0 + -171 -122 -206 -152 -266 -152 c 0 + -287 -152 -305 -144 -312 -137 c 1 + -313 -134 -314 -124 -314 -120 c 0 + -314 -113 -311 -106 -308 -106 c 0 + -303 -106 -280 -121 -259 -121 c 0 + -232 -121 -221 -107 -221 -93 c 0 + -221 -79 -227 -65 -244 -65 c 0xb0 + -250 -65 -263 -67 -273 -71 c 0 + -275 -71 -289 -60 -287 -56 c 0 + -278 -41 -268 -16 -260 -2 c 1 + -229 -2 l 1 + -242 -27 l 1xd0 +EndSplineSet +EndChar + +StartChar: uni0323.cap +Encoding: 65544 -1 234 +Width: 308 +GlyphClass: 4 +Flags: HW +HStem: -176 145<100 203> +VStem: 79 145<-155 -52> +LayerCount: 2 +Fore +SplineSet +79 -104 m 0 + 79 -64 111 -31 151 -31 c 0 + 191 -31 224 -64 224 -104 c 0 + 224 -144 191 -176 151 -176 c 0 + 111 -176 79 -144 79 -104 c 0 +EndSplineSet +EndChar + +StartChar: uni0305 +Encoding: 773 773 235 +Width: 549 +GlyphClass: 4 +Flags: HW +HStem: 717 70<-12 564> +LayerCount: 2 +Fore +SplineSet +-16 727 m 0 + -16 729 -13 787 -2 787 c 2 + 566 787 l 2 + 568 787 572 786 572 778 c 0 + 572 760 565 728 564 724 c 0 + 562 718 557 717 557 717 c 1 + -10 717 l 1 + -10 717 -16 717 -16 727 c 0 +EndSplineSet +EndChar + +StartChar: uni0308.cap +Encoding: 65545 -1 236 +Width: 396 +GlyphClass: 4 +Flags: HW +HStem: 700 132<38 136 239 337> +VStem: 21 132<717 815> 222 133<717 815> +LayerCount: 2 +Fore +SplineSet +222 767 m 0 + 222 804 251 832 288 832 c 0 + 325 832 354 804 354 767 c 0 + 354 730 325 700 288 700 c 0 + 251 700 222 730 222 767 c 0 +21 767 m 0 + 21 804 50 832 87 832 c 0 + 124 832 153 804 153 767 c 0 + 153 730 124 700 87 700 c 0 + 50 700 21 730 21 767 c 0 +EndSplineSet +EndChar + +StartChar: uni0308 +Encoding: 776 776 237 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 136<-380 -282 -196 -98> +VStem: -399 136<505 603> -215 136<505 603> +LayerCount: 2 +Fore +SplineSet +-147 622 m 0 + -110 622 -79 592 -79 555 c 0 + -79 518 -110 486 -147 486 c 0 + -184 486 -215 518 -215 555 c 0 + -215 592 -184 622 -147 622 c 0 +-331 622 m 0 + -294 622 -264 592 -264 555 c 0 + -264 518 -294 486 -331 486 c 0 + -368 486 -399 518 -399 555 c 0 + -399 592 -368 622 -331 622 c 0 +EndSplineSet +EndChar + +StartChar: uni0307 +Encoding: 775 775 238 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 133<-297 -201> +VStem: -314 131<503 601> +LayerCount: 2 +Fore +SplineSet +-314 552 m 0 + -314 588 -285 618 -249 618 c 0 + -213 618 -184 588 -184 552 c 0 + -184 516 -213 485 -249 485 c 0 + -285 485 -314 516 -314 552 c 0 +EndSplineSet +EndChar + +StartChar: uni030C +Encoding: 780 780 239 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 164 +VStem: -364 230 +LayerCount: 2 +Fore +SplineSet +-249 578 m 1 + -222 601 -154 650 -143 650 c 0 + -137 650 -134 638 -134 628 c 1 + -141 621 -161 600 -201 547 c 0 + -219 525 -226 511 -237 496 c 0 + -242 490 -243 486 -249 486 c 27 + -255 486 -258 489 -262 496 c 0 + -270 509 -279 524 -300 552 c 0 + -341 605 -357 621 -364 628 c 1 + -364 638 -361 650 -355 650 c 0 + -344 650 -276 601 -249 578 c 1 +EndSplineSet +EndChar + +StartChar: uni030C.cap +Encoding: 65546 -1 240 +Width: 340 +GlyphClass: 4 +Flags: HW +HStem: 686 138 +VStem: 45 254 +LayerCount: 2 +Fore +SplineSet +172 763 m 1 + 202 783 277 823 289 823 c 0 + 296 823 299 813 299 805 c 1 + 291 799 270 781 225 736 c 0 + 205 716 198 707 186 694 c 0 + 181 689 175 686 171 686 c 0 + 167 686 163 688 158 694 c 0 + 149 705 139 717 116 740 c 0 + 71 784 53 799 45 805 c 1 + 45 813 48 823 55 823 c 0 + 67 823 142 783 172 763 c 1 +EndSplineSet +EndChar + +StartChar: uni0312 +Encoding: 786 786 241 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 644 14<-174 -166> +VStem: -302 77<526 589> +LayerCount: 2 +Fore +SplineSet +-250 486 m 0 + -265 486 -279 490 -289 495 c 1 + -296 504 -302 519 -302 533 c 0 + -302 588 -242 636 -180 657 c 1 + -170 655 -161 648 -161 644 c 1 + -178 637 -225 610 -225 582 c 0 + -225 562 -182 565 -182 527 c 0 + -182 518 -195 486 -250 486 c 0 +EndSplineSet +EndChar + +StartChar: uni0326 +Encoding: 806 806 242 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -213 14<-332 -324> +VStem: -273 77<-145 -82> +LayerCount: 2 +Fore +SplineSet +-248 -42 m 0 + -233 -42 -219 -46 -209 -51 c 1 + -202 -60 -196 -75 -196 -89 c 0 + -196 -144 -256 -192 -318 -213 c 1 + -328 -211 -337 -203 -337 -199 c 1 + -320 -192 -273 -166 -273 -138 c 0 + -273 -118 -316 -121 -316 -83 c 0 + -316 -74 -303 -42 -248 -42 c 0 +EndSplineSet +EndChar + +StartChar: uni0315 +Encoding: 789 789 243 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 484 235 +VStem: -269 77<576 669> +LayerCount: 2 +Fore +SplineSet +-239 720 m 0 + -229 720 -218 716 -210 713 c 1 + -202 702 -191 687 -191 651 c 0 + -191 596 -232 533 -285 484 c 1 + -293 484 -310 491 -310 497 c 1 + -287 522 -269 553 -269 586 c 0 + -269 638 -306 636 -306 673 c 0 + -306 693 -280 720 -239 720 c 0 +EndSplineSet +EndChar + +StartChar: dotbelowcomb +Encoding: 803 803 244 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -188 145<-299 -197> +VStem: -320 145<-166 -64> +LayerCount: 2 +Fore +SplineSet +-320 -115 m 0 + -320 -75 -288 -43 -248 -43 c 0 + -208 -43 -176 -75 -176 -115 c 0 + -176 -155 -208 -188 -248 -188 c 0 + -288 -188 -320 -155 -320 -115 c 0 +EndSplineSet +EndChar + +StartChar: Amacron +Encoding: 256 256 245 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 229 -1 N 1 0 0 1 585 11 2 +EndChar + +StartChar: amacron +Encoding: 257 257 246 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 468 42 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 247 +Width: 659 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 588 0 2 +EndChar + +StartChar: abreve +Encoding: 259 259 248 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 231 774 N 1 0 0 1 472 13 2 +EndChar + +StartChar: Cacute +Encoding: 262 262 249 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 675 0 2 +EndChar + +StartChar: cacute +Encoding: 263 263 250 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 536 12 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 251 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 634 2 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 252 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 484 13 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 253 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 640 220 2 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 254 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 506 23 2 +EndChar + +StartChar: Ccaron +Encoding: 268 268 255 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 206 25 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 256 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 497 12 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 257 +Width: 743 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 68 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 139 25 2 +EndChar + +StartChar: dcaron +Encoding: 271 271 258 +Width: 564 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 100 N 1 0 0 1 0 0 2 +Refer: 243 789 N 1 0 0 1 822 -61 2 +EndChar + +StartChar: Emacron +Encoding: 274 274 259 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 229 -1 N 1 0 0 1 533 11 2 +EndChar + +StartChar: emacron +Encoding: 275 275 260 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 488 42 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 261 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 538 0 2 +EndChar + +StartChar: ebreve +Encoding: 277 277 262 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 231 774 N 1 0 0 1 484 13 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 263 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 542 220 2 +EndChar + +StartChar: edotaccent +Encoding: 279 279 264 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 485 24 2 +EndChar + +StartChar: Ecaron +Encoding: 282 282 265 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 112 25 2 +EndChar + +StartChar: ecaron +Encoding: 283 283 266 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 487 12 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 267 +Width: 705 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 629 2 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 268 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 466 13 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 269 +Width: 705 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 613 0 2 +EndChar + +StartChar: gbreve +Encoding: 287 287 270 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 231 774 N 1 0 0 1 470 13 2 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 271 +Width: 705 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 640 220 2 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 272 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 467 23 2 +EndChar + +StartChar: uni0122 +Encoding: 290 290 273 +Width: 705 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 646 0 2 +EndChar + +StartChar: uni0123 +Encoding: 291 291 274 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 241 786 N 1 0 0 1 466 21 2 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 275 +Width: 723 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 72 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 613 2 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 276 +Width: 569 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 390 2 2 +EndChar + +StartChar: Itilde +Encoding: 296 296 277 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 228 -1 N 1 0 0 1 421 5 2 +EndChar + +StartChar: itilde +Encoding: 297 297 278 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 222 771 N 1 0 0 1 399 14 2 +EndChar + +StartChar: Imacron +Encoding: 298 298 279 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 229 -1 N 1 0 0 1 428 11 2 +EndChar + +StartChar: imacron +Encoding: 299 299 280 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 223 772 N 1 0 0 1 395 42 2 +EndChar + +StartChar: Ibreve +Encoding: 300 300 281 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 433 0 2 +EndChar + +StartChar: ibreve +Encoding: 301 301 282 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 305 N 1 0 0 1 3 0 2 +Refer: 231 774 N 1 0 0 1 415 13 2 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 283 +Width: 351 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 435 220 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 284 +Width: 336 +Flags: HW +LayerCount: 2 +Fore +Refer: 42 74 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 421 2 2 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 285 +Width: 279 +Flags: HW +LayerCount: 2 +Fore +Refer: 347 567 N 1 0 0 1 3 0 2 +Refer: 221 770 N 1 0 0 1 382 13 2 +EndChar + +StartChar: uni0136 +Encoding: 310 310 286 +Width: 702 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 75 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 626 0 2 +EndChar + +StartChar: uni0137 +Encoding: 311 311 287 +Width: 576 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 107 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 554 0 2 +EndChar + +StartChar: Lacute +Encoding: 313 313 288 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 451 0 2 +EndChar + +StartChar: lacute +Encoding: 314 314 289 +Width: 298 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 431 0 2 +EndChar + +StartChar: uni013B +Encoding: 315 315 290 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 565 0 2 +EndChar + +StartChar: uni013C +Encoding: 316 316 291 +Width: 298 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 405 0 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 292 +Width: 591 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 243 789 N 1 0 0 1 767 -61 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 293 +Width: 333 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 243 789 N 1 0 0 1 599 -61 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 294 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 718 -240 2 +EndChar + +StartChar: ldot +Encoding: 320 320 295 +Width: 509 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 653 -298 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 296 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 678 0 2 +EndChar + +StartChar: nacute +Encoding: 324 324 297 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 594 12 2 +EndChar + +StartChar: uni0145 +Encoding: 325 325 298 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 652 0 2 +EndChar + +StartChar: uni0146 +Encoding: 326 326 299 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 560 0 2 +EndChar + +StartChar: Ncaron +Encoding: 327 327 300 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 209 25 2 +EndChar + +StartChar: ncaron +Encoding: 328 328 301 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 549 12 2 +EndChar + +StartChar: Omacron +Encoding: 332 332 302 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 229 -1 N 1 0 0 1 624 11 2 +EndChar + +StartChar: omacron +Encoding: 333 333 303 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 514 42 2 +EndChar + +StartChar: Obreve +Encoding: 334 334 304 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 621 0 2 +EndChar + +StartChar: obreve +Encoding: 335 335 305 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 231 774 N 1 0 0 1 514 13 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 306 +Width: 742 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 783 0 2 +Refer: 225 -1 N 1 0 0 1 619 0 2 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 307 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 512 12 2 +Refer: 191 769 N 1 0 0 1 647 12 2 +EndChar + +StartChar: Racute +Encoding: 340 340 308 +Width: 676 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 591 0 2 +EndChar + +StartChar: racute +Encoding: 341 341 309 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 538 12 2 +EndChar + +StartChar: uni0156 +Encoding: 342 342 310 +Width: 676 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 635 0 2 +EndChar + +StartChar: uni0157 +Encoding: 343 343 311 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 242 806 N 1 0 0 1 415 0 2 +EndChar + +StartChar: Rcaron +Encoding: 344 344 312 +Width: 676 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 109 25 2 +EndChar + +StartChar: rcaron +Encoding: 345 345 313 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 477 12 2 +EndChar + +StartChar: Sacute +Encoding: 346 346 314 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 558 3 2 +EndChar + +StartChar: sacute +Encoding: 347 347 315 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 480 12 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 316 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 511 5 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 317 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 450 13 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 318 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 232 -1 N 1 0 0 1 19 -2 2 +EndChar + +StartChar: scedilla +Encoding: 351 351 319 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 118 184 N 1 0 0 1 -27 -1 2 +EndChar + +StartChar: Scaron +Encoding: 352 352 320 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 91 28 2 +EndChar + +StartChar: scaron +Encoding: 353 353 321 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 445 12 2 +EndChar + +StartChar: uni0162 +Encoding: 354 354 322 +Width: 619 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 0 0 2 +Refer: 232 -1 N 1 0 0 1 64 6 2 +EndChar + +StartChar: uni0163 +Encoding: 355 355 323 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 118 184 N 1 0 0 1 -27 -1 2 +EndChar + +StartChar: Tcaron +Encoding: 356 356 324 +Width: 619 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 142 32 2 +EndChar + +StartChar: tcaron +Encoding: 357 357 325 +Width: 333 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 243 789 N 1 0 0 1 619 -61 2 +EndChar + +StartChar: Utilde +Encoding: 360 360 326 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 222 771 N 1 0 0 1 625 227 2 +EndChar + +StartChar: utilde +Encoding: 361 361 327 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 222 771 N 1 0 0 1 510 14 2 +EndChar + +StartChar: Umacron +Encoding: 362 362 328 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 229 -1 N 1 0 0 1 634 11 2 +EndChar + +StartChar: umacron +Encoding: 363 363 329 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 518 42 2 +EndChar + +StartChar: Ubreve +Encoding: 364 364 330 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 230 -1 N 1 0 0 1 634 0 2 +EndChar + +StartChar: ubreve +Encoding: 365 365 331 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 231 774 N 1 0 0 1 528 13 2 +EndChar + +StartChar: Uring +Encoding: 366 366 332 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 227 -1 N 1 0 0 1 639 0 2 +EndChar + +StartChar: uring +Encoding: 367 367 333 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 110 176 N 1 0 0 1 158 71 2 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 334 +Width: 712 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 764 0 2 +Refer: 225 -1 N 1 0 0 1 600 0 2 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 335 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 488 12 2 +Refer: 191 769 N 1 0 0 1 623 12 2 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 336 +Width: 928 +Flags: HW +LayerCount: 2 +Fore +Refer: 55 87 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 748 2 2 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 337 +Width: 770 +Flags: HW +LayerCount: 2 +Fore +Refer: 87 119 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 657 13 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 338 +Width: 609 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 226 -1 N 1 0 0 1 568 2 2 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 339 +Width: 521 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 221 770 N 1 0 0 1 521 13 2 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 340 +Width: 609 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 129 12 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 341 +Width: 625 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 225 -1 N 1 0 0 1 610 0 2 +EndChar + +StartChar: zacute +Encoding: 378 378 342 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 517 12 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 343 +Width: 625 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 586 220 2 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 344 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 238 775 N 1 0 0 1 480 24 2 +EndChar + +StartChar: Zcaron +Encoding: 381 381 345 +Width: 625 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 166 25 2 +EndChar + +StartChar: zcaron +Encoding: 382 382 346 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 239 780 N 1 0 0 1 471 12 2 +EndChar + +StartChar: uni0237 +Encoding: 567 567 347 +Width: 279 +Flags: HW +HStem: -213 23<-10 4> 354 30<15 73> 416 20G<189 211> +VStem: 87 127<-42 344> +LayerCount: 2 +Fore +SplineSet +87 62 m 2 + 87 254 l 2 + 87 264 86 319 78 334 c 0 + 70 349 24 354 17 354 c 1 + 14 356 13 384 18 384 c 1 + 92 390 171 417 208 436 c 1 + 215 434 225 422 225 419 c 1 + 222 411 216 377 215 363 c 0 + 214 342 214 308 214 302 c 2 + 214 117 l 2 + 214 35 203 -47 167 -100 c 0 + 121 -166 35 -213 2 -213 c 1 + -5 -209 -12 -202 -12 -196 c 0 + -12 -194 -12 -190 -11 -189 c 0 + -7 -187 87 -139 87 62 c 2 +EndSplineSet +EndChar + +StartChar: Dcroat +Encoding: 272 272 348 +Width: 747 +Flags: HW +LayerCount: 2 +Fore +Refer: 142 208 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Aogonek +Encoding: 260 260 349 +Width: 655 +Flags: HW +HStem: -213 68<464 544> -4 36<140 205 382 442 600 660> 4 28<147 202> 220 47<205 369> 627 20G<331 341> +VStem: 407 72<-163 -79> +LayerCount: 2 +Fore +SplineSet +292 220 m 0xdc + 252 220 225 220 191 219 c 0 + 188 219 185 216 184 214 c 2 + 184 214 160 159 149 132 c 0 + 139 108 127 74 127 67 c 0 + 127 42 194 32 202 32 c 1 + 208 25 206 0 203 -4 c 1xdc + 169 0 141 4 98 4 c 0xbc + 53 4 25 0 -9 -4 c 1 + -13 0 -15 20 -11 31 c 1 + 1 31 48 46 58 62 c 0 + 75 89 80 104 92 131 c 2 + 300 609 l 2 + 306 622 325 646 336 646 c 0 + 345 646 351 643 353 640 c 2 + 553 145 l 2 + 566 115 571 95 580 74 c 0 + 597 34 649 32 657 32 c 1 + 662 23 663 0 659 -4 c 1xdc + 634 -3 607 0 579 2 c 1 + 536 -23 480 -56 480 -99 c 0 + 480 -120 492 -145 528 -145 c 0 + 555 -145 591 -114 601 -106 c 1 + 604 -106 607 -109 607 -117 c 0 + 607 -122 603 -138 600 -142 c 0 + 585 -161 535 -213 480 -213 c 0 + 448 -213 407 -188 407 -137 c 0 + 407 -82 478 -14 537 4 c 1 + 535 4 534 4 532 4 c 0xbc + 487 4 420 -2 385 -4 c 1 + 380 1 380 32 385 32 c 0 + 402 32 429 38 443 50 c 0 + 449 55 451 59 451 66 c 0 + 451 75 393 215 393 215 c 1 + 393 215 389 219 386 219 c 0 + 349 221 316 220 292 220 c 0xdc +288 267 m 0 + 318 267 336 267 366 269 c 0 + 368 269 369 273 369 273 c 1 + 288 465 l 1 + 205 273 l 1 + 205 273 205 270 207 270 c 0 + 227 268 266 267 288 267 c 0 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 350 +Width: 460 +Flags: HW +HStem: -213 68<261 342> -8 68<121 234> 401 37<170 283> +VStem: 30 132<76 169> 42 105<285 363> 205 72<-163 -81> 262 127<67 218 250 369> +LayerCount: 2 +Fore +SplineSet +443 45 m 1xea + 437 40 417 24 396 11 c 0 + 362 -10 277 -56 277 -99 c 0 + 277 -120 289 -145 325 -145 c 0 + 352 -145 388 -114 398 -106 c 1 + 401 -106 404 -109 404 -117 c 0 + 404 -122 400 -138 397 -142 c 0 + 382 -161 332 -213 277 -213 c 0 + 245 -213 205 -188 205 -137 c 0 + 205 -82 273 -25 318 0 c 1 + 300 4 275 27 269 43 c 1 + 260 35 193 -8 158 -8 c 0 + 84 -8 30 53 30 111 c 0xf4 + 30 149 56 181 81 189 c 0 + 118 201 212 239 262 258 c 1 + 262 265 262 271 262 278 c 2 + 262 304 l 2 + 262 353 238 401 204 401 c 0 + 167 401 157 363 147 319 c 0 + 142 297 127 276 93 276 c 0 + 67 276 42 296 42 323 c 0 + 42 336 48 349 56 363 c 1 + 69 376 156 438 242 438 c 0 + 323 438 389 377 389 289 c 2 + 389 106 l 2 + 389 80 399 66 412 66 c 0 + 426 66 436 74 440 76 c 1 + 444 74 447 66 447 60 c 0 + 447 53 446 50 443 45 c 1xea +222 61 m 0 + 246 61 262 75 262 81 c 2 + 262 218 l 1xf2 + 242 208 217 200 197 187 c 0 + 170 169 161 142 162 121 c 0 + 163 79 197 61 222 61 c 0 +EndSplineSet +EndChar + +StartChar: dcroat +Encoding: 273 273 351 +Width: 531 +Flags: HW +HStem: -8 62<161 288> 27 31<467 513> 386 50<206 317> 515 36<189 514> 609 31<263 319> 659 20<453 457> +VStem: 31 139<119 291> 331 127<69 370 434 600> +LayerCount: 2 +Fore +SplineSet +512 515 m 1x3f + 484 515 204 515 190 515 c 1 + 186 515 185 542 191 551 c 1 + 219 551 498 551 512 551 c 1 + 516 551 516 524 512 515 c 1x3f +EndSplineSet +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Eogonek +Encoding: 280 280 352 +Width: 587 +Flags: HW +HStem: -213 68<378 458> -3 36<35 100> -2 43<252 445> 303 46<245 388> 605 36<36 102 247 433> +VStem: 108 137<49 300 350 602> 322 72<-163 -81> 424 30<378 425> +LayerCount: 2 +Fore +SplineSet +177 642 m 0xdf + 218 642 437 647 495 648 c 1 + 502 599 514 548 523 504 c 1 + 520 501 507 499 500 499 c 0 + 493 499 487 502 485 507 c 0 + 464 561 439 605 379 605 c 2 + 298 605 l 2 + 276 605 254 605 249 594 c 0 + 244 582 245 562 245 534 c 2 + 245 359 l 2 + 245 353 266 349 287 349 c 2 + 338 349 l 2 + 396 349 408 360 424 417 c 0 + 425 422 429 425 436 425 c 0 + 443 425 451 423 454 420 c 1 + 454 232 l 1 + 452 230 444 229 437 229 c 0 + 430 229 424 231 423 236 c 0 + 411 283 398 292 389 296 c 0 + 377 301 352 303 315 303 c 0 + 288 303 245 301 245 289 c 2 + 245 138 l 2 + 245 132 244 81 252 61 c 0 + 258 47 291 41 316 41 c 2 + 380 41 l 2 + 417 41 449 51 471 73 c 0 + 492 94 507 122 524 166 c 0 + 525 170 530 172 537 172 c 0 + 547 172 564 169 567 166 c 1 + 548 113 521 41 514 -2 c 1 + 467 -15 394 -56 394 -99 c 0 + 394 -120 406 -145 442 -145 c 0 + 469 -145 505 -114 515 -106 c 1 + 518 -106 521 -109 521 -117 c 0 + 521 -122 517 -138 514 -142 c 0 + 499 -161 449 -213 394 -213 c 0 + 362 -213 322 -188 322 -137 c 0 + 322 -84 388 -23 446 -2 c 1xbf + 372 -2 254 -2 163 -2 c 0 + 100 -2 49 -3 37 -3 c 1 + 33 3 32 26 37 33 c 1 + 50 34 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 607 37 608 c 1 + 32 615 33 639 37 645 c 1 + 81 642 136 642 177 642 c 0xdf +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 353 +Width: 449 +Flags: HW +HStem: -213 68<261 342> -9 82<225 315> 236 39<159 284> 396 40<196 276> +VStem: 31 127<144 236 275 290> 205 72<-163 -61> 298 121<283 362> +LayerCount: 2 +Fore +SplineSet +364 36 m 0 + 294 -19 277 -56 277 -99 c 0 + 277 -120 289 -145 325 -145 c 0 + 352 -145 388 -114 398 -106 c 1 + 401 -106 404 -109 404 -117 c 0 + 404 -122 400 -138 397 -142 c 0 + 382 -161 332 -213 277 -213 c 0 + 245 -213 205 -188 205 -137 c 0 + 205 -82 242 -31 271 -6 c 1 + 260 -8 248 -9 236 -9 c 0 + 127 -9 31 67 31 195 c 0 + 31 318 136 437 248 437 c 0 + 376 437 419 346 419 289 c 0 + 419 268 408 249 393 248 c 0 + 327 242 230 238 158 236 c 1 + 158 99 251 73 295 73 c 0 + 352 73 383 100 404 122 c 1 + 411 120 416 110 416 104 c 0 + 416 97 415 89 413 86 c 0 + 405 74 388 55 364 36 c 0 +159 275 m 1 + 168 274 262 280 285 283 c 0 + 297 284 298 293 298 299 c 0 + 298 344 282 396 238 396 c 0 + 180 396 159 308 159 275 c 1 +EndSplineSet +EndChar + +StartChar: Hbar +Encoding: 294 294 354 +Width: 723 +Flags: HW +HStem: -4 36<35 100 252 317 407 472 624 689> 310 50<246 480> 478 45<36 674> 610 36<35 100 252 317 407 472 624 689> +VStem: 108 137<40 306 359 602> 480 137<40 308 359 602> +LayerCount: 2 +Fore +SplineSet +669 522 m 2 + 673 522 675 514 675 509 c 0 + 675 503 673 487 669 478 c 1 + 41 478 l 2 + 37 478 36 487 36 492 c 0 + 36 498 36 513 42 522 c 1 + 669 522 l 2 +EndSplineSet +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hbar +Encoding: 295 295 355 +Width: 569 +Flags: HW +HStem: -4 36<14 78 221 279 304 357 499 564> 356 1<214 299> 515 36<31 359> 609 31<18 74> 659 20<208 212> +VStem: 86 127<40 331 357 601> 365 127<40 327> +LayerCount: 2 +Fore +SplineSet +35 551 m 1 + 63 551 341 551 355 551 c 1 + 356 551 359 548 359 543 c 0 + 359 534 357 521 355 515 c 1 + 327 515 48 515 34 515 c 1 + 33 515 30 518 30 523 c 0 + 30 532 31 545 35 551 c 1 +EndSplineSet +Refer: 72 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Iogonek +Encoding: 302 302 356 +Width: 351 +Flags: HW +HStem: -213 68<127 207> -4 36<35 100 252 317> 610 36<35 100 252 317> +VStem: 71 72<-163 -79> 108 137<40 602> +LayerCount: 2 +Fore +SplineSet +177 640 m 0xe8 + 218 640 277 642 315 646 c 1 + 319 640 320 617 315 610 c 1 + 302 609 257 606 252 593 c 0 + 244 573 245 543 245 501 c 2 + 245 142 l 2xe8 + 245 100 244 70 252 50 c 0 + 257 37 302 33 315 32 c 1 + 320 25 319 2 315 -4 c 1 + 294 -2 268 0 241 1 c 1 + 199 -24 143 -57 143 -99 c 0 + 143 -120 155 -145 191 -145 c 0 + 218 -145 254 -114 264 -106 c 1 + 267 -106 270 -109 270 -117 c 0 + 270 -122 266 -138 263 -142 c 0 + 248 -161 198 -213 143 -213 c 0 + 111 -213 71 -188 71 -137 c 0xf0 + 71 -83 139 -17 197 3 c 1 + 189 3 182 3 175 3 c 0 + 134 3 75 0 37 -4 c 1 + 33 2 32 25 37 32 c 1 + 50 33 95 37 100 50 c 0 + 108 70 108 100 108 142 c 2 + 108 501 l 2 + 108 543 108 573 100 593 c 0 + 95 606 50 609 37 610 c 1 + 32 617 33 640 37 646 c 1 + 75 642 136 640 177 640 c 0xe8 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 357 +Width: 307 +Flags: HW +HStem: -213 68<117 198> -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> 531 141<102 204> +VStem: 61 72<-163 -79> 82 142<552 651> 99 127<40 344> +LayerCount: 2 +Fore +SplineSet +82 602 m 0xfa + 82 641 114 672 153 672 c 0 + 192 672 224 641 224 602 c 0 + 224 563 192 531 153 531 c 0 + 114 531 82 563 82 602 c 0xfa +226 302 m 2xf9 + 226 142 l 2xf9 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 270 -2 251 0 230 1 c 1 + 188 -24 133 -57 133 -99 c 0 + 133 -120 145 -145 181 -145 c 0 + 208 -145 244 -114 254 -106 c 1 + 257 -106 260 -109 260 -117 c 0 + 260 -122 256 -138 253 -142 c 0 + 238 -161 188 -213 133 -213 c 0 + 101 -213 61 -188 61 -137 c 0xfc + 61 -83 131 -17 187 3 c 1 + 179 3 170 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 0 + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 228 377 227 363 c 0 + 226 342 226 308 226 302 c 2xf9 +EndSplineSet +EndChar + +StartChar: IJ +Encoding: 306 306 358 +Width: 604 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 42 74 N 1 0 0 1 268 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 359 +Width: 537 +Flags: HW +LayerCount: 2 +Fore +Refer: 73 105 N 1 0 0 1 0 0 2 +Refer: 74 106 N 1 0 0 1 258 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 360 +Width: 588 +Flags: HW +HStem: -6 41<27 92 233 298 515 586> 354 30<27 86> 396 34<321 382 486 561> 416 20G<202 224> +VStem: 99 127<40 196 230 344> +LayerCount: 2 +Fore +SplineSet +226 230 m 1xd8 + 243 236 264 251 298 280 c 0 + 366 339 384 359 384 374 c 0 + 384 386 340 395 322 396 c 1 + 319 405 319 427 324 429 c 1 + 324 429 411 425 452 425 c 0 + 487 425 516 428 560 430 c 1 + 566 420 563 399 557 396 c 1xe8 + 527 393 485 383 460 365 c 0 + 439 350 391 303 331 250 c 1 + 400 169 415 158 470 96 c 0 + 524 36 555 35 586 35 c 1 + 592 24 587 8 586 6 c 1 + 570 0 525 -6 488 -6 c 0 + 431 -6 383 18 354 52 c 2 + 354 52 287 124 239 184 c 0 + 235 190 226 196 226 196 c 1 + 226 142 l 2 + 226 100 226 70 234 50 c 0 + 239 37 283 33 296 32 c 1 + 301 25 300 2 296 -4 c 1 + 258 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1 + 104 390 183 417 220 436 c 1 + 227 434 237 422 237 419 c 1 + 234 411 228 377 227 363 c 0 + 226 342 226 236 226 230 c 1xd8 +EndSplineSet +EndChar + +StartChar: Lslash +Encoding: 321 321 361 +Width: 570 +Flags: HW +HStem: -3 36<40 105> -2 43<256 462> 610 36<40 105 257 322> +VStem: 113 137<49 602> +LayerCount: 2 +Fore +SplineSet +39 176 m 1x30 + 33 183 15 202 20 207 c 1 + 364 445 l 1 + 370 439 389 419 384 414 c 1 + 39 176 l 1x30 +EndSplineSet +Refer: 44 76 N 1 0 0 1 5 0 2 +EndChar + +StartChar: lslash +Encoding: 322 322 362 +Width: 304 +Flags: HW +HStem: -4 36<15 79 222 287> 413 20G<268 299> 609 31<19 75> 659 20<209 213> +VStem: 17 299 87 127<40 601> +LayerCount: 2 +Fore +SplineSet +35 205 m 1xf8 + 29 212 12 231 17 236 c 1 + 296 433 l 1 + 302 427 320 406 315 401 c 1 + 35 205 l 1xf8 +EndSplineSet +Refer: 76 108 N 1 0 0 1 1 0 2 +EndChar + +StartChar: Eng +Encoding: 330 330 363 +Width: 741 +Flags: HW +HStem: -213 60<328 453> -4 36<29 106 194 274> 617 29<35 89 647 720> 618 36<478 555 642 722> +VStem: 121 60<46 512> 569 60<238 604> +LayerCount: 2 +Fore +SplineSet +629 136 m 2xec + 629 -87 516 -213 338 -213 c 3 + 319 -213 291 -202 282 -195 c 1 + 275 -184 266 -174 266 -153 c 3 + 266 -120 294 -88 325 -88 c 3 + 369 -88 396 -153 426 -153 c 3 + 488 -153 539 -68 539 66 c 1 + 180 512 l 1 + 180 138 l 2 + 180 103 180 73 185 59 c 0 + 192 40 263 33 271 33 c 1 + 277 23 275 2 273 -4 c 1 + 234 -2 193 4 150 4 c 0 + 105 4 76 -2 31 -4 c 1 + 26 5 29 32 31 32 c 1 + 43 32 106 40 114 58 c 0 + 121 73 121 104 121 141 c 0 + 121 269 121 396 121 524 c 0 + 121 551 119 575 106 594 c 0 + 99 605 51 610 39 610 c 0 + 34 610 32 641 37 646 c 1 + 67 644 102 640 147 640 c 0 + 181 640 223 642 254 646 c 1xec + 291 570 445 394 567 237 c 1 + 569 244 569 263 569 277 c 2 + 569 510 l 0 + 569 547 569 578 562 593 c 0 + 554 611 491 618 479 618 c 1 + 477 618 474 645 479 654 c 1xdc + 524 652 553 646 598 646 c 0xec + 641 646 682 652 721 654 c 1xdc + 723 648 725 627 719 617 c 1 + 711 617 641 611 634 592 c 0 + 629 578 629 548 629 513 c 2 + 629 136 l 2xec +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 364 +Width: 565 +Flags: HW +HStem: -213 23<280 295> -4 36<26 91 234 292> 354 30<27 86> 356 1<228 312> 416 20G<202 223> +VStem: 99 127<40 331> 377 127<-42 327> +LayerCount: 2 +Fore +SplineSet +377 62 m 2xde + 377 219 l 2 + 377 289 364 356 312 356 c 0xde + 273 356 226 322 226 302 c 2 + 226 142 l 2 + 226 106 226 70 234 50 c 0 + 239 37 276 33 289 32 c 1 + 294 25 293 2 289 -4 c 1 + 251 0 203 3 162 3 c 0 + 121 3 67 0 29 -4 c 1 + 25 2 24 25 29 32 c 1 + 42 33 86 37 91 50 c 0 + 99 70 99 100 99 142 c 2 + 99 254 l 2 + 99 264 98 319 90 334 c 0 + 82 349 36 354 29 354 c 1 + 26 356 25 384 30 384 c 1xee + 104 390 183 417 220 436 c 1 + 226 436 237 424 237 419 c 1 + 235 411 227 364 227 363 c 0 + 227 360 227 358 228 357 c 1 + 230 357 233 360 235 362 c 0 + 262 393 326 436 371 436 c 0 + 482 436 504 359 504 205 c 2 + 504 117 l 2 + 504 35 493 -47 457 -100 c 0 + 411 -166 325 -213 292 -213 c 1 + 285 -209 279 -202 279 -196 c 0 + 279 -194 279 -190 280 -189 c 0 + 284 -187 377 -139 377 62 c 2xde +EndSplineSet +EndChar + +StartChar: OE +Encoding: 338 338 365 +Width: 991 +Flags: HW +HStem: -3 44<301 439 655 862> 303 46<647 791> 607 40<282 440 650 836> +VStem: 39 147<208 433> 511 137<67 300 350 555> 827 30<378 425> +LayerCount: 2 +Fore +SplineSet +580 642 m 0 + 621 642 839 647 897 648 c 1 + 904 599 917 548 926 504 c 1 + 923 501 910 499 903 499 c 0 + 896 499 890 502 888 507 c 0 + 867 561 842 605 782 605 c 2 + 701 605 l 0 + 679 605 657 605 652 594 c 0 + 647 582 647 562 647 534 c 2 + 647 359 l 2 + 647 353 668 349 689 349 c 2 + 741 349 l 2 + 799 349 811 360 827 417 c 0 + 828 422 832 425 839 425 c 0 + 846 425 854 423 857 420 c 1 + 857 232 l 1 + 855 230 847 229 840 229 c 0 + 833 229 827 231 826 236 c 0 + 814 283 801 292 792 296 c 0 + 780 301 755 303 718 303 c 0 + 691 303 647 301 647 289 c 2 + 647 138 l 2 + 647 132 647 81 655 61 c 0 + 661 47 694 41 719 41 c 0 + 783 41 l 2 + 820 41 852 51 874 73 c 0 + 895 94 910 122 927 166 c 0 + 928 170 933 172 940 172 c 0 + 950 172 967 169 970 166 c 1 + 951 113 924 41 917 -2 c 1 + 890 -2 706 -3 574 -3 c 0 + 507 -3 453 -3 440 -3 c 1 + 419 -3 542 -3 370 -3 c 0 + 198 -3 39 137 39 320 c 0 + 39 503 196 647 368 647 c 0 + 465 647 539 642 580 642 c 0 +345 607 m 0 + 230 607 187 472 187 354 c 3 + 187 205 243 36 389 36 c 1 + 421 36 471 45 490 67 c 0 + 504 84 511 104 511 146 c 2 + 511 470 l 2 + 511 512 499 547 479 568 c 0 + 461 587 421 607 345 607 c 0 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 366 +Width: 767 +Flags: HW +HStem: -9 82<542 644> -7 41<224 317> 236 39<478 602> 396 40<204 294 515 595> +VStem: 31 139<116 306> 350 127<142 235> 616 121<283 362> +LayerCount: 2 +Fore +SplineSet +557 396 m 3x3e + 499 396 478 308 478 275 c 1 + 487 274 581 280 604 283 c 0 + 616 284 616 293 616 299 c 11 + 616 344 601 396 557 396 c 3x3e +248 396 m 3 + 177 396 170 302 170 231 c 27 + 170 145 200 34 271 34 c 3x7e + 342 34 350 127 350 197 c 27 + 350 284 319 396 248 396 c 3 +613 73 m 0xbe + 670 73 702 100 723 122 c 1 + 730 120 734 110 734 104 c 3 + 734 97 733 89 731 86 c 0 + 713 59 648 -9 555 -9 c 0xbe + 499 -9 447 12 409 48 c 1 + 370 15 318 -7 261 -7 c 0x7e + 125 -7 31 89 31 212 c 0 + 31 335 131 437 259 437 c 0 + 327 437 385 413 426 373 c 1 + 464 412 514 437 566 437 c 0 + 694 437 737 346 737 289 c 0 + 737 268 726 249 711 248 c 0 + 645 242 549 238 477 236 c 1 + 477 99 569 73 613 73 c 0xbe +EndSplineSet +EndChar + +StartChar: Tbar +Encoding: 358 358 367 +Width: 619 +Flags: HW +HStem: -4 36<169 233 386 450> 301 39<137 482> 599 43<100 241 378 519> +VStem: 8 38<472 525> 241 137<40 599> 573 38<472 525> +LayerCount: 2 +Fore +SplineSet +481 301 m 1 + 453 301 153 301 139 301 c 1 + 135 301 134 331 140 340 c 1 + 168 340 467 340 481 340 c 1 + 485 340 485 310 481 301 c 1 +EndSplineSet +Refer: 52 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tbar +Encoding: 359 359 368 +Width: 335 +Flags: HW +HStem: -7 62<177 271> 267 36<11 321> 372 46<15 80 207 320> +VStem: 80 127<67 372 418 488> +LayerCount: 2 +Fore +SplineSet +319 267 m 1 + 291 267 27 267 13 267 c 1 + 9 267 8 294 14 303 c 1 + 42 303 305 303 319 303 c 1 + 323 303 323 276 319 267 c 1 +EndSplineSet +Refer: 84 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Uogonek +Encoding: 370 370 369 +Width: 733 +Flags: HW +HStem: -213 68<411 491> -5 72<317 479> 610 36<21 85 238 302 496 572 648 725> +VStem: 93 137<166 602> 355 72<-163 -69> 579 61<155 601> +LayerCount: 2 +Fore +SplineSet +455 4 m 1 + 425 -4 399 -5 366 -5 c 0 + 219 -5 93 66 93 294 c 2 + 93 501 l 2 + 93 543 93 573 85 593 c 0 + 80 606 36 609 23 610 c 1 + 18 617 19 640 23 646 c 1 + 61 642 121 640 162 640 c 0 + 203 640 262 642 300 646 c 1 + 304 640 305 617 300 610 c 1 + 287 609 243 606 238 593 c 0 + 230 573 230 543 230 501 c 2 + 230 322 l 2 + 230 256 232 207 254 155 c 0 + 291 69 382 67 420 67 c 0 + 512 67 579 119 579 279 c 2 + 579 501 l 2 + 579 543 580 573 572 593 c 0 + 567 606 511 609 498 610 c 1 + 493 617 494 640 498 646 c 1 + 544 642 570 640 615 640 c 0 + 658 640 683 644 723 646 c 1 + 727 640 728 617 723 610 c 1 + 710 609 653 606 648 593 c 0 + 640 573 640 549 640 507 c 2 + 640 311 l 2 + 640 160 598 78 536 36 c 8 + 480 -1 427 -56 427 -99 c 0 + 427 -120 439 -145 475 -145 c 0 + 502 -145 538 -114 548 -106 c 1 + 551 -106 554 -109 554 -117 c 0 + 554 -122 550 -138 547 -142 c 0 + 532 -161 482 -213 427 -213 c 0 + 395 -213 355 -188 355 -137 c 0 + 355 -82 397 -29 455 4 c 1 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 370 +Width: 552 +Flags: HW +HStem: -213 68<385 465> -5 60<159 307> 27 31<483 530> 354 30<9 68 275 334> 416 20G<184 206 450 472> +VStem: 82 127<85 344> 329 72<-163 -68> 347 127<69 344> +LayerCount: 2 +Fore +SplineSet +207 -5 m 0xdd + 112 -5 82 78 82 170 c 2 + 82 254 l 2 + 82 264 81 319 73 334 c 0 + 65 349 18 354 11 354 c 1 + 8 356 7 384 12 384 c 0 + 86 390 166 417 203 436 c 1 + 210 434 219 422 219 419 c 1 + 216 411 210 377 209 363 c 0 + 208 342 208 308 208 302 c 2 + 208 214 l 2 + 208 110 224 55 285 55 c 0 + 312 55 347 76 347 91 c 2 + 347 254 l 2 + 347 264 346 319 338 334 c 0 + 330 349 284 354 277 354 c 1 + 274 356 273 384 278 384 c 0 + 352 390 431 417 468 436 c 1 + 475 434 485 422 485 419 c 1 + 482 411 476 377 475 363 c 0 + 474 342 474 308 474 302 c 2 + 474 105 l 2xdd + 474 90 474 78 483 68 c 0 + 492 58 518 59 527 59 c 1 + 529 57 530 53 530 46 c 0 + 530 40 528 33 524 27 c 1 + 517 26 508 26 500 24 c 0 + 439 9 401 -58 401 -99 c 0 + 401 -120 413 -145 449 -145 c 0 + 476 -145 512 -114 522 -106 c 1 + 525 -106 528 -109 528 -117 c 0 + 528 -122 524 -138 521 -142 c 0 + 506 -161 456 -213 401 -213 c 0 + 369 -213 329 -188 329 -137 c 0xbe + 329 -82 373 -23 432 10 c 1 + 395 1 363 -7 356 -7 c 0 + 352 -7 347 2 347 17 c 2 + 347 32 l 2 + 347 34 347 39 344 37 c 0 + 328 26 275 -5 207 -5 c 0xdd +EndSplineSet +EndChar + +StartChar: Gcaron +Encoding: 486 486 371 +Width: 705 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 6 0 2 +Refer: 240 -1 N 1 0 0 1 199 25 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 372 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 -2 0 2 +Refer: 239 780 N 1 0 0 1 475 12 2 +EndChar + +StartChar: zero.prop +Encoding: 65547 -1 373 +Width: 532 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 48 N 1 0 0 1 0 0 2 +EndChar + +StartChar: one.prop +Encoding: 65548 -1 374 +Width: 364 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 49 N 1 0 0 1 -87 0 2 +EndChar + +StartChar: two.prop +Encoding: 65549 -1 375 +Width: 486 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 50 N 1 0 0 1 -29 0 2 +EndChar + +StartChar: three.prop +Encoding: 65550 -1 376 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 51 N 1 0 0 1 -35 0 2 +EndChar + +StartChar: four.prop +Encoding: 65551 -1 377 +Width: 491 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 52 N 1 0 0 1 -37 0 2 +EndChar + +StartChar: five.prop +Encoding: 65552 -1 378 +Width: 471 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 53 N 1 0 0 1 -35 0 2 +EndChar + +StartChar: six.prop +Encoding: 65553 -1 379 +Width: 491 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 54 N 1 0 0 1 -19 0 2 +EndChar + +StartChar: seven.prop +Encoding: 65554 -1 380 +Width: 445 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 55 N 1 0 0 1 -33 0 2 +EndChar + +StartChar: eight.prop +Encoding: 65555 -1 381 +Width: 510 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 56 N 1 0 0 1 -8 0 2 +EndChar + +StartChar: nine.prop +Encoding: 65556 -1 382 +Width: 492 +Flags: HW +LayerCount: 2 +Fore +Refer: 25 57 N 1 0 0 1 -21 0 2 +EndChar + +StartChar: breve +Encoding: 728 728 383 +Width: 453 +Flags: HW +LayerCount: 2 +Fore +Refer: 231 774 N 1 0 0 1 468 13 2 +EndChar + +StartChar: uni02BB +Encoding: 699 699 384 +Width: 199 +Flags: HW +LayerCount: 2 +Fore +Refer: 241 786 N 1 0 0 1 331 -25 2 +EndChar + +StartChar: uni02BC +Encoding: 700 700 385 +Width: 176 +Flags: HW +LayerCount: 2 +Fore +Refer: 243 789 N 1 0 0 1 339 -75 2 +EndChar + +StartChar: uni02BE +Encoding: 702 702 386 +Width: 182 +Flags: HW +HStem: 436 38<28 70> 647 37<28 71> +VStem: 98 56<497 624> +LayerCount: 2 +Fore +SplineSet +29 685 m 1 + 110 685 153 614 153 561 c 0 + 153 502 108 436 29 436 c 1 + 26 446 26 464 29 474 c 1 + 72 474 98 518 98 561 c 27 + 98 605 72 647 29 647 c 1 + 26 657 25 673 29 685 c 1 +EndSplineSet +EndChar + +StartChar: uni02BF +Encoding: 703 703 387 +Width: 182 +Flags: HW +HStem: 436 38<113 155> 647 37<112 155> +VStem: 29 56<497 625> +LayerCount: 2 +Fore +SplineSet +153 685 m 1 + 157 673 156 657 153 647 c 1 + 110 647 85 605 85 561 c 27 + 85 518 110 474 153 474 c 1 + 156 464 156 446 153 436 c 1 + 74 436 29 502 29 561 c 0 + 29 614 72 685 153 685 c 1 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 388 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +SplineSet +20 617 m 0 + 20 652 27 682 38 698 c 1 + 49 706 73 712 81 712 c 0 + 118 712 152 681 152 653 c 0 + 152 636 140 627 127 611 c 0 + 115 597 103 577 103 547 c 0 + 103 536 103 503 174 461 c 1 + 169 448 159 440 149 440 c 0 + 138 440 20 507 20 617 c 0 +EndSplineSet +EndChar + +StartChar: uni201F +Encoding: 8223 8223 389 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +SplineSet +189 617 m 0 + 189 652 196 682 207 698 c 1 + 218 706 242 712 250 712 c 0 + 287 712 321 681 321 653 c 0 + 321 636 309 627 296 611 c 0 + 284 597 272 577 272 547 c 0 + 272 536 272 503 343 461 c 1 + 338 448 328 440 318 440 c 0 + 307 440 189 507 189 617 c 0 +20 617 m 0 + 20 652 27 682 38 698 c 1 + 49 706 73 712 81 712 c 0 + 118 712 152 681 152 653 c 0 + 152 636 140 627 127 611 c 0 + 115 597 103 577 103 547 c 0 + 103 536 103 503 174 461 c 1 + 169 448 159 440 149 440 c 0 + 138 440 20 507 20 617 c 0 +EndSplineSet +EndChar + +StartChar: f_f +Encoding: 65557 -1 390 +Width: 654 +Flags: HW +HStem: -4 36<24 89 231 296 332 396 539 604> 372 46<31 97 224 404 531 645> 611 70<542 622> +VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> +LayerCount: 2 +Fore +SplineSet +404 418 m 1 + 404 433 l 2 + 404 458 409 484 417 507 c 1 + 388 508 370 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 486 221 418 c 1 + 404 418 l 1 +462 589 m 1 + 506 645 565 682 606 682 c 0 + 637 682 655 676 669 672 c 1 + 686 663 707 650 707 627 c 0 + 707 595 689 560 657 560 c 0 + 628 560 612 582 593 597 c 0 + 582 606 570 611 554 611 c 0 + 538 611 524 577 524 531 c 0 + 524 486 526 448 528 418 c 1 + 535 418 611 418 643 418 c 0 + 647 418 648 410 648 405 c 0 + 648 396 636 379 626 372 c 1 + 597 372 563 372 531 372 c 1 + 531 142 l 2 + 531 100 531 70 539 50 c 0 + 544 37 589 33 602 32 c 1 + 607 25 606 2 602 -4 c 1 + 564 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 142 404 285 404 372 c 1 + 224 372 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 1 + 98 608 214 648 294 653 c 0 + 366 658 438 639 462 589 c 1 +EndSplineSet +LCarets2: 1 315 +EndChar + +StartChar: f_i +Encoding: 65558 -1 391 +Width: 613 +Flags: HW +HStem: -4 36<24 89 231 296 332 396 539 597> 357 46<31 97 224 392> 416 20G<507 529> 634 49<271 372> +VStem: 97 127<40 357> 393 124<531 614> 404 127<40 346> +LayerCount: 2 +Fore +SplineSet +97 406 m 1xfa + 98 596 196 683 323 683 c 0 + 405 683 509 654 517 574 c 0 + 520 542 501 506 466 507 c 0 + 411 509 401 554 393 576 c 0xfc + 380 612 367 634 309 634 c 0 + 242 634 216 471 221 403 c 1 + 335 403 l 2 + 412 403 488 417 525 436 c 1 + 532 434 542 422 542 419 c 1 + 539 411 533 377 532 363 c 0 + 531 342 531 308 531 302 c 2 + 531 142 l 2 + 531 106 531 70 539 50 c 0 + 544 37 582 33 595 32 c 1 + 600 25 599 2 595 -4 c 1 + 557 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 254 l 2 + 404 264 404 319 396 334 c 0 + 385 355 336 357 318 357 c 2 + 224 357 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 357 l 1 + 71 357 52 357 27 357 c 1 + 22 359 22 366 22 370 c 1 + 32 384 42 393 54 403 c 1 + 67 403 87 403 97 406 c 1xfa +EndSplineSet +LCarets2: 1 314 +EndChar + +StartChar: f_f_i +Encoding: 65559 -1 392 +Width: 921 +Flags: HW +HStem: -4 36<24 89 231 296 333 397 540 605 640 705 848 906> 359 46<31 97 224 404 532 701> 416 20G<815 837> 634 49<580 681> +VStem: 97 127<40 359 405 524> 404 128<40 357 405 505> 701 124<531 614> 713 127<40 346> +LayerCount: 2 +Fore +SplineSet +457 598 m 1xfd + 498 656 561 683 632 683 c 0 + 714 683 817 654 825 574 c 0 + 828 542 809 506 774 507 c 0 + 719 509 709 554 701 576 c 0xfe + 688 612 675 634 617 634 c 0 + 550 634 524 471 529 403 c 1 + 644 403 l 2 + 721 403 797 417 834 436 c 1 + 841 434 851 422 851 419 c 1 + 848 411 842 377 841 363 c 0 + 840 342 840 308 840 302 c 2 + 840 142 l 2 + 840 106 840 70 848 50 c 0 + 853 37 890 33 903 32 c 1 + 908 25 907 2 903 -4 c 1 + 865 0 817 3 776 3 c 0 + 735 3 681 0 643 -4 c 1 + 639 2 638 25 643 32 c 1 + 656 33 700 37 705 50 c 0 + 713 70 713 100 713 142 c 2 + 713 254 l 2 + 713 264 712 319 704 334 c 0 + 693 355 645 357 627 357 c 2 + 627 357 564 357 532 357 c 1 + 532 142 l 2 + 532 100 532 70 540 50 c 0 + 545 37 590 33 603 32 c 1 + 608 25 607 2 603 -4 c 1 + 565 0 510 3 469 3 c 0 + 428 3 373 0 335 -4 c 1 + 331 2 330 25 335 32 c 1 + 348 33 392 37 397 50 c 0 + 405 70 405 100 405 142 c 2 + 405 142 405 271 404 359 c 1 + 224 359 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 272 97 359 c 1 + 71 359 52 359 27 359 c 1 + 22 361 22 368 22 372 c 1 + 32 386 42 395 54 405 c 1 + 67 405 87 405 97 405 c 1 + 98 595 214 648 294 653 c 0 + 361 657 429 641 457 598 c 1xfd +417 507 m 1 + 389 508 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 473 221 405 c 1 + 404 405 l 1 + 404 442 409 477 417 507 c 1 +EndSplineSet +LCarets2: 2 315 623 +EndChar + +StartChar: f_l +Encoding: 65560 -1 393 +Width: 616 +Flags: HW +HStem: -4 36<24 89 231 296 331 396 538 603> 372 46<31 97 224 337> 659 20G<525 529> +VStem: 97 127<40 372 418 542> 403 127<40 582> +LayerCount: 2 +Fore +SplineSet +225 529 m 0 + 220 495 220 455 221 418 c 1 + 228 418 303 418 335 418 c 0 + 339 418 341 410 341 405 c 0 + 341 396 328 379 318 372 c 1 + 289 372 256 372 224 372 c 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 9 + 97 433 l 2 + 97 567 184 672 293 675 c 0 + 341 676 357 652 403 647 c 0 + 494 648 524 679 526 679 c 1 + 532 678 540 667 541 662 c 1 + 541 662 530 601 530 562 c 0 + 530 562 516 305 530 142 c 18 + 530 100 530 70 538 50 c 0 + 543 37 588 33 601 32 c 1 + 606 25 605 2 601 -4 c 1 + 563 0 508 3 467 3 c 0 + 426 3 371 0 333 -4 c 1 + 329 2 328 25 333 32 c 1 + 346 33 391 37 396 50 c 0 + 404 70 403 100 403 142 c 2 + 403 438 l 2 + 403 468 404 529 392 562 c 0 + 376 605 340 628 301 625 c 0 + 247 621 233 582 225 529 c 0 +EndSplineSet +LCarets2: 1 314 +EndChar + +StartChar: f_f_l +Encoding: 65561 -1 394 +Width: 923 +Flags: HW +HStem: -4 36<24 89 231 296 332 396 539 604 638 703 846 910> 372 46<31 97 224 404 531 645> 659 20G<833 837> +VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 582> +LayerCount: 2 +Fore +SplineSet +404 418 m 1 + 404 433 l 2 + 404 459 408 484 414 507 c 1 + 387 512 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 486 221 418 c 1 + 404 418 l 1 +457 598 m 1 + 492 645 544 673 601 675 c 0 + 649 676 665 652 711 647 c 1 + 802 648 832 679 834 679 c 0 + 840 678 848 667 849 662 c 1 + 849 662 838 601 838 562 c 2 + 838 562 824 305 838 142 c 1 + 838 100 838 70 846 50 c 0 + 851 37 895 33 908 32 c 1 + 913 25 912 2 908 -4 c 1 + 870 0 815 3 774 3 c 0 + 733 3 679 0 641 -4 c 1 + 637 2 636 25 641 32 c 1 + 654 33 698 37 703 50 c 0 + 711 70 711 100 711 142 c 2 + 711 438 l 2 + 711 468 711 529 699 562 c 0 + 683 605 647 628 608 625 c 0 + 554 621 540 582 532 529 c 0 + 527 495 527 455 528 418 c 1 + 535 418 611 418 643 418 c 0 + 647 418 648 410 648 405 c 0 + 648 396 636 379 626 372 c 1 + 597 372 563 372 531 372 c 1 + 531 142 l 2 + 531 100 531 70 539 50 c 0 + 544 37 589 33 602 32 c 1 + 607 25 606 2 602 -4 c 1 + 564 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 142 404 285 404 372 c 1 + 224 372 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 1 + 98 608 214 648 294 653 c 0 + 362 657 429 642 457 598 c 1 +EndSplineSet +LCarets2: 2 315 623 +EndChar + +StartChar: f_b +Encoding: 65562 -1 395 +Width: 866 +Flags: HW +HStem: -8 43<25 90 230 295 544 645> 366 72<572 646> 372 46<31 97 224 337> 659 20G<525 529> +VStem: 97 127<40 372 418 542> 403 127<49 345 392 582> 695 141<131 309> +LayerCount: 2 +Fore +SplineSet +530 562 m 2xbe + 530 405 l 2 + 530 400 530 388 536 393 c 0 + 551 405 600 438 633 438 c 0xde + 746 438 836 350 836 230 c 0 + 836 74 701 -8 574 -8 c 0 + 523 -8 476 15 451 15 c 0 + 433 15 422 11 415 8 c 1 + 412 8 392 25 392 32 c 1 + 399 50 403 84 403 148 c 2 + 403 438 l 2 + 403 468 404 529 392 562 c 0 + 376 605 340 628 301 625 c 0 + 247 621 233 582 225 529 c 0 + 220 495 220 455 221 418 c 1 + 228 418 303 418 335 418 c 0 + 339 418 341 410 341 405 c 0 + 341 396 328 379 318 372 c 1 + 289 372 256 372 224 372 c 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 9 + 97 433 l 2 + 97 567 184 672 293 675 c 0 + 341 676 357 652 403 647 c 0 + 494 648 524 679 526 679 c 1 + 532 678 540 667 541 662 c 1 + 541 662 530 601 530 562 c 2xbe +584 366 m 0 + 557 366 542 355 533 345 c 0 + 530 342 530 339 530 336 c 2 + 530 96 l 2 + 530 63 554 35 595 35 c 0 + 657 35 695 119 695 191 c 0 + 695 325 645 366 584 366 c 0 +EndSplineSet +LCarets2: 1 320 +EndChar + +StartChar: f_f_b +Encoding: 65563 -1 396 +Width: 1173 +Flags: HW +HStem: -4 36<25 88 233 295 333 395 540 603 858 943> 366 72<880 953> 372 46<31 97 224 404 531 645> 659 20G<833 837> +VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<49 345 392 582> 1003 141<131 309> +LayerCount: 2 +Fore +SplineSet +404 418 m 1xbf + 404 433 l 2 + 404 459 408 484 414 507 c 1 + 387 512 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 486 221 418 c 1 + 404 418 l 1xbf +892 366 m 0xdf + 865 366 850 355 841 345 c 0 + 838 342 838 339 838 336 c 2 + 838 96 l 2 + 838 63 861 35 902 35 c 0 + 964 35 1003 119 1003 191 c 0 + 1003 325 953 366 892 366 c 0xdf +457 598 m 1 + 492 645 544 673 601 675 c 0 + 649 676 665 652 711 647 c 1 + 802 648 832 679 834 679 c 0 + 840 678 848 667 849 662 c 1 + 849 662 838 601 838 562 c 2 + 838 405 l 2 + 838 400 838 388 844 393 c 0 + 859 405 907 438 940 438 c 0xdf + 1053 438 1144 350 1144 230 c 0 + 1144 74 1009 -8 882 -8 c 0 + 831 -8 784 15 759 15 c 0 + 741 15 730 11 723 8 c 1 + 720 8 699 25 699 32 c 1 + 706 50 711 84 711 148 c 2 + 711 438 l 2 + 711 468 711 529 699 562 c 0 + 683 605 647 628 608 625 c 0 + 554 621 540 582 532 529 c 0 + 527 495 527 455 528 418 c 1 + 535 418 611 418 643 418 c 0 + 647 418 648 410 648 405 c 0 + 648 396 636 379 626 372 c 1 + 597 372 563 372 531 372 c 1 + 531 142 l 2 + 531 100 531 70 539 50 c 0 + 544 37 589 33 602 32 c 1 + 607 25 606 2 602 -4 c 1 + 564 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 142 404 285 404 372 c 1 + 224 372 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 1xbf + 98 608 214 648 294 653 c 0 + 362 657 429 642 457 598 c 1 +EndSplineSet +LCarets2: 2 627 316 +EndChar + +StartChar: f_k +Encoding: 65564 -1 397 +Width: 893 +Flags: HW +HStem: -4 36<25 88 233 296 331 394 539 602 828 890> 372 46<31 97 224 337> 396 34<625 686 791 866> 659 20G<525 529> +VStem: 97 127<40 372 418 542> 403 127<40 196 230 582> +LayerCount: 2 +Fore +SplineSet +530 562 m 2xdc + 529 230 l 1 + 546 236 569 251 603 280 c 0 + 671 339 688 359 688 374 c 0 + 688 386 644 395 626 396 c 1 + 623 405 623 427 628 429 c 1 + 628 429 715 425 756 425 c 0 + 791 425 820 428 864 430 c 1 + 870 420 867 399 861 396 c 1xbc + 831 393 790 383 765 365 c 0 + 744 350 696 303 636 250 c 1 + 705 169 719 158 774 96 c 0 + 828 36 860 35 891 35 c 1 + 897 24 892 8 891 6 c 1 + 875 0 829 -6 792 -6 c 0 + 735 -6 687 18 658 52 c 2 + 658 52 591 124 543 184 c 0 + 539 190 530 196 530 196 c 1 + 530 142 l 2 + 530 100 530 70 538 50 c 0 + 543 37 588 33 601 32 c 1 + 606 25 605 2 601 -4 c 1 + 563 0 508 3 467 3 c 0 + 426 3 371 0 333 -4 c 1 + 329 2 328 25 333 32 c 1 + 346 33 391 37 396 50 c 0 + 404 70 403 100 403 142 c 2 + 403 438 l 2 + 403 468 404 529 392 562 c 0 + 376 605 340 628 301 625 c 0 + 247 621 233 582 225 529 c 0 + 220 495 220 455 221 418 c 1 + 228 418 303 418 335 418 c 0 + 339 418 341 410 341 405 c 0 + 341 396 328 379 318 372 c 1 + 289 372 256 372 224 372 c 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 9 + 97 433 l 2 + 97 567 184 672 293 675 c 0 + 341 676 357 652 403 647 c 0 + 494 648 524 679 526 679 c 1 + 532 678 540 667 541 662 c 1 + 541 662 530 601 530 562 c 2xdc +EndSplineSet +LCarets2: 1 316 +EndChar + +StartChar: f_f_k +Encoding: 65565 -1 398 +Width: 1201 +Flags: HW +HStem: -4 36<25 88 233 296 332 395 540 603 639 702 847 910 1136 1197> 372 46<31 97 224 404 531 645> 396 33<933 993 1100 1173> 659 20G<833 837> +VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 196 230 582> +LayerCount: 2 +Fore +SplineSet +404 372 m 1xde + 224 372 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 1xde + 98 608 214 648 294 653 c 0 + 362 657 429 642 457 598 c 1 + 492 645 544 673 601 675 c 0 + 649 676 665 652 711 647 c 1 + 802 648 832 679 834 679 c 0 + 840 678 848 667 849 662 c 1 + 849 662 838 601 838 562 c 2 + 837 230 l 1 + 854 236 876 251 910 280 c 0 + 978 339 996 359 996 374 c 0 + 996 386 952 395 934 396 c 1 + 931 405 931 427 936 429 c 1 + 936 429 1022 425 1063 425 c 0 + 1098 425 1128 428 1172 430 c 1 + 1178 420 1175 399 1169 396 c 1xbe + 1139 393 1097 383 1072 365 c 0 + 1051 350 1003 303 943 250 c 1 + 1012 169 1027 158 1082 96 c 0 + 1136 36 1167 35 1198 35 c 1 + 1204 24 1199 8 1198 6 c 1 + 1182 0 1137 -6 1100 -6 c 0 + 1043 -6 995 18 966 52 c 2 + 966 52 899 124 851 184 c 0 + 847 190 838 196 838 196 c 1 + 838 142 l 2 + 838 100 838 70 846 50 c 0 + 851 37 895 33 908 32 c 1 + 913 25 912 2 908 -4 c 1 + 870 0 815 3 774 3 c 0 + 733 3 679 0 641 -4 c 1 + 637 2 636 25 641 32 c 1 + 654 33 698 37 703 50 c 0 + 711 70 711 100 711 142 c 2 + 711 438 l 2 + 711 468 711 529 699 562 c 0 + 683 605 647 628 608 625 c 0 + 554 621 540 582 532 529 c 0 + 527 495 527 455 528 418 c 1 + 535 418 611 418 643 418 c 0 + 647 418 648 410 648 405 c 0 + 648 396 636 379 626 372 c 1 + 597 372 563 372 531 372 c 1 + 531 142 l 2 + 531 100 531 70 539 50 c 0 + 544 37 589 33 602 32 c 1 + 607 25 606 2 602 -4 c 1 + 564 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 142 404 285 404 372 c 1xde +414 507 m 1 + 387 512 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 486 221 418 c 1 + 404 418 l 1 + 404 433 l 2 + 404 459 408 484 414 507 c 1 +EndSplineSet +LCarets2: 2 624 316 +EndChar + +StartChar: f_h +Encoding: 65566 -1 399 +Width: 886 +Flags: HW +HStem: -4 36<24 89 231 296 331 396 538 596 621 674 816 881> 356 1<531 616> 372 46<31 97 224 337> 659 20G<525 529> +VStem: 97 127<40 372 418 542> 403 127<40 331 357 583> 682 127<40 327> +LayerCount: 2 +Fore +SplineSet +530 562 m 2 + 530 363 l 0 + 530 360 530 358 531 357 c 1 + 533 357 536 360 538 362 c 0 + 565 393 631 436 676 436 c 0 + 787 436 809 359 809 205 c 2 + 809 142 l 2 + 809 100 808 70 816 50 c 0 + 821 37 866 33 879 32 c 1 + 884 25 883 2 879 -4 c 1 + 841 0 786 3 745 3 c 0 + 704 3 661 0 623 -4 c 1 + 619 2 618 25 623 32 c 1 + 636 33 669 37 674 50 c 0 + 682 70 682 100 682 142 c 2 + 682 219 l 2 + 682 289 668 356 616 356 c 0 + 577 356 530 322 530 302 c 2 + 530 142 l 2 + 530 106 530 70 538 50 c 0 + 543 37 581 33 594 32 c 1 + 599 25 598 2 594 -4 c 1 + 556 0 508 3 467 3 c 0 + 426 3 371 0 333 -4 c 1 + 329 2 328 25 333 32 c 1 + 346 33 391 37 396 50 c 0 + 404 70 403 100 403 142 c 2 + 403 438 l 2 + 403 468 404 529 392 562 c 0 + 376 605 340 628 301 625 c 0 + 247 621 233 582 225 529 c 0 + 220 495 220 455 221 418 c 1 + 228 418 303 418 335 418 c 0 + 339 418 341 410 341 405 c 0 + 341 396 328 379 318 372 c 1 + 289 372 256 372 224 372 c 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 9 + 97 433 l 2 + 97 567 184 672 293 675 c 0 + 341 676 357 652 403 647 c 0 + 494 648 524 679 526 679 c 1 + 532 678 540 667 541 662 c 1 + 541 662 530 601 530 562 c 2 +EndSplineSet +LCarets2: 1 314 +EndChar + +StartChar: f_f_h +Encoding: 65567 -1 400 +Width: 1194 +Flags: HW +HStem: -4 36<24 89 231 296 332 396 539 604 638 703 846 904 928 981 1124 1189> 356 1<839 924> 372 46<31 97 224 404 531 645> 659 20G<833 837> +VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 331 357 583> 989 127<40 327> +LayerCount: 2 +Fore +SplineSet +404 372 m 1 + 224 372 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 1 + 98 608 214 648 294 653 c 0 + 362 657 429 642 457 598 c 1 + 492 645 544 673 601 675 c 0 + 649 676 665 652 711 647 c 1 + 802 648 832 679 834 679 c 0 + 840 678 848 667 849 662 c 1 + 849 662 838 601 838 562 c 2 + 838 363 l 2 + 838 360 838 358 839 357 c 1 + 841 357 844 360 846 362 c 0 + 873 393 938 436 983 436 c 0 + 1094 436 1116 359 1116 205 c 2 + 1116 142 l 2 + 1116 100 1116 70 1124 50 c 0 + 1129 37 1174 33 1187 32 c 1 + 1192 25 1191 2 1187 -4 c 1 + 1149 0 1094 3 1053 3 c 0 + 1012 3 969 0 931 -4 c 1 + 927 2 926 25 931 32 c 1 + 944 33 976 37 981 50 c 0 + 989 70 989 100 989 142 c 2 + 989 219 l 2 + 989 289 976 356 924 356 c 0 + 885 356 838 322 838 302 c 2 + 838 142 l 2 + 838 106 838 70 846 50 c 0 + 851 37 888 33 901 32 c 1 + 906 25 905 2 901 -4 c 1 + 863 0 815 3 774 3 c 0 + 733 3 679 0 641 -4 c 1 + 637 2 636 25 641 32 c 1 + 654 33 698 37 703 50 c 0 + 711 70 711 100 711 142 c 2 + 711 438 l 2 + 711 468 711 529 699 562 c 0 + 683 605 647 628 608 625 c 0 + 554 621 540 582 532 529 c 0 + 527 495 527 455 528 418 c 1 + 535 418 611 418 643 418 c 0 + 647 418 648 410 648 405 c 0 + 648 396 636 379 626 372 c 1 + 597 372 563 372 531 372 c 1 + 531 142 l 2 + 531 100 531 70 539 50 c 0 + 544 37 589 33 602 32 c 1 + 607 25 606 2 602 -4 c 1 + 564 0 509 3 468 3 c 0 + 427 3 372 0 334 -4 c 1 + 330 2 329 25 334 32 c 1 + 347 33 391 37 396 50 c 0 + 404 70 404 100 404 142 c 2 + 404 142 404 285 404 372 c 1 +414 507 m 1 + 387 512 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 486 221 418 c 1 + 404 418 l 1 + 404 433 l 2 + 404 459 408 484 414 507 c 1 +EndSplineSet +LCarets2: 2 622 314 +EndChar + +StartChar: f_j +Encoding: 65568 -1 401 +Width: 596 +Flags: HW +HStem: -213 23<307 322> -4 36<24 89 231 296> 357 46<31 97 224 392> 416 20G<507 529> 634 49<271 372> +VStem: 97 127<40 357> 393 124<531 614> 404 127<-42 345> +LayerCount: 2 +Fore +SplineSet +525 436 m 1xfe + 532 434 542 422 542 419 c 1 + 539 411 533 377 532 363 c 0 + 531 342 531 308 531 302 c 2 + 531 117 l 2 + 531 35 520 -47 484 -100 c 0 + 438 -166 352 -213 319 -213 c 1 + 312 -209 306 -202 306 -196 c 0 + 306 -194 306 -190 307 -189 c 0 + 311 -187 404 -139 404 62 c 2 + 404 254 l 2xfd + 404 264 404 319 395 334 c 0 + 384 355 336 357 318 357 c 2 + 224 357 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 357 l 1 + 71 357 52 357 27 357 c 1 + 22 359 22 366 22 370 c 1 + 32 384 42 393 54 403 c 1 + 67 403 87 403 97 406 c 1 + 98 596 196 683 323 683 c 0 + 405 683 509 654 517 574 c 0 + 520 542 501 506 466 507 c 0 + 411 509 401 554 393 576 c 0 + 380 612 367 634 309 634 c 0 + 242 634 216 471 221 403 c 1 + 335 403 l 2 + 412 403 488 417 525 436 c 1xfe +EndSplineSet +LCarets2: 1 322 +EndChar + +StartChar: f_f_j +Encoding: 65569 -1 402 +Width: 905 +Flags: HW +HStem: -213 23<616 630> -4 36<24 89 231 296 333 397 540 605> 359 46<31 97 224 404 532 701> 416 20G<815 837> 634 49<580 681> +VStem: 97 127<40 359 405 524> 404 128<40 357 405 505> 701 124<531 614> 713 127<-42 345> +LayerCount: 2 +Fore +SplineSet +644 403 m 2xff + 721 403 797 417 834 436 c 1 + 841 434 851 422 851 419 c 1 + 848 411 842 377 841 363 c 0 + 840 342 840 308 840 302 c 2 + 840 117 l 2 + 840 35 829 -47 793 -100 c 0 + 747 -166 661 -213 628 -213 c 1 + 621 -209 614 -202 614 -196 c 0 + 614 -194 614 -190 615 -189 c 0 + 619 -187 713 -139 713 62 c 2 + 713 254 l 2xfe80 + 713 264 712 319 703 334 c 0 + 692 355 645 357 627 357 c 2 + 532 357 l 1 + 532 142 l 2 + 532 100 532 70 540 50 c 0 + 545 37 590 33 603 32 c 1 + 608 25 607 2 603 -4 c 1 + 565 0 510 3 469 3 c 0 + 428 3 373 0 335 -4 c 1 + 331 2 330 25 335 32 c 1 + 348 33 392 37 397 50 c 0 + 405 70 405 100 405 142 c 2 + 405 142 405 271 404 359 c 1 + 224 359 l 1 + 224 142 l 2 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 359 l 1 + 71 359 52 359 27 359 c 1 + 22 361 22 368 22 372 c 1 + 32 386 42 395 54 405 c 1 + 67 405 87 405 97 405 c 1 + 98 595 214 648 294 653 c 0 + 361 657 429 641 457 598 c 1 + 498 656 561 683 632 683 c 0 + 714 683 817 654 825 574 c 0 + 828 542 809 506 774 507 c 0 + 719 509 709 554 701 576 c 0 + 688 612 675 634 617 634 c 0 + 550 634 524 471 529 403 c 1 + 644 403 l 2xff +416 507 m 1 + 388 509 369 558 354 576 c 0 + 332 602 307 608 289 604 c 0 + 237 591 216 473 221 405 c 1 + 404 405 l 1 + 404 443 408 477 416 507 c 1 +EndSplineSet +LCarets2: 2 316 638 +EndChar + +StartChar: uni202F +Encoding: 8239 8239 403 +Width: 166 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: fraction +Encoding: 8260 8260 404 +Width: 503 +Flags: HW +HStem: -2 21G<42 57> +LayerCount: 2 +Fore +SplineSet +481 704 m 1 + 72 14 l 2 + 68 7 62 -2 53 -2 c 0 + 32 -2 22 10 22 10 c 1 + 432 700 l 2 + 435 706 441 714 447 714 c 0 + 463 714 477 707 481 704 c 1 +EndSplineSet +EndChar + +StartChar: i.TRK +Encoding: 65570 -1 405 +Width: 307 +Flags: HW +LayerCount: 2 +Fore +Refer: 73 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: napostrophe +Encoding: 329 329 406 +Width: 582 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 2 0 2 +Refer: 243 789 N 1 0 0 1 245 -75 2 +EndChar + +StartChar: longs +Encoding: 383 383 407 +Width: 325 +Flags: HW +HStem: -4 36<24 89 231 296> 372 46<31 97> 611 70<235 314> +VStem: 97 127<40 372 418 528> +LayerCount: 2 +Fore +SplineSet +224 142 m 0 + 224 100 223 70 231 50 c 0 + 236 37 281 33 294 32 c 1 + 299 25 298 2 294 -4 c 1 + 256 0 201 3 160 3 c 0 + 119 3 64 0 26 -4 c 1 + 22 2 21 25 26 32 c 1 + 39 33 84 37 89 50 c 0 + 97 70 97 100 97 142 c 2 + 97 142 97 285 97 372 c 1 + 71 372 52 372 27 372 c 1 + 22 374 22 381 22 385 c 1 + 32 399 42 408 54 418 c 1 + 67 418 87 418 97 418 c 9 + 97 433 l 2 + 97 567 226 682 299 682 c 0 + 330 682 347 676 361 672 c 1 + 378 663 399 650 399 627 c 27 + 399 594 383 560 350 560 c 19 + 321 560 304 582 285 597 c 0 + 274 606 262 611 246 611 c 0 + 230 611 221 577 221 531 c 0 + 224 142 l 0 +EndSplineSet +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 408 +Width: 604 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 519 226 2 +Refer: 34 66 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 409 +Width: 529 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 368 251 2 +Refer: 66 98 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 410 +Width: 743 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 577 226 2 +Refer: 36 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 411 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 640 251 2 +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0C +Encoding: 7692 7692 412 +Width: 743 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 170 -27 2 +Refer: 36 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0D +Encoding: 7693 7693 413 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 244 803 N 1 0 0 1 524 -36 2 +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0E +Encoding: 7694 7694 414 +Width: 743 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 570 -590 2 +Refer: 36 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0F +Encoding: 7695 7695 415 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 540 -593 2 +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E10 +Encoding: 7696 7696 416 +Width: 743 +Flags: HW +LayerCount: 2 +Fore +Refer: 232 -1 N 1 0 0 1 86 3 2 +Refer: 36 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E11 +Encoding: 7697 7697 417 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 233 807 N 1 0 0 1 475 3 2 +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 418 +Width: 536 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 539 226 2 +Refer: 38 70 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 419 +Width: 346 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 489 252 2 +Refer: 70 102 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E24 +Encoding: 7716 7716 420 +Width: 723 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 214 -27 2 +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E25 +Encoding: 7717 7717 421 +Width: 569 +Flags: HW +LayerCount: 2 +Fore +Refer: 244 803 N 1 0 0 1 510 -30 2 +Refer: 72 104 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E28 +Encoding: 7720 7720 422 +Width: 708 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 232 -1 N 1 0 0 1 -61 3 2 +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E29 +Encoding: 7721 7721 423 +Width: 503 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 233 807 N 1 0 0 1 385 6 2 +Refer: 72 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E2A +Encoding: 7722 7722 424 +Width: 723 +Flags: HW +LayerCount: 2 +Fore +Refer: 231 774 N 1 0 0 1 609 -665 2 +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E2B +Encoding: 7723 7723 425 +Width: 569 +Flags: HW +LayerCount: 2 +Fore +Refer: 231 774 N 1 0 0 1 510 -665 2 +Refer: 72 104 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 426 +Width: 885 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 698 226 2 +Refer: 45 77 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 427 +Width: 862 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 640 1 2 +Refer: 77 109 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 428 +Width: 571 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 523 226 2 +Refer: 48 80 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 429 +Width: 540 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 496 1 2 +Refer: 80 112 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 430 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 512 226 2 +Refer: 51 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 431 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 443 0 2 +Refer: 83 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E62 +Encoding: 7778 7778 432 +Width: 508 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 101 -34 2 +Refer: 51 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E63 +Encoding: 7779 7779 433 +Width: 394 +Flags: HW +LayerCount: 2 +Fore +Refer: 244 803 N 1 0 0 1 423 -36 2 +Refer: 83 115 N 1 0 0 1 1 0 2 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 434 +Width: 619 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 580 230 2 +Refer: 52 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 435 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 775 N 1 0 0 1 400 115 2 +Refer: 84 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E6C +Encoding: 7788 7788 436 +Width: 619 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 164 -27 2 +Refer: 52 84 N 1 0 0 1 1 0 2 +EndChar + +StartChar: uni1E6D +Encoding: 7789 7789 437 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 244 803 N 1 0 0 1 413 -36 2 +Refer: 84 116 N 1 0 0 1 1 0 2 +EndChar + +StartChar: uni1E6E +Encoding: 7790 7790 438 +Width: 619 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 562 -590 2 +Refer: 52 84 N 1 0 0 1 1 0 2 +EndChar + +StartChar: uni1E6F +Encoding: 7791 7791 439 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 433 -594 2 +Refer: 84 116 N 1 0 0 1 1 0 2 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 440 +Width: 928 +Flags: HW +LayerCount: 2 +Fore +Refer: 224 -1 N 1 0 0 1 671 0 2 +Refer: 55 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 441 +Width: 770 +Flags: HW +LayerCount: 2 +Fore +Refer: 190 768 N 1 0 0 1 589 -3 2 +Refer: 87 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 442 +Width: 928 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 -1 N 1 0 0 1 750 0 2 +Refer: 55 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wacute +Encoding: 7811 7811 443 +Width: 770 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 646 -3 2 +Refer: 87 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 444 +Width: 928 +Flags: HW +LayerCount: 2 +Fore +Refer: 236 -1 N 1 0 0 1 292 16 2 +Refer: 55 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 445 +Width: 770 +Flags: HW +LayerCount: 2 +Fore +Refer: 237 776 N 1 0 0 1 613 3 2 +Refer: 87 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E92 +Encoding: 7826 7826 446 +Width: 625 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 180 -24 2 +Refer: 58 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E93 +Encoding: 7827 7827 447 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 244 803 N 1 0 0 1 469 -36 2 +Refer: 90 122 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E96 +Encoding: 7830 7830 448 +Width: 569 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 511 -590 2 +Refer: 72 104 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E97 +Encoding: 7831 7831 449 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 237 776 N 1 0 0 1 364 96 2 +Refer: 84 116 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 450 +Width: 609 +Flags: HW +LayerCount: 2 +Fore +Refer: 224 -1 N 1 0 0 1 502 0 2 +Refer: 57 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 451 +Width: 521 +Flags: HW +LayerCount: 2 +Fore +Refer: 190 768 N 1 0 0 1 445 2 2 +Refer: 89 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni2042 +Encoding: 8258 8258 452 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 10 42 N 1 0 0 1 436 -393 2 +Refer: 10 42 N 1 0 0 1 0 -393 2 +Refer: 10 42 N 1 0 0 1 218 0 2 +EndChar + +StartChar: uni00AD +Encoding: 173 173 453 +Width: 0 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: uni0328 +Encoding: 808 808 454 +Width: 0 +GlyphClass: 4 +Flags: HW +LayerCount: 2 +Fore +SplineSet +-178 2 m 1 + -221 -23 -277 -56 -277 -99 c 0 + -277 -120 -265 -145 -229 -145 c 0 + -202 -145 -166 -114 -156 -106 c 1 + -153 -106 -150 -109 -150 -117 c 0 + -150 -122 -154 -138 -157 -142 c 0 + -172 -161 -222 -213 -277 -213 c 0 + -309 -213 -350 -188 -350 -137 c 0 + -350 -82 -279 -14 -220 4 c 1 + -178 2 l 1 +EndSplineSet +EndChar + +StartChar: ogonek +Encoding: 731 731 455 +Width: 296 +Flags: HW +LayerCount: 2 +Fore +Refer: 454 808 N 1 0 0 1 398 0 2 +EndChar + +StartChar: zero.small +Encoding: 65571 -1 456 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 48 N 0.6 0 0 0.6 -13.5996 -40 2 +EndChar + +StartChar: one.small +Encoding: 65572 -1 457 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 49 N 0.6 0 0 0.6 -14.3042 -40 2 +EndChar + +StartChar: two.small +Encoding: 65573 -1 458 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 50 N 0.6 0 0 0.6 -14 -40 2 +EndChar + +StartChar: three.small +Encoding: 65574 -1 459 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 51 N 0.6 0 0 0.6 -14.4004 -40 2 +EndChar + +StartChar: four.small +Encoding: 65575 -1 460 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 52 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: five.small +Encoding: 65576 -1 461 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 53 N 0.6 0 0 0.6 -13.5996 -40 2 +EndChar + +StartChar: six.small +Encoding: 65577 -1 462 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 54 N 0.6 0 0 0.6 -13.7998 -40 2 +EndChar + +StartChar: seven.small +Encoding: 65578 -1 463 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 55 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: eight.small +Encoding: 65579 -1 464 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 56 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: nine.small +Encoding: 65580 -1 465 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 25 57 N 0.6 0 0 0.6 -13.7998 -40 2 +EndChar + +StartChar: zero.medium +Encoding: 65581 -1 466 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 48 N 0.8 0 0 0.8 6.2002 50 2 +EndChar + +StartChar: one.medium +Encoding: 65582 -1 467 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 49 N 0.8 0 0 0.8 5.92777 50 2 +EndChar + +StartChar: two.medium +Encoding: 65583 -1 468 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 50 N 0.8 0 0 0.8 6 50 2 +EndChar + +StartChar: three.medium +Encoding: 65584 -1 469 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 51 N 0.8 0 0 0.8 5.7998 50 2 +EndChar + +StartChar: four.medium +Encoding: 65585 -1 470 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 52 N 0.8 0 0 0.8 5.40039 50 2 +EndChar + +StartChar: five.medium +Encoding: 65586 -1 471 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 53 N 0.8 0 0 0.8 6.2002 50 2 +EndChar + +StartChar: six.medium +Encoding: 65587 -1 472 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 54 N 0.8 0 0 0.8 6.59961 50 2 +EndChar + +StartChar: seven.medium +Encoding: 65588 -1 473 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 55 N 0.8 0 0 0.8 5.40039 50 2 +EndChar + +StartChar: eight.medium +Encoding: 65589 -1 474 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 56 N 0.8 0 0 0.8 5.40039 50 2 +EndChar + +StartChar: nine.medium +Encoding: 65590 -1 475 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 25 57 N 0.8 0 0 0.8 6.59961 50 2 +EndChar + +StartChar: zero.numr +Encoding: 65591 -1 476 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 456 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: one.numr +Encoding: 65592 -1 477 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 457 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: two.numr +Encoding: 65593 -1 478 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 458 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: three.numr +Encoding: 65594 -1 479 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 459 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: four.numr +Encoding: 65595 -1 480 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 460 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: five.numr +Encoding: 65596 -1 481 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 461 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: six.numr +Encoding: 65597 -1 482 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: seven.numr +Encoding: 65598 -1 483 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 463 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: eight.numr +Encoding: 65599 -1 484 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: nine.numr +Encoding: 65600 -1 485 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 465 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: circumflex +Encoding: 710 710 486 +Width: 240 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 221 770 N 1 0 0 1 379 0 2 +EndChar + +StartChar: caron +Encoding: 711 711 487 +Width: 302 +Flags: HW +LayerCount: 2 +Fore +Refer: 239 780 N 1 0 0 1 400 -5 2 +EndChar + +StartChar: ring +Encoding: 730 730 488 +Width: 268 +Flags: HW +LayerCount: 2 +Fore +Refer: 489 778 N 1 0 0 1 384 4 2 +EndChar + +StartChar: uni030A +Encoding: 778 778 489 +Width: 0 +Flags: HW +HStem: 711 44<-291 -207> 860 43<-291 -207> +VStem: -346 45<765 850> -197 44<765 850> +LayerCount: 2 +Fore +SplineSet +-301 582 m 4 + -301 553 -278 529 -249 529 c 4 + -220 529 -197 553 -197 582 c 4 + -197 611 -220 634 -249 634 c 4 + -278 634 -301 611 -301 582 c 4 +-346 582 m 4 + -346 635 -302 677 -249 677 c 4 + -196 677 -153 635 -153 582 c 4 + -153 529 -196 485 -249 485 c 4 + -302 485 -346 529 -346 582 c 4 +EndSplineSet +EndChar + +StartChar: tilde +Encoding: 732 732 490 +Width: 346 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 771 N 1 0 0 1 415 6 2 +EndChar + +StartChar: uni2074 +Encoding: 8308 8308 491 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 52 S 0.6 0 0 0.6 -12 510 2 +EndChar +EndChars +EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aacute -Encoding: 225 225 159 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 496 12 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" aacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aacute -Encoding: 193 193 127 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 631 0 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aacute.sc -Encoding: 65599 -1 509 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 535 32 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: abreve -Encoding: 259 259 279 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 472 13 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" abreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Abreve -Encoding: 258 258 278 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 588 0 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/abreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/abreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/abreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/abreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: abreve.sc -Encoding: 65632 -1 542 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 495 33 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: acircumflex -Encoding: 226 226 160 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 474 13 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" acircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Acircumflex -Encoding: 194 194 128 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 588 2 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: acircumflex.sc -Encoding: 65600 -1 510 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 493 33 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: acutecomb.cap -Encoding: 65537 -1 248 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 138 -VStem: -349 189 -LayerCount: 2 -Fore -SplineSet --349 730 m 0 - -349 737 -276 811 -231 845 c 0 - -227 847 -222 849 -214 849 c 0 - -196 849 -159 839 -159 812 c 0 - -159 776 -321 711 -335 711 c 0 - -342 711 -349 724 -349 730 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acutecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: acutecomb -Encoding: 769 769 191 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 161 -VStem: -334 169 -LayerCount: 2 -Fore -SplineSet --210 647 m 0 - -176 647 -165 627 -165 619 c 0 - -165 581 -307 486 -317 486 c 0 - -324 486 -334 498 -334 504 c 0 - -334 509 -279 597 -243 639 c 0 - -238 644 -224 647 -210 647 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/acute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/acute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: acute -Encoding: 180 180 114 -Width: 230 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 361 23 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: adieresis -Encoding: 228 228 162 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 452 14 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" adieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Adieresis -Encoding: 196 196 130 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 146 12 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/adieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/adieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/adieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/adieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: adieresis.sc -Encoding: 65602 -1 512 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 485 34 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aeacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aeacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aeacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aeacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aeacute -Encoding: 509 509 434 -Width: 679 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 659 12 2 -Refer: 164 230 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: AEacute -Encoding: 508 508 433 -Width: 879 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 875 0 2 -Refer: 132 198 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ae.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ae.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ae.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ae.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: ae -Encoding: 230 230 164 -Width: 679 -Flags: W -HStem: -9 82<454 556> -8 68<121 231> 236 39<390 514> 396 40<166 253 427 507> -VStem: 30 132<76 169> 42 105<285 363> 528 121<283 362> -LayerCount: 2 -Fore -SplineSet -197 187 m 0x7a - 170 169 161 142 162 121 c 0 - 163 79 197 61 222 61 c 0 - 246 61 289 83 289 100 c 1 - 282 121 274 157 274 189 c 0 - 274 201 274 203 275 218 c 1 - 256 211 217 200 197 187 c 0x7a -469 396 m 3 - 411 396 390 308 390 275 c 1 - 399 274 493 280 516 283 c 0 - 528 284 528 293 528 299 c 11 - 528 344 513 396 469 396 c 3 -479 437 m 0 - 607 437 649 346 649 289 c 0 - 649 268 638 249 623 248 c 0 - 557 242 461 238 389 236 c 1 - 389 99 481 73 525 73 c 0 - 582 73 614 100 635 122 c 1 - 642 120 646 110 646 104 c 3 - 646 97 646 89 644 86 c 0 - 626 59 560 -9 467 -9 c 0xb6 - 402 -9 345 15 311 62 c 1 - 261 22 191 -8 158 -8 c 0 - 84 -8 30 53 30 111 c 0x7a - 30 149 56 181 81 189 c 0 - 118 201 228 239 278 257 c 1 - 282 260 286 271 286 278 c 0 - 286 291 286 300 284 311 c 0 - 274 367 238 401 204 401 c 0 - 167 401 157 363 147 319 c 0 - 142 297 127 276 93 276 c 0 - 67 276 42 296 42 323 c 0x76 - 42 336 48 349 56 363 c 1 - 69 376 156 438 242 438 c 0 - 288 438 329 419 356 385 c 1 - 390 416 434 437 479 437 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ae.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ -StartChar: AE -Encoding: 198 198 132 -Width: 879 -Flags: W -HStem: -4 36<-21 39 138 196 327 391> -2 43<543 749> 4 27<-19 87> 220 47<252 399> 303 46<536 680> 605 36<328 392 539 725> -VStem: 399 137<49 220 267 300 350 508 590 602> 716 30<378 425> -LayerCount: 2 -Fore -SplineSet -399 269 m 1x1f - 399 508 l 1 - 252 273 l 1 - 252 273 251 270 253 270 c 0 - 273 268 305 267 327 267 c 0 - 355 267 373 267 399 269 c 1x1f -469 642 m 0 - 510 642 728 647 786 648 c 1 - 793 599 805 548 814 504 c 1 - 811 501 799 499 792 499 c 0 - 785 499 778 502 776 507 c 0 - 755 561 731 605 671 605 c 2 - 590 605 l 2 - 568 605 546 605 541 594 c 0 - 536 582 536 562 536 534 c 2 - 536 359 l 2 - 536 353 557 349 578 349 c 2 - 630 349 l 2 - 688 349 700 360 716 417 c 0 - 717 422 720 425 727 425 c 0 - 734 425 743 423 746 420 c 1 - 746 232 l 1 - 744 230 735 229 728 229 c 0 - 721 229 716 231 715 236 c 0 - 703 283 690 292 681 296 c 0 - 669 301 643 303 606 303 c 0 - 579 303 536 301 536 289 c 2 - 536 138 l 2 - 536 132 536 81 544 61 c 0 - 550 47 582 41 607 41 c 2 - 672 41 l 2 - 709 41 741 51 763 73 c 0 - 784 94 798 122 815 166 c 0 - 816 170 822 172 829 172 c 0 - 839 172 855 169 858 166 c 1 - 839 113 813 41 806 -2 c 1 - 780 -2 605 -2 474 -2 c 0x5f - 402 -2 343 -3 329 -3 c 1 - 325 3 324 26 329 33 c 1 - 342 34 386 37 391 50 c 0 - 399 70 399 100 399 142 c 2 - 399 220 l 1 - 369 221 343 220 322 220 c 0 - 282 220 260 220 226 219 c 0 - 223 219 220 216 219 214 c 2 - 219 214 181 156 165 129 c 0 - 150 105 133 71 132 64 c 0 - 127 39 186 32 194 32 c 1 - 199 25 199 0 195 -4 c 1x9f - 162 0 130 4 87 4 c 0x3f - 42 4 15 0 -20 -4 c 1x9f - -23 0 -25 20 -19 31 c 1x3f - -7 31 45 46 58 62 c 0 - 80 89 88 104 105 131 c 2 - 392 590 l 0 - 392 591 392 592 391 593 c 0 - 384 607 342 607 329 608 c 1 - 324 615 325 639 329 645 c 1 - 373 642 428 642 469 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ae.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ae.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ae.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ae.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ae.sc -Encoding: 65604 -1 514 -Width: 948 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 -1 N 1 0 0 1 483 0 2 -Refer: 473 -1 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/a.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/a.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/a.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/a.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: a -Encoding: 97 97 65 -Width: 460 -Flags: W -HStem: -8 68<121 234 327 419> 401 37<170 283> -VStem: 30 132<76 169> 42 105<285 363> 262 127<67 218 250 369> -LayerCount: 2 -Fore -SplineSet -222 61 m 0xe8 - 246 61 262 75 262 81 c 2 - 262 218 l 1 - 242 208 217 200 197 187 c 0 - 170 169 161 142 162 121 c 0 - 163 79 197 61 222 61 c 0xe8 -242 438 m 0 - 323 438 389 377 389 289 c 2 - 389 106 l 2 - 389 80 399 66 412 66 c 0 - 426 66 436 74 440 76 c 1 - 444 74 447 66 447 60 c 3 - 447 53 446 50 443 45 c 1 - 429 32 384 -6 343 -6 c 0 - 311 -6 278 20 269 43 c 1 - 260 35 193 -8 158 -8 c 0 - 84 -8 30 53 30 111 c 0xe8 - 30 149 56 181 81 189 c 0 - 118 201 212 239 262 258 c 1 - 262 265 262 271 262 278 c 2 - 262 304 l 2 - 262 353 238 401 204 401 c 0 - 167 401 157 363 147 319 c 0 - 142 297 127 276 93 276 c 0 - 67 276 42 296 42 323 c 0xd8 - 42 336 48 349 56 363 c 1 - 69 376 156 438 242 438 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" a.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: A -Encoding: 65 65 33 -Width: 659 -Flags: W -HStem: -4 36<138 205 382 442 604 664> 4 28<144 202> 220 47<205 369> 627 20G<331 341> -LayerCount: 2 -Fore -SplineSet -92 131 m 2xb0 - 300 609 l 2 - 306 622 325 646 336 646 c 0 - 345 646 355 643 357 640 c 1 - 557 145 l 2 - 570 115 575 95 584 74 c 0 - 601 34 653 32 661 32 c 1 - 666 23 667 0 663 -4 c 1xb0 - 624 -2 575 4 532 4 c 0x70 - 487 4 420 -2 385 -4 c 1 - 380 1 380 32 385 32 c 1 - 402 32 429 38 443 50 c 0 - 449 55 451 59 451 66 c 0 - 451 75 393 215 393 215 c 1 - 393 215 389 219 386 219 c 0 - 349 221 316 220 292 220 c 0 - 252 220 225 220 191 219 c 0 - 188 219 185 216 184 214 c 1 - 184 214 160 159 149 132 c 0 - 139 108 127 72 127 65 c 0 - 127 40 194 32 202 32 c 1 - 208 25 206 0 203 -4 c 1xb0 - 169 0 141 4 98 4 c 0x70 - 53 4 25 0 -9 -4 c 1 - -13 0 -15 20 -11 31 c 1 - 1 31 48 46 58 62 c 0 - 75 89 80 104 92 131 c 2xb0 -288 465 m 1 - 205 273 l 1 - 205 273 205 270 207 270 c 0 - 227 268 266 267 288 267 c 0 - 318 267 336 267 366 269 c 0 - 368 269 369 273 369 273 c 1 - 288 465 l 1 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" a.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: agrave -Encoding: 224 224 158 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 464 13 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" agrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Agrave -Encoding: 192 192 126 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 528 0 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/agrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/agrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/agrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/agrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: agrave.sc -Encoding: 65598 -1 508 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 474 33 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: amacron -Encoding: 257 257 277 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 468 42 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" amacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Amacron -Encoding: 256 256 276 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 585 11 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/amacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/amacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/amacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/amacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: amacron.sc -Encoding: 65631 -1 541 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 499 62 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ampersand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ampersand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ampersand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ampersand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: ampersand -Encoding: 38 38 6 -Width: 679 -Flags: W -HStem: -4 74<191 339> -3 81<480 560> 273 31<469 518 595 664> 595 35<270 337> -VStem: 55 127<135 242> 136 113<437 560> 360 101<445 574> -LayerCount: 2 -Fore -SplineSet -373 93 m 1xba - 346 130 253 258 219 306 c 1 - 198 287 182 260 182 215 c 0 - 182 151 222 70 311 70 c 0 - 344 70 360 82 373 93 c 1xba -305 595 m 0 - 271 595 249 561 249 514 c 0x36 - 249 463 280 419 297 397 c 1 - 340 419 360 456 360 501 c 0 - 360 532 349 595 305 595 c 0 -288 630 m 0 - 387 630 461 585 461 517 c 0 - 461 429 382 382 322 361 c 1 - 349 325 429 217 459 177 c 1 - 482 204 519 244 519 256 c 0 - 519 278 478 271 471 273 c 1 - 467 279 467 303 472 305 c 1 - 538 304 l 2 - 572 303 619 305 663 307 c 1 - 667 305 667 280 661 274 c 1 - 654 273 611 274 594 260 c 0 - 580 249 512 169 486 142 c 1 - 493 134 538 78 559 78 c 0 - 586 78 610 116 621 130 c 1 - 630 130 641 122 646 112 c 1 - 642 100 568 -3 507 -3 c 3x76 - 454 -3 426 28 399 59 c 1 - 355 17 296 -4 231 -4 c 3 - 150 -4 55 53 55 152 c 0xba - 55 266 138 313 191 346 c 1 - 170 376 136 414 136 479 c 0 - 136 567 196 630 288 630 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: aogonek -Encoding: 261 261 381 -Width: 460 -Flags: W -HStem: -213 68<261 342> -8 68<121 234> 401 37<170 283> -VStem: 30 132<76 169> 42 105<285 363> 205 72<-163 -81> 262 127<67 218 250 369> -LayerCount: 2 -Fore -SplineSet -443 45 m 1xea - 437 40 417 24 396 11 c 0 - 362 -10 277 -56 277 -99 c 0 - 277 -120 289 -145 325 -145 c 0 - 352 -145 388 -114 398 -106 c 1 - 401 -106 404 -109 404 -117 c 0 - 404 -122 400 -138 397 -142 c 0 - 382 -161 332 -213 277 -213 c 0 - 245 -213 205 -188 205 -137 c 0 - 205 -82 273 -25 318 0 c 1 - 300 4 275 27 269 43 c 1 - 260 35 193 -8 158 -8 c 0 - 84 -8 30 53 30 111 c 0xf4 - 30 149 56 181 81 189 c 0 - 118 201 212 239 262 258 c 1 - 262 265 262 271 262 278 c 2 - 262 304 l 2 - 262 353 238 401 204 401 c 0 - 167 401 157 363 147 319 c 0 - 142 297 127 276 93 276 c 0 - 67 276 42 296 42 323 c 0 - 42 336 48 349 56 363 c 1 - 69 376 156 438 242 438 c 0 - 323 438 389 377 389 289 c 2 - 389 106 l 2 - 389 80 399 66 412 66 c 0 - 426 66 436 74 440 76 c 1 - 444 74 447 66 447 60 c 0 - 447 53 446 50 443 45 c 1xea -222 61 m 0 - 246 61 262 75 262 81 c 2 - 262 218 l 1xf2 - 242 208 217 200 197 187 c 0 - 170 169 161 142 162 121 c 0 - 163 79 197 61 222 61 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" aogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: Aogonek -Encoding: 260 260 380 -Width: 655 -Flags: W -HStem: -213 68<464 544> -4 36<140 205 382 442 600 660> 4 28<147 202> 220 47<205 369> 627 20G<331 341> -VStem: 407 72<-163 -79> -LayerCount: 2 -Fore -SplineSet -292 220 m 0xdc - 252 220 225 220 191 219 c 0 - 188 219 185 216 184 214 c 2 - 184 214 160 159 149 132 c 0 - 139 108 127 74 127 67 c 0 - 127 42 194 32 202 32 c 1 - 208 25 206 0 203 -4 c 1xdc - 169 0 141 4 98 4 c 0xbc - 53 4 25 0 -9 -4 c 1 - -13 0 -15 20 -11 31 c 1 - 1 31 48 46 58 62 c 0 - 75 89 80 104 92 131 c 2 - 300 609 l 2 - 306 622 325 646 336 646 c 0 - 345 646 351 643 353 640 c 2 - 553 145 l 2 - 566 115 571 95 580 74 c 0 - 597 34 649 32 657 32 c 1 - 662 23 663 0 659 -4 c 1xdc - 634 -3 607 0 579 2 c 1 - 536 -23 480 -56 480 -99 c 0 - 480 -120 492 -145 528 -145 c 0 - 555 -145 591 -114 601 -106 c 1 - 604 -106 607 -109 607 -117 c 0 - 607 -122 603 -138 600 -142 c 0 - 585 -161 535 -213 480 -213 c 0 - 448 -213 407 -188 407 -137 c 0 - 407 -82 478 -14 537 4 c 1 - 535 4 534 4 532 4 c 0xbc - 487 4 420 -2 385 -4 c 1 - 380 1 380 32 385 32 c 0 - 402 32 429 38 443 50 c 0 - 449 55 451 59 451 66 c 0 - 451 75 393 215 393 215 c 1 - 393 215 389 219 386 219 c 0 - 349 221 316 220 292 220 c 0xdc -288 267 m 0 - 318 267 336 267 366 269 c 0 - 368 269 369 273 369 273 c 1 - 288 465 l 1 - 205 273 l 1 - 205 273 205 270 207 270 c 0 - 227 268 266 267 288 267 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: aogonek.sc -Encoding: 65633 -1 543 -Width: 488 -VWidth: 0 -Flags: W -HStem: -213 68<310 390> -4 33<9 50 113 166 250 292 441 488> 128 37<154 252> -VStem: 253 72<-163 -83> -LayerCount: 2 -Fore -SplineSet -326 -99 m 0 - 326 -120 338 -145 374 -145 c 0 - 401 -145 437 -114 447 -106 c 1 - 450 -106 453 -109 453 -117 c 0 - 453 -122 449 -138 446 -142 c 0 - 431 -161 381 -213 326 -213 c 0 - 294 -213 253 -188 253 -137 c 0 - 253 -83 335 -13 387 2 c 1 - 384 2 375 2 373 2 c 0 - 342 2 276 -2 252 -4 c 1 - 247 1 247 29 252 29 c 0 - 264 29 283 33 293 41 c 0 - 297 44 298 47 298 51 c 0 - 298 62 291 83 281 103 c 2 - 270 125 l 2 - 269 125 267 127 265 127 c 0 - 240 129 225 128 208 128 c 0 - 181 128 167 128 144 127 c 0 - 142 127 138 124 137 124 c 0 - 132 113 131 112 128 104 c 0 - 122 87 111 62 111 52 c 0 - 111 34 158 29 163 29 c 1 - 169 23 167 0 164 -4 c 1 - 141 -1 114 3 85 3 c 0 - 54 3 31 -1 8 -4 c 1 - 4 0 3 18 7 28 c 1 - 15 28 46 39 53 50 c 0 - 62 63 67 80 77 101 c 0 - 132 234 166 304 218 426 c 0 - 223 438 240 450 248 450 c 0 - 254 450 257 446 260 439 c 2 - 406 111 l 2 - 415 92 426 71 432 58 c 0 - 445 33 480 29 485 29 c 1 - 490 21 491 0 487 -4 c 1 - 484 -3 478 -2 478 -2 c 0 - 408 -2 326 -58 326 -99 c 0 -252 170 m 2 - 202 276 l 1 - 154 170 l 2 - 154 169 155 168 156 168 c 0 - 170 166 189 165 205 165 c 0 - 226 165 230 165 251 167 c 0 - 252 167 252 169 252 170 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aringacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aringacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aringacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aringacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aringacute -Encoding: 507 507 432 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 541 264 2 -Refer: 163 229 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aringacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aringacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aringacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aringacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aringacute -Encoding: 506 506 431 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 675 186 2 -Refer: 131 197 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aring -Encoding: 229 229 163 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 110 176 N 1 0 0 1 109 71 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" aring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aring -Encoding: 197 197 131 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 -1 N 1 0 0 1 590 -66 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/aring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/aring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aring.sc -Encoding: 65603 -1 513 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 493 -34 2 -Refer: 473 -1 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: arrowdown -Encoding: 8595 8595 225 -Width: 386 -Flags: W -HStem: 0 21G<195 203> -VStem: 158 72<135 692> -LayerCount: 2 -Fore -SplineSet -158 135 m 1 - 158 691 l 1 - 158 691 158 697 168 697 c 0 - 186 697 219 690 223 689 c 0 - 229 687 230 684 230 684 c 1 - 230 134 l 1 - 263 170 l 0 - 314 223 333 242 341 242 c 0 - 353 242 363 213 364 207 c 1 - 362 206 307 150 214 6 c 1 - 212 1 206 0 200 0 c 0 - 190 0 183 1 175 8 c 1 - 98 136 26 204 22 209 c 1 - 23 215 36 242 48 242 c 0 - 56 242 73 223 124 170 c 0 - 158 135 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowleft -Encoding: 8592 8592 222 -Width: 752 -Flags: W -HStem: 205 72<161 716> -LayerCount: 2 -Fore -SplineSet -269 388 m 0 - 269 380 249 362 196 311 c 0 - 161 277 l 1 - 717 277 l 1 - 717 277 724 278 724 268 c 0 - 724 250 717 216 716 212 c 0 - 714 206 709 205 709 205 c 1 - 160 205 l 1 - 195 172 l 0 - 248 121 268 103 268 95 c 0 - 268 83 239 71 233 70 c 1 - 232 72 176 128 32 221 c 1 - 27 223 25 228 25 234 c 0 - 25 244 26 253 33 261 c 1 - 161 338 229 408 234 412 c 1 - 240 411 269 400 269 388 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowright -Encoding: 8594 8594 224 -Width: 752 -Flags: W -HStem: 205 72<36 591> -LayerCount: 2 -Fore -SplineSet -591 277 m 1 - 556 311 l 0 - 503 362 483 380 483 388 c 0 - 483 400 512 411 518 412 c 1 - 523 408 591 338 719 261 c 1 - 726 253 727 244 727 234 c 0 - 727 228 725 223 720 221 c 1 - 576 128 520 72 519 70 c 1 - 513 71 484 83 484 95 c 0 - 484 103 504 121 557 172 c 0 - 592 205 l 1 - 43 205 l 1 - 43 205 38 206 36 212 c 0 - 35 216 28 250 28 268 c 0 - 28 278 35 277 35 277 c 1 - 591 277 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowup.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowup.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/arrowup.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/arrowup.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: arrowup -Encoding: 8593 8593 223 -Width: 383 -Flags: W -HStem: 0 21G<209 223> -VStem: 155 72<5 562> -LayerCount: 2 -Fore -SplineSet -228 562 m 1 - 228 6 l 1 - 228 6 228 0 218 0 c 0 - 200 0 167 7 163 8 c 0 - 157 10 155 14 155 14 c 1 - 155 563 l 1 - 123 527 l 0 - 72 474 53 455 45 455 c 0 - 33 455 22 484 21 490 c 1 - 23 491 79 547 172 691 c 1 - 174 696 180 697 186 697 c 0 - 196 697 203 696 211 689 c 1 - 288 561 359 493 363 488 c 1 - 362 482 350 455 338 455 c 0 - 330 455 313 474 262 527 c 0 - 228 562 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/a.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/a.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/a.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/a.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: a.sc -Encoding: 65563 -1 473 -Width: 488 -VWidth: 0 -Flags: W -HStem: -4 33<113 166 250 292 441 488> 128 37<154 252> -LayerCount: 2 -Fore -SplineSet -53 50 m 0 - 62 63 67 80 77 101 c 0 - 132 234 166 304 218 426 c 0 - 223 438 240 450 248 450 c 0 - 254 450 257 446 260 439 c 2 - 406 111 l 2 - 415 92 426 71 432 58 c 0 - 445 33 480 29 485 29 c 1 - 490 21 491 0 487 -4 c 1 - 461 -2 402 2 373 2 c 0 - 342 2 276 -2 252 -4 c 1 - 247 1 247 29 252 29 c 0 - 264 29 283 33 293 41 c 0 - 297 44 298 47 298 51 c 0 - 298 62 291 83 281 103 c 2 - 270 125 l 17 - 269 125 267 127 265 127 c 0 - 240 129 225 128 208 128 c 0 - 181 128 167 128 144 127 c 0 - 142 127 138 124 137 124 c 1 - 132 113 131 112 128 104 c 0 - 122 87 111 62 111 52 c 0 - 111 34 158 29 163 29 c 1 - 169 23 167 0 164 -4 c 1 - 141 -1 114 3 85 3 c 0 - 54 3 31 -1 8 -4 c 1 - 4 0 3 18 7 28 c 1 - 15 28 46 39 53 50 c 0 -252 170 m 9 - 202 276 l 1 - 154 170 l 17 - 154 169 155 168 156 168 c 0 - 170 166 189 165 205 165 c 0 - 226 165 230 165 251 167 c 0 - 252 167 252 169 252 170 c 9 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: asciicircum -Encoding: 94 94 62 -Width: 381 -Flags: W -HStem: 409 244 -VStem: 37 288 -LayerCount: 2 -Fore -SplineSet -182 653 m 0 - 188 653 196 649 201 640 c 0 - 251 553 272 509 325 427 c 1 - 325 416 315 409 307 409 c 1 - 250 462 182 543 182 543 c 25 - 182 543 114 462 57 409 c 1 - 49 409 37 416 37 427 c 1 - 90 509 113 553 163 640 c 0 - 168 649 176 653 182 653 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" asciicircum.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciicircum.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: asciicircum.sc -Encoding: 65592 -1 502 -Width: 438 -VWidth: 164 -Flags: HW -LayerCount: 2 -Fore -Refer: 62 94 N 0.72 0 0 0.69 88 21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciitilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciitilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asciitilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asciitilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: asciitilde -Encoding: 126 126 94 -Width: 537 -Flags: W -HStem: 233 59<314 441> 299 59<102 228> -LayerCount: 2 -Fore -SplineSet -255 267 m 0 - 221 281 182 299 138 299 c 0 - 100 299 66 269 54 253 c 1 - 51 254 48 257 47 261 c 1 - 47 300 109 357 167 357 c 0 - 213 357 254 339 288 324 c 0 - 321 310 361 292 405 292 c 0 - 443 292 477 322 489 338 c 1 - 492 337 495 334 496 330 c 1 - 496 291 434 233 376 233 c 0 - 330 233 289 253 255 267 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asterisk.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asterisk.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/asterisk.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/asterisk.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: asterisk -Encoding: 42 42 10 -Width: 430 -Flags: W -HStem: 414 87<41 140> -VStem: 151 89<302 398> -LayerCount: 2 -Fore -SplineSet -281 604 m 0 - 302 627 333 625 348 611 c 0 - 364 595 368 567 347 544 c 0 - 316 509 279 520 252 494 c 1 - 252 494 246 486 246 481 c 0 - 246 477 248 476 253 474 c 0 - 287 458 314 474 357 455 c 0 - 385 443 394 412 385 393 c 0 - 375 373 349 361 321 373 c 0 - 278 392 277 429 244 447 c 1 - 244 447 234 453 230 450 c 0 - 228 449 227 448 226 442 c 0 - 222 405 245 386 240 339 c 0 - 237 309 210 291 190 293 c 0 - 169 297 148 318 151 348 c 0 - 156 395 191 407 198 444 c 1 - 198 444 199 454 196 458 c 0 - 195 460 193 460 187 459 c 0 - 151 451 138 425 92 414 c 0 - 62 407 38 427 34 447 c 0 - 31 468 44 494 74 501 c 0 - 120 512 142 481 180 486 c 1 - 180 486 192 487 193 492 c 0 - 194 495 192 498 189 503 c 0 - 170 535 141 538 117 579 c 0 - 101 605 112 636 130 646 c 0 - 150 656 178 650 194 624 c 0 - 218 583 195 553 212 519 c 1 - 212 519 217 509 222 508 c 0 - 224 508 227 508 231 512 c 0 - 256 539 250 569 281 604 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/at.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/at.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/at.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/at.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: at -Encoding: 64 64 32 -Width: 749 -Flags: W -HStem: -121 20<259 285> -7 61<475 575> -5 97<244 354> 380 53<386 491> 525 39<332 539> -VStem: 45 47<54 278> 174 120<97 213> 403 119<54 158> 672 43<167 392> -LayerCount: 2 -Fore -SplineSet -436 564 m 0xdf80 - 627 564 715 435 715 283 c 0 - 715 134 613 -7 499 -7 c 0xdf80 - 451 -7 403 17 403 77 c 0 - 403 85 404 97 407 105 c 1 - 388 69 329 -5 269 -5 c 3xbf80 - 219 -5 174 15 174 117 c 3 - 174 260 335 433 474 433 c 0 - 508 433 561 427 580 420 c 9 - 525 124 l 2 - 524 120 522 105 522 100 c 0 - 522 86 519 54 545 54 c 0 - 594 54 672 154 672 276 c 0 - 672 408 606 525 436 525 c 0 - 237 525 92 336 92 166 c 0 - 92 52 154 -34 224 -75 c 0 - 259 -96 280 -99 299 -102 c 1 - 299 -110 276 -121 260 -121 c 0 - 243 -121 229 -117 216 -112 c 0 - 126 -79 45 23 45 161 c 0 - 45 352 209 564 436 564 c 0xdf80 -433 380 m 3 - 352 380 294 257 294 145 c 0 - 294 109 311 92 333 92 c 3xbf80 - 374 92 417 161 438 268 c 2 - 458 367 l 17 - 449 377 446 380 433 380 c 3 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" at.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: atilde -Encoding: 227 227 161 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 456 14 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" atilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Atilde -Encoding: 195 195 129 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 252 -1 N 1 0 0 1 582 5 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/atilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/atilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/atilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/atilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: atilde.sc -Encoding: 65601 -1 511 -Width: 488 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 497 34 2 -Refer: 473 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/at.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/at.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/at.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/at.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: at.sc -Encoding: 65562 -1 472 -Width: 617 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 64 N 0.831909 0 0 0.838399 -4 -4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/backslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/backslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/backslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/backslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: backslash -Encoding: 92 92 60 -Width: 409 -Flags: HW -LayerCount: 2 -Fore -SplineSet -26 737 m 1 - 30 742 37 743 45 743 c 0 - 68 743 79 736 82 728 c 2 - 82 728 381 -19 381 -25 c 1 - 380 -29 368 -35 354 -35 c 0 - 346 -35 330 -32 324 -18 c 0 - 210 270 115 513 26 737 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" backslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/backslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/backslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/backslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/backslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: backslash.sc -Encoding: 65590 -1 500 -Width: 320 -VWidth: -12 -Flags: HW -LayerCount: 2 -Fore -Refer: 60 92 N 0.72 0 0 0.69 19 -13 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: bar -Encoding: 124 124 92 -Width: 197 -Flags: W -VStem: 73 52<-115 747> -LayerCount: 2 -Fore -SplineSet -124 -105 m 2 - 124 -113 79 -120 77 -120 c 0 - 70 -120 73 -116 73 -112 c 2 - 73 739 l 1 - 73 739 71 745 77 747 c 0 - 94 752 112 752 115 752 c 0 - 124 752 123 746 123 746 c 1 - 124 -105 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" bar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: bar.sc -Encoding: 65594 -1 504 -Width: 191 -VWidth: 0 -Flags: W -VStem: 75 42<-50 477> -LayerCount: 2 -Fore -SplineSet -117 -43 m 2 - 117 -48 80 -52 78 -52 c 0 - 72 -52 75 -49 75 -47 c 2 - 75 473 l 1 - 75 473 73 477 78 478 c 0 - 92 481 108 480 110 480 c 0 - 117 480 117 477 117 477 c 1 - 117 -43 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: b -Encoding: 98 98 66 -Width: 529 -Flags: W -HStem: -8 43<207 308> 366 72<236 309> 609 31<-1 55> 659 20G<188 193> -VStem: 67 127<49 345 392 600> 359 141<131 309> -LayerCount: 2 -Fore -SplineSet -238 -8 m 0 - 187 -8 140 15 115 15 c 0 - 97 15 86 11 79 8 c 1 - 76 8 55 25 55 32 c 1 - 62 50 67 84 67 148 c 2 - 67 545 l 2 - 67 562 67 575 60 592 c 0 - 55 604 13 609 1 609 c 1 - -3 609 -4 637 1 641 c 1 - 110 651 187 679 190 679 c 1 - 196 678 203 667 204 662 c 1 - 204 662 194 618 194 563 c 2 - 194 405 l 2 - 194 400 194 388 200 393 c 0 - 215 405 263 438 296 438 c 0 - 409 438 499 350 499 230 c 0 - 499 74 365 -8 238 -8 c 0 -247 366 m 0 - 220 366 206 355 197 345 c 0 - 194 342 194 339 194 336 c 2 - 194 96 l 2 - 194 63 217 35 258 35 c 0 - 320 35 359 119 359 191 c 0 - 359 325 308 366 247 366 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" b.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: B -Encoding: 66 66 34 -Width: 604 -Flags: W -HStem: -3 41<36 103 253 372> 324 38<245 344> 605 39<36 102 247 347> -VStem: 108 137<50 324 362 602> 379 145<424 566> 417 153<110 262> -LayerCount: 2 -Fore -SplineSet -245 324 m 1xf4 - 245 106 l 2 - 245 100 244 62 252 50 c 0 - 260 39 289 38 314 38 c 0 - 359 38 417 71 417 172 c 0 - 417 245 388 324 295 324 c 2 - 245 324 l 1xf4 -245 362 m 1 - 295 362 l 2 - 344 362 379 403 379 476 c 0xf8 - 379 569 348 605 298 605 c 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 362 l 1 -327 645 m 0 - 418 645 524 603 524 490 c 0xf8 - 524 412 444 367 418 357 c 0 - 410 354 412 352 413 352 c 0 - 462 346 571 290 571 188 c 0xf4 - 571 124 529 65 468 29 c 0 - 410 -5 337 -4 265 -3 c 0 - 224 -3 75 -2 37 -3 c 1 - 33 3 32 26 37 33 c 1 - 50 34 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0 - 218 642 270 645 327 645 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" b.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: braceleft -Encoding: 123 123 91 -Width: 291 -Flags: W -HStem: -141 25<249 264> 717 25<249 264> -VStem: 78 111<-22 101 501 624> 104 112<89 225 376 512> -LayerCount: 2 -Fore -SplineSet -104 414 m 0xd0 - 104 444 96 467 88 492 c 0 - 83 510 78 529 78 553 c 0 - 78 655 211 738 259 742 c 1 - 262 742 272 725 266 717 c 1 - 239 702 189 658 189 595 c 0xe0 - 189 557 198 540 205 521 c 0 - 211 505 217 486 217 448 c 0 - 217 363 131 301 96 301 c 1 - 131 301 217 238 217 153 c 0xd0 - 217 115 211 96 205 80 c 0 - 198 61 189 45 189 7 c 0 - 189 -56 239 -100 266 -115 c 1 - 272 -123 262 -141 259 -141 c 1 - 211 -137 78 -53 78 49 c 0xe0 - 78 79 85 101 92 123 c 0 - 98 143 104 164 104 188 c 0 - 104 240 60 277 19 290 c 1 - 17 292 16 298 16 301 c 0 - 16 305 17 310 19 312 c 1 - 60 325 104 362 104 414 c 0xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" braceleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: braceleft.sc -Encoding: 65593 -1 503 -Width: 262 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 91 123 N 0.75 0 0 0.69 17 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: braceright -Encoding: 125 125 93 -Width: 291 -Flags: W -HStem: -141 25<28 43> 717 25<28 43> -VStem: 75 112<89 225 376 512> 102 111<-22 101 501 624> -LayerCount: 2 -Fore -SplineSet -33 742 m 1xd0 - 81 738 214 655 214 553 c 0xd0 - 214 527 208 505 202 486 c 0 - 195 463 187 442 187 414 c 0 - 187 362 232 325 273 312 c 1 - 275 310 276 305 276 301 c 0 - 276 298 275 292 273 290 c 1 - 232 277 187 240 187 188 c 0xe0 - 187 163 193 142 200 121 c 0 - 207 100 214 78 214 49 c 0 - 214 -53 81 -137 33 -141 c 1 - 30 -141 20 -123 26 -115 c 1 - 53 -100 102 -56 102 7 c 0xd0 - 102 44 95 60 88 78 c 0 - 81 95 75 114 75 153 c 0 - 75 238 161 301 196 301 c 1 - 161 301 75 363 75 448 c 0xe0 - 75 495 84 513 92 533 c 0 - 98 548 102 565 102 595 c 0 - 102 658 53 702 26 717 c 1 - 20 725 30 742 33 742 c 1xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" braceright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/braceright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/braceright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: braceright.sc -Encoding: 65595 -1 505 -Width: 262 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 93 125 N 0.75 0 0 0.69 27 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: bracketleft -Encoding: 91 91 59 -Width: 301 -Flags: W -VStem: 73 104<-78 711> -LayerCount: 2 -Fore -SplineSet -92 752 m 0 - 193 752 257 761 292 768 c 1 - 294 768 298 765 298 759 c 0 - 298 746 290 734 288 733 c 0 - 259 718 204 713 178 707 c 9 - 178 -74 l 1 - 204 -80 259 -86 288 -101 c 0 - 290 -102 298 -113 298 -126 c 0 - 298 -132 294 -135 292 -135 c 1 - 257 -128 193 -119 92 -119 c 0 - 79 -118 73 -108 73 -97 c 0 - 73 729 l 0 - 73 740 79 751 92 752 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" bracketleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: bracketleft.sc -Encoding: 65589 -1 499 -Width: 281 -VWidth: 5 -Flags: HW -LayerCount: 2 -Fore -Refer: 59 91 N 0.75 0 0 0.69 30 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: bracketright -Encoding: 93 93 61 -Width: 301 -Flags: W -VStem: 124 104<-78 711> -LayerCount: 2 -Fore -SplineSet -210 752 m 0 - 223 751 229 740 229 729 c 0 - 229 -97 l 0 - 229 -108 223 -118 210 -119 c 0 - 109 -119 45 -128 10 -135 c 1 - 8 -135 4 -132 4 -126 c 0 - 4 -113 12 -102 14 -101 c 0 - 43 -86 98 -80 124 -74 c 1 - 124 707 l 17 - 98 713 43 718 14 733 c 0 - 12 734 4 746 4 759 c 0 - 4 765 8 768 10 768 c 1 - 45 761 109 752 210 752 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" bracketright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bracketright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bracketright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: bracketright.sc -Encoding: 65591 -1 501 -Width: 281 -VWidth: 5 -Flags: HW -LayerCount: 2 -Fore -Refer: 61 93 N 0.75 0 0 0.69 25 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/breve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/breve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/breve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/breve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: breve -Encoding: 728 728 621 -Width: 453 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 468 13 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/brokenbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/brokenbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/brokenbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/brokenbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: brokenbar -Encoding: 166 166 101 -Width: 205 -Flags: W -VStem: 77 52<-115 251 381 747> -LayerCount: 2 -Fore -SplineSet -129 391 m 2 - 129 383 84 376 82 376 c 0 - 75 376 77 380 77 384 c 2 - 77 739 l 1 - 77 739 76 745 82 747 c 0 - 99 752 118 752 121 752 c 0 - 130 752 129 746 129 746 c 1 - 129 391 l 2 -77 -112 m 2 - 77 243 l 1 - 77 243 76 249 82 251 c 0 - 99 256 118 256 121 256 c 0 - 130 256 129 250 129 250 c 1 - 129 -105 l 2 - 129 -113 84 -120 82 -120 c 0 - 75 -120 77 -116 77 -112 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/b.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/b.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/b.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/b.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: b.sc -Encoding: 65564 -1 474 -Width: 515 -VWidth: 0 -Flags: W -HStem: -3 36<42 90 228 315> 219 35<223 291> 405 36<42 90 226 291> -VStem: 96 127<44 219 254 394> 307 134<289 393> 342 137<57 180> -LayerCount: 2 -Fore -SplineSet -223 361 m 2xf8 - 223 254 l 1 - 254 254 l 2 - 284 254 307 278 307 324 c 0 - 307 382 287 405 256 405 c 0 - 242 405 229 405 226 398 c 0 - 223 391 223 379 223 361 c 2xf8 -281 441 m 0 - 354 441 441 414 441 336 c 0xf8 - 441 282 366 251 342 244 c 0 - 335 242 336 240 337 240 c 0 - 382 236 479 195 479 126 c 0xf4 - 479 77 456 41 407 14 c 0 - 374 -5 294 -4 234 -3 c 0 - 201 -3 75 -2 44 -3 c 1 - 40 3 39 26 44 32 c 1 - 53 33 87 34 90 43 c 0 - 96 56 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 382 90 395 c 0 - 87 404 53 404 44 405 c 1 - 39 411 40 435 44 441 c 1 - 79 438 127 438 160 438 c 0 - 193 438 235 441 281 441 c 0 -223 219 m 1 - 223 77 l 2 - 223 73 223 48 228 40 c 0 - 233 33 253 33 271 33 c 0 - 302 33 342 57 342 121 c 0xf4 - 342 168 320 219 257 219 c 2 - 223 219 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bullet.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bullet.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/bullet.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/bullet.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: bullet -Encoding: 8226 8226 211 -Width: 411 -Flags: W -HStem: 120 274<133 279> -VStem: 69 272<183 331> -LayerCount: 2 -Fore -SplineSet -69 257 m 0 - 69 332 131 395 206 395 c 0 - 281 395 342 332 342 257 c 0 - 342 182 281 120 206 120 c 0 - 131 120 69 182 69 257 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cacute -Encoding: 263 263 281 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 536 12 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" cacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cacute -Encoding: 262 262 280 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 675 0 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cacute.sc -Encoding: 65634 -1 544 -Width: 524 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 593 29 2 -Refer: 475 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccaron -Encoding: 269 269 287 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 497 12 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ccaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccaron -Encoding: 268 268 286 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 206 25 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccaron.sc -Encoding: 65637 -1 547 -Width: 524 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 524 29 2 -Refer: 475 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccedilla -Encoding: 231 231 165 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 17 0 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ccedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccedilla -Encoding: 199 199 133 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 -1 N 1 0 0 1 144 1 2 -Refer: 35 67 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccedilla.sc -Encoding: 65605 -1 515 -Width: 524 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 48 1 2 -Refer: 475 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccircumflex -Encoding: 265 265 283 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 484 13 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ccircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccircumflex -Encoding: 264 264 282 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 634 2 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ccircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccircumflex.sc -Encoding: 65635 -1 545 -Width: 524 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 523 30 2 -Refer: 475 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cdotaccent -Encoding: 267 267 285 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 775 N 1 0 0 1 506 23 2 -Refer: 67 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" cdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cdotaccent -Encoding: 266 266 284 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 639 -6 2 -Refer: 35 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cdotaccent.sc -Encoding: 65636 -1 546 -Width: 524 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 524 -216 2 -Refer: 475 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: cedilla -Encoding: 184 184 118 -Width: 443 -Flags: W -HStem: -152 27<159 239> -63 62<199 240> -VStem: 245 53<-122 -64> -LayerCount: 2 -Fore -SplineSet -228 -24 m 1 - 236 -23 240 -22 249 -22 c 27 - 275 -22 298 -45 298 -70 c 0 - 298 -116 263 -152 203 -152 c 0 - 182 -152 163 -144 156 -137 c 1 - 154 -134 152 -121 152 -117 c 0 - 152 -111 153 -110 155 -110 c 1 - 159 -112 181 -125 202 -125 c 0 - 235 -125 245 -110 245 -96 c 0 - 245 -82 241 -63 220 -63 c 0 - 214 -63 204 -66 194 -70 c 1 - 191 -70 182 -62 182 -56 c 1 - 191 -41 203 -17 209 -2 c 1 - 240 -2 l 1 - 240 -2 233 -15 228 -24 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/cent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/cent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: cent -Encoding: 162 162 97 -Width: 470 -Flags: W -HStem: -9 82<234 338> 387 51<200 325> -VStem: 43 123<148 284> 274 34<427 467> -LayerCount: 2 -Fore -SplineSet -274 470 m 17 - 282 470 309 469 309 462 c 1 - 228 -37 l 1 - 219 -37 196 -34 193 -28 c 9 - 274 470 l 17 -EndSplineSet -Refer: 67 99 N 1 0 0 1 13 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/c.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/c.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/c.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/c.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: c -Encoding: 99 99 67 -Width: 436 -Flags: W -HStem: -9 82<221 325> 387 51<188 312> -VStem: 30 123<148 284> -LayerCount: 2 -Fore -SplineSet -403 373 m 0 - 403 345 382 312 347 312 c 0 - 321 312 304 338 288 356 c 0 - 271 375 246 387 222 387 c 0 - 179 387 153 312 153 252 c 0 - 153 115 232 73 294 73 c 0 - 351 73 382 100 403 122 c 1 - 410 120 415 110 415 104 c 3 - 415 97 414 89 412 86 c 0 - 394 59 328 -9 235 -9 c 0 - 126 -9 30 67 30 195 c 0 - 30 314 150 438 285 438 c 0 - 339 438 373 427 384 420 c 1 - 393 410 403 398 403 373 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" c.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: C -Encoding: 67 67 35 -Width: 658 -Flags: W -HStem: -7 43<322 497> 609 42<302 481> -VStem: 39 156<200 431> 595 34<156 192> -LayerCount: 2 -Fore -SplineSet -377 651 m 0 - 441 651 522 645 580 633 c 1 - 582 622 613 497 613 485 c 0 - 613 479 600 471 588 471 c 3 - 583 471 578 471 574 475 c 1 - 564 513 524 609 386 609 c 0 - 248 609 195 481 195 344 c 0 - 195 192 258 36 405 36 c 0 - 464 36 500 54 526 78 c 0 - 567 115 593 191 595 199 c 1 - 610 199 621 195 629 188 c 1 - 629 177 604 45 589 39 c 0 - 527 17 465 -7 375 -7 c 0 - 191 -7 39 129 39 314 c 0 - 39 502 191 651 377 651 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" c.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/colon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/colon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/colon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/colon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: colon -Encoding: 58 58 26 -Width: 255 -Flags: W -HStem: -11 146<76 179> 274 146<76 179> -VStem: 55 146<12 113 297 398> -LayerCount: 2 -Fore -SplineSet -55 350 m 0 - 55 389 88 421 128 421 c 27 - 169 421 201 386 201 347 c 0 - 201 308 169 274 129 274 c 27 - 88 274 55 308 55 350 c 0 -55 64 m 0 - 55 103 88 136 128 136 c 27 - 169 136 201 101 201 62 c 0 - 201 23 169 -11 129 -11 c 27 - 88 -11 55 22 55 64 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" colon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/colon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/colon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/colon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/colon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: colon.sc -Encoding: 65556 -1 466 -Width: 263 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 26 58 N 1 0 0 1 4 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/comma.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/comma.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/comma.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/comma.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: comma -Encoding: 44 44 12 -Width: 218 -Flags: W -HStem: -153 289 -VStem: 88 85<-35 68> -LayerCount: 2 -Fore -SplineSet -116 136 m 0 - 133 136 148 128 159 120 c 1 - 167 105 173 80 173 57 c 0 - 173 -36 107 -119 39 -153 c 1 - 28 -150 19 -136 19 -130 c 1 - 38 -118 88 -74 88 -26 c 0 - 88 6 41 3 41 66 c 0 - 41 82 55 136 116 136 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/copyright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/copyright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/copyright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/copyright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: copyright -Encoding: 169 169 104 -Width: 637 -Flags: W -HStem: 37 43<227 410> 159 24<295 378> 419 25<290 374> 525 45<224 413> -VStem: 52 44<209 397> 180 70<218 375> 412 19<229 249> 541 45<209 397> -LayerCount: 2 -Fore -SplineSet -431 246 m 1 - 431 241 420 187 414 185 c 0 - 389 176 358 159 321 159 c 0 - 238 159 180 212 180 298 c 0 - 180 385 249 444 325 444 c 0 - 351 444 387 434 410 429 c 1 - 411 424 424 373 424 368 c 0 - 424 366 414 362 409 362 c 3 - 407 362 405 361 403 363 c 1 - 399 379 385 419 328 419 c 0 - 271 419 250 360 250 303 c 0 - 250 241 276 184 333 184 c 0 - 357 184 373 190 384 200 c 0 - 401 216 411 247 412 250 c 1 - 418 250 428 249 431 246 c 1 -96 303 m 0 - 96 180 195 80 318 80 c 0 - 441 80 541 180 541 303 c 0 - 541 426 441 525 318 525 c 0 - 195 525 96 426 96 303 c 0 -52 304 m 0 - 52 451 171 570 318 570 c 0 - 465 570 586 451 586 304 c 0 - 586 157 465 37 318 37 c 0 - 171 37 52 157 52 304 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/c.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/c.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/c.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/c.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: c.sc -Encoding: 65565 -1 475 -Width: 524 -VWidth: 0 -Flags: W -HStem: -6 39<258 401> 409 39<249 393> -VStem: 39 141<127 307> 456 34<99 139> -LayerCount: 2 -Fore -SplineSet -490 136 m 1 - 490 128 471 30 460 26 c 0 - 413 10 364 -6 296 -6 c 0 - 155 -6 39 89 39 216 c 0 - 39 346 154 448 295 448 c 0 - 344 448 404 442 448 431 c 1 - 450 424 476 343 476 335 c 0 - 476 331 465 325 455 325 c 3 - 451 325 445 325 442 327 c 1 - 435 350 410 409 315 409 c 0 - 220 409 180 325 180 235 c 0 - 180 122 227 33 328 33 c 0 - 368 33 393 45 411 61 c 0 - 439 84 455 139 456 144 c 1 - 470 144 482 140 490 136 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/currency.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/currency.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/currency.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/currency.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: currency -Encoding: 164 164 99 -Width: 549 -Flags: W -HStem: 117 39<236 325> 445 39<224 312> -VStem: 95 91<213 388> 360 91<213 388> -LayerCount: 2 -Fore -SplineSet -281 156 m 0 - 330 156 360 214 360 287 c 0 - 360 377 319 445 268 445 c 0 - 219 445 186 385 186 312 c 0 - 186 222 230 156 281 156 c 0 -384 444 m 1 - 441 498 l 2 - 449 506 474 478 481 455 c 1 - 423 400 l 1 - 441 371 451 336 451 300 c 0 - 451 261 440 224 419 194 c 1 - 472 138 l 2 - 480 130 452 105 429 98 c 1 - 378 151 l 1 - 349 130 313 117 274 117 c 0 - 232 117 193 132 163 156 c 1 - 111 107 l 2 - 103 99 78 127 71 150 c 1 - 124 200 l 1 - 105 229 95 264 95 300 c 0 - 95 343 109 382 132 413 c 1 - 81 468 l 2 - 73 476 101 501 124 508 c 1 - 175 454 l 1 - 203 474 237 484 274 484 c 0 - 316 484 354 469 384 444 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/daggerdbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/daggerdbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/daggerdbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/daggerdbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: daggerdbl -Encoding: 8225 8225 210 -Width: 407 -Flags: W -HStem: 112 89<50 109 298 357> 146 24<111 180 227 296> 422 89<50 109 298 357> 452 24<111 180 227 296> 627 20G<193 214> -VStem: 158 90<-17 66 557 640> 181 45<14 146 171 254 272 350 369 452 477 609> -LayerCount: 2 -Fore -SplineSet -253 267 m 1x1a - 241 239 228 215 221 198 c 1 - 221 186 233 171 248 171 c 24x5c - 281 172 308 182 327 201 c 1 - 348 201 364 179 364 158 c 0 - 364 137 348 112 327 112 c 1x8c - 308 131 280 146 248 146 c 0 - 235 146 229 143 219 130 c 1 - 219 98 229 32 248 13 c 1 - 248 -8 225 -23 204 -23 c 0 - 182 -23 158 -8 158 13 c 1 - 177 32 188 98 188 130 c 1 - 178 143 172 146 159 146 c 16x4c - 127 146 99 131 80 112 c 1 - 59 112 43 137 43 158 c 0 - 43 179 59 201 80 201 c 1x8c - 99 182 126 172 159 171 c 24 - 174 171 186 186 186 198 c 1 - 179 215 164 243 153 267 c 1 - 167 279 181 304 181 312 c 1 - 181 321 160 349 153 356 c 1 - 164 380 179 408 186 425 c 1 - 186 437 174 452 159 452 c 24x5a - 126 451 99 441 80 422 c 1 - 59 422 43 444 43 465 c 0 - 43 486 59 511 80 511 c 1x2a - 99 492 127 477 159 477 c 8 - 172 477 178 480 188 493 c 1 - 188 525 177 591 158 610 c 1 - 158 631 182 646 204 646 c 0 - 225 646 248 631 248 610 c 1 - 229 591 219 525 219 493 c 1 - 229 480 235 477 248 477 c 0x1c - 280 477 308 492 327 511 c 1 - 348 511 364 486 364 465 c 0 - 364 444 348 422 327 422 c 1x2c - 308 441 281 451 248 452 c 24x1c - 233 452 221 437 221 425 c 1 - 228 408 241 384 253 356 c 1 - 246 349 226 320 226 312 c 1 - 226 304 239 279 253 267 c 1x1a -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dagger.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dagger.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dagger.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dagger.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: dagger -Encoding: 8224 8224 209 -Width: 387 -Flags: W -HStem: 422 89<40 99 288 348> 452 24<101 170 217 287> 627 20G<183 205> -VStem: 148 90<557 640> 176 35<389 450 478 594> 185 19<-23 83> -LayerCount: 2 -Fore -SplineSet -149 477 m 8x68 - 162 477 168 480 178 493 c 1 - 178 525 167 591 148 610 c 1 - 148 631 172 646 194 646 c 0 - 215 646 238 631 238 610 c 1 - 219 591 209 525 209 493 c 1 - 219 480 225 477 238 477 c 0x70 - 270 477 298 492 317 511 c 1 - 338 511 354 486 354 465 c 0 - 354 444 338 422 317 422 c 1xb0 - 298 441 271 451 238 452 c 24x70 - 223 452 211 437 211 425 c 1x68 - 218 408 231 384 243 356 c 1 - 222 221 223 180 203 -10 c 1 - 200 -17 199 -22 194 -23 c 1 - 189 -22 188 -15 185 -10 c 1x64 - 165 180 165 221 144 356 c 1 - 155 380 169 408 176 425 c 1 - 176 437 164 452 149 452 c 24x68 - 116 451 89 441 70 422 c 1 - 49 422 33 444 33 465 c 0 - 33 486 49 511 70 511 c 1xa8 - 89 492 117 477 149 477 c 8x68 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: dcaron -Encoding: 271 271 289 -Width: 564 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 822 -61 2 -Refer: 68 100 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" dcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Dcaron -Encoding: 270 270 288 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 139 25 2 -Refer: 36 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: dcaron.sc -Encoding: 65638 -1 548 -Width: 615 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 517 29 2 -Refer: 476 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: dcroat -Encoding: 273 273 382 -Width: 531 -Flags: W -HStem: -8 62<161 288> 27 31<467 513> 386 50<206 317> 515 36<189 514> 609 31<263 319> 659 20<453 457> -VStem: 31 139<119 291> 331 127<69 370 434 600> -LayerCount: 2 -Fore -SplineSet -512 515 m 1x3f - 484 515 204 515 190 515 c 1 - 186 515 185 542 191 551 c 1 - 219 551 498 551 512 551 c 1 - 516 551 516 524 512 515 c 1x3f -EndSplineSet -Refer: 68 100 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" dcroat.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: Dcroat -Encoding: 272 272 379 -Width: 747 -Flags: HW -LayerCount: 2 -Fore -Refer: 142 208 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcroat.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcroat.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dcroat.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dcroat.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dcroat.sc -Encoding: 65639 -1 549 -Width: 618 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 524 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/degree.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/degree.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/degree.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/degree.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: degree -Encoding: 176 176 110 -Width: 283 -Flags: W -HStem: 415 45<95 189> 588 44<94 189> -VStem: 33 46<477 572> 205 45<477 572> -LayerCount: 2 -Fore -SplineSet -79 524 m 0 - 79 489 107 460 142 460 c 0 - 177 460 205 489 205 524 c 0 - 205 559 177 588 142 588 c 0 - 107 588 79 559 79 524 c 0 -33 524 m 0 - 33 584 82 632 142 632 c 0 - 202 632 250 584 250 524 c 0 - 250 464 202 415 142 415 c 0 - 82 415 33 464 33 524 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Delta.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Delta.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Delta.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Delta.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: Delta -Encoding: 8710 8710 228 -Width: 649 -Flags: W -HStem: 0 74<113 477> -LayerCount: 2 -Fore -SplineSet -479 81 m 2 - 304 433 l 1 - 300 436 295 437 292 431 c 2 - 113 85 l 1 - 111 78 116 74 121 74 c 2 - 477 74 l 2 - 481 74 481 77 479 81 c 2 -337 599 m 1 - 632 14 l 1 - 632 14 626 8 624 0 c 1 - 27 0 l 1 - 23 6 23 9 19 16 c 1 - 320 599 l 1 - 337 599 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/d.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/d.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/d.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/d.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: d -Encoding: 100 100 68 -Width: 534 -Flags: W -HStem: -8 62<161 288> 27 31<467 513> 386 50<206 317> 609 31<263 319> 659 20G<453 457> -VStem: 31 139<119 291> 331 127<69 370 434 600> -LayerCount: 2 -Fore -SplineSet -287 436 m 0xbe - 308 436 318 435 326 434 c 1 - 330 434 331 448 331 456 c 0 - 331 480 331 513 331 545 c 0 - 331 564 331 575 324 592 c 0 - 319 604 278 609 266 609 c 1 - 262 609 261 637 266 641 c 1 - 375 651 451 679 454 679 c 1 - 460 678 468 667 469 662 c 1 - 469 662 458 618 458 563 c 2 - 458 105 l 26 - 458 90 458 78 467 68 c 0 - 476 58 502 59 511 59 c 1 - 513 57 514 53 514 46 c 0 - 514 40 512 33 508 27 c 1x7e - 450 21 353 -7 340 -7 c 0 - 336 -7 331 2 331 17 c 2 - 331 32 l 18 - 331 34 331 39 328 37 c 0 - 312 26 260 -8 208 -8 c 0 - 114 -8 31 80 31 195 c 0 - 31 361 198 436 287 436 c 0xbe -255 386 m 0 - 193 386 170 315 170 237 c 0 - 170 130 208 55 269 55 c 0xbe - 296 55 331 78 331 91 c 2 - 331 342 l 2 - 331 360 296 386 255 386 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" d.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: D -Encoding: 68 68 36 -Width: 743 -Flags: W -HStem: -3 41<36 103 254 423> 605 39<36 102 247 398> -VStem: 108 137<48 602> 546 155<202 448> -LayerCount: 2 -Fore -SplineSet -245 534 m 2 - 245 138 l 2 - 245 132 244 81 252 61 c 0 - 258 47 289 38 314 38 c 0 - 473 38 546 127 546 317 c 0 - 546 508 443 605 298 605 c 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 -327 645 m 0 - 553 645 702 528 702 328 c 0 - 702 99 531 -3 320 -3 c 0 - 279 -3 75 -2 37 -3 c 1 - 33 3 32 26 37 33 c 1 - 50 34 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0 - 218 642 269 644 327 645 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" d.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dieresis -Encoding: 168 168 103 -Width: 397 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 437 -53 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/divide.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/divide.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/divide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/divide.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: divide -Encoding: 247 247 181 -Width: 578 -Flags: W -HStem: 2 121<242 334> 218 57<58 522> 361 121<242 334> -VStem: 228 121<17 108 376 468> -LayerCount: 2 -Fore -SplineSet -228 422 m 0 - 228 455 255 482 288 482 c 0 - 321 482 349 455 349 422 c 0 - 349 389 321 361 288 361 c 0 - 255 361 228 389 228 422 c 0 -228 62 m 0 - 228 95 255 123 288 123 c 0 - 321 123 349 95 349 62 c 0 - 349 29 321 2 288 2 c 0 - 255 2 228 29 228 62 c 0 -62 218 m 1 - 57 218 56 223 56 233 c 0 - 56 237 57 262 66 274 c 1 - 516 274 l 2 - 522 274 524 267 524 261 c 0 - 524 240 519 228 511 218 c 1 - 62 218 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" divide.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/divide.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/divide.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/divide.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/divide.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: divide.sc -Encoding: 65630 -1 540 -Width: 549 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 181 247 N 1 0 0 1 -15 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dollar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dollar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dollar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dollar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: dollar -Encoding: 36 36 4 -Width: 505 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -10 39<217 302> 439 21G<415 418> 587 39<208 273> 633 20G<278 285> -VStem: 53 39<128 185> 60 124<451 531> 170 38<-35 4> 281 38<609 649> 334 123<86 180> 388 38<439 502> -LayerCount: 2 -Fore -SplineSet -259 626 m 0xf580 - 314 626 359 612 416 600 c 1 - 421 550 423 501 426 444 c 1 - 423 440 420 439 416 439 c 0 - 413 439 390 437 388 445 c 0 - 380 498 336 587 264 587 c 0 - 228 587 184 568 184 506 c 0xf540 - 184 448 257 392 319 353 c 0 - 381 313 457 287 457 163 c 0 - 457 60 356 -10 253 -10 c 0 - 198 -10 131 2 75 15 c 1 - 65 56 55 148 53 174 c 1 - 57 180 75 187 80 187 c 0 - 87 187 91 185 92 179 c 0xf980 - 101 128 159 29 243 29 c 0 - 278 29 334 46 334 121 c 0 - 334 194 243 243 196 275 c 0 - 128 321 60 359 60 457 c 0 - 60 554 162 626 259 626 c 0xf580 -281 652 m 17 - 289 652 319 652 319 645 c 9 - 208 -39 l 17 - 199 -39 170 -37 170 -30 c 9xf3 - 281 652 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotbelowcomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotbelowcomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotbelowcomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotbelowcomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: dotbelowcomb -Encoding: 803 803 275 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -188 145<-299 -197> -VStem: -320 145<-166 -64> -LayerCount: 2 -Fore -SplineSet --320 -115 m 0 - -320 -75 -288 -43 -248 -43 c 0 - -208 -43 -176 -75 -176 -115 c 0 - -176 -155 -208 -188 -248 -188 c 0 - -288 -188 -320 -155 -320 -115 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: dotlessi -Encoding: 305 305 242 -Width: 307 -Flags: W -HStem: -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> -VStem: 99 127<40 344> -LayerCount: 2 -Fore -SplineSet -226 302 m 2 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 251 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1 - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 228 377 227 363 c 0 - 226 342 226 308 226 302 c 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" dotlessi.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/dotlessi.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dotlessi.sc -Encoding: 65656 -1 566 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 481 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/d.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/d.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/d.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/d.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: d.sc -Encoding: 65566 -1 476 -Width: 615 -VWidth: 0 -Flags: W -HStem: -3 36<42 90 228 355> 405 36<42 90 226 339> -VStem: 96 127<48 394> 430 145<128 316> -LayerCount: 2 -Fore -SplineSet -223 358 m 2 - 223 98 l 2 - 223 94 223 61 228 48 c 0 - 232 39 252 33 270 33 c 0 - 379 33 430 93 430 217 c 0 - 430 342 359 405 259 405 c 0 - 243 405 229 404 226 397 c 0 - 223 389 223 377 223 358 c 2 -158 438 m 0 - 190 438 231 440 277 441 c 0 - 456 441 575 363 575 225 c 0 - 575 68 439 -3 272 -3 c 0 - 240 -3 74 -3 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 34 90 43 c 0 - 96 56 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 382 90 395 c 0 - 87 404 53 404 44 405 c 1 - 39 411 40 435 44 441 c 1 - 79 438 126 438 158 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: eacute -Encoding: 233 233 167 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 517 12 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" eacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Eacute -Encoding: 201 201 135 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 573 0 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: eacute.sc -Encoding: 65607 -1 517 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 489 26 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ebreve -Encoding: 277 277 293 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 484 13 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ebreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ebreve -Encoding: 276 276 292 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 538 0 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ebreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ebreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ebreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ebreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ebreve.sc -Encoding: 65641 -1 551 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 480 27 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecaron -Encoding: 283 283 297 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 487 12 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ecaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecaron -Encoding: 282 282 296 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 112 25 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecaron.sc -Encoding: 65644 -1 554 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 485 26 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecircumflex -Encoding: 234 234 168 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 484 13 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ecircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecircumflex -Encoding: 202 202 136 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 540 2 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ecircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecircumflex.sc -Encoding: 65608 -1 518 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 459 27 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edieresis -Encoding: 235 235 169 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 471 14 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" edieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edieresis -Encoding: 203 203 137 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 97 12 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edieresis.sc -Encoding: 65609 -1 519 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 451 28 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edotaccent -Encoding: 279 279 295 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 484 -202 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" edotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edotaccent -Encoding: 278 278 294 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 541 -6 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/edotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edotaccent.sc -Encoding: 65642 -1 552 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 478 -219 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/e.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/e.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/e.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/e.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: e -Encoding: 101 101 69 -Width: 449 -Flags: W -HStem: -9 82<225 326> 236 39<159 284> 396 40<196 276> -VStem: 31 127<144 236 275 290> 298 121<283 362> -LayerCount: 2 -Fore -SplineSet -159 275 m 1 - 168 274 262 280 285 283 c 0 - 297 284 298 293 298 299 c 11 - 298 344 282 396 238 396 c 3 - 180 396 159 308 159 275 c 1 -158 236 m 1 - 158 99 251 73 295 73 c 0 - 352 73 383 100 404 122 c 1 - 411 120 416 110 416 104 c 3 - 416 97 415 89 413 86 c 0 - 395 59 329 -9 236 -9 c 0 - 127 -9 31 67 31 195 c 0 - 31 318 136 437 248 437 c 0 - 376 437 419 346 419 289 c 0 - 419 268 408 249 393 248 c 0 - 327 242 230 238 158 236 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" e.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: E -Encoding: 69 69 37 -Width: 587 -Flags: W -HStem: -3 36<35 100> -2 43<252 458> 303 46<245 388> 605 36<36 102 247 433> -VStem: 108 137<49 300 350 602> 424 30<378 425> -LayerCount: 2 -Fore -SplineSet -177 642 m 0xbc - 218 642 437 647 495 648 c 1 - 502 599 514 548 523 504 c 1 - 520 501 507 499 500 499 c 0 - 493 499 487 502 485 507 c 0 - 464 561 439 605 379 605 c 2 - 298 605 l 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 359 l 2 - 245 353 266 349 287 349 c 2 - 338 349 l 2 - 396 349 408 360 424 417 c 0 - 425 422 429 425 436 425 c 0 - 443 425 451 423 454 420 c 1 - 454 232 l 1 - 452 230 444 229 437 229 c 0 - 430 229 424 231 423 236 c 0 - 411 283 398 292 389 296 c 0 - 377 301 352 303 315 303 c 0 - 288 303 245 301 245 289 c 2 - 245 138 l 2 - 245 132 244 81 252 61 c 0 - 258 47 291 41 316 41 c 0 - 380 41 l 2 - 417 41 449 51 471 73 c 0 - 492 94 507 122 524 166 c 0 - 525 170 530 172 537 172 c 0 - 547 172 564 169 567 166 c 1 - 548 113 521 41 514 -2 c 1x7c - 473 -2 75 -2 37 -3 c 1 - 33 3 32 26 37 33 c 1 - 50 34 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0xbc -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" e.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: egrave -Encoding: 232 232 166 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 471 13 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" egrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Egrave -Encoding: 200 200 134 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 519 0 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/egrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/egrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/egrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/egrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: egrave.sc -Encoding: 65606 -1 516 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 452 27 2 -Refer: 477 -1 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eight.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eight.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eight.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eight.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: eight -Encoding: 56 56 24 -Width: 532 -Flags: W -HStem: -6 41<223 320> 578 40<221 298> -VStem: 62 128<69 222> 76 126<434 540> 324 122<412 546> 343 128<87 183> -LayerCount: 2 -Fore -SplineSet -270 35 m 3xe4 - 318 35 343 71 343 115 c 3 - 343 190 263 248 234 269 c 0 - 229 273 228 273 226 273 c 0 - 224 273 222 274 221 272 c 0 - 200 246 189 201 189 152 c 27 - 189 96 212 35 270 35 c 3xe4 -262 578 m 3 - 226 578 202 543 202 500 c 3 - 202 433 262 390 286 377 c 0 - 289 375 294 372 298 372 c 0 - 301 372 303 374 304 375 c 0 - 322 401 324 436 324 475 c 3xd8 - 324 519 306 578 262 578 c 3 -264 618 m 27 - 354 618 446 571 446 478 c 3xd8 - 446 416 394 369 338 346 c 0 - 336 345 336 342 338 341 c 0 - 374 320 471 251 471 163 c 3 - 471 59 366 -6 262 -6 c 27 - 163 -6 62 32 62 149 c 3xe4 - 62 230 128 281 187 299 c 0 - 189 300 189 301 185 304 c 0 - 151 333 76 383 76 475 c 3 - 76 561 172 618 264 618 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eight.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eight.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eight.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eight.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: eight.prop -Encoding: 65705 -1 615 -Width: 510 -Flags: HW -LayerCount: 2 -Fore -Refer: 24 56 N 1 0 0 1 -8 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/element.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/element.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/element.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/element.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: element -Encoding: 8712 8712 230 -Width: 489 -Flags: W -HStem: 11 59<174 435> 185 60<120 392> 361 59<171 436> -VStem: 48 72<170 306> -LayerCount: 2 -Fore -SplineSet -399 215 m 0 - 399 189 392 185 391 185 c 2 - 125 185 l 2 - 124 185 119 184 120 181 c 0 - 132 119 174 69 239 69 c 2 - 423 69 l 2 - 423 69 438 62 438 28 c 0 - 438 19 431 11 431 11 c 1 - 241 11 l 2 - 132 11 48 107 48 216 c 0 - 48 322 125 420 231 420 c 2 - 431 420 l 1 - 431 420 438 411 438 399 c 0 - 438 369 423 361 423 361 c 1 - 231 361 l 2 - 169 361 131 310 120 249 c 0 - 120 246 122 244 125 244 c 2 - 392 244 l 1 - 392 243 399 232 399 215 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ellipsis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ellipsis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ellipsis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ellipsis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: ellipsis -Encoding: 8230 8230 213 -Width: 771 -Flags: W -HStem: -11 146<63 165 334 436 606 708> -VStem: 41 146<12 113> 312 146<12 113> 584 146<12 113> -LayerCount: 2 -Fore -SplineSet -730 62 m 0 - 730 23 698 -11 658 -11 c 27 - 617 -11 584 22 584 64 c 0 - 584 103 617 136 657 136 c 27 - 698 136 730 101 730 62 c 0 -459 62 m 0 - 459 23 427 -11 387 -11 c 27 - 346 -11 312 22 312 64 c 0 - 312 103 346 136 386 136 c 27 - 427 136 459 101 459 62 c 0 -188 62 m 0 - 188 23 155 -11 115 -11 c 27 - 74 -11 41 22 41 64 c 0 - 41 103 74 136 114 136 c 27 - 155 136 188 101 188 62 c 0 -EndSplineSet -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: emacron -Encoding: 275 275 291 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 488 42 2 -Refer: 69 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" emacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Emacron -Encoding: 274 274 290 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 533 11 2 -Refer: 37 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: emacron.sc -Encoding: 65640 -1 550 -Width: 464 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 461 57 2 -Refer: 477 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emdash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emdash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/emdash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/emdash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: emdash -Encoding: 8212 8212 201 -Width: 921 -Flags: W -HStem: 189 72<61 858> -LayerCount: 2 -Fore -SplineSet -57 198 m 0 - 57 200 59 262 70 262 c 2 - 861 262 l 2 - 863 262 867 261 867 253 c 0 - 867 235 859 200 858 196 c 0 - 856 190 852 189 852 189 c 1 - 62 189 l 1 - 62 189 57 188 57 198 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/endash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/endash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/endash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/endash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: endash -Encoding: 8211 8211 200 -Width: 546 -Flags: W -HStem: 189 72<61 482> -LayerCount: 2 -Fore -SplineSet -57 198 m 0 - 57 200 59 262 70 262 c 2 - 485 262 l 2 - 487 262 491 261 491 253 c 0 - 491 235 483 200 482 196 c 0 - 480 190 476 189 476 189 c 1 - 62 189 l 1 - 62 189 57 188 57 198 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: eng -Encoding: 331 331 395 -Width: 565 -Flags: W -HStem: -213 23<280 295> -4 36<26 91 234 292> 354 30<27 86> 356 1<228 312> 416 20G<202 223> -VStem: 99 127<40 331> 377 127<-42 327> -LayerCount: 2 -Fore -SplineSet -377 62 m 2xde - 377 219 l 2 - 377 289 364 356 312 356 c 0xde - 273 356 226 322 226 302 c 2 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 251 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1xee - 104 390 183 417 220 436 c 1 - 226 436 237 424 237 419 c 1 - 235 411 227 364 227 363 c 0 - 227 360 227 358 228 357 c 1 - 230 357 233 360 235 362 c 0 - 262 393 326 436 371 436 c 0 - 482 436 504 359 504 205 c 2 - 504 117 l 2 - 504 35 493 -47 457 -100 c 0 - 411 -166 325 -213 292 -213 c 1 - 285 -209 279 -202 279 -196 c 0 - 279 -194 279 -190 280 -189 c 0 - 284 -187 377 -139 377 62 c 2xde -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" eng.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: Eng -Encoding: 330 330 394 -Width: 741 -Flags: W -HStem: -213 60<328 453> -4 36<29 106 194 274> 617 29<35 89 647 720> 618 36<478 555 642 722> -VStem: 121 60<46 512> 569 60<238 604> -LayerCount: 2 -Fore -SplineSet -629 136 m 2xec - 629 -87 516 -213 338 -213 c 3 - 319 -213 291 -202 282 -195 c 1 - 275 -184 266 -174 266 -153 c 3 - 266 -120 294 -88 325 -88 c 3 - 369 -88 396 -153 426 -153 c 3 - 488 -153 539 -68 539 66 c 1 - 180 512 l 1 - 180 138 l 2 - 180 103 180 73 185 59 c 0 - 192 40 263 33 271 33 c 1 - 277 23 275 2 273 -4 c 1 - 234 -2 193 4 150 4 c 0 - 105 4 76 -2 31 -4 c 1 - 26 5 29 32 31 32 c 1 - 43 32 106 40 114 58 c 0 - 121 73 121 104 121 141 c 0 - 121 269 121 396 121 524 c 0 - 121 551 119 575 106 594 c 0 - 99 605 51 610 39 610 c 0 - 34 610 32 641 37 646 c 1 - 67 644 102 640 147 640 c 0 - 181 640 223 642 254 646 c 1xec - 291 570 445 394 567 237 c 1 - 569 244 569 263 569 277 c 2 - 569 510 l 0 - 569 547 569 578 562 593 c 0 - 554 611 491 618 479 618 c 1 - 477 618 474 645 479 654 c 1xdc - 524 652 553 646 598 646 c 0xec - 641 646 682 652 721 654 c 1xdc - 723 648 725 627 719 617 c 1 - 711 617 641 611 634 592 c 0 - 629 578 629 548 629 513 c 2 - 629 136 l 2xec -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eng.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eng.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eng.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eng.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: eng.sc -Encoding: 65669 -1 579 -Width: 565 -VWidth: 0 -Flags: W -HStem: -146 51<239 342> -4 33<34 94 156 216> 410 33<44 91 358 418 480 541> -VStem: 102 48<38 321> 425 48<188 402> -LayerCount: 2 -Fore -SplineSet -472 91 m 0 - 472 -32 385 -146 246 -146 c 0 - 231 -146 200 -141 193 -134 c 0 - 187 -127 175 -107 175 -85 c 0 - 175 -50 202 -33 223 -33 c 0 - 253 -33 281 -95 302 -95 c 0 - 339 -95 390 -38 400 51 c 1 - 150 321 l 1 - 150 109 l 2 - 150 86 151 59 155 48 c 0 - 160 35 209 30 214 30 c 1 - 220 21 218 2 216 -4 c 1 - 187 -2 155 3 123 3 c 0 - 90 3 69 -2 36 -4 c 1 - 31 4 34 29 36 29 c 0 - 44 29 89 34 94 46 c 0 - 99 56 102 87 102 111 c 0 - 102 195 102 254 102 339 c 0 - 102 372 101 383 92 396 c 0 - 86 405 56 410 48 410 c 0 - 43 410 41 438 46 443 c 1 - 68 441 87 438 121 438 c 0 - 146 438 178 440 201 443 c 1 - 225 392 347 281 425 188 c 1 - 425 330 l 2 - 425 353 424 381 420 392 c 0 - 415 405 366 409 361 409 c 1 - 355 418 357 437 359 443 c 1 - 388 441 420 437 452 437 c 0 - 485 437 506 441 539 443 c 1 - 544 435 541 410 539 410 c 0 - 531 410 485 406 480 394 c 0 - 475 384 472 352 472 328 c 0 - 472 244 472 176 472 91 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eogonek -Encoding: 281 281 384 -Width: 449 -Flags: W -HStem: -213 68<261 342> -9 82<225 315> 236 39<159 284> 396 40<196 276> -VStem: 31 127<144 236 275 290> 205 72<-163 -61> 298 121<283 362> -LayerCount: 2 -Fore -SplineSet -364 36 m 0 - 294 -19 277 -56 277 -99 c 0 - 277 -120 289 -145 325 -145 c 0 - 352 -145 388 -114 398 -106 c 1 - 401 -106 404 -109 404 -117 c 0 - 404 -122 400 -138 397 -142 c 0 - 382 -161 332 -213 277 -213 c 0 - 245 -213 205 -188 205 -137 c 0 - 205 -82 242 -31 271 -6 c 1 - 260 -8 248 -9 236 -9 c 0 - 127 -9 31 67 31 195 c 0 - 31 318 136 437 248 437 c 0 - 376 437 419 346 419 289 c 0 - 419 268 408 249 393 248 c 0 - 327 242 230 238 158 236 c 1 - 158 99 251 73 295 73 c 0 - 352 73 383 100 404 122 c 1 - 411 120 416 110 416 104 c 0 - 416 97 415 89 413 86 c 0 - 405 74 388 55 364 36 c 0 -159 275 m 1 - 168 274 262 280 285 283 c 0 - 297 284 298 293 298 299 c 0 - 298 344 282 396 238 396 c 0 - 180 396 159 308 159 275 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" eogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: Eogonek -Encoding: 280 280 383 -Width: 587 -Flags: W -HStem: -213 68<378 458> -3 36<35 100> -2 43<252 445> 303 46<245 388> 605 36<36 102 247 433> -VStem: 108 137<49 300 350 602> 322 72<-163 -81> 424 30<378 425> -LayerCount: 2 -Fore -SplineSet -177 642 m 0xdf - 218 642 437 647 495 648 c 1 - 502 599 514 548 523 504 c 1 - 520 501 507 499 500 499 c 0 - 493 499 487 502 485 507 c 0 - 464 561 439 605 379 605 c 2 - 298 605 l 2 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 359 l 2 - 245 353 266 349 287 349 c 2 - 338 349 l 2 - 396 349 408 360 424 417 c 0 - 425 422 429 425 436 425 c 0 - 443 425 451 423 454 420 c 1 - 454 232 l 1 - 452 230 444 229 437 229 c 0 - 430 229 424 231 423 236 c 0 - 411 283 398 292 389 296 c 0 - 377 301 352 303 315 303 c 0 - 288 303 245 301 245 289 c 2 - 245 138 l 2 - 245 132 244 81 252 61 c 0 - 258 47 291 41 316 41 c 2 - 380 41 l 2 - 417 41 449 51 471 73 c 0 - 492 94 507 122 524 166 c 0 - 525 170 530 172 537 172 c 0 - 547 172 564 169 567 166 c 1 - 548 113 521 41 514 -2 c 1 - 467 -15 394 -56 394 -99 c 0 - 394 -120 406 -145 442 -145 c 0 - 469 -145 505 -114 515 -106 c 1 - 518 -106 521 -109 521 -117 c 0 - 521 -122 517 -138 514 -142 c 0 - 499 -161 449 -213 394 -213 c 0 - 362 -213 322 -188 322 -137 c 0 - 322 -84 388 -23 446 -2 c 1xbf - 372 -2 254 -2 163 -2 c 0 - 100 -2 49 -3 37 -3 c 1 - 33 3 32 26 37 33 c 1 - 50 34 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0xdf -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: eogonek.sc -Encoding: 65643 -1 553 -Width: 463 -VWidth: 0 -Flags: W -HStem: -213 68<267 348> -2 39<45 89 227 339> 201 43<222 313> 406 33<45 89 225 352> -VStem: 95 127<49 200 244 397> 211 72<-163 -84> 333 26<256 287> -LayerCount: 2 -Fore -SplineSet -211 -137 m 0xf6 - 211 -83 298 -17 339 -2 c 1 - 241 -2 67 -2 46 -3 c 1 - 42 3 41 26 46 32 c 1 - 55 33 86 34 89 43 c 1 - 95 56 95 77 95 104 c 2 - 95 337 l 2xfa - 95 364 95 384 89 397 c 1 - 86 406 55 407 46 408 c 1 - 41 414 42 436 46 442 c 1 - 79 439 121 439 151 439 c 0 - 181 439 344 444 387 445 c 1 - 392 411 401 376 407 345 c 1 - 405 343 397 342 392 342 c 0 - 387 342 380 343 379 346 c 0 - 365 378 348 406 309 406 c 2 - 257 406 l 2 - 242 406 228 405 225 398 c 0 - 222 390 222 379 222 361 c 2 - 222 251 l 2 - 222 247 234 244 247 244 c 2 - 279 244 l 2 - 314 244 323 251 333 282 c 0 - 334 285 336 287 343 287 c 0 - 350 287 357 286 360 283 c 1 - 360 161 l 1 - 359 159 353 157 348 157 c 0 - 343 157 337 159 336 162 c 0 - 328 189 319 195 313 197 c 0 - 305 200 292 201 268 201 c 0 - 250 201 222 199 222 192 c 2 - 222 98 l 2 - 222 94 222 61 227 49 c 0 - 231 40 252 37 269 37 c 2 - 312 37 l 2 - 336 37 355 44 370 58 c 0 - 384 71 395 87 406 113 c 0 - 407 115 412 116 417 116 c 0 - 424 116 435 115 437 113 c 1 - 424 77 406 27 401 -2 c 1 - 361 -4 284 -63 284 -99 c 0 - 284 -120 295 -145 331 -145 c 0 - 358 -145 395 -114 405 -106 c 1 - 408 -106 411 -109 411 -117 c 0 - 411 -122 407 -138 404 -142 c 0 - 389 -161 339 -213 284 -213 c 0 - 252 -213 211 -188 211 -137 c 0xf6 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/equal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/equal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/equal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/equal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: equal -Encoding: 61 61 29 -Width: 545 -Flags: W -HStem: 131 58<78 472> 271 58<78 472> -LayerCount: 2 -Fore -SplineSet -465 131 m 1 - 308 131 237 131 69 131 c 1 - 57 131 71 183 85 188 c 9 - 478 188 l 17 - 492 188 479 138 465 131 c 1 -465 271 m 1 - 308 271 237 271 69 271 c 1 - 57 271 71 324 85 329 c 9 - 478 329 l 17 - 492 329 479 278 465 271 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" equal.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/equal.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/equal.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/equal.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/equal.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: equal.sc -Encoding: 65559 -1 469 -Width: 535 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 29 61 N 1 0 0 1 -6 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/e.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/e.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/e.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/e.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: e.sc -Encoding: 65567 -1 477 -Width: 464 -VWidth: 0 -Flags: W -HStem: -2 39<43 90 228 370> 201 43<223 313> 406 33<43 90 226 353> -VStem: 96 127<49 200 244 397> 334 26<256 287> -LayerCount: 2 -Fore -SplineSet -223 361 m 2 - 223 251 l 2 - 223 247 235 244 248 244 c 2 - 280 244 l 2 - 315 244 324 251 334 282 c 0 - 335 285 337 287 344 287 c 0 - 351 287 358 286 361 283 c 1 - 361 161 l 1 - 360 159 354 157 349 157 c 0 - 344 157 338 159 337 162 c 0 - 329 189 320 195 314 197 c 0 - 306 200 293 201 269 201 c 0 - 251 201 223 199 223 192 c 2 - 223 98 l 2 - 223 94 223 61 228 49 c 0 - 232 40 253 37 270 37 c 0 - 313 37 l 2 - 337 37 356 44 371 58 c 0 - 385 71 396 87 407 113 c 0 - 408 115 413 116 418 116 c 0 - 425 116 436 115 438 113 c 1 - 425 77 407 27 402 -2 c 1 - 372 -2 72 -2 44 -3 c 1 - 40 3 39 26 44 32 c 1 - 53 33 87 34 90 43 c 0 - 96 56 96 77 96 104 c 2 - 96 337 l 2 - 96 364 96 384 90 397 c 0 - 87 406 53 407 44 408 c 1 - 39 414 40 436 44 442 c 1 - 77 439 122 439 152 439 c 0 - 182 439 345 444 388 445 c 1 - 393 411 402 376 408 345 c 1 - 406 343 398 342 393 342 c 0 - 388 342 381 343 380 346 c 0 - 366 378 349 406 310 406 c 2 - 258 406 l 0 - 243 406 229 405 226 398 c 0 - 223 390 223 379 223 361 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: eth -Encoding: 240 240 174 -Width: 527 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -6 41<218 300> 396 41<213 303> 647 27<96 122> -VStem: 32 135<113 317> 342 136<138 349> -LayerCount: 2 -Fore -SplineSet -358 691 m 17 - 363 685 384 663 379 658 c 9 - 132 490 l 17 - 126 497 107 519 112 524 c 9 - 358 691 l 17 -258 396 m 0 - 189 396 167 296 167 207 c 0 - 167 94 221 35 259 35 c 0 - 324 35 342 132 342 220 c 0 - 342 270 334 325 313 366 c 1 - 301 383 285 396 258 396 c 0 -240 438 m 0 - 264 438 283 435 304 430 c 1 - 279 504 218 592 95 647 c 1 - 93 658 94 669 102 675 c 1 - 168 665 292 613 376 518 c 0 - 434 454 478 369 478 253 c 3 - 478 105 386 -6 257 -6 c 0 - 153 -6 32 58 32 213 c 0 - 32 364 145 438 240 438 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" eth.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Eth -Encoding: 208 208 142 -Width: 747 -Flags: W -HStem: -3 41<41 107 258 427> 301 39<31 376> 605 39<40 106 251 402> -VStem: 112 137<48 602> 550 155<202 448> -LayerCount: 2 -Fore -SplineSet -374 301 m 1 - 346 301 46 301 32 301 c 1 - 28 301 27 331 33 340 c 1 - 61 340 360 340 374 340 c 1 - 378 340 378 310 374 301 c 1 -EndSplineSet -Refer: 36 68 N 1 0 0 1 4 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eth.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eth.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/eth.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/eth.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: eth.sc -Encoding: 65614 -1 524 -Width: 618 -VWidth: 0 -Flags: W -HStem: -3 36<45 93 231 358> 198 36<27 316> 405 36<45 93 229 342> -VStem: 99 127<48 394> 433 145<128 316> -LayerCount: 2 -Fore -SplineSet -314 198 m 1 - 286 198 43 198 29 198 c 1 - 25 198 24 225 30 234 c 1 - 58 234 300 234 314 234 c 1 - 318 234 318 207 314 198 c 1 -EndSplineSet -Refer: 476 -1 N 1 0 0 1 3 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Euro.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Euro.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Euro.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Euro.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: Euro -Encoding: 8364 8364 221 -Width: 699 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -7 41<353 524> 246 41<50 419> 350 41<50 419> 587 40<333 510> -VStem: 77 146<197 346> 621 33<152 185> -LayerCount: 2 -Fore -SplineSet -59 287 m 1 - 75 287 412 287 423 287 c 1 - 437 276 419 250 413 246 c 1 - 39 246 l 17 - 33 252 50 287 59 287 c 1 -59 391 m 1 - 75 391 412 391 423 391 c 1 - 437 380 419 354 413 350 c 1 - 39 350 l 17 - 33 356 50 391 59 391 c 1 -655 181 m 1 - 655 170 630 43 615 37 c 0 - 554 16 495 -7 406 -7 c 0 - 225 -7 77 132 77 303 c 0 - 77 479 224 627 407 627 c 0 - 470 627 551 621 608 609 c 1 - 610 598 640 479 640 467 c 0 - 640 461 627 453 615 453 c 3 - 610 453 606 453 602 457 c 1 - 592 494 552 587 416 587 c 0 - 280 587 223 463 223 331 c 0 - 223 185 289 34 435 34 c 0 - 493 34 528 52 554 75 c 0 - 594 111 619 183 621 191 c 1 - 636 191 647 188 655 181 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclamdown -Encoding: 161 161 96 -Width: 241 -Flags: W -HStem: 286 146<70 173> -VStem: 48 146<309 410> 57 125<-190 60> -LayerCount: 2 -Fore -SplineSet -48 360 m 0xc0 - 48 399 80 433 120 433 c 27 - 161 433 194 399 194 357 c 0 - 194 318 161 286 121 286 c 27 - 80 286 48 321 48 360 c 0xc0 -117 -205 m 0 - 87 -205 57 -181 57 -139 c 0 - 57 -112 85 120 98 206 c 1 - 102 219 105 227 117 231 c 1 - 122 231 134 225 140 215 c 1 - 151 150 182 -90 182 -140 c 0xa0 - 182 -181 152 -205 117 -205 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" exclamdown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclamdown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: exclamdown.sc -Encoding: 65596 -1 506 -Width: 232 -VWidth: 2 -Flags: HW -LayerCount: 2 -Fore -Refer: 1 33 N -0.75 0 0 -0.69 217 429 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclam.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclam.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclam.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclam.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclam -Encoding: 33 33 1 -Width: 263 -Flags: W -HStem: -11 146<79 182> 607 20G<117 150> -VStem: 58 146<12 113> 70 125<362 612> -LayerCount: 2 -Fore -SplineSet -58 64 m 0xe0 - 58 103 91 136 131 136 c 27 - 172 136 204 101 204 62 c 0 - 204 23 172 -11 132 -11 c 27 - 91 -11 58 22 58 64 c 0xe0 -135 627 m 0 - 165 627 195 603 195 561 c 0 - 195 534 167 302 154 216 c 1 - 150 203 147 194 135 190 c 1 - 130 190 118 197 112 207 c 1 - 101 272 70 512 70 562 c 0xd0 - 70 603 100 627 135 627 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" exclam.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclam.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclam.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/exclam.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/exclam.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: exclam.sc -Encoding: 65552 -1 462 -Width: 232 -VWidth: 2 -Flags: HW -LayerCount: 2 -Fore -Refer: 1 33 N 0.75 0 0 0.69 19 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: f_b -Encoding: 65712 -1 635 -Width: 866 -Flags: W -HStem: -8 43<25 90 230 295 544 645> 366 72<572 646> 372 46<31 97 224 337> 659 20G<525 529> -VStem: 97 127<40 372 418 542> 403 127<49 345 392 582> 695 141<131 309> -LayerCount: 2 -Fore -SplineSet -530 562 m 2xbe - 530 405 l 2 - 530 400 530 388 536 393 c 0 - 551 405 600 438 633 438 c 0xde - 746 438 836 350 836 230 c 0 - 836 74 701 -8 574 -8 c 0 - 523 -8 476 15 451 15 c 0 - 433 15 422 11 415 8 c 1 - 412 8 392 25 392 32 c 1 - 399 50 403 84 403 148 c 2 - 403 438 l 2 - 403 468 404 529 392 562 c 0 - 376 605 340 628 301 625 c 0 - 247 621 233 582 225 529 c 0 - 220 495 220 455 221 418 c 1 - 228 418 303 418 335 418 c 0 - 339 418 341 410 341 405 c 0 - 341 396 328 379 318 372 c 1 - 289 372 256 372 224 372 c 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 9 - 97 433 l 2 - 97 567 184 672 293 675 c 0 - 341 676 357 652 403 647 c 0 - 494 648 524 679 526 679 c 1 - 532 678 540 667 541 662 c 1 - 541 662 530 601 530 562 c 2xbe -584 366 m 0 - 557 366 542 355 533 345 c 0 - 530 342 530 339 530 336 c 2 - 530 96 l 2 - 530 63 554 35 595 35 c 0 - 657 35 695 119 695 191 c 0 - 695 325 645 366 584 366 c 0 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f b -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,78 +0,0 @@ -StartChar: f_f_b -Encoding: 65713 -1 636 -Width: 1173 -Flags: W -HStem: -4 36<25 88 233 295 333 395 540 603 858 943> 366 72<880 953> 372 46<31 97 224 404 531 645> 659 20G<833 837> -VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<49 345 392 582> 1003 141<131 309> -LayerCount: 2 -Fore -SplineSet -404 418 m 1xbf - 404 433 l 2 - 404 459 408 484 414 507 c 1 - 387 512 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 486 221 418 c 1 - 404 418 l 1xbf -892 366 m 0xdf - 865 366 850 355 841 345 c 0 - 838 342 838 339 838 336 c 2 - 838 96 l 2 - 838 63 861 35 902 35 c 0 - 964 35 1003 119 1003 191 c 0 - 1003 325 953 366 892 366 c 0xdf -457 598 m 1 - 492 645 544 673 601 675 c 0 - 649 676 665 652 711 647 c 1 - 802 648 832 679 834 679 c 0 - 840 678 848 667 849 662 c 1 - 849 662 838 601 838 562 c 2 - 838 405 l 2 - 838 400 838 388 844 393 c 0 - 859 405 907 438 940 438 c 0xdf - 1053 438 1144 350 1144 230 c 0 - 1144 74 1009 -8 882 -8 c 0 - 831 -8 784 15 759 15 c 0 - 741 15 730 11 723 8 c 1 - 720 8 699 25 699 32 c 1 - 706 50 711 84 711 148 c 2 - 711 438 l 2 - 711 468 711 529 699 562 c 0 - 683 605 647 628 608 625 c 0 - 554 621 540 582 532 529 c 0 - 527 495 527 455 528 418 c 1 - 535 418 611 418 643 418 c 0 - 647 418 648 410 648 405 c 0 - 648 396 636 379 626 372 c 1 - 597 372 563 372 531 372 c 1 - 531 142 l 2 - 531 100 531 70 539 50 c 0 - 544 37 589 33 602 32 c 1 - 607 25 606 2 602 -4 c 1 - 564 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 142 404 285 404 372 c 1 - 224 372 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 1xbf - 98 608 214 648 294 653 c 0 - 362 657 429 642 457 598 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f b -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.ff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.ff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.ff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.ff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -StartChar: f.ff -Encoding: 65723 -1 898 -Width: 307 -Flags: HW -LayerCount: 2 -Back -SplineSet -606.4453125 681.640625 m 0 - 625.325195312 681.640625 646.159179688 678.385742188 668.9453125 671.875 c 1 - 694.3359375 658.528320312 707.03125 643.5546875 707.03125 626.953125 c 0 - 707.03125 609.375 702.555664062 593.75 693.603515625 580.078125 c 128 - 684.651367188 566.40625 672.526367188 559.5703125 657.2265625 559.5703125 c 0 - 650.390625 559.5703125 643.635742188 560.954101562 636.962890625 563.720703125 c 128 - 630.290039062 566.487304688 625.081054688 569.3359375 621.337890625 572.265625 c 128 - 617.594726562 575.1953125 612.548828125 579.508789062 606.201171875 585.205078125 c 128 - 599.853515625 590.901367188 595.377929688 594.7265625 592.7734375 596.6796875 c 0 - 580.729492188 606.4453125 567.708007812 611.328125 553.7109375 611.328125 c 0 - 545.8984375 611.328125 539.0625 603.596679688 533.203125 588.134765625 c 128 - 527.34375 572.672851562 524.4140625 553.7109375 524.4140625 531.25 c 0 - 524.4140625 486.328125 525.715820312 443.684570312 528.3203125 403.3203125 c 1 - 642.578125 403.3203125 l 2 - 646.484375 403.3203125 648.4375 399.088867188 648.4375 390.625 c 0 - 648.4375 386.393554688 645.99609375 380.696289062 641.11328125 373.53515625 c 128 - 636.23046875 366.374023438 631.184570312 361.002929688 625.9765625 357.421875 c 1 - 531.25 357.421875 l 1 - 531.25 141.6015625 l 2 - 531.25 94.4658203125 533.854492188 63.8671875 539.0625 49.8046875 c 0 - 542.317382812 41.015625 563.151367188 35.15625 601.5625 32.2265625 c 1 - 603.840820312 28.6455078125 604.899414062 22.4609375 604.736328125 13.671875 c 128 - 604.573242188 4.8828125 603.515625 -0.9765625 601.5625 -3.90625 c 1 - 557.291992188 0.6513671875 512.6953125 2.9296875 467.7734375 2.9296875 c 128 - 422.8515625 2.9296875 378.254882812 0.6513671875 333.984375 -3.90625 c 1 - 332.03125 -0.9765625 330.973632812 4.8828125 330.810546875 13.671875 c 128 - 330.647460938 22.4609375 331.706054688 28.6455078125 333.984375 32.2265625 c 1 - 372.395507812 35.15625 393.229492188 41.015625 396.484375 49.8046875 c 0 - 401.692382812 62.8251953125 404.296875 93.4248046875 404.296875 141.6015625 c 2 - 404.296875 357.421875 l 1 - 334.9609375 357.421875 l 1 - 331.706054688 358.723632812 330.078125 362.956054688 330.078125 370.1171875 c 1 - 338.541992188 381.8359375 348.958007812 392.903320312 361.328125 403.3203125 c 1 - 404.296875 403.3203125 l 1 - 404.296875 432.6171875 l 2 - 404.296875 464.518554688 411.376953125 496.174804688 425.537109375 527.587890625 c 128 - 439.697265625 559.000976562 457.112304688 585.693359375 477.783203125 607.666015625 c 128 - 498.454101562 629.638671875 520.426757812 647.4609375 543.701171875 661.1328125 c 128 - 566.975585938 674.8046875 587.890625 681.640625 606.4453125 681.640625 c 0 -EndSplineSet -Fore -SplineSet -370 403 m 1 - 221 403 l 1 - 219 434 220 465 225 494 c 0 - 236 560 257 596 289 604 c 0 - 318 611 344 594 369 552 c 0 - 386 523 402 508 417 507 c 128 - 432 506 447 514 459 530 c 128 - 471 546 473 566 462 589 c 128 - 451 612 431 629 400 640 c 128 - 369 651 339 656 310 654 c 128 - 281 652 259 650 243 646 c 0 - 202 636 168 610 140 570 c 128 - 112 530 98 474 97 403 c 1 - 54 403 l 1 - 42 393 30 382 22 370 c 1 - 22 363 24 358 27 357 c 1 - 97 357 l 1 - 97 142 l 2 - 97 95 94 64 89 50 c 0 - 86 41 64 35 26 32 c 1 - 24 28 23 23 23 14 c 128 - 23 5 24 -1 26 -4 c 1 - 70 1 115 3 160 3 c 128 - 205 3 250 1 294 -4 c 1 - 296 -1 297 5 297 14 c 128 - 297 23 296 28 294 32 c 1 - 256 35 234 41 231 50 c 0 - 226 63 224 94 224 142 c 2 - 224 357 l 1 - 370 357 l 1 - 370 403 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,60 +0,0 @@ -StartChar: f_f -Encoding: 65707 -1 630 -Width: 654 -Flags: W -HStem: -4 36<24 89 231 296 332 396 539 604> 372 46<31 97 224 404 531 645> 611 70<542 622> -VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> -LayerCount: 2 -Fore -SplineSet -404 418 m 1 - 404 433 l 2 - 404 458 409 484 417 507 c 1 - 388 508 370 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 486 221 418 c 1 - 404 418 l 1 -462 589 m 1 - 506 645 565 682 606 682 c 0 - 637 682 655 676 669 672 c 1 - 686 663 707 650 707 627 c 0 - 707 595 689 560 657 560 c 0 - 628 560 612 582 593 597 c 0 - 582 606 570 611 554 611 c 0 - 538 611 524 577 524 531 c 0 - 524 486 526 448 528 418 c 1 - 535 418 611 418 643 418 c 0 - 647 418 648 410 648 405 c 0 - 648 396 636 379 626 372 c 1 - 597 372 563 372 531 372 c 1 - 531 142 l 2 - 531 100 531 70 539 50 c 0 - 544 37 589 33 602 32 c 1 - 607 25 606 2 602 -4 c 1 - 564 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 142 404 285 404 372 c 1 - 224 372 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 1 - 98 608 214 648 294 653 c 0 - 366 658 438 639 462 589 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ -StartChar: f_f_h -Encoding: 65717 -1 640 -Width: 1194 -Flags: W -HStem: -4 36<24 89 231 296 332 396 539 604 638 703 846 904 928 981 1124 1189> 356 1<839 924> 372 46<31 97 224 404 531 645> 659 20G<833 837> -VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 331 357 583> 989 127<40 327> -LayerCount: 2 -Fore -SplineSet -404 372 m 1 - 224 372 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 1 - 98 608 214 648 294 653 c 0 - 362 657 429 642 457 598 c 1 - 492 645 544 673 601 675 c 0 - 649 676 665 652 711 647 c 1 - 802 648 832 679 834 679 c 0 - 840 678 848 667 849 662 c 1 - 849 662 838 601 838 562 c 2 - 838 363 l 2 - 838 360 838 358 839 357 c 1 - 841 357 844 360 846 362 c 0 - 873 393 938 436 983 436 c 0 - 1094 436 1116 359 1116 205 c 2 - 1116 142 l 2 - 1116 100 1116 70 1124 50 c 0 - 1129 37 1174 33 1187 32 c 1 - 1192 25 1191 2 1187 -4 c 1 - 1149 0 1094 3 1053 3 c 0 - 1012 3 969 0 931 -4 c 1 - 927 2 926 25 931 32 c 1 - 944 33 976 37 981 50 c 0 - 989 70 989 100 989 142 c 2 - 989 219 l 2 - 989 289 976 356 924 356 c 0 - 885 356 838 322 838 302 c 2 - 838 142 l 2 - 838 106 838 70 846 50 c 0 - 851 37 888 33 901 32 c 1 - 906 25 905 2 901 -4 c 1 - 863 0 815 3 774 3 c 0 - 733 3 679 0 641 -4 c 1 - 637 2 636 25 641 32 c 1 - 654 33 698 37 703 50 c 0 - 711 70 711 100 711 142 c 2 - 711 438 l 2 - 711 468 711 529 699 562 c 0 - 683 605 647 628 608 625 c 0 - 554 621 540 582 532 529 c 0 - 527 495 527 455 528 418 c 1 - 535 418 611 418 643 418 c 0 - 647 418 648 410 648 405 c 0 - 648 396 636 379 626 372 c 1 - 597 372 563 372 531 372 c 1 - 531 142 l 2 - 531 100 531 70 539 50 c 0 - 544 37 589 33 602 32 c 1 - 607 25 606 2 602 -4 c 1 - 564 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 142 404 285 404 372 c 1 -414 507 m 1 - 387 512 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 486 221 418 c 1 - 404 418 l 1 - 404 433 l 2 - 404 459 408 484 414 507 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f h -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ -StartChar: f_f_i -Encoding: 65709 -1 632 -Width: 921 -Flags: W -HStem: -4 36<24 89 231 296 333 397 540 605 640 705 848 906> 359 46<31 97 224 404 532 701> 416 20G<815 837> 634 49<580 681> -VStem: 97 127<40 359 405 524> 404 128<40 357 405 505> 701 124<531 614> 713 127<40 346> -LayerCount: 2 -Fore -SplineSet -457 598 m 1xfd - 498 656 561 683 632 683 c 0 - 714 683 817 654 825 574 c 0 - 828 542 809 506 774 507 c 0 - 719 509 709 554 701 576 c 0xfe - 688 612 675 634 617 634 c 0 - 550 634 524 471 529 403 c 1 - 644 403 l 2 - 721 403 797 417 834 436 c 1 - 841 434 851 422 851 419 c 1 - 848 411 842 377 841 363 c 0 - 840 342 840 308 840 302 c 2 - 840 142 l 2 - 840 106 840 70 848 50 c 0 - 853 37 890 33 903 32 c 1 - 908 25 907 2 903 -4 c 1 - 865 0 817 3 776 3 c 0 - 735 3 681 0 643 -4 c 1 - 639 2 638 25 643 32 c 1 - 656 33 700 37 705 50 c 0 - 713 70 713 100 713 142 c 2 - 713 254 l 2 - 713 264 712 319 704 334 c 0 - 693 355 645 357 627 357 c 2 - 627 357 564 357 532 357 c 1 - 532 142 l 2 - 532 100 532 70 540 50 c 0 - 545 37 590 33 603 32 c 1 - 608 25 607 2 603 -4 c 1 - 565 0 510 3 469 3 c 0 - 428 3 373 0 335 -4 c 1 - 331 2 330 25 335 32 c 1 - 348 33 392 37 397 50 c 0 - 405 70 405 100 405 142 c 2 - 405 142 405 271 404 359 c 1 - 224 359 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 272 97 359 c 1 - 71 359 52 359 27 359 c 1 - 22 361 22 368 22 372 c 1 - 32 386 42 395 54 405 c 1 - 67 405 87 405 97 405 c 1 - 98 595 214 648 294 653 c 0 - 361 657 429 641 457 598 c 1xfd -417 507 m 1 - 389 508 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 473 221 405 c 1 - 404 405 l 1 - 404 442 409 477 417 507 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f i -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ -StartChar: f.fi -Encoding: 65724 -1 899 -Width: 314 -Flags: HW -LayerCount: 2 -Back -SplineSet -289.0625 403.3203125 m 1 - 334.9609375 403.3203125 l 2 - 373.046875 403.3203125 409.586914062 406.331054688 444.580078125 412.353515625 c 128 - 479.573242188 418.375976562 506.510742188 426.106445312 525.390625 435.546875 c 1 - 528.645507812 434.5703125 532.2265625 431.965820312 536.1328125 427.734375 c 128 - 540.0390625 423.502929688 541.9921875 420.573242188 541.9921875 418.9453125 c 1 - 540.690429688 415.0390625 538.899414062 406.494140625 536.62109375 393.310546875 c 128 - 534.342773438 380.126953125 532.877929688 370.1171875 532.2265625 363.28125 c 1 - 531.575195312 348.958007812 531.25 328.450195312 531.25 301.7578125 c 2 - 531.25 141.6015625 l 2 - 531.25 93.4248046875 533.854492188 62.8251953125 539.0625 49.8046875 c 0 - 542.643554688 40.6904296875 561.198242188 34.8310546875 594.7265625 32.2265625 c 1 - 597.004882812 28.6455078125 598.063476562 22.4609375 597.900390625 13.671875 c 128 - 597.737304688 4.8828125 596.6796875 -0.9765625 594.7265625 -3.90625 c 1 - 550.456054688 0.6513671875 508.137695312 2.9296875 467.7734375 2.9296875 c 0 - 422.8515625 2.9296875 378.254882812 0.6513671875 333.984375 -3.90625 c 1 - 332.03125 -0.9765625 330.973632812 4.8828125 330.810546875 13.671875 c 128 - 330.647460938 22.4609375 331.706054688 28.6455078125 333.984375 32.2265625 c 1 - 372.395507812 35.15625 393.229492188 41.015625 396.484375 49.8046875 c 0 - 401.692382812 62.8251953125 404.296875 93.4248046875 404.296875 141.6015625 c 2 - 404.296875 253.90625 l 2 - 404.296875 296.223632812 401.3671875 322.916992188 395.5078125 333.984375 c 0 - 390.950195312 342.7734375 380.615234375 348.876953125 364.501953125 352.294921875 c 128 - 348.388671875 355.712890625 333.0078125 357.421875 318.359375 357.421875 c 2 - 289.0625 357.421875 l 1 - 289.0625 403.3203125 l 1 -EndSplineSet -Fore -SplineSet -318 357 m 25 - 224 357 l 1 - 224 142 l 2 - 224 95 226 64 231 50 c 0 - 234 41 256 35 294 32 c 1 - 296 28 297 23 297 14 c 128 - 297 5 296 -1 294 -4 c 1 - 250 1 205 3 160 3 c 128 - 115 3 70 1 26 -4 c 1 - 24 -1 23 5 23 14 c 128 - 23 23 24 28 26 32 c 1 - 64 35 86 41 89 50 c 0 - 94 63 97 94 97 142 c 2 - 97 357 l 1 - 27 357 l 1 - 24 358 22 363 22 370 c 1 - 30 382 42 393 54 403 c 1 - 76 403 90 404 97 406 c 1 - 98 542 143 629 234 666 c 0 - 261 677 288 683 315 683 c 128 - 342 683 366 681 387 677 c 128 - 408 673 428 667 447 659 c 128 - 466 651 482 639 495 625 c 128 - 508 611 514 594 516 576 c 128 - 518 558 515 541 505 527 c 128 - 495 513 482 506 466 507 c 0 - 431 508 407 529 395 569 c 0 - 388 593 378 611 366 620 c 0 - 354 630 335 635 309 634 c 0 - 275 633 249 596 232 523 c 0 - 222 481 218 440 221 403 c 1 - 318 403 l 25 - 318 357 l 25 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -StartChar: f_f_j -Encoding: 65719 -1 642 -Width: 905 -Flags: W -HStem: -213 23<616 630> -4 36<24 89 231 296 333 397 540 605> 359 46<31 97 224 404 532 701> 416 20G<815 837> 634 49<580 681> -VStem: 97 127<40 359 405 524> 404 128<40 357 405 505> 701 124<531 614> 713 127<-42 345> -LayerCount: 2 -Fore -SplineSet -644 403 m 2xff - 721 403 797 417 834 436 c 1 - 841 434 851 422 851 419 c 1 - 848 411 842 377 841 363 c 0 - 840 342 840 308 840 302 c 2 - 840 117 l 2 - 840 35 829 -47 793 -100 c 0 - 747 -166 661 -213 628 -213 c 1 - 621 -209 614 -202 614 -196 c 0 - 614 -194 614 -190 615 -189 c 0 - 619 -187 713 -139 713 62 c 2 - 713 254 l 2xfe80 - 713 264 712 319 703 334 c 0 - 692 355 645 357 627 357 c 2 - 532 357 l 1 - 532 142 l 2 - 532 100 532 70 540 50 c 0 - 545 37 590 33 603 32 c 1 - 608 25 607 2 603 -4 c 1 - 565 0 510 3 469 3 c 0 - 428 3 373 0 335 -4 c 1 - 331 2 330 25 335 32 c 1 - 348 33 392 37 397 50 c 0 - 405 70 405 100 405 142 c 2 - 405 142 405 271 404 359 c 1 - 224 359 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 359 l 1 - 71 359 52 359 27 359 c 1 - 22 361 22 368 22 372 c 1 - 32 386 42 395 54 405 c 1 - 67 405 87 405 97 405 c 1 - 98 595 214 648 294 653 c 0 - 361 657 429 641 457 598 c 1 - 498 656 561 683 632 683 c 0 - 714 683 817 654 825 574 c 0 - 828 542 809 506 774 507 c 0 - 719 509 709 554 701 576 c 0 - 688 612 675 634 617 634 c 0 - 550 634 524 471 529 403 c 1 - 644 403 l 2xff -416 507 m 1 - 388 509 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 473 221 405 c 1 - 404 405 l 1 - 404 443 408 477 416 507 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f j -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,88 +0,0 @@ -StartChar: f_f_k -Encoding: 65715 -1 638 -Width: 1201 -Flags: W -HStem: -4 36<25 88 233 296 332 395 540 603 639 702 847 910 1136 1197> 372 46<31 97 224 404 531 645> 396 33<933 993 1100 1173> 659 20G<833 837> -VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 196 230 582> -LayerCount: 2 -Fore -SplineSet -404 372 m 1xde - 224 372 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 1xde - 98 608 214 648 294 653 c 0 - 362 657 429 642 457 598 c 1 - 492 645 544 673 601 675 c 0 - 649 676 665 652 711 647 c 1 - 802 648 832 679 834 679 c 0 - 840 678 848 667 849 662 c 1 - 849 662 838 601 838 562 c 2 - 837 230 l 1 - 854 236 876 251 910 280 c 0 - 978 339 996 359 996 374 c 0 - 996 386 952 395 934 396 c 1 - 931 405 931 427 936 429 c 1 - 936 429 1022 425 1063 425 c 0 - 1098 425 1128 428 1172 430 c 1 - 1178 420 1175 399 1169 396 c 1xbe - 1139 393 1097 383 1072 365 c 0 - 1051 350 1003 303 943 250 c 1 - 1012 169 1027 158 1082 96 c 0 - 1136 36 1167 35 1198 35 c 1 - 1204 24 1199 8 1198 6 c 1 - 1182 0 1137 -6 1100 -6 c 0 - 1043 -6 995 18 966 52 c 2 - 966 52 899 124 851 184 c 0 - 847 190 838 196 838 196 c 1 - 838 142 l 2 - 838 100 838 70 846 50 c 0 - 851 37 895 33 908 32 c 1 - 913 25 912 2 908 -4 c 1 - 870 0 815 3 774 3 c 0 - 733 3 679 0 641 -4 c 1 - 637 2 636 25 641 32 c 1 - 654 33 698 37 703 50 c 0 - 711 70 711 100 711 142 c 2 - 711 438 l 2 - 711 468 711 529 699 562 c 0 - 683 605 647 628 608 625 c 0 - 554 621 540 582 532 529 c 0 - 527 495 527 455 528 418 c 1 - 535 418 611 418 643 418 c 0 - 647 418 648 410 648 405 c 0 - 648 396 636 379 626 372 c 1 - 597 372 563 372 531 372 c 1 - 531 142 l 2 - 531 100 531 70 539 50 c 0 - 544 37 589 33 602 32 c 1 - 607 25 606 2 602 -4 c 1 - 564 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 142 404 285 404 372 c 1xde -414 507 m 1 - 387 512 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 486 221 418 c 1 - 404 418 l 1 - 404 433 l 2 - 404 459 408 484 414 507 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f k -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,71 +0,0 @@ -StartChar: f_f_l -Encoding: 65711 -1 634 -Width: 923 -Flags: W -HStem: -4 36<24 89 231 296 332 396 539 604 638 703 846 910> 372 46<31 97 224 404 531 645> 659 20G<833 837> -VStem: 97 127<40 372 418 534> 404 127<40 372 418 506> 711 127<40 582> -LayerCount: 2 -Fore -SplineSet -404 418 m 1 - 404 433 l 2 - 404 459 408 484 414 507 c 1 - 387 512 369 558 354 576 c 0 - 332 602 307 608 289 604 c 0 - 237 591 216 486 221 418 c 1 - 404 418 l 1 -457 598 m 1 - 492 645 544 673 601 675 c 0 - 649 676 665 652 711 647 c 1 - 802 648 832 679 834 679 c 0 - 840 678 848 667 849 662 c 1 - 849 662 838 601 838 562 c 2 - 838 562 824 305 838 142 c 1 - 838 100 838 70 846 50 c 0 - 851 37 895 33 908 32 c 1 - 913 25 912 2 908 -4 c 1 - 870 0 815 3 774 3 c 0 - 733 3 679 0 641 -4 c 1 - 637 2 636 25 641 32 c 1 - 654 33 698 37 703 50 c 0 - 711 70 711 100 711 142 c 2 - 711 438 l 2 - 711 468 711 529 699 562 c 0 - 683 605 647 628 608 625 c 0 - 554 621 540 582 532 529 c 0 - 527 495 527 455 528 418 c 1 - 535 418 611 418 643 418 c 0 - 647 418 648 410 648 405 c 0 - 648 396 636 379 626 372 c 1 - 597 372 563 372 531 372 c 1 - 531 142 l 2 - 531 100 531 70 539 50 c 0 - 544 37 589 33 602 32 c 1 - 607 25 606 2 602 -4 c 1 - 564 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 142 404 285 404 372 c 1 - 224 372 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 1 - 98 608 214 648 294 653 c 0 - 362 657 429 642 457 598 c 1 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f l -LCarets2: 2 0 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.fl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.fl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.fl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.fl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,73 +0,0 @@ -StartChar: f.fl -Encoding: 65726 -1 901 -Width: 322 -Flags: HW -LayerCount: 2 -Back -SplineSet -408.69140625 544.921875 m 2 - 408.69140625 565.104492188 406.413085938 580.729492188 401.85546875 591.796875 c 0 - 399.577148438 597.004882812 391.438476562 601.237304688 377.44140625 604.4921875 c 128 - 363.444335938 607.747070312 352.05078125 609.375 343.26171875 609.375 c 0 - 341.959960938 609.375 340.983398438 611.735351562 340.33203125 616.455078125 c 128 - 339.680664062 621.174804688 339.599609375 626.057617188 340.087890625 631.103515625 c 128 - 340.576171875 636.149414062 341.633789062 639.323242188 343.26171875 640.625 c 1 - 363.76953125 642.578125 384.114257812 645.182617188 404.296875 648.4375 c 128 - 424.479492188 651.692382812 441.813476562 655.029296875 456.298828125 658.447265625 c 128 - 470.784179688 661.865234375 483.723632812 665.120117188 495.1171875 668.212890625 c 128 - 506.510742188 671.305664062 515.380859375 673.828125 521.728515625 675.78125 c 128 - 528.076171875 677.734375 531.413085938 678.7109375 531.73828125 678.7109375 c 0 - 534.342773438 678.385742188 537.272460938 676.188476562 540.52734375 672.119140625 c 128 - 543.782226562 668.049804688 545.735351562 664.713867188 546.38671875 662.109375 c 1 - 539.225585938 621.745117188 535.64453125 588.541992188 535.64453125 562.5 c 2 - 535.64453125 141.6015625 l 2 - 535.64453125 93.4248046875 538.249023438 62.8251953125 543.45703125 49.8046875 c 0 - 546.711914062 41.015625 567.545898438 35.15625 605.95703125 32.2265625 c 1 - 608.235351562 28.6455078125 609.293945312 22.4609375 609.130859375 13.671875 c 128 - 608.967773438 4.8828125 607.91015625 -0.9765625 605.95703125 -3.90625 c 1 - 561.360351562 0.6513671875 516.764648438 2.9296875 472.16796875 2.9296875 c 128 - 427.571289062 2.9296875 382.975585938 0.6513671875 338.37890625 -3.90625 c 1 - 336.42578125 -0.9765625 335.368164062 4.8828125 335.205078125 13.671875 c 128 - 335.041992188 22.4609375 336.100585938 28.6455078125 338.37890625 32.2265625 c 1 - 376.790039062 35.15625 397.624023438 41.015625 400.87890625 49.8046875 c 0 - 406.086914062 62.8251953125 408.69140625 93.4248046875 408.69140625 141.6015625 c 2 - 408.69140625 544.921875 l 2 -EndSplineSet -Fore -SplineSet -248 593 m 0 - 237 581 230 560 225 529 c 0 - 221 502 219 460 221 403 c 1 - 335 403 l 2 - 339 403 341 399 341 391 c 0 - 341 387 338 381 333 374 c 128 - 328 367 323 361 318 357 c 1 - 224 357 l 1 - 224 142 l 2 - 224 95 226 64 231 50 c 0 - 234 41 256 35 294 32 c 1 - 296 28 297 23 297 14 c 128 - 297 5 296 -1 294 -4 c 1 - 250 1 205 3 160 3 c 128 - 115 3 70 1 26 -4 c 1 - 24 -1 23 5 23 14 c 128 - 23 23 24 28 26 32 c 1 - 64 35 86 41 89 50 c 0 - 94 64 97 95 97 142 c 2 - 97 357 l 1 - 27 357 l 1 - 24 358 22 363 22 370 c 1 - 30 382 42 393 54 403 c 1 - 97 403 l 1 - 97 433 l 2 - 97 498 116 555 154 603 c 0 - 188 647 235 669 293 670 c 24 - 325 671 349 669 365 664 c 0 - 439 643 475 609 474 563 c 0 - 473 519 464 493 447 486 c 0 - 430 478 420 481 417 493 c 0 - 413 510 403 532 387 561 c 0 - 377 579 361 594 339 607 c 0 - 305 627 275 622 248 593 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -StartChar: f -Encoding: 102 102 70 -Width: 346 -Flags: HW -HStem: -4 36<24 89 231 296> 372 46<31 97 224 337> 611 70<235 314> -VStem: 97 127<40 372 418 528> -LayerCount: 2 -Back -SplineSet -298.828125 681.640625 m 0 - 317.708007812 681.640625 338.541992188 678.385742188 361.328125 671.875 c 1 - 386.71875 658.528320312 399.4140625 643.5546875 399.4140625 626.953125 c 0 - 399.4140625 609.375 394.938476562 593.75 385.986328125 580.078125 c 128 - 377.034179688 566.40625 364.909179688 559.5703125 349.609375 559.5703125 c 0 - 342.7734375 559.5703125 336.018554688 560.954101562 329.345703125 563.720703125 c 128 - 322.672851562 566.487304688 317.463867188 569.3359375 313.720703125 572.265625 c 128 - 309.977539062 575.1953125 304.931640625 579.508789062 298.583984375 585.205078125 c 128 - 292.236328125 590.901367188 287.760742188 594.7265625 285.15625 596.6796875 c 0 - 273.112304688 606.4453125 260.090820312 611.328125 246.09375 611.328125 c 0 - 238.28125 611.328125 231.4453125 601.969726562 225.5859375 583.251953125 c 128 - 219.7265625 564.534179688 216.796875 543.9453125 216.796875 521.484375 c 0 - 216.796875 483.073242188 218.098632812 443.684570312 220.703125 403.3203125 c 1 - 334.9609375 403.3203125 l 2 - 338.8671875 403.3203125 340.8203125 399.088867188 340.8203125 390.625 c 0 - 340.8203125 386.393554688 338.37890625 380.696289062 333.49609375 373.53515625 c 128 - 328.61328125 366.374023438 323.567382812 361.002929688 318.359375 357.421875 c 1 - 223.6328125 357.421875 l 1 - 223.6328125 141.6015625 l 2 - 223.6328125 94.4658203125 226.237304688 63.8671875 231.4453125 49.8046875 c 0 - 234.700195312 41.015625 255.534179688 35.15625 293.9453125 32.2265625 c 1 - 296.223632812 28.6455078125 297.282226562 22.4609375 297.119140625 13.671875 c 128 - 296.956054688 4.8828125 295.8984375 -0.9765625 293.9453125 -3.90625 c 1 - 249.674804688 0.6513671875 205.078125 2.9296875 160.15625 2.9296875 c 128 - 115.234375 2.9296875 70.6376953125 0.6513671875 26.3671875 -3.90625 c 1 - 24.4140625 -0.9765625 23.3564453125 4.8828125 23.193359375 13.671875 c 128 - 23.0302734375 22.4609375 24.0888671875 28.6455078125 26.3671875 32.2265625 c 1 - 64.7783203125 35.15625 85.6123046875 41.015625 88.8671875 49.8046875 c 0 - 94.0751953125 62.8251953125 96.6796875 93.4248046875 96.6796875 141.6015625 c 2 - 96.6796875 357.421875 l 1 - 27.34375 357.421875 l 1 - 24.0888671875 358.723632812 22.4609375 362.956054688 22.4609375 370.1171875 c 1 - 30.9248046875 381.8359375 41.3408203125 392.903320312 53.7109375 403.3203125 c 1 - 96.6796875 403.3203125 l 1 - 96.6796875 432.6171875 l 2 - 96.6796875 464.518554688 103.759765625 496.174804688 117.919921875 527.587890625 c 128 - 132.080078125 559.000976562 149.495117188 585.693359375 170.166015625 607.666015625 c 128 - 190.836914062 629.638671875 212.809570312 647.4609375 236.083984375 661.1328125 c 128 - 259.358398438 674.8046875 280.2734375 681.640625 298.828125 681.640625 c 0 -EndSplineSet -Fore -SplineSet -299 682 m 0 - 330 682 347 676 361 672 c 1 - 378 663 399 650 399 627 c 27 - 399 595 382 560 350 560 c 19 - 321 560 304 582 285 597 c 0 - 274 606 262 611 246 611 c 0 - 230 611 217 577 217 531 c 0 - 217 486 219 433 221 403 c 1 - 228 403 303 403 335 403 c 0 - 339 403 341 395 341 390 c 0 - 341 381 328 364 318 357 c 1 - 289 357 256 357 224 357 c 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 270 97 357 c 1 - 71 357 52 357 27 357 c 1 - 22 359 22 366 22 370 c 1 - 32 384 42 393 54 403 c 1 - 67 403 87 403 97 403 c 9 - 97 433 l 2 - 97 567 226 682 299 682 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" f.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: F -Encoding: 70 70 38 -Width: 536 -Flags: W -HStem: -4 36<35 100 252 326> 299 46<245 388> 605 36<36 102 247 433> -VStem: 108 137<41 296 346 602> 424 30<374 421> -LayerCount: 2 -Fore -SplineSet -177 642 m 0 - 218 642 437 647 495 648 c 1 - 502 599 514 548 523 504 c 1 - 520 501 507 499 500 499 c 0 - 493 499 487 502 485 507 c 0 - 464 561 439 605 379 605 c 2 - 298 605 l 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 355 l 2 - 245 349 266 345 287 345 c 2 - 338 345 l 2 - 396 345 408 356 424 413 c 0 - 425 418 429 421 436 421 c 0 - 443 421 451 419 454 416 c 1 - 454 229 l 1 - 452 227 444 225 437 225 c 0 - 430 225 424 227 423 232 c 0 - 411 279 398 288 389 292 c 0 - 377 297 352 299 315 299 c 0 - 288 299 245 297 245 285 c 2 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 311 33 324 32 c 1 - 329 25 328 2 324 -4 c 1 - 286 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" f.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ -StartChar: f_h -Encoding: 65716 -1 639 -Width: 886 -Flags: W -HStem: -4 36<24 89 231 296 331 396 538 596 621 674 816 881> 356 1<531 616> 372 46<31 97 224 337> 659 20G<525 529> -VStem: 97 127<40 372 418 542> 403 127<40 331 357 583> 682 127<40 327> -LayerCount: 2 -Fore -SplineSet -530 562 m 2 - 530 363 l 0 - 530 360 530 358 531 357 c 1 - 533 357 536 360 538 362 c 0 - 565 393 631 436 676 436 c 0 - 787 436 809 359 809 205 c 2 - 809 142 l 2 - 809 100 808 70 816 50 c 0 - 821 37 866 33 879 32 c 1 - 884 25 883 2 879 -4 c 1 - 841 0 786 3 745 3 c 0 - 704 3 661 0 623 -4 c 1 - 619 2 618 25 623 32 c 1 - 636 33 669 37 674 50 c 0 - 682 70 682 100 682 142 c 2 - 682 219 l 2 - 682 289 668 356 616 356 c 0 - 577 356 530 322 530 302 c 2 - 530 142 l 2 - 530 106 530 70 538 50 c 0 - 543 37 581 33 594 32 c 1 - 599 25 598 2 594 -4 c 1 - 556 0 508 3 467 3 c 0 - 426 3 371 0 333 -4 c 1 - 329 2 328 25 333 32 c 1 - 346 33 391 37 396 50 c 0 - 404 70 403 100 403 142 c 2 - 403 438 l 2 - 403 468 404 529 392 562 c 0 - 376 605 340 628 301 625 c 0 - 247 621 233 582 225 529 c 0 - 220 495 220 455 221 418 c 1 - 228 418 303 418 335 418 c 0 - 339 418 341 410 341 405 c 0 - 341 396 328 379 318 372 c 1 - 289 372 256 372 224 372 c 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 9 - 97 433 l 2 - 97 567 184 672 293 675 c 0 - 341 676 357 652 403 647 c 0 - 494 648 524 679 526 679 c 1 - 532 678 540 667 541 662 c 1 - 541 662 530 601 530 562 c 2 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f h -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: f_i -Encoding: 65708 -1 631 -Width: 613 -Flags: W -HStem: -4 36<24 89 231 296 332 396 539 597> 357 46<31 97 224 392> 416 20G<507 529> 634 49<271 372> -VStem: 97 127<40 357> 393 124<531 614> 404 127<40 346> -LayerCount: 2 -Fore -SplineSet -97 406 m 1xfa - 98 596 196 683 323 683 c 0 - 405 683 509 654 517 574 c 0 - 520 542 501 506 466 507 c 0 - 411 509 401 554 393 576 c 0xfc - 380 612 367 634 309 634 c 0 - 242 634 216 471 221 403 c 1 - 335 403 l 2 - 412 403 488 417 525 436 c 1 - 532 434 542 422 542 419 c 1 - 539 411 533 377 532 363 c 0 - 531 342 531 308 531 302 c 2 - 531 142 l 2 - 531 106 531 70 539 50 c 0 - 544 37 582 33 595 32 c 1 - 600 25 599 2 595 -4 c 1 - 557 0 509 3 468 3 c 0 - 427 3 372 0 334 -4 c 1 - 330 2 329 25 334 32 c 1 - 347 33 391 37 396 50 c 0 - 404 70 404 100 404 142 c 2 - 404 254 l 2 - 404 264 404 319 396 334 c 0 - 385 355 336 357 318 357 c 2 - 224 357 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 357 l 1 - 71 357 52 357 27 357 c 1 - 22 359 22 366 22 370 c 1 - 32 384 42 393 54 403 c 1 - 67 403 87 403 97 406 c 1xfa -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f i -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/figuredash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/figuredash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/figuredash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/figuredash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: figuredash -Encoding: 8210 8210 199 -Width: 543 -Flags: W -HStem: 189 72<59 480> -LayerCount: 2 -Fore -SplineSet -55 198 m 0 - 55 200 57 262 68 262 c 2 - 483 262 l 2 - 485 262 489 261 489 253 c 0 - 489 235 481 200 480 196 c 0 - 478 190 474 189 474 189 c 1 - 61 189 l 1 - 61 189 55 188 55 198 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/five.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/five.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/five.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/five.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: five -Encoding: 53 53 21 -Width: 532 -Flags: W -HStem: -6 41<203 303> 320 93<168 318> 515 105<185 399> 611 20G<418 427> -VStem: 341 125<134 249> -LayerCount: 2 -Fore -SplineSet -271 413 m 0xe8 - 367 413 466 328 466 225 c 0 - 466 87 335 -6 210 -6 c 0 - 147 -6 98 14 78 30 c 1 - 71 39 66 62 66 72 c 0 - 66 95 84 124 117 124 c 0 - 143 124 164 97 180 78 c 0 - 198 57 224 35 249 35 c 0 - 310 35 341 86 341 174 c 0 - 341 263 262 320 206 320 c 0 - 144 320 126 311 116 307 c 1 - 110 307 106 320 106 326 c 1 - 107 329 153 571 161 620 c 1 - 203 620 273 620 335 620 c 0xe8 - 376 620 411 628 425 631 c 1xd8 - 430 629 438 628 438 617 c 0 - 438 600 408 536 401 523 c 1 - 350 518 297 517 255 516 c 0 - 224 515 199 515 189 515 c 1 - 187 505 167 400 167 400 c 1 - 191 406 235 413 271 413 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/five.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/five.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/five.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/five.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: five.prop -Encoding: 65702 -1 612 -Width: 471 -Flags: HW -LayerCount: 2 -Fore -Refer: 21 53 N 1 0 0 1 -35 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: f_j -Encoding: 65718 -1 641 -Width: 596 -Flags: W -HStem: -213 23<307 322> -4 36<24 89 231 296> 357 46<31 97 224 392> 416 20G<507 529> 634 49<271 372> -VStem: 97 127<40 357> 393 124<531 614> 404 127<-42 345> -LayerCount: 2 -Fore -SplineSet -525 436 m 1xfe - 532 434 542 422 542 419 c 1 - 539 411 533 377 532 363 c 0 - 531 342 531 308 531 302 c 2 - 531 117 l 2 - 531 35 520 -47 484 -100 c 0 - 438 -166 352 -213 319 -213 c 1 - 312 -209 306 -202 306 -196 c 0 - 306 -194 306 -190 307 -189 c 0 - 311 -187 404 -139 404 62 c 2 - 404 254 l 2xfd - 404 264 404 319 395 334 c 0 - 384 355 336 357 318 357 c 2 - 224 357 l 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 357 l 1 - 71 357 52 357 27 357 c 1 - 22 359 22 366 22 370 c 1 - 32 384 42 393 54 403 c 1 - 67 403 87 403 97 406 c 1 - 98 596 196 683 323 683 c 0 - 405 683 509 654 517 574 c 0 - 520 542 501 506 466 507 c 0 - 411 509 401 554 393 576 c 0 - 380 612 367 634 309 634 c 0 - 242 634 216 471 221 403 c 1 - 335 403 l 2 - 412 403 488 417 525 436 c 1xfe -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f j -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ -StartChar: f_k -Encoding: 65714 -1 637 -Width: 893 -Flags: W -HStem: -4 36<25 88 233 296 331 394 539 602 828 890> 372 46<31 97 224 337> 396 34<625 686 791 866> 659 20G<525 529> -VStem: 97 127<40 372 418 542> 403 127<40 196 230 582> -LayerCount: 2 -Fore -SplineSet -530 562 m 2xdc - 529 230 l 1 - 546 236 569 251 603 280 c 0 - 671 339 688 359 688 374 c 0 - 688 386 644 395 626 396 c 1 - 623 405 623 427 628 429 c 1 - 628 429 715 425 756 425 c 0 - 791 425 820 428 864 430 c 1 - 870 420 867 399 861 396 c 1xbc - 831 393 790 383 765 365 c 0 - 744 350 696 303 636 250 c 1 - 705 169 719 158 774 96 c 0 - 828 36 860 35 891 35 c 1 - 897 24 892 8 891 6 c 1 - 875 0 829 -6 792 -6 c 0 - 735 -6 687 18 658 52 c 2 - 658 52 591 124 543 184 c 0 - 539 190 530 196 530 196 c 1 - 530 142 l 2 - 530 100 530 70 538 50 c 0 - 543 37 588 33 601 32 c 1 - 606 25 605 2 601 -4 c 1 - 563 0 508 3 467 3 c 0 - 426 3 371 0 333 -4 c 1 - 329 2 328 25 333 32 c 1 - 346 33 391 37 396 50 c 0 - 404 70 403 100 403 142 c 2 - 403 438 l 2 - 403 468 404 529 392 562 c 0 - 376 605 340 628 301 625 c 0 - 247 621 233 582 225 529 c 0 - 220 495 220 455 221 418 c 1 - 228 418 303 418 335 418 c 0 - 339 418 341 410 341 405 c 0 - 341 396 328 379 318 372 c 1 - 289 372 256 372 224 372 c 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 9 - 97 433 l 2 - 97 567 184 672 293 675 c 0 - 341 676 357 652 403 647 c 0 - 494 648 524 679 526 679 c 1 - 532 678 540 667 541 662 c 1 - 541 662 530 601 530 562 c 2xdc -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f k -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: f_l -Encoding: 65710 -1 633 -Width: 616 -Flags: W -HStem: -4 36<24 89 231 296 331 396 538 603> 372 46<31 97 224 337> 659 20G<525 529> -VStem: 97 127<40 372 418 542> 403 127<40 582> -LayerCount: 2 -Fore -SplineSet -225 529 m 0 - 220 495 220 455 221 418 c 1 - 228 418 303 418 335 418 c 0 - 339 418 341 410 341 405 c 0 - 341 396 328 379 318 372 c 1 - 289 372 256 372 224 372 c 1 - 224 142 l 2 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 9 - 97 433 l 2 - 97 567 184 672 293 675 c 0 - 341 676 357 652 403 647 c 0 - 494 648 524 679 526 679 c 1 - 532 678 540 667 541 662 c 1 - 541 662 530 601 530 562 c 0 - 530 562 516 305 530 142 c 18 - 530 100 530 70 538 50 c 0 - 543 37 588 33 601 32 c 1 - 606 25 605 2 601 -4 c 1 - 563 0 508 3 467 3 c 0 - 426 3 371 0 333 -4 c 1 - 329 2 328 25 333 32 c 1 - 346 33 391 37 396 50 c 0 - 404 70 403 100 403 142 c 2 - 403 438 l 2 - 403 468 404 529 392 562 c 0 - 376 605 340 628 301 625 c 0 - 247 621 233 582 225 529 c 0 -EndSplineSet -Ligature2: "'liga' Standard Ligatures lookup 0-1" f l -LCarets2: 1 0 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/font.props fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/font.props 1970-01-01 00:00:00.000000000 +0000 @@ -1,303 +0,0 @@ -SplineFontDB: 3.0 -FontName: AmiriLatin-Bold -FullName: Amiri Latin Bold -FamilyName: Amiri Latin -Weight: Bold -Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. -Version: 0.8 -ItalicAngle: 0 -UnderlinePosition: -102 -UnderlineWidth: 51 -Ascent: 800 -Descent: 200 -InvalidEm: 0 -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -FSType: 0 -OS2Version: 0 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 1 -CreationTime: 1273891947 -PfmFamily: 17 -TTFWeight: 700 -TTFWidth: 5 -LineGap: 90 -VLineGap: 0 -OS2TypoAscent: 700 -OS2TypoAOffset: 0 -OS2TypoDescent: -300 -OS2TypoDOffset: 0 -OS2TypoLinegap: 90 -OS2WinAscent: 0 -OS2WinAOffset: 1 -OS2WinDescent: 0 -OS2WinDOffset: 1 -HheadAscent: 700 -HheadAOffset: 0 -HheadDescent: -300 -HheadDOffset: 0 -OS2SubXSize: 649 -OS2SubYSize: 699 -OS2SubXOff: 0 -OS2SubYOff: 140 -OS2SupXSize: 649 -OS2SupYSize: 699 -OS2SupXOff: 0 -OS2SupYOff: 479 -OS2StrikeYSize: 50 -OS2StrikeYPos: 259 -OS2Vendor: 'PfEd' -Lookup: 1 0 0 "'ccmp' Turkish i" { "'ccmp' Turkish i-1" } ['ccmp' ('latn' <'TRK ' > ) ] -Lookup: 1 0 0 "'smcp' Lowercase to Small Capitals in Latin lookup 0" { "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ("sc") } ['smcp' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'c2sc' Capitals to Small Capitals in Latin lookup 0" { "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" } ['c2sc' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0" { "'liga' Standard Ligatures lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -MarkAttachClasses: 1 -DEI: 91125 -KernClass2: 117+ 89 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" - 9 ampersand - 3 bar - 10 exclamdown - 10 registered - 12 questiondown - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 25 B uni1E02 uni1E04 uni1E06 - 55 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron uni1E08 - 196 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE uni01E2 AEacute uni1E14 uni1E16 uni1E18 uni1E1A uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 - 9 F uni1E1E - 47 G Gcircumflex Gbreve Gdotaccent uni0122 uni1E20 - 177 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni01CF uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1EC8 uni1ECA - 16 J IJ Jcircumflex - 33 K uni0136 uni1E30 uni1E32 uni1E34 - 67 L Lacute uni013B Lcaron Ldot Lslash uni1E36 uni1E38 uni1E3A uni1E3C - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 250 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni01D1 Oslashacute uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 - 17 P uni1E54 uni1E56 - 55 R Racute uni0156 Rcaron uni1E58 uni1E5A uni1E5C uni1E5E - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 183 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 5 Thorn - 45 Ohorn uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 45 Uhorn uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 196 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni01CE aringacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 35 b uni1E03 uni1E05 uni1E07 f_b f_f_b - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 196 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe uni01E3 aeacute uni1E15 uni1E17 uni1E19 uni1E1B uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 - 13 f uni1E1F f_f - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 126 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB f_i f_f_i - 34 j ij jcircumflex uni0237 f_j f_f_j - 56 k uni0137 kgreenlandic uni1E31 uni1E33 uni1E35 f_k f_f_k - 72 l lacute uni013C lcaron lslash uni1E37 uni1E39 uni1E3B uni1E3D f_l f_f_l - 169 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E96 f_h f_f_h T_h - 188 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut uni01D2 oslashacute uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 - 23 p thorn uni1E55 uni1E57 - 1 q - 55 r racute uni0157 rcaron uni1E59 uni1E5B uni1E5D uni1E5F - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 183 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 17 x uni1E8B uni1E8D - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 10 germandbls - 3 eth - 4 ldot - 3 eng - 45 ohorn uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 45 uhorn uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 40 comma period quotesinglbase quotedblbase - 5 slash - 15 colon semicolon - 9 backslash - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 29 guillemotright guilsinglright - 9 parenleft - 25 zero zero.slash zero.prop - 8 one.prop - 8 two.prop - 10 three.prop - 9 four.prop - 9 five.prop - 8 six.prop - 10 seven.prop - 10 eight.prop - 9 nine.prop - 11 bracketleft - 9 braceleft - 5 Delta - 12 parenleft.sc - 8 slash.sc - 14 bracketleft.sc - 12 backslash.sc - 12 braceleft.sc - 6 bar.sc - 103 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc amacron.sc abreve.sc aogonek.sc - 4 b.sc - 65 c.sc ccedilla.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc - 120 e.sc ae.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc oe.sc - 4 f.sc - 54 g.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc - 148 h.sc i.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc - 25 j.sc ij.sc jcircumflex.sc - 31 k.sc uni0137.sc kgreenlandic.sc - 45 l.sc lacute.sc uni013C.sc lcaron.sc lslash.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 147 d.sc o.sc q.sc eth.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc dcaron.sc dcroat.sc omacron.sc obreve.sc ohungarumlaut.sc - 4 p.sc - 35 r.sc racute.sc uni0157.sc rcaron.sc - 65 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc - 33 t.sc uni0163.sc tcaron.sc tbar.sc - 120 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 4 x.sc - 42 y.sc yacute.sc ycircumflex.sc ydieresis.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 8 thorn.sc - 7 ldot.sc - 20 quotedbl quotesingle - 65 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 T_h - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 13 J Jcircumflex - 19 j.sc jcircumflex.sc - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 633 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni01CF uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 17 X uni1E8A uni1E8C - 18 AE uni01E2 AEacute - 109 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc - 9 ampersand - 10 parenright - 8 asterisk - 28 hyphen endash emdash uni2015 - 25 zero zero.slash zero.prop - 8 two.prop - 9 four.prop - 8 six.prop - 10 seven.prop - 10 eight.prop - 9 nine.prop - 343 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni01D1 Oslashacute uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 9 backslash - 12 bracketright - 215 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni01E3 aringacute aeacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 31 b thorn uni1E03 uni1E05 uni1E07 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 21 j jcircumflex uni0237 - 412 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 17 p uni1E55 uni1E57 - 1 q - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 229 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 10 braceright - 10 registered - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 29 guillemotright guilsinglright - 242 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc - 65 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc - 33 t.sc uni0163.sc tcaron.sc tbar.sc - 120 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 42 y.sc yacute.sc ycircumflex.sc ydieresis.sc - 84 f germandbls uni1E1F f_f f_i f_f_i f_j f_f_j f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 119 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 17 x uni1E8B uni1E8D - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 441 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 4 x.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 49 comma period quotesinglbase quotedblbase ellipsis - 5 slash - 15 colon semicolon - 3 eth - 16 three three.prop - 14 five five.prop - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 12 one one.prop - 6 exclam - 3 bar - 8 question - 7 uniF733 - 2 at - 5 Delta - 12 backslash.sc - 15 bracketright.sc - 13 parenright.sc - 8 slash.sc - 0 {} -44 {} -32 {} -34 {} -30 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} 0 {} 61 {} 33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} -46 {} -43 {} -40 {} 88 {} 42 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -24 {} 0 {} 0 {} 0 {} -35 {} -11 {} -16 {} -15 {} -12 {} -38 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -44 {} -41 {} -42 {} 107 {} 49 {} -16 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -61 {} -89 {} -82 {} -68 {} -16 {} -12 {} -48 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -11 {} -52 {} -27 {} -17 {} 14 {} -14 {} -14 {} -11 {} -11 {} -10 {} -33 {} -9 {} -57 {} -23 {} -10 {} -7 {} -17 {} -16 {} -10 {} -12 {} -21 {} -8 {} -16 {} -9 {} -21 {} -23 {} -62 {} -62 {} -62 {} -14 {} -36 {} -59 {} -57 {} -28 {} -13 {} -20 {} -8 {} -41 {} -26 {} -53 {} -49 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -28 {} -25 {} -28 {} -5 {} -5 {} -6 {} -16 {} -5 {} -7 {} -7 {} -32 {} -14 {} -13 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -6 {} -7 {} -21 {} -20 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -11 {} -10 {} -14 {} -9 {} -10 {} -10 {} -10 {} -9 {} -28 {} -6 {} -6 {} -7 {} -6 {} -27 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} -13 {} -13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -8 {} 0 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -6 {} -9 {} 0 {} -5 {} 0 {} 0 {} -8 {} -8 {} -29 {} -29 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -6 {} -18 {} -16 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -55 {} 0 {} 0 {} 0 {} 0 {} -67 {} -69 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -28 {} 0 {} -28 {} -27 {} -25 {} 0 {} -24 {} -9 {} -28 {} -22 {} -6 {} -10 {} -11 {} -11 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -19 {} 0 {} -7 {} -5 {} -5 {} 0 {} -12 {} 0 {} -9 {} 0 {} -19 {} -13 {} -20 {} -14 {} -17 {} -15 {} -9 {} -13 {} -43 {} -20 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -27 {} -24 {} -27 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} -14 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -7 {} -11 {} 0 {} -5 {} 0 {} -5 {} 0 {} -12 {} 0 {} 0 {} -5 {} -5 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -16 {} -10 {} 0 {} -20 {} -20 {} -12 {} -7 {} -20 {} -8 {} -20 {} -8 {} -15 {} -15 {} -21 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -17 {} -5 {} -14 {} -15 {} -14 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -10 {} -23 {} -11 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -16 {} -21 {} 0 {} -21 {} -21 {} -18 {} -7 {} -20 {} -13 {} -21 {} -17 {} -17 {} -15 {} -18 {} -18 {} -17 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -18 {} -15 {} -13 {} -15 {} -11 {} -10 {} -11 {} -18 {} 0 {} -9 {} 0 {} -17 {} -6 {} -20 {} -17 {} -17 {} -17 {} 0 {} -15 {} -9 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 30 {} 0 {} 0 {} 0 {} 0 {} 0 {} -54 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -26 {} 0 {} 0 {} -36 {} 0 {} -25 {} 0 {} -16 {} -9 {} -74 {} -73 {} -73 {} 0 {} -17 {} 0 {} 0 {} -33 {} 0 {} -33 {} 0 {} -55 {} -18 {} -68 {} -64 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 8 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -63 {} -61 {} -86 {} -75 {} -60 {} -6 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -71 {} 0 {} 0 {} 0 {} 16 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -40 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -52 {} -54 {} 0 {} 0 {} -64 {} -64 {} 0 {} 0 {} 0 {} 0 {} -48 {} 0 {} -42 {} -41 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -17 {} -8 {} 0 {} -17 {} -16 {} -9 {} -8 {} -19 {} -7 {} -16 {} -6 {} -15 {} -15 {} -23 {} -23 {} -23 {} 0 {} -10 {} 0 {} 0 {} -14 {} 0 {} -15 {} 0 {} -14 {} -15 {} -16 {} -15 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -11 {} -26 {} -15 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -13 {} -5 {} 0 {} -19 {} -30 {} 10 {} -27 {} -26 {} -22 {} -8 {} -24 {} -18 {} -26 {} -21 {} -23 {} -23 {} -26 {} -26 {} -26 {} 0 {} -11 {} 0 {} 0 {} -17 {} -12 {} -22 {} -21 {} -21 {} -21 {} -19 {} -18 {} -19 {} -23 {} 0 {} -11 {} 0 {} -21 {} -13 {} -25 {} -21 {} -22 {} -22 {} -10 {} -21 {} -14 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -32 {} -30 {} -39 {} -8 {} 0 {} -7 {} -30 {} -9 {} -13 {} -13 {} -35 {} -39 {} -30 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -22 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -15 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} -5 {} 0 {} 0 {} 0 {} -68 {} 0 {} -11 {} -6 {} -12 {} -88 {} -88 {} -18 {} -14 {} 16 {} -48 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} 0 {} -37 {} -36 {} -21 {} 0 {} -34 {} 0 {} -36 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -28 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -69 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -29 {} -62 {} -60 {} -44 {} -6 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -18 {} 0 {} 45 {} -11 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -36 {} -10 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} -12 {} 0 {} -8 {} 0 {} -8 {} -10 {} -47 {} -47 {} -46 {} 0 {} -28 {} -14 {} -17 {} -38 {} 0 {} -13 {} 0 {} -29 {} -12 {} -42 {} -36 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 10 {} 21 {} 32 {} 0 {} 0 {} 29 {} 27 {} 20 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -8 {} 0 {} -6 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} -6 {} -10 {} 0 {} -7 {} 0 {} 0 {} -9 {} -9 {} -18 {} -18 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -8 {} -8 {} -8 {} -10 {} 0 {} -10 {} 0 {} -9 {} -11 {} -7 {} -6 {} -7 {} -6 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} -76 {} -85 {} -17 {} 0 {} 19 {} -60 {} 0 {} 0 {} -37 {} -15 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -16 {} -77 {} 0 {} -77 {} -78 {} -68 {} -15 {} -74 {} -61 {} -78 {} -68 {} -22 {} -66 {} -46 {} -46 {} -49 {} 0 {} 0 {} 0 {} 0 {} -55 {} -33 {} -70 {} -64 {} -26 {} -40 {} -28 {} -30 {} -29 {} -27 {} 0 {} -22 {} 0 {} -64 {} -40 {} -64 {} -39 {} -40 {} -40 {} -30 {} -41 {} -41 {} -24 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} -41 {} -42 {} -11 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -15 {} -28 {} 27 {} -28 {} -27 {} -24 {} 0 {} -26 {} -14 {} -28 {} -22 {} -15 {} -14 {} -14 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} -9 {} -13 {} -8 {} -7 {} -8 {} -22 {} 6 {} -5 {} 6 {} -21 {} -15 {} -25 {} -21 {} -24 {} -22 {} -14 {} -21 {} -21 {} -17 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} -88 {} 0 {} -9 {} 0 {} 0 {} -103 {} -124 {} -32 {} 0 {} 0 {} -56 {} -25 {} -13 {} -46 {} -36 {} 0 {} -17 {} -13 {} -31 {} -14 {} 0 {} -19 {} -85 {} 46 {} -86 {} -84 {} -74 {} -8 {} -78 {} -62 {} -86 {} -72 {} -44 {} -61 {} -47 {} -47 {} -46 {} -11 {} -21 {} 0 {} 0 {} -53 {} -39 {} -75 {} -73 {} -47 {} -43 {} -34 {} -34 {} -36 {} -39 {} 25 {} -12 {} 25 {} -75 {} -46 {} -77 {} -53 {} -59 {} -54 {} -42 {} -64 {} -71 {} -43 {} -43 {} 0 {} -14 {} -15 {} -9 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} -81 {} 0 {} -9 {} 0 {} 0 {} -97 {} -104 {} -31 {} 0 {} 0 {} -49 {} -23 {} -13 {} -41 {} -33 {} 0 {} -17 {} -13 {} -29 {} -13 {} 0 {} -20 {} -75 {} 44 {} -71 {} -70 {} -65 {} -8 {} -68 {} -52 {} -71 {} -62 {} -40 {} -52 {} -44 {} -44 {} -43 {} -11 {} -21 {} 0 {} 0 {} -47 {} -36 {} -65 {} -63 {} -45 {} -43 {} -31 {} -31 {} -34 {} -39 {} 21 {} -12 {} 21 {} -66 {} -39 {} -69 {} -48 {} -53 {} -48 {} -37 {} -57 {} -63 {} -41 {} -39 {} 0 {} -14 {} -15 {} -9 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 18 {} -28 {} -27 {} 0 {} 0 {} -28 {} 0 {} -26 {} 0 {} -17 {} -15 {} -67 {} -67 {} -67 {} 0 {} -12 {} 0 {} 0 {} -28 {} 0 {} -27 {} 0 {} -50 {} -18 {} -60 {} -56 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} 0 {} -77 {} 0 {} -6 {} 0 {} 0 {} -96 {} -95 {} -35 {} 0 {} 0 {} -68 {} -31 {} -17 {} -54 {} -43 {} 0 {} -21 {} -19 {} -40 {} -18 {} 0 {} -21 {} -85 {} 44 {} -95 {} -92 {} -78 {} -8 {} -93 {} -72 {} -94 {} -75 {} -62 {} -78 {} -62 {} -62 {} -63 {} -13 {} -30 {} 0 {} 0 {} -68 {} -49 {} -86 {} -75 {} -61 {} -63 {} -51 {} -51 {} -50 {} -44 {} 22 {} -12 {} 22 {} -77 {} -59 {} -80 {} -67 {} -69 {} -66 {} -50 {} -74 {} -50 {} -38 {} -48 {} 0 {} -17 {} -18 {} -8 {} -16 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} 0 {} -11 {} 0 {} 0 {} -15 {} -15 {} -41 {} -41 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -10 {} -32 {} -28 {} -32 {} -7 {} 0 {} -7 {} 0 {} -7 {} 0 {} -8 {} -7 {} -6 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -34 {} -31 {} -46 {} -8 {} 0 {} -5 {} -37 {} -9 {} -15 {} -14 {} -69 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 21 {} 17 {} 0 {} -17 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -46 {} -49 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 11 {} -24 {} -23 {} -21 {} 0 {} -21 {} -7 {} -24 {} -20 {} -10 {} -7 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -15 {} 0 {} -13 {} -6 {} -6 {} -8 {} -20 {} 0 {} -6 {} 0 {} -17 {} -15 {} -20 {} -22 {} -26 {} -24 {} -17 {} -16 {} -26 {} -17 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 33 {} 39 {} 63 {} 63 {} 59 {} 29 {} -36 {} 38 {} -64 {} 22 {} 0 {} 23 {} 42 {} -85 {} -65 {} -21 {} 85 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} 68 {} 83 {} -51 {} 0 {} -46 {} -45 {} -42 {} 0 {} -44 {} -33 {} -46 {} -40 {} -34 {} -32 {} -40 {} -40 {} -38 {} 70 {} -15 {} 0 {} 24 {} -24 {} -24 {} -40 {} -40 {} -35 {} -33 {} -33 {} -32 {} -36 {} -31 {} 0 {} -6 {} 0 {} -44 {} -35 {} -46 {} -41 {} -44 {} -43 {} -34 {} -41 {} -37 {} -23 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -41 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} -21 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -79 {} 0 {} 0 {} -24 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -13 {} -13 {} -15 {} 0 {} -22 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -7 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -71 {} 0 {} 0 {} -19 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -22 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -78 {} 0 {} 0 {} -21 {} -8 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -32 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 48 {} 0 {} 0 {} 0 {} 80 {} 0 {} 0 {} 60 {} -8 {} 45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 23 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 0 {} 0 {} 0 {} -13 {} -12 {} 0 {} 5 {} -9 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 35 {} 38 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} -14 {} 16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -10 {} -16 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} -4 {} 0 {} 0 {} 0 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} -17 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -13 {} 0 {} 0 {} 0 {} -41 {} -40 {} -6 {} 0 {} -39 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -14 {} 0 {} 0 {} -5 {} -4 {} 0 {} 0 {} -6 {} 0 {} -4 {} 0 {} 0 {} 0 {} -11 {} -11 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -62 {} -78 {} -67 {} -67 {} -20 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -44 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -23 {} -24 {} -11 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -80 {} 0 {} 0 {} -24 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -16 {} -16 {} -16 {} 0 {} -13 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -6 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -79 {} 0 {} 0 {} -23 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -13 {} -13 {} -16 {} 0 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -7 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} -18 {} -6 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -70 {} 0 {} 0 {} -18 {} -47 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -29 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -26 {} -5 {} 0 {} -11 {} -10 {} -5 {} 0 {} -7 {} 0 {} -11 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} -22 {} -10 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} 0 {} 0 {} -10 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} -31 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} -4 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} 0 {} 0 {} -13 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -27 {} 22 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -25 {} -10 {} 0 {} -31 {} -31 {} -12 {} 0 {} -21 {} 0 {} -31 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} -14 {} -61 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -27 {} 22 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -25 {} -9 {} 0 {} -26 {} -25 {} -11 {} 0 {} -19 {} 0 {} -27 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -11 {} -10 {} 0 {} 0 {} -27 {} -26 {} -8 {} 0 {} -24 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} -14 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -27 {} 22 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -24 {} -11 {} 0 {} -31 {} -30 {} -12 {} 0 {} -22 {} 0 {} -30 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} -22 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 16 {} 0 {} 0 {} 25 {} 18 {} 54 {} 54 {} 55 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 63 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -10 {} -10 {} -8 {} 0 {} -9 {} 0 {} -10 {} 0 {} 0 {} 0 {} 45 {} 45 {} 45 {} 0 {} 0 {} 34 {} 48 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -73 {} -23 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -23 {} 0 {} 0 {} -10 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} -40 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -66 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 21 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 22 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -59 {} -52 {} -46 {} -56 {} -9 {} -13 {} -8 {} -28 {} -12 {} -16 {} -17 {} -33 {} -33 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -25 {} -25 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -8 {} -22 {} -21 {} -32 {} -15 {} -12 {} -15 {} -12 {} -11 {} -30 {} 0 {} -15 {} -17 {} -17 {} -34 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -89 {} -41 {} -71 {} -64 {} -36 {} -8 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} -42 {} -43 {} 0 {} 0 {} -92 {} -95 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -39 {} -33 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} -53 {} -62 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -10 {} 0 {} 0 {} -36 {} 0 {} -43 {} -40 {} -36 {} 0 {} -40 {} -19 {} 0 {} -34 {} -16 {} -21 {} -16 {} -16 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -33 {} -18 {} -18 {} 0 {} -12 {} -11 {} -19 {} 0 {} 0 {} 0 {} -25 {} -10 {} -27 {} -22 {} 0 {} -22 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -43 {} -39 {} -36 {} -8 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -25 {} -47 {} -44 {} -31 {} 0 {} 45 {} -18 {} 10 {} 0 {} 0 {} 0 {} 5 {} 25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -25 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -21 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -61 {} 0 {} 0 {} 0 {} 0 {} -74 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -19 {} -26 {} -10 {} 0 {} -14 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -92 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} 15 {} 6 {} 0 {} 0 {} 0 {} -66 {} 0 {} 0 {} 0 {} 0 {} -76 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -24 {} -27 {} -16 {} 0 {} -21 {} 0 {} -24 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} -19 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -95 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -38 {} -35 {} -38 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -55 {} -53 {} -47 {} -57 {} -12 {} 0 {} -10 {} -27 {} -15 {} -17 {} -18 {} -30 {} -29 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -17 {} -17 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -12 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 133 {} 92 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -13 {} 0 {} 0 {} -22 {} 0 {} -28 {} -26 {} 0 {} 0 {} -29 {} 0 {} 0 {} -21 {} -21 {} -25 {} -27 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} -21 {} -24 {} -25 {} 0 {} -25 {} -22 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -15 {} -16 {} 0 {} -14 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -23 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} -10 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -17 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} -10 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 36 {} 36 {} 30 {} 0 {} 0 {} 13 {} -50 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -20 {} -18 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -17 {} -18 {} 0 {} 0 {} 0 {} -33 {} 0 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -23 {} -23 {} -20 {} 144 {} 95 {} -20 {} -21 {} -16 {} -16 {} -16 {} 0 {} -14 {} -25 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -19 {} 0 {} 0 {} -26 {} 0 {} -28 {} -26 {} 0 {} 0 {} -27 {} 0 {} 0 {} -25 {} -21 {} -22 {} -25 {} -25 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -22 {} -25 {} 0 {} -23 {} -22 {} -17 {} -12 {} -14 {} -12 {} -20 {} -10 {} -22 {} -23 {} 0 {} -22 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} 0 {} 122 {} 73 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} -14 {} 0 {} 0 {} -16 {} 0 {} 0 {} -15 {} 0 {} -13 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -14 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -13 {} -10 {} 0 {} -10 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -46 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 72 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 79 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -12 {} -10 {} -14 {} 0 {} -13 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -22 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -31 {} -25 {} -24 {} -21 {} 0 {} -15 {} 0 {} -37 {} -23 {} -48 {} -44 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -4 {} 0 {} -12 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -11 {} -10 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -20 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -18 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -17 {} -17 {} -24 {} 0 {} 0 {} 0 {} -33 {} -8 {} -38 {} -35 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -22 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -40 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -13 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -15 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} -9 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -22 {} -16 {} -15 {} -25 {} -13 {} -15 {} 0 {} -21 {} -16 {} -39 {} -35 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} -13 {} -23 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -21 {} 13 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} -17 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -12 {} -25 {} 25 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} -14 {} -23 {} 27 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} -23 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2011, Sebastian Kosch,,, (),+AAoA-with Reserved Font Name Crimson.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" -GaspTable: 1 65535 15 1 -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -BeginPrivate: 0 -EndPrivate -Grid --1000 711.0078125 m 1 - 2000 711.0078125 l 1025 --1000 486.03515625 m 1 - 2000 486.03515625 l 1025 --249.0234375 -196.77734375 m 25 - -249.0234375 887.20703125 l 1025 --1000 639.6484375 m 1 - 2000 639.6484375 l 1025 -490.234375 626.953125 m 25 - 0 626.953125 l 1 - 490.234375 626.953125 l 25 -770.5078125 -221.6796875 m 25 - 1166.9921875 -221.6796875 l 1025 -0 646.484375 m 25 - 546.875 646.484375 l 1025 -0 654.296875 m 25 - 546.875 654.296875 l 1025 -542 -212.890625 m 25 - 0 -212.890625 l 1 - 542 -212.890625 l 25 -546.875 679.6875 m 25 - 0 678.7109375 l 1 - 546.875 679.6875 l 25 -546.875 432.6171875 m 25 - -6 432.6171875 l 1 - 546.875 432.6171875 l 25 -546.875 438.4765625 m 25 - -6 438.4765625 l 1 - 546.875 438.4765625 l 25 -EndSplineSet -EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/four.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/four.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/four.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/four.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: four -Encoding: 52 52 20 -Width: 532 -Flags: W -HStem: -5 21G<345 382> 170 66<131 305 428 484> 609 20G<398 405> -VStem: 305 123<-1 170 236 455> -LayerCount: 2 -Fore -SplineSet -402 629 m 0 - 408 629 428 614 428 602 c 10 - 428 236 l 25 - 473 236 l 2 - 480 236 486 218 486 190 c 0 - 486 175 477 170 477 170 c 9 - 428 170 l 25 - 428 4 l 17 - 428 4 402 -5 361 -5 c 0 - 328 -5 305 -1 305 8 c 2 - 305 170 l 25 - 57 170 l 17 - 49 174 47 181 47 194 c 1 - 164 340 279 486 383 615 c 0 - 390 623 394 629 402 629 c 0 -305 455 m 17 - 131 236 l 1 - 305 236 l 1 - 305 455 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/four.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/four.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/four.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/four.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: four.prop -Encoding: 65701 -1 611 -Width: 491 -Flags: HW -LayerCount: 2 -Fore -Refer: 20 52 N 1 0 0 1 -37 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/fraction.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: fraction -Encoding: 8260 8260 645 -Width: 503 -Flags: W -HStem: -2 21G<42 57> -LayerCount: 2 -Fore -SplineSet -481 704 m 1 - 72 14 l 2 - 68 7 62 -2 53 -2 c 0 - 32 -2 22 10 22 10 c 1 - 432 700 l 2 - 435 706 441 714 447 714 c 0 - 463 714 477 707 481 704 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/f.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/f.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: f.sc -Encoding: 65568 -1 478 -Width: 428 -VWidth: 0 -Flags: W -HStem: -4 36<42 90 227 286> 197 43<223 317> 406 33<43 90 226 354> -VStem: 96 127<45 196 240 395> 332 28<250 282> -LayerCount: 2 -Fore -SplineSet -223 361 m 2 - 223 247 l 2 - 223 243 235 240 248 240 c 2 - 280 240 l 2 - 315 240 322 247 332 278 c 0 - 333 281 336 282 343 282 c 0 - 350 282 358 280 361 277 c 1 - 361 157 l 1 - 360 155 354 153 349 153 c 0 - 344 153 341 155 340 158 c 0 - 332 185 324 191 318 193 c 0 - 310 196 293 197 269 197 c 0 - 251 197 223 196 223 188 c 2 - 223 102 l 2 - 223 76 222 56 227 43 c 0 - 230 35 277 33 284 32 c 1 - 289 26 288 2 284 -4 c 1 - 255 -1 187 2 155 2 c 0 - 123 2 73 -1 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 383 90 396 c 0 - 87 405 53 405 44 406 c 1 - 39 412 40 436 44 442 c 1 - 77 439 122 439 152 439 c 0 - 182 439 345 444 388 445 c 1 - 393 411 402 375 408 344 c 1 - 406 342 397 341 392 341 c 0 - 387 341 383 343 382 346 c 0 - 368 379 351 406 312 406 c 2 - 258 406 l 0 - 243 406 229 405 226 398 c 0 - 223 390 223 379 223 361 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gbreve -Encoding: 287 287 301 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 470 13 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" gbreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gbreve -Encoding: 286 286 300 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 613 0 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gbreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gbreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gbreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gbreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gbreve.sc -Encoding: 65646 -1 556 -Width: 584 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 539 30 2 -Refer: 479 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gcaron -Encoding: 487 487 423 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 475 12 2 -Refer: 71 103 N 1 0 0 1 -2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcaron -Encoding: 486 486 422 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 199 25 2 -Refer: 39 71 N 1 0 0 1 6 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcircumflex -Encoding: 285 285 299 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 466 13 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" gcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcircumflex -Encoding: 284 284 298 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 629 2 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcircumflex.sc -Encoding: 65645 -1 555 -Width: 584 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 535 30 2 -Refer: 479 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gdotaccent -Encoding: 289 289 303 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 775 N 1 0 0 1 467 23 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" gdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gdotaccent -Encoding: 288 288 302 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 639 -6 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gdotaccent.sc -Encoding: 65647 -1 557 -Width: 584 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 536 -216 2 -Refer: 479 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/germandbls.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/germandbls.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/germandbls.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/germandbls.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: germandbls -Encoding: 223 223 157 -Width: 576 -Flags: W -HStem: -10 43<21 85 225 269 367 455> 372 46<38 92> 636 46<260 342> -VStem: 92 127<40 372 418 526> 375 9<393 513> 459 90<72 179> -LayerCount: 2 -Fore -SplineSet -321 682 m 0 - 405 682 492 628 492 550 c 0 - 492 503 464 479 442 459 c 0 - 420 439 384 415 384 393 c 0 - 384 357 450 307 479 279 c 0 - 514 245 549 209 549 149 c 0 - 549 50 457 -10 383 -10 c 0 - 350 -10 310 0 294 17 c 1 - 289 27 286 39 286 53 c 0 - 286 84 304 119 333 119 c 0 - 367 119 380 86 389 68 c 0 - 398 50 409 33 428 33 c 0 - 450 33 459 52 459 80 c 0 - 459 128 416 166 377 205 c 0 - 337 245 284 283 284 340 c 0 - 284 368 311 392 333 417 c 0 - 358 445 375 468 375 513 c 0 - 375 569 353 636 296 636 c 0 - 257 636 219 573 219 475 c 0 - 219 142 l 2 - 219 100 219 70 227 50 c 0 - 232 37 256 33 269 32 c 1 - 274 25 273 2 269 -4 c 1 - 231 0 197 3 156 3 c 0 - 115 3 60 0 22 -4 c 1 - 18 2 17 25 22 32 c 1 - 35 33 79 37 84 50 c 0 - 92 70 92 100 92 142 c 2 - 92 142 92 285 92 372 c 1 - 66 372 60 372 35 372 c 1 - 30 374 30 381 30 385 c 1 - 40 399 49 408 61 418 c 1 - 74 418 82 418 92 418 c 9 - 92 433 l 2 - 92 567 218 682 321 682 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" germandbls.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/germandbls.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/germandbls.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/germandbls.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/germandbls.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: germandbls.sc -Encoding: 65629 -1 539 -Width: 786 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 491 -1 N 1 0 0 1 369 0 2 -Refer: 491 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/g.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/g.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/g.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/g.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: g -Encoding: 103 103 71 -Width: 466 -Flags: W -HStem: -213 55<172 302> -14 108<143 339> 145 36<186 262> 357 60<380 448> 396 36<173 248> -VStem: 23 107<-119 -53> 38 118<216 357> 48 95<69 120> 275 118<221 361> 363 85<-92 3> -LayerCount: 2 -Fore -SplineSet -210 396 m 0xea80 - 159 396 156 344 156 300 c 0 - 156 245 175 181 226 181 c 0 - 277 181 275 235 275 278 c 0 - 275 332 261 396 210 396 c 0xea80 -254 -14 m 0 - 218 -14 165 -14 146 -14 c 1 - 139 -22 131 -35 131 -57 c 0 - 131 -121 180 -158 248 -158 c 0 - 342 -158 363 -109 363 -77 c 0xe440 - 363 -36 316 -14 254 -14 c 0 -318 94 m 0 - 408 89 448 19 448 -14 c 0 - 448 -132 320 -213 187 -213 c 0 - 91 -213 23 -167 23 -101 c 0xf440 - 23 -62 70 -24 106 -6 c 1 - 73 3 48 49 48 90 c 0xf1 - 48 108 92 140 129 161 c 1 - 73 183 38 231 38 287 c 0 - 38 368 115 433 215 433 c 0xea - 259 433 292 427 319 408 c 0 - 322 405 323 405 325 405 c 2 - 447 417 l 1 - 450 416 458 412 458 406 c 0 - 458 399 444 364 434 357 c 1 - 413 359 404 360 379 363 c 0 - 377 363 373 362 373 360 c 1 - 389 339 394 319 394 292 c 0 - 394 211 318 145 217 145 c 0 - 199 145 182 146 166 149 c 1 - 155 140 143 129 143 119 c 0xf180 - 143 104 166 95 189 95 c 0 - 226 95 284 96 318 94 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" g.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_G.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_G.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_G.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_G.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: G -Encoding: 71 71 39 -Width: 705 -Flags: W -HStem: -7 42<323 483> 255 36<415 477 634 688> 609 42<301 483> -VStem: 39 156<201 428> 487 135<46 242> -LayerCount: 2 -Fore -SplineSet -487 179 m 0 - 487 199 488 208 482 229 c 0 - 475 253 430 255 418 255 c 0 - 413 255 412 286 417 291 c 1 - 467 289 516 285 566 285 c 0 - 607 285 648 289 687 291 c 1 - 691 278 689 255 686 255 c 1 - 678 255 645 249 634 242 c 0 - 628 238 622 219 622 200 c 0 - 622 164 622 129 622 96 c 0 - 622 87 628 72 628 67 c 0 - 628 56 607 47 594 42 c 0 - 532 19 465 -7 375 -7 c 0 - 190 -7 39 129 39 314 c 0 - 39 497 191 651 377 651 c 0 - 441 651 522 645 580 633 c 1 - 582 622 613 497 613 485 c 0 - 613 479 600 471 588 471 c 3 - 583 471 578 471 574 475 c 1 - 564 513 526 609 388 609 c 0 - 243 609 195 476 195 339 c 0 - 195 187 264 35 402 35 c 0 - 439 35 461 43 479 51 c 0 - 483 53 487 56 487 65 c 0 - 487 80 487 132 487 179 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" g.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gradient.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gradient.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gradient.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gradient.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: gradient -Encoding: 8711 8711 229 -Width: 665 -Flags: W -HStem: 553 74<182 545> -LayerCount: 2 -Fore -SplineSet -179 546 m 2 - 354 194 l 1 - 358 191 363 190 366 196 c 2 - 545 542 l 1 - 547 549 542 553 537 553 c 2 - 182 553 l 2 - 178 553 177 550 179 546 c 2 -321 28 m 1 - 26 613 l 1 - 26 613 32 619 34 627 c 1 - 631 627 l 1 - 635 621 636 618 640 611 c 1 - 338 28 l 1 - 321 28 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb.cap -Encoding: 65536 -1 247 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 138 -VStem: -344 189 -LayerCount: 2 -Fore -SplineSet --154 730 m 0 - -154 724 -161 711 -168 711 c 0 - -182 711 -344 776 -344 812 c 0 - -344 839 -307 849 -289 849 c 0 - -281 849 -275 847 -271 845 c 0 - -226 811 -154 737 -154 730 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/gravecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb -Encoding: 768 768 190 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 161 -VStem: -347 169 -LayerCount: 2 -Fore -SplineSet --347 618 m 0 - -347 626 -336 646 -302 646 c 0 - -288 646 -274 643 -269 638 c 0 - -233 596 -178 508 -178 503 c 0 - -178 497 -187 485 -194 485 c 0 - -204 485 -347 580 -347 618 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/grave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/grave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/grave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/grave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: grave -Encoding: 96 96 64 -Width: 243 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 390 24 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greaterequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greaterequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greaterequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greaterequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: greaterequal -Encoding: 8805 8805 240 -Width: 500 -Flags: W -HStem: 6 55<72 455> -LayerCount: 2 -Fore -SplineSet -70 472 m 0 - 70 490 82 519 86 519 c 0 - 87 519 89 518 91 517 c 2 - 452 334 l 2 - 462 329 469 322 469 311 c 0 - 469 294 467 280 452 272 c 2 - 86 86 l 2 - 81 84 80 80 75 93 c 0 - 69 108 64 129 64 133 c 0 - 64 137 67 139 67 139 c 1 - 391 303 l 1 - 73 464 l 1 - 73 464 70 465 70 472 c 0 -68 15 m 0 - 68 16 72 61 83 61 c 2 - 457 61 l 2 - 459 61 463 60 463 53 c 0 - 463 45 460 29 455 13 c 0 - 453 7 448 6 448 6 c 1 - 75 6 l 1 - 75 6 68 5 68 15 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greater.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greater.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greater.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greater.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: greater -Encoding: 62 62 30 -Width: 483 -Flags: HW -LayerCount: 2 -Fore -SplineSet -50 44 m 0 - 50 49 53 50 53 50 c 1 - 364 204 l 1 - 54 355 l 1 - 54 355 50 358 51 364 c 0 - 58 400 64 420 67 420 c 0 - 68 420 70 419 72 418 c 2 - 437 235 l 2 - 447 230 454 223 454 212 c 0 - 454 195 452 181 437 173 c 2 - 70 -13 l 2 - 68 -14 66 -15 65 -15 c 0 - 59 -15 50 37 50 44 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" greater.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greater.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greater.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/greater.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/greater.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: greater.sc -Encoding: 65560 -1 470 -Width: 473 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 30 62 N 1 0 0 1 -5 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/g.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/g.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/g.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/g.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: g.sc -Encoding: 65569 -1 479 -Width: 584 -VWidth: 0 -Flags: W -HStem: -6 39<256 383> 180 36<316 380 518 560> 409 39<252 410> -VStem: 38 141<129 305> 384 125<38 171> 463 38<326 361> -LayerCount: 2 -Fore -SplineSet -380 163 m 0xf8 - 373 179 330 180 319 180 c 0 - 314 180 313 211 318 216 c 1 - 361 214 405 210 448 210 c 0 - 484 210 525 214 559 216 c 1 - 563 203 561 180 558 180 c 1 - 552 180 526 176 518 171 c 0 - 514 168 509 156 509 143 c 0 - 509 119 509 85 509 63 c 0xf8 - 509 57 515 48 515 45 c 0 - 515 38 498 30 487 27 c 0 - 437 11 382 -6 310 -6 c 0 - 161 -6 38 89 38 216 c 0 - 38 342 160 448 308 448 c 0 - 360 448 424 442 470 431 c 1 - 472 424 501 343 501 335 c 0 - 501 331 489 325 478 325 c 3 - 473 325 467 325 463 327 c 1xf4 - 456 350 428 409 326 409 c 0 - 219 409 179 328 179 232 c 0 - 179 116 231 33 326 33 c 0 - 351 33 366 38 378 43 c 0 - 381 44 384 47 384 53 c 0 - 384 62 384 103 384 132 c 0 - 384 145 386 149 380 163 c 0xf8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guillemotleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guillemotleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guillemotleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guillemotleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotleft -Encoding: 171 171 106 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -SplineSet -208 242 m 0 - 208 247 211 253 215 257 c 1 - 343 334 415 409 420 413 c 1 - 426 412 442 405 446 395 c 1 - 442 389 351 277 315 242 c 1 - 351 207 442 96 446 90 c 1 - 442 80 426 72 420 71 c 1 - 415 75 343 151 215 228 c 1 - 211 232 208 237 208 242 c 0 -25 242 m 0 - 25 247 28 253 32 257 c 1 - 160 334 232 409 237 413 c 1 - 243 412 260 405 264 395 c 1 - 260 389 169 277 133 242 c 1 - 169 207 260 96 264 90 c 1 - 260 80 243 72 237 71 c 1 - 232 75 160 151 32 228 c 1 - 28 232 25 237 25 242 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guillemotright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guillemotright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guillemotright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guillemotright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotright -Encoding: 187 187 121 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -SplineSet -282 242 m 0 - 282 237 279 232 275 228 c 1 - 147 151 75 75 70 71 c 1 - 64 72 48 80 44 90 c 1 - 48 96 139 207 175 242 c 1 - 139 277 48 389 44 395 c 1 - 48 405 64 412 70 413 c 1 - 75 409 147 334 275 257 c 1 - 279 253 282 247 282 242 c 0 -465 242 m 0 - 465 237 462 232 458 228 c 1 - 330 151 258 75 253 71 c 1 - 247 72 231 80 227 90 c 1 - 231 96 321 207 357 242 c 1 - 321 277 231 389 227 395 c 1 - 231 405 247 412 253 413 c 1 - 258 409 330 334 458 257 c 1 - 462 253 465 247 465 242 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guilsinglleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guilsinglleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guilsinglleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guilsinglleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: guilsinglleft -Encoding: 8249 8249 218 -Width: 307 -Flags: W -VStem: 25 238 -LayerCount: 2 -Fore -SplineSet -25 242 m 0 - 25 247 28 253 32 257 c 1 - 160 334 232 409 237 413 c 1 - 243 412 260 405 264 395 c 1 - 260 389 169 277 133 242 c 1 - 169 207 260 96 264 90 c 1 - 260 80 243 72 237 71 c 1 - 232 75 160 151 32 228 c 1 - 28 232 25 237 25 242 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guilsinglright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guilsinglright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/guilsinglright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/guilsinglright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: guilsinglright -Encoding: 8250 8250 219 -Width: 307 -Flags: W -VStem: 44 238 -LayerCount: 2 -Fore -SplineSet -282 242 m 0 - 282 237 279 232 275 228 c 1 - 147 151 75 75 70 71 c 1 - 64 72 48 80 44 90 c 1 - 48 96 139 207 175 242 c 1 - 139 277 48 389 44 395 c 1 - 48 405 64 412 70 413 c 1 - 75 409 147 334 275 257 c 1 - 279 253 282 247 282 242 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: hbar -Encoding: 295 295 386 -Width: 569 -Flags: W -HStem: -4 36<14 78 221 279 304 357 499 564> 356 1<214 299> 515 36<31 359> 609 31<18 74> 659 20<208 212> -VStem: 86 127<40 331 357 601> 365 127<40 327> -LayerCount: 2 -Fore -SplineSet -35 551 m 1 - 63 551 341 551 355 551 c 1 - 356 551 359 548 359 543 c 0 - 359 534 357 521 355 515 c 1 - 327 515 48 515 34 515 c 1 - 33 515 30 518 30 523 c 0 - 30 532 31 545 35 551 c 1 -EndSplineSet -Refer: 72 104 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" hbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: Hbar -Encoding: 294 294 385 -Width: 723 -Flags: W -HStem: -4 36<35 100 252 317 407 472 624 689> 310 50<246 480> 478 45<36 674> 610 36<35 100 252 317 407 472 624 689> -VStem: 108 137<40 306 359 602> 480 137<40 308 359 602> -LayerCount: 2 -Fore -SplineSet -669 522 m 2 - 673 522 675 514 675 509 c 0 - 675 503 673 487 669 478 c 1 - 41 478 l 2 - 37 478 36 487 36 492 c 0 - 36 498 36 513 42 522 c 1 - 669 522 l 2 -EndSplineSet -Refer: 40 72 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: hbar.sc -Encoding: 65650 -1 560 -Width: 609 -Flags: W -HStem: -4 36<44 92 229 276 324 378 518 566> 204 48<225 386> 318 36<36 530> 407 36<44 92 229 277 325 378 518 566> -VStem: 98 127<44 204 251 395> 386 127<45 202 252 395> -LayerCount: 2 -Fore -SplineSet -529 318 m 1 - 501 318 51 318 37 318 c 1 - 33 318 32 345 38 354 c 1 - 66 354 515 354 529 354 c 1 - 533 354 533 327 529 318 c 1 -EndSplineSet -Refer: 480 -1 N 1 0 0 1 2 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: hcircumflex -Encoding: 293 293 307 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 390 2 2 -Refer: 72 104 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" hcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Hcircumflex -Encoding: 292 292 306 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 613 2 2 -Refer: 40 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hcircumflex.sc -Encoding: 65649 -1 559 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 558 25 2 -Refer: 480 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: h -Encoding: 104 104 72 -Width: 569 -Flags: W -HStem: -4 36<14 79 221 279 304 357 499 564> 356 1<214 299> 609 31<18 74> 659 20G<208 212> -VStem: 86 127<40 331 357 601> 365 127<40 327> -LayerCount: 2 -Fore -SplineSet -359 436 m 0 - 470 436 492 359 492 205 c 2 - 492 142 l 2 - 492 100 491 70 499 50 c 0 - 504 37 549 33 562 32 c 1 - 567 25 566 2 562 -4 c 1 - 524 0 469 3 428 3 c 0 - 387 3 344 0 306 -4 c 1 - 302 2 301 25 306 32 c 1 - 319 33 352 37 357 50 c 0 - 365 70 365 100 365 142 c 2 - 365 219 l 2 - 365 289 351 356 299 356 c 0 - 260 356 213 322 213 302 c 2 - 213 142 l 2 - 213 106 213 70 221 50 c 0 - 226 37 264 33 277 32 c 1 - 282 25 281 2 277 -4 c 1 - 239 0 191 3 150 3 c 0 - 109 3 54 0 16 -4 c 1 - 12 2 11 25 16 32 c 1 - 29 33 74 37 79 50 c 0 - 87 70 86 100 86 142 c 2 - 86 545 l 2 - 86 562 86 575 79 592 c 0 - 74 604 33 609 21 609 c 1 - 17 609 16 637 21 641 c 1 - 130 651 206 679 209 679 c 1 - 215 678 223 667 224 662 c 1 - 224 662 213 601 213 562 c 0 - 213 363 l 0 - 213 360 213 358 214 357 c 1 - 216 357 219 360 221 362 c 0 - 248 393 314 436 359 436 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" h.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_H.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_H.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_H.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_H.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: H -Encoding: 72 72 40 -Width: 723 -Flags: W -HStem: -4 36<35 100 252 317 407 472 624 689> 310 50<246 480> 610 36<35 100 252 317 407 472 624 689> -VStem: 108 137<40 306 359 602> 480 137<40 308 359 602> -LayerCount: 2 -Fore -SplineSet -177 640 m 0 - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 244 573 245 543 245 501 c 2 - 245 362 l 1 - 245 360 246 359 246 359 c 1 - 284 358 321 356 365 356 c 0 - 401 356 444 358 479 359 c 1 - 479 359 481 361 481 363 c 0 - 480 501 l 2 - 480 543 480 573 472 593 c 0 - 467 606 423 609 410 610 c 1 - 405 617 406 640 410 646 c 1 - 448 642 508 640 549 640 c 0 - 590 640 649 642 687 646 c 1 - 691 640 692 617 687 610 c 1 - 674 609 629 606 624 593 c 0 - 616 573 617 543 617 501 c 2 - 617 142 l 2 - 617 100 616 70 624 50 c 0 - 629 37 674 33 687 32 c 1 - 692 25 691 2 687 -4 c 1 - 649 0 588 3 547 3 c 0 - 506 3 448 0 410 -4 c 1 - 406 2 405 25 410 32 c 1 - 423 33 467 37 472 50 c 0 - 480 70 480 100 480 142 c 2 - 480 303 l 0 - 480 305 478 308 478 308 c 1 - 442 309 405 310 365 310 c 0 - 257 310 248 308 245 306 c 1 - 244 305 245 302 245 302 c 1 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 277 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" h.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hookabovecomb.cap -Encoding: 65547 -1 262 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 777 N 1 0 0 1 -10 225 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hookabovecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: hookabovecomb -Encoding: 777 777 268 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 621 37<-268 -217> -VStem: -331 60<566 619> -294 47<488 524> -215 53<558 621> -LayerCount: 2 -Fore -SplineSet --229 658 m 0xd0 - -190 658 -162 634 -162 602 c 0 - -162 566 -186 540 -212 529 c 0 - -233 520 -247 516 -247 503 c 3 - -247 501 -247 498 -246 495 c 1 - -246 492 -270 486 -284 486 c 1 - -289 489 -294 500 -294 503 c 3xb0 - -294 530 -267 543 -250 551 c 0 - -228 561 -215 573 -215 592 c 0 - -215 604 -218 621 -239 621 c 0 - -261 621 -271 605 -271 586 c 0 - -271 569 -296 564 -310 564 c 0 - -318 564 -331 569 -331 581 c 0 - -331 631 -278 658 -229 658 c 0xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/h.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/h.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/h.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/h.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: h.sc -Encoding: 65570 -1 480 -Width: 606 -Flags: W -HStem: -4 36<42 90 227 274 321 376 516 564> 204 48<223 384> 407 36<42 90 227 275 322 376 516 564> -VStem: 96 127<44 204 251 395> 384 127<45 202 252 395> -LayerCount: 2 -Fore -SplineSet -223 200 m 1 - 223 102 l 2 - 223 76 223 56 227 43 c 0 - 230 35 265 33 272 32 c 1 - 277 26 276 2 272 -4 c 1 - 243 0 185 2 154 2 c 0 - 123 2 73 0 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 383 90 396 c 0 - 87 405 53 406 44 407 c 1 - 39 413 40 437 44 443 c 1 - 73 439 124 438 155 438 c 0 - 186 438 244 439 273 443 c 1 - 277 437 278 413 273 407 c 1 - 266 406 230 404 227 396 c 0 - 223 383 223 364 223 338 c 2 - 223 253 l 1 - 223 252 224 252 224 252 c 1 - 250 251 275 249 305 249 c 0 - 329 249 359 251 383 252 c 1 - 383 252 385 254 385 255 c 0 - 384 338 l 2 - 384 364 383 383 376 396 c 0 - 371 404 337 406 325 407 c 1 - 320 413 321 437 325 443 c 1 - 358 439 404 438 440 438 c 0 - 476 438 529 439 562 443 c 1 - 566 437 567 413 562 407 c 1 - 553 406 519 405 516 396 c 0 - 510 383 511 362 511 335 c 2 - 511 104 l 2 - 511 77 510 57 516 44 c 0 - 519 35 553 33 562 32 c 1 - 567 26 566 2 562 -4 c 1 - 529 0 474 2 438 2 c 0 - 402 2 357 0 324 -4 c 1 - 320 2 319 26 324 32 c 1 - 336 33 371 35 376 43 c 0 - 383 56 384 75 384 101 c 2 - 384 199 l 0 - 384 200 382 202 382 202 c 1 - 358 203 332 204 305 204 c 0 - 231 204 225 204 223 203 c 1 - 222 202 223 200 223 200 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hyphen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hyphen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/hyphen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/hyphen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: hyphen -Encoding: 45 45 13 -Width: 366 -Flags: W -HStem: 205 67<72 305> -VStem: 55 257 -LayerCount: 2 -Fore -SplineSet -69 261 m 1 - 69 261 273 271 305 272 c 0 - 309 272 312 272 312 264 c 0 - 312 247 305 222 297 205 c 1 - 251 202 151 198 62 194 c 0 - 57 194 55 196 55 205 c 0 - 55 224 62 246 69 261 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: iacute -Encoding: 237 237 171 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 427 12 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" iacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Iacute -Encoding: 205 205 139 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 456 0 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: iacute.sc -Encoding: 65611 -1 521 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 433 24 2 -Refer: 481 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ibreve -Encoding: 301 301 313 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 415 13 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ibreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ibreve -Encoding: 300 300 312 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 433 0 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ibreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ibreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ibreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ibreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ibreve.sc -Encoding: 65653 -1 563 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 416 25 2 -Refer: 481 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: icircumflex -Encoding: 238 238 172 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 403 13 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" icircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Icircumflex -Encoding: 206 206 140 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 426 2 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/icircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: icircumflex.sc -Encoding: 65612 -1 522 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 390 25 2 -Refer: 481 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: idieresis -Encoding: 239 239 173 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 395 14 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" idieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idieresis -Encoding: 207 207 141 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 -13 12 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/idieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/idieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/idieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/idieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: idieresis.sc -Encoding: 65613 -1 523 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 386 26 2 -Refer: 481 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Idotaccent -Encoding: 304 304 314 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 434 -6 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" Idotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Idotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: Idotaccent.sc -Encoding: 65655 -1 565 -Width: 333 -Flags: W -HStem: -4 36<36 92 244 297> 415 36<36 92 244 297> 495 133<121 218> -VStem: 104 127<45 402> 104 131<513 610> -LayerCount: 2 -Fore -SplineSet -168 443 m 0xf0 - 206 443 256 449 296 451 c 1 - 297 448 297 441 297 434 c 0 - 297 426 297 415 294 415 c 0 - 286 415 242 403 239 392 c 0 - 232 365 231 341 231 309 c 2 - 231 141 l 2 - 231 108 232 83 239 56 c 0 - 242 45 286 32 294 32 c 0 - 297 32 297 22 297 14 c 0 - 297 7 297 -1 296 -4 c 1 - 256 -2 206 4 168 4 c 0 - 127 4 81 -2 40 -4 c 1 - 38 -2 36 7 36 15 c 0 - 36 23 38 32 40 32 c 0 - 52 32 95 45 98 56 c 0 - 104 81 104 123 104 130 c 2 - 104 319 l 2 - 104 325 104 367 98 392 c 0 - 95 403 52 415 40 415 c 0 - 38 415 36 425 36 433 c 0 - 36 441 38 449 40 451 c 1 - 81 449 127 443 168 443 c 0xf0 -EndSplineSet -Refer: 258 -1 N 1 0 0 1 418 -216 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: i.fi -Encoding: 65725 -1 900 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -SplineSet --25 403 m 1 - 21 403 l 2 - 59 403 95 406 130 412 c 128 - 165 418 192 427 211 436 c 1 - 214 435 218 432 222 428 c 128 - 226 424 228 421 228 419 c 1 - 227 415 224 406 222 393 c 128 - 220 380 219 370 218 363 c 1 - 217 349 217 329 217 302 c 2 - 217 142 l 2 - 217 94 220 63 225 50 c 0 - 229 41 246 35 280 32 c 1 - 282 28 283 23 283 14 c 128 - 283 5 282 -1 280 -4 c 1 - 236 1 193 3 153 3 c 0 - 108 3 64 1 20 -4 c 1 - 18 -1 16 5 16 14 c 128 - 16 23 18 28 20 32 c 1 - 58 35 79 41 82 50 c 0 - 87 63 90 94 90 142 c 2 - 90 254 l 2 - 90 296 87 323 81 334 c 0 - 76 343 66 349 50 352 c 128 - 34 355 19 357 4 357 c 2 - -25 357 l 1 - -25 403 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: i -Encoding: 105 105 73 -Width: 307 -Flags: W -HStem: -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> 531 141<102 204> -VStem: 82 142<552 651> 99 127<40 344> -LayerCount: 2 -Fore -SplineSet -226 302 m 2xf4 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 251 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1 - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 228 377 227 363 c 0 - 226 342 226 308 226 302 c 2xf4 -82 602 m 0xf8 - 82 641 114 672 153 672 c 0 - 192 672 224 641 224 602 c 0 - 224 563 192 531 153 531 c 0 - 114 531 82 563 82 602 c 0xf8 -EndSplineSet -Substitution2: "'ccmp' Turkish i-1" i.TRK -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" i.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_I.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_I.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_I.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_I.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: I -Encoding: 73 73 41 -Width: 351 -Flags: W -HStem: -4 36<35 100 252 317> 610 36<35 100 252 317> -VStem: 108 137<40 602> -LayerCount: 2 -Fore -SplineSet -177 640 m 0 - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 244 573 245 543 245 501 c 2 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 277 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" i.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: igrave -Encoding: 236 236 170 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 405 13 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" igrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Igrave -Encoding: 204 204 138 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 400 0 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/igrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/igrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/igrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/igrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: igrave.sc -Encoding: 65610 -1 520 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 374 27 2 -Refer: 481 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ij.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ij.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ij.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ij.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij -Encoding: 307 307 390 -Width: 537 -Flags: HW -LayerCount: 2 -Fore -Refer: 74 106 N 1 0 0 1 258 0 2 -Refer: 73 105 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ij.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_I_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_I_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_I_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_I_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: IJ -Encoding: 306 306 389 -Width: 604 -Flags: HW -LayerCount: 2 -Fore -Refer: 42 74 N 1 0 0 1 268 0 2 -Refer: 41 73 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ij.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ij.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ij.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ij.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij.sc -Encoding: 65657 -1 567 -Width: 602 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 482 -1 N 1 0 0 1 292 0 2 -Refer: 481 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: imacron -Encoding: 299 299 311 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 395 42 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" imacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Imacron -Encoding: 298 298 310 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 428 11 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/imacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/imacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/imacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/imacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: imacron.sc -Encoding: 65652 -1 562 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 419 55 2 -Refer: 481 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/infinity.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/infinity.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/infinity.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/infinity.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: infinity -Encoding: 8734 8734 237 -Width: 873 -Flags: W -HStem: 38 72<178 303 589 697> 344 72<178 287 569 695> -VStem: 50 87<153 299> 736 87<154 299> -LayerCount: 2 -Fore -SplineSet -630 349 m 0 - 570 349 509 261 493 240 c 0 - 492 239 492 239 493 238 c 0 - 514 209 578 110 645 110 c 0 - 695 110 736 163 736 228 c 0 - 736 297 685 349 630 349 c 0 -137 224 m 0 - 137 156 187 107 239 107 c 0 - 303 107 356 183 379 213 c 0 - 380 214 380 214 379 215 c 0 - 363 238 300 344 232 344 c 0 - 179 344 137 290 137 224 c 0 -244 416 m 0 - 339 416 408 341 448 294 c 0 - 449 292 453 291 454 293 c 0 - 495 345 561 416 656 416 c 0 - 749 416 823 329 823 236 c 0 - 823 129 732 38 625 38 c 0 - 497 38 431 158 420 158 c 2 - 419 158 l 1 - 367 96 308 36 212 36 c 0 - 119 36 50 125 50 218 c 0 - 50 324 138 416 244 416 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: iogonek -Encoding: 303 303 388 -Width: 307 -Flags: W -HStem: -213 68<117 198> -4 36<26 91 234 292> 354 30<27 86> 416 20G<202 224> 531 141<102 204> -VStem: 61 72<-163 -79> 82 142<552 651> 99 127<40 344> -LayerCount: 2 -Fore -SplineSet -82 602 m 0xfa - 82 641 114 672 153 672 c 0 - 192 672 224 641 224 602 c 0 - 224 563 192 531 153 531 c 0 - 114 531 82 563 82 602 c 0xfa -226 302 m 2xf9 - 226 142 l 2xf9 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 270 -2 251 0 230 1 c 1 - 188 -24 133 -57 133 -99 c 0 - 133 -120 145 -145 181 -145 c 0 - 208 -145 244 -114 254 -106 c 1 - 257 -106 260 -109 260 -117 c 0 - 260 -122 256 -138 253 -142 c 0 - 238 -161 188 -213 133 -213 c 0 - 101 -213 61 -188 61 -137 c 0xfc - 61 -83 131 -17 187 3 c 1 - 179 3 170 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 0 - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 228 377 227 363 c 0 - 226 342 226 308 226 302 c 2xf9 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" iogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: Iogonek -Encoding: 302 302 387 -Width: 351 -Flags: W -HStem: -213 68<127 207> -4 36<35 100 252 317> 610 36<35 100 252 317> -VStem: 71 72<-163 -79> 108 137<40 602> -LayerCount: 2 -Fore -SplineSet -177 640 m 0xe8 - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 244 573 245 543 245 501 c 2 - 245 142 l 2xe8 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 294 -2 268 0 241 1 c 1 - 199 -24 143 -57 143 -99 c 0 - 143 -120 155 -145 191 -145 c 0 - 218 -145 254 -114 264 -106 c 1 - 267 -106 270 -109 270 -117 c 0 - 270 -122 266 -138 263 -142 c 0 - 248 -161 198 -213 143 -213 c 0 - 111 -213 71 -188 71 -137 c 0xf0 - 71 -83 139 -17 197 3 c 1 - 189 3 182 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/iogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/iogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: iogonek.sc -Encoding: 65654 -1 564 -Width: 317 -Flags: W -HStem: -211 68<123 203> -4 36<46 90 228 272> 407 36<45 90 228 273> -VStem: 67 72<-161 -84> 96 127<45 395> -LayerCount: 2 -Fore -SplineSet -160 438 m 0xe8 - 193 438 240 439 271 443 c 1 - 275 437 276 413 271 407 c 1 - 262 406 231 405 228 396 c 1 - 222 383 223 362 223 335 c 2 - 223 104 l 2 - 223 77 222 57 228 44 c 1 - 231 35 262 33 271 32 c 1 - 276 26 275 2 271 -4 c 1 - 263 -3 255 -2 246 -1 c 1 - 205 -11 139 -64 139 -97 c 0 - 139 -118 151 -143 187 -143 c 0 - 214 -143 250 -112 260 -104 c 1 - 263 -104 266 -107 266 -115 c 0 - 266 -120 262 -136 259 -140 c 0 - 244 -159 194 -211 139 -211 c 0 - 107 -211 67 -186 67 -135 c 0xf0 - 67 -83 152 -17 194 1 c 1 - 181 1 170 2 159 2 c 0 - 126 2 78 0 47 -4 c 1 - 43 2 42 26 47 32 c 1 - 56 33 87 35 90 44 c 1 - 96 57 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 383 90 396 c 1 - 87 405 56 406 47 407 c 1 - 42 413 43 437 47 443 c 1 - 78 439 127 438 160 438 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: i.sc -Encoding: 65571 -1 481 -Width: 318 -Flags: W -HStem: -4 36<42 90 228 276> 407 36<42 90 228 276> -VStem: 96 127<45 395> -LayerCount: 2 -Fore -SplineSet -160 438 m 0 - 193 438 243 439 274 443 c 1 - 278 437 279 413 274 407 c 1 - 265 406 231 405 228 396 c 0 - 222 383 223 362 223 335 c 2 - 223 104 l 2 - 223 77 222 57 228 44 c 0 - 231 35 265 33 274 32 c 1 - 279 26 278 2 274 -4 c 1 - 243 0 192 2 159 2 c 0 - 126 2 75 0 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 383 90 396 c 0 - 87 405 53 406 44 407 c 1 - 39 413 40 437 44 443 c 1 - 75 439 127 438 160 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: itilde -Encoding: 297 297 309 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 399 14 2 -Refer: 242 305 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" itilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Itilde -Encoding: 296 296 308 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 252 -1 N 1 0 0 1 421 5 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/itilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/itilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/itilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/itilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: itilde.sc -Encoding: 65651 -1 561 -Width: 318 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 408 26 2 -Refer: 481 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: i.TRK -Encoding: 65721 -1 646 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 73 105 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" i.TRK.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/i._T_R_K.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: i.TRK.sc -Encoding: 65722 -1 647 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 565 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: jcircumflex -Encoding: 309 309 316 -Width: 279 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 382 13 2 -Refer: 378 567 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" jcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Jcircumflex -Encoding: 308 308 315 -Width: 336 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 421 2 2 -Refer: 42 74 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/jcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: jcircumflex.sc -Encoding: 65658 -1 568 -Width: 310 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 436 25 2 -Refer: 482 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.fj.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.fj.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.fj.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.fj.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -StartChar: j.fj -Encoding: 65727 -1 902 -Width: 282 -Flags: HW -LayerCount: 2 -Back -SplineSet --25.390625 403.3203125 m 1 - 20.5078125 403.3203125 l 2 - 58.59375 403.3203125 95.1337890625 406.331054688 130.126953125 412.353515625 c 128 - 165.120117188 418.375976562 192.057617188 426.106445312 210.9375 435.546875 c 1 - 214.192382812 434.5703125 217.7734375 431.965820312 221.6796875 427.734375 c 128 - 225.5859375 423.502929688 227.5390625 420.573242188 227.5390625 418.9453125 c 1 - 226.237304688 415.0390625 224.446289062 406.494140625 222.16796875 393.310546875 c 128 - 219.889648438 380.126953125 218.424804688 370.1171875 217.7734375 363.28125 c 1 - 217.122070312 348.958007812 216.796875 328.450195312 216.796875 301.7578125 c 2 - 216.796875 141.6015625 l 2 - 216.796875 93.4248046875 219.401367188 62.8251953125 224.609375 49.8046875 c 0 - 228.190429688 40.6904296875 246.745117188 34.8310546875 280.2734375 32.2265625 c 1 - 282.551757812 28.6455078125 283.610351562 22.4609375 283.447265625 13.671875 c 128 - 283.284179688 4.8828125 282.2265625 -0.9765625 280.2734375 -3.90625 c 1 - 236.002929688 0.6513671875 193.684570312 2.9296875 153.3203125 2.9296875 c 0 - 108.3984375 2.9296875 63.8017578125 0.6513671875 19.53125 -3.90625 c 1 - 17.578125 -0.9765625 16.5205078125 4.8828125 16.357421875 13.671875 c 128 - 16.1943359375 22.4609375 17.2529296875 28.6455078125 19.53125 32.2265625 c 1 - 57.9423828125 35.15625 78.7763671875 41.015625 82.03125 49.8046875 c 0 - 87.2392578125 62.8251953125 89.84375 93.4248046875 89.84375 141.6015625 c 2 - 89.84375 253.90625 l 2 - 89.84375 296.223632812 86.9140625 322.916992188 81.0546875 333.984375 c 0 - 76.4970703125 342.7734375 66.162109375 348.876953125 50.048828125 352.294921875 c 128 - 33.935546875 355.712890625 18.5546875 357.421875 3.90625 357.421875 c 2 - -25.390625 357.421875 l 1 - -25.390625 403.3203125 l 1 -EndSplineSet -Fore -SplineSet --25 403 m 1 - 21 403 l 2 - 59 403 95 406 130 412 c 128 - 165 418 192 427 211 436 c 1 - 214 435 218 432 222 428 c 128 - 226 424 228 421 228 419 c 1 - 227 415 224 406 222 393 c 128 - 220 380 219 370 218 363 c 1 - 217 349 217 329 217 302 c 2 - 217 117 l 2 - 217 18 201 -54 170 -100 c 0 - 149 -131 120 -157 85 -179 c 128 - 50 -201 24 -213 5 -213 c 1 - -4 -208 -9 -202 -9 -196 c 0 - -9 -192 -9 -190 -8 -189 c 0 - -5 -187 -1 -185 4 -182 c 128 - 9 -179 17 -171 28 -158 c 128 - 39 -145 49 -130 57 -113 c 128 - 65 -96 73 -72 80 -41 c 128 - 87 -10 90 24 90 62 c 2 - 90 254 l 2 - 90 297 87 323 80 334 c 1 - 75 343 65 349 49 352 c 128 - 33 355 18 357 4 357 c 2 - -25 357 l 1 - -25 403 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: j -Encoding: 106 106 74 -Width: 279 -Flags: W -HStem: -213 23<-10 4> 354 30<15 73> 416 20G<189 211> 529 145<91 194> -VStem: 70 145<550 653> 87 127<-42 344> -LayerCount: 2 -Fore -SplineSet -87 62 m 2xf4 - 87 254 l 2xf4 - 87 264 86 319 78 334 c 0 - 70 349 24 354 17 354 c 1 - 14 356 13 384 18 384 c 1 - 92 390 171 417 208 436 c 1 - 215 434 225 422 225 419 c 1 - 222 411 216 377 215 363 c 0xf8 - 214 342 214 308 214 302 c 2 - 214 117 l 2 - 214 35 203 -47 167 -100 c 0 - 121 -166 35 -213 2 -213 c 1 - -5 -209 -12 -202 -12 -196 c 0 - -12 -194 -12 -190 -11 -189 c 0 - -7 -187 87 -139 87 62 c 2xf4 -70 602 m 0xf8 - 70 642 103 674 143 674 c 0 - 183 674 215 642 215 602 c 0 - 215 562 183 529 143 529 c 0 - 103 529 70 562 70 602 c 0xf8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" j.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: J -Encoding: 74 74 42 -Width: 336 -Flags: W -HStem: -213 60<-60 64> 610 36<29 94 246 311> -VStem: 102 137<-9 602> -LayerCount: 2 -Fore -SplineSet -171 640 m 0 - 212 640 271 642 309 646 c 1 - 313 640 314 617 309 610 c 1 - 296 609 251 606 246 593 c 0 - 238 573 238 543 238 501 c 2 - 238 140 l 2 - 238 -83 127 -213 -51 -213 c 3 - -70 -213 -97 -202 -106 -195 c 1 - -113 -184 -122 -174 -122 -153 c 3 - -122 -120 -94 -88 -63 -88 c 3 - -41 -88 -24 -104 -8 -120 c 0 - 8 -136 23 -153 38 -153 c 3 - 100 -153 102 -30 102 132 c 2 - 102 501 l 2 - 102 543 102 573 94 593 c 0 - 89 606 44 609 31 610 c 1 - 26 617 27 640 31 646 c 1 - 69 642 130 640 171 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" j.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/j.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/j.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: j.sc -Encoding: 65572 -1 482 -Width: 310 -Flags: W -HStem: -146 51<-15 76> 407 36<32 86 226 285> -VStem: 92 127<-19 395> -LayerCount: 2 -Fore -SplineSet -92 336 m 2 - 92 363 91 383 86 396 c 0 - 83 405 43 406 34 407 c 1 - 29 413 30 437 34 443 c 1 - 67 439 129 438 165 438 c 0 - 201 438 250 439 283 443 c 1 - 287 437 288 413 283 407 c 1 - 271 406 231 405 226 396 c 0 - 218 383 219 361 219 333 c 2 - 219 93 l 2 - 219 -57 131 -146 -8 -146 c 3 - -23 -146 -54 -141 -61 -134 c 1 - -67 -127 -79 -107 -79 -85 c 3 - -79 -50 -51 -33 -30 -33 c 3 - 0 -33 28 -95 49 -95 c 3 - 91 -95 92 -9 92 97 c 2 - 92 336 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: k -Encoding: 107 107 75 -Width: 576 -Flags: W -HStem: -4 36<14 77 222 285 511 573> 396 34<308 369 474 549> 609 31<18 74> 659 20G<208 212> -VStem: 86 127<40 196 230 601> -LayerCount: 2 -Fore -SplineSet -213 142 m 2 - 213 100 213 70 221 50 c 0 - 226 37 271 33 284 32 c 1 - 289 25 288 2 284 -4 c 1 - 246 0 191 3 150 3 c 0 - 109 3 54 0 16 -4 c 1 - 12 2 11 25 16 32 c 1 - 29 33 74 37 79 50 c 0 - 87 70 86 100 86 142 c 2 - 86 545 l 2 - 86 562 86 575 79 592 c 0 - 74 604 33 609 21 609 c 1 - 17 609 16 637 21 641 c 1 - 130 651 206 679 209 679 c 1 - 215 678 223 667 224 662 c 1 - 224 662 213 601 213 562 c 0 - 212 230 l 1 - 229 236 252 251 286 280 c 0 - 354 339 371 359 371 374 c 0 - 371 386 327 395 309 396 c 1 - 306 405 306 427 311 429 c 1 - 311 429 398 425 439 425 c 0 - 474 425 503 428 547 430 c 1 - 553 420 550 399 544 396 c 1 - 514 393 473 383 448 365 c 0 - 427 350 379 303 319 250 c 1 - 388 169 402 158 457 96 c 0 - 511 36 543 35 574 35 c 1 - 580 24 575 8 574 6 c 1 - 558 0 512 -6 475 -6 c 0 - 418 -6 370 18 341 52 c 2 - 341 52 274 124 226 184 c 0 - 222 190 213 196 213 196 c 1 - 213 142 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" k.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: K -Encoding: 75 75 43 -Width: 702 -Flags: W -HStem: -4 36<36 98 253 316 648 714> 610 36<35 100 252 317 426 482 597 674> -VStem: 108 137<40 299 329 602> -LayerCount: 2 -Fore -SplineSet -177 640 m 0 - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 244 573 245 543 245 501 c 2 - 245 329 l 1 - 288 363 323 394 346 418 c 0 - 405 478 432 502 473 557 c 0 - 483 570 483 582 483 589 c 0 - 483 610 442 611 428 611 c 1 - 423 619 423 637 426 646 c 1 - 462 644 517 640 553 640 c 0 - 596 640 638 642 674 646 c 1 - 677 639 677 618 672 612 c 1 - 663 611 597 604 562 569 c 2 - 562 569 451 457 378 380 c 0 - 372 373 372 369 375 364 c 0 - 446 268 551 127 551 127 c 1 - 623 35 705 32 713 32 c 1 - 718 25 714 -2 713 -4 c 1 - 685 -6 625 -8 585 -8 c 0 - 510 -8 460 32 436 65 c 0 - 411 100 307 237 264 295 c 0 - 261 298 256 299 254 299 c 0 - 250 299 247 297 245 293 c 1 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 277 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" k.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: kgreenlandic -Encoding: 312 312 391 -Width: 588 -Flags: W -HStem: -6 41<27 92 233 298 515 586> 354 30<27 86> 396 34<321 382 486 561> 416 20G<202 224> -VStem: 99 127<40 196 230 344> -LayerCount: 2 -Fore -SplineSet -226 230 m 1xd8 - 243 236 264 251 298 280 c 0 - 366 339 384 359 384 374 c 0 - 384 386 340 395 322 396 c 1 - 319 405 319 427 324 429 c 1 - 324 429 411 425 452 425 c 0 - 487 425 516 428 560 430 c 1 - 566 420 563 399 557 396 c 1xe8 - 527 393 485 383 460 365 c 0 - 439 350 391 303 331 250 c 1 - 400 169 415 158 470 96 c 0 - 524 36 555 35 586 35 c 1 - 592 24 587 8 586 6 c 1 - 570 0 525 -6 488 -6 c 0 - 431 -6 383 18 354 52 c 2 - 354 52 287 124 239 184 c 0 - 235 190 226 196 226 196 c 1 - 226 142 l 2 - 226 100 226 70 234 50 c 0 - 239 37 283 33 296 32 c 1 - 301 25 300 2 296 -4 c 1 - 258 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1 - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 228 377 227 363 c 0 - 226 342 226 236 226 230 c 1xd8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" kgreenlandic.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/kgreenlandic.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: kgreenlandic.sc -Encoding: 65660 -1 570 -Width: 568 -Flags: HW -LayerCount: 2 -Fore -Refer: 483 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/k.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/k.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/k.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/k.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -StartChar: k.sc -Encoding: 65573 -1 483 -Width: 568 -Flags: W -HStem: -4 33<44 90 228 274 507 566> 407 36<42 90 228 276 344 391 463 532> -VStem: 96 127<42 192 245 395> -LayerCount: 2 -Fore -SplineSet -160 438 m 0 - 193 438 244 439 274 443 c 1 - 278 437 279 413 274 407 c 1 - 265 406 231 405 228 396 c 0 - 223 383 223 365 223 338 c 2 - 223 245 l 1 - 252 267 276 286 294 300 c 0 - 338 334 348 343 379 372 c 0 - 387 380 391 388 391 393 c 0 - 391 407 356 408 346 408 c 1 - 341 415 341 435 344 443 c 1 - 368 441 411 438 435 438 c 0 - 464 438 508 439 532 443 c 1 - 535 437 535 415 530 409 c 1 - 524 408 477 403 451 381 c 2 - 451 381 367 310 317 269 c 0 - 311 264 312 262 315 259 c 0 - 365 197 386 173 433 119 c 16 - 483 61 515 26 565 26 c 1 - 570 20 566 -5 565 -7 c 1 - 545 -9 513 -11 486 -11 c 0 - 414 -11 358 37 340 59 c 0 - 319 84 259 150 230 190 c 0 - 228 192 228 192 227 192 c 0 - 224 192 224 192 223 190 c 1 - 223 103 l 2 - 223 75 223 54 228 41 c 0 - 231 32 265 30 274 29 c 1 - 279 23 278 2 274 -4 c 1 - 244 0 192 2 159 2 c 0 - 126 2 74 0 44 -4 c 1 - 40 2 39 23 44 29 c 1 - 53 30 87 32 90 41 c 0 - 96 54 96 75 96 102 c 2 - 96 338 l 2 - 96 365 96 383 90 396 c 0 - 87 405 53 406 44 407 c 1 - 39 413 40 437 44 443 c 1 - 74 439 127 438 160 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lacute -Encoding: 314 314 320 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 431 0 2 -Refer: 76 108 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" lacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Lacute -Encoding: 313 313 319 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 451 0 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: lacute.sc -Encoding: 65661 -1 571 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 481 24 2 -Refer: 484 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: lcaron -Encoding: 318 318 324 -Width: 333 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 599 -61 2 -Refer: 76 108 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" lcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Lcaron -Encoding: 317 317 323 -Width: 591 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 767 -61 2 -Refer: 44 76 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lcaron.sc -Encoding: 65663 -1 573 -Width: 470 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 640 -250 2 -Refer: 484 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: ldot -Encoding: 320 320 326 -Width: 509 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 652 -524 2 -Refer: 76 108 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ldot.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ldot -Encoding: 319 319 325 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 717 -466 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ldot.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ldot.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ldot.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ldot.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ldot.sc -Encoding: 65664 -1 574 -Width: 477 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 117 183 N 0.885988 0 0 0.878668 272 28 2 -Refer: 484 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lessequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lessequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lessequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lessequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: lessequal -Encoding: 8804 8804 239 -Width: 501 -Flags: W -HStem: 6 55<43 425> -LayerCount: 2 -Fore -SplineSet -422 61 m 1 - 422 61 431 62 429 50 c 0 - 422 3 417 9 414 6 c 1 - 41 6 l 1 - 41 6 32 5 34 19 c 0 - 36 33 37 36 43 56 c 0 - 45 62 50 61 50 61 c 1 - 422 61 l 1 -437 133 m 0 - 437 126 427 84 421 84 c 0 - 420 84 418 85 416 86 c 2 - 50 272 l 2 - 35 280 32 294 32 311 c 0 - 32 322 40 329 50 334 c 2 - 410 517 l 2 - 412 518 414 519 415 519 c 0 - 418 519 425 509 432 473 c 0 - 433 467 429 464 429 464 c 1 - 110 303 l 1 - 434 139 l 1 - 434 139 437 138 437 133 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/less.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/less.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/less.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/less.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: less -Encoding: 60 60 28 -Width: 483 -Flags: HW -LayerCount: 2 -Fore -SplineSet -434 44 m 0 - 434 37 424 -15 418 -15 c 0 - 417 -15 415 -14 413 -13 c 2 - 47 173 l 2 - 32 181 29 195 29 212 c 0 - 29 223 37 230 47 235 c 2 - 411 418 l 2 - 413 419 415 420 416 420 c 0 - 419 420 426 400 433 364 c 0 - 434 358 430 355 430 355 c 1 - 119 204 l 1 - 431 50 l 1 - 431 50 434 49 434 44 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" less.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/less.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/less.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/less.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/less.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: less.sc -Encoding: 65558 -1 468 -Width: 473 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 28 60 N 1 0 0 1 -5 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: l -Encoding: 108 108 76 -Width: 298 -Flags: W -HStem: -4 36<14 79 221 286> 609 31<18 74> 659 20G<208 212> -VStem: 86 127<40 601> -LayerCount: 2 -Fore -SplineSet -86 545 m 2 - 86 562 86 575 79 592 c 0 - 74 604 33 609 21 609 c 1 - 17 609 16 637 21 641 c 1 - 130 651 206 679 209 679 c 1 - 215 678 223 667 224 662 c 1 - 224 662 213 601 213 562 c 0 - 213 142 l 18 - 213 100 213 70 221 50 c 0 - 226 37 271 33 284 32 c 1 - 289 25 288 2 284 -4 c 1 - 246 0 191 3 150 3 c 0 - 109 3 54 0 16 -4 c 1 - 12 2 11 25 16 32 c 1 - 29 33 74 37 79 50 c 0 - 87 70 86 100 86 142 c 2 - 86 545 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" l.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_L.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_L.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_L.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_L.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: L -Encoding: 76 76 44 -Width: 565 -Flags: W -HStem: -3 36<35 100> -2 43<252 458> 610 36<35 100 252 317> -VStem: 108 137<49 602> -LayerCount: 2 -Fore -SplineSet -245 138 m 2xb0 - 245 132 244 81 252 61 c 0 - 258 47 291 41 316 41 c 0 - 380 41 l 2 - 417 41 449 51 471 73 c 0 - 492 94 507 122 524 166 c 0 - 525 170 530 172 537 172 c 0 - 547 172 564 169 567 166 c 1 - 548 113 521 41 514 -2 c 1 - 487 -2 308 -2 177 -2 c 0x70 - 107 -2 50 -3 37 -3 c 1 - 33 3 32 26 37 33 c 1 - 50 34 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0 - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 244 573 245 543 245 501 c 2 - 245 138 l 2xb0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" l.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/logicalnot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/logicalnot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/logicalnot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/logicalnot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: logicalnot -Encoding: 172 172 107 -Width: 575 -Flags: W -HStem: 354 57<49 438> -VStem: 438 70<160 354> -LayerCount: 2 -Fore -SplineSet -508 410 m 17 - 508 165 l 1 - 507 164 471 156 450 156 c 0 - 440 156 438 163 438 163 c 1 - 438 163 438 319 438 354 c 1 - 51 354 l 1 - 51 354 45 353 45 363 c 1 - 45 363 50 410 60 410 c 2 - 508 410 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/longs.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/longs.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/longs.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/longs.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: longs -Encoding: 383 383 649 -Width: 325 -Flags: W -HStem: -4 36<24 89 231 296> 372 46<31 97> 611 70<235 314> -VStem: 97 127<40 372 418 528> -LayerCount: 2 -Fore -SplineSet -224 142 m 0 - 224 100 223 70 231 50 c 0 - 236 37 281 33 294 32 c 1 - 299 25 298 2 294 -4 c 1 - 256 0 201 3 160 3 c 0 - 119 3 64 0 26 -4 c 1 - 22 2 21 25 26 32 c 1 - 39 33 84 37 89 50 c 0 - 97 70 97 100 97 142 c 2 - 97 142 97 285 97 372 c 1 - 71 372 52 372 27 372 c 1 - 22 374 22 381 22 385 c 1 - 32 399 42 408 54 418 c 1 - 67 418 87 418 97 418 c 9 - 97 433 l 2 - 97 567 226 682 299 682 c 0 - 330 682 347 676 361 672 c 1 - 378 663 399 650 399 627 c 27 - 399 594 383 560 350 560 c 19 - 321 560 304 582 285 597 c 0 - 274 606 262 611 246 611 c 0 - 230 611 221 577 221 531 c 0 - 224 142 l 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/l.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/l.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/l.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/l.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: l.sc -Encoding: 65574 -1 484 -Width: 455 -Flags: W -HStem: -2 40<43 90 228 374> 407 36<42 90 228 276> -VStem: 96 127<51 395> -LayerCount: 2 -Fore -SplineSet -223 102 m 2 - 223 98 223 64 228 51 c 0 - 232 42 254 38 272 38 c 0 - 312 38 l 2 - 337 38 358 44 374 59 c 0 - 388 73 399 91 411 119 c 0 - 412 122 418 123 423 123 c 0 - 430 123 442 122 444 120 c 1 - 431 82 413 29 408 -2 c 1 - 377 -2 72 -2 44 -3 c 1 - 40 3 39 27 44 33 c 1 - 53 34 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 335 l 2 - 96 362 96 383 90 396 c 0 - 87 405 53 406 44 407 c 1 - 39 413 40 437 44 443 c 1 - 74 439 127 438 160 438 c 0 - 193 438 244 439 274 443 c 1 - 278 437 279 413 274 407 c 1 - 265 406 231 404 228 396 c 0 - 223 383 223 363 223 336 c 2 - 223 102 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: lslash -Encoding: 322 322 393 -Width: 304 -Flags: W -HStem: -4 36<15 79 222 287> 413 20G<268 299> 609 31<19 75> 659 20<209 213> -VStem: 17 299 87 127<40 601> -LayerCount: 2 -Fore -SplineSet -35 205 m 1xf8 - 29 212 12 231 17 236 c 1 - 296 433 l 1 - 302 427 320 406 315 401 c 1 - 35 205 l 1xf8 -EndSplineSet -Refer: 76 108 N 1 0 0 1 1 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" lslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Lslash -Encoding: 321 321 392 -Width: 570 -Flags: W -HStem: -3 36<40 105> -2 43<256 462> 610 36<40 105 257 322> -VStem: 113 137<49 602> -LayerCount: 2 -Fore -SplineSet -39 176 m 1x30 - 33 183 15 202 20 207 c 1 - 364 445 l 1 - 370 439 389 419 384 414 c 1 - 39 176 l 1x30 -EndSplineSet -Refer: 44 76 N 1 0 0 1 5 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/lslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/lslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: lslash.sc -Encoding: 65665 -1 575 -Width: 459 -VWidth: 0 -Flags: W -HStem: -2 40<48 95 233 378> 407 36<47 95 233 281> -VStem: 101 127<51 395> -LayerCount: 2 -Fore -SplineSet -42 124 m 1 - 36 131 18 150 23 155 c 1 - 296 345 l 1 - 302 339 320 318 315 313 c 1 - 42 124 l 1 -EndSplineSet -Refer: 484 -1 N 1 0 0 1 5 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/macron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/macron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/macron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/macron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: macron -Encoding: 175 175 109 -Width: 458 -Flags: W -HStem: 534 49<550 769> -VStem: 549 227<534 583> -LayerCount: 2 -Fore -SplineSet -549 543 m 0 - 549 545 550 583 561 583 c 2 - 771 583 l 2 - 773 583 775 582 775 576 c 0 - 775 571 775 559 770 541 c 0 - 768 535 763 534 763 534 c 1 - 555 534 l 1 - 555 534 549 533 549 543 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/m.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/m.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/m.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/m.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: m -Encoding: 109 109 77 -Width: 862 -Flags: W -HStem: -4 36<26 91 234 292 315 370 512 575 597 650 792 857> 354 30<27 86> 356 79<303 393 579 698> -VStem: 99 127<40 331> 377 127<40 331> 658 127<40 327> -LayerCount: 2 -Fore -SplineSet -371 436 m 0xbc - 433 436 469 414 492 352 c 1 - 535 394 607 436 652 436 c 0 - 763 436 785 359 785 205 c 2 - 785 142 l 2 - 785 100 784 70 792 50 c 0 - 797 37 842 33 855 32 c 1 - 860 25 859 2 855 -4 c 1 - 817 0 762 3 721 3 c 0 - 680 3 637 0 599 -4 c 1 - 595 2 594 25 599 32 c 1 - 612 33 645 37 650 50 c 0 - 658 70 658 100 658 142 c 2 - 658 219 l 2 - 658 289 644 356 592 356 c 0 - 553 356 500 323 500 303 c 8 - 500 301 500 299 500 297 c 0 - 502 270 504 239 504 205 c 2 - 504 142 l 2 - 504 100 504 70 512 50 c 0 - 517 37 560 33 573 32 c 1 - 578 25 577 2 573 -4 c 1 - 535 0 482 3 441 3 c 0 - 400 3 355 0 317 -4 c 1 - 313 2 312 25 317 32 c 1 - 330 33 365 37 370 50 c 0 - 378 70 377 100 377 142 c 2 - 377 219 l 2 - 377 289 364 356 312 356 c 0xbc - 273 356 226 322 226 302 c 2 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 251 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1xdc - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 226 364 227 363 c 0 - 227 360 227 358 228 357 c 1 - 230 357 233 360 235 362 c 0 - 262 393 326 436 371 436 c 0xbc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" m.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_M.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_M.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_M.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_M.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: M -Encoding: 77 77 45 -Width: 885 -Flags: W -HStem: -4 36<18 84 191 263 571 637 797 860> 610 36<60 122 783 832> -LayerCount: 2 -Fore -SplineSet -167 641 m 0 - 200 641 231 644 270 646 c 1 - 298 584 381 398 454 232 c 1 - 454 232 457 230 458 230 c 0 - 459 230 462 235 462 236 c 2 - 462 236 535 416 577 533 c 24 - 592 575 610 643 610 643 c 1 - 619 642 696 640 715 640 c 0 - 748 640 790 644 829 646 c 1 - 833 642 838 617 833 609 c 1 - 825 609 792 606 782 599 c 0 - 772 592 768 585 769 559 c 0 - 772 491 777 273 783 148 c 0 - 785 110 786 75 796 50 c 0 - 802 36 850 32 858 32 c 1 - 862 23 863 6 860 -4 c 1 - 821 -2 770 4 727 4 c 0 - 682 4 618 -2 573 -4 c 1 - 569 0 568 24 571 32 c 1 - 583 32 631 37 640 51 c 0 - 645 59 648 75 648 85 c 0 - 648 95 648 127 647 145 c 2 - 637 485 l 2 - 637 488 637 511 630 511 c 0 - 628 511 627 509 625 504 c 2 - 453 39 l 2 - 450 30 429 -2 411 -2 c 0 - 408 -2 405 -1 402 0 c 1 - 185 511 l 1 - 178 308 178 284 172 131 c 0 - 171 110 174 70 176 63 c 0 - 182 42 253 32 261 32 c 1 - 264 25 266 6 263 -4 c 1 - 224 -2 185 4 142 4 c 0 - 97 4 65 -2 20 -4 c 1 - 16 3 16 21 19 31 c 1 - 31 31 91 41 102 66 c 0 - 106 76 112 136 113 152 c 0 - 119 266 128 521 130 567 c 0 - 130 574 130 582 125 589 c 0 - 117 600 79 610 62 610 c 1 - 56 618 60 644 62 646 c 1 - 107 644 122 641 167 641 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" m.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/minus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/minus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/minus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/minus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minus -Encoding: 8722 8722 233 -Width: 595 -Flags: W -HStem: 204 72<69 522> -LayerCount: 2 -Fore -SplineSet -64 214 m 1 - 64 214 68 276 78 276 c 2 - 524 276 l 2 - 527 276 531 277 531 270 c 0 - 531 262 527 227 522 210 c 0 - 520 204 516 204 516 204 c 1 - 70 204 l 1 - 70 204 64 204 64 214 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/minute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/minute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/minute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/minute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minute -Encoding: 8242 8242 215 -Width: 163 -Flags: W -HStem: 473 210<64 77> -VStem: 44 102 -LayerCount: 2 -Fore -SplineSet -102 683 m 0 - 122 683 146 671 146 651 c 0 - 146 605 94 515 69 482 c 0 - 65 477 60 473 56 473 c 0 - 50 473 44 477 44 484 c 0 - 44 487 51 597 59 650 c 0 - 61 662 83 683 102 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/m.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/m.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/m.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/m.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: m.sc -Encoding: 65575 -1 485 -Width: 708 -VWidth: 0 -Flags: W -HStem: -4 34<151 204 627 676> 407 36<49 100 618 655> 419 20G<457 467> -VStem: 105 47<42 307> 485 123<84 349> 493 124<43 285> -LayerCount: 2 -Fore -SplineSet -135 439 m 0xd8 - 158 439 180 441 207 443 c 1xd8 - 228 399 297 290 353 172 c 1 - 353 172 355 171 356 171 c 0 - 357 171 359 174 359 175 c 2 - 359 175 408 289 437 363 c 24 - 449 392 463 438 463 438 c 1xb8 - 470 437 508 438 522 438 c 0 - 545 438 627 441 654 443 c 1 - 656 439 660 413 654 406 c 1 - 648 406 625 404 618 399 c 0 - 611 394 607 391 608 373 c 0xd8 - 610 328 612 188 617 106 c 0 - 618 81 619 59 626 42 c 0 - 631 33 667 30 673 30 c 1 - 678 22 677 5 674 -4 c 1 - 647 -2 605 4 575 4 c 0 - 543 4 469 -2 437 -4 c 1 - 432 0 432 22 435 30 c 1 - 443 30 480 33 487 42 c 0 - 490 47 493 58 493 65 c 0xd4 - 493 72 493 92 492 104 c 2 - 485 306 l 2 - 484 317 484 349 478 349 c 0 - 477 349 475 348 474 345 c 2 - 348 26 l 2 - 346 20 329 -2 314 -2 c 0 - 312 -2 309 -1 307 0 c 1 - 152 307 l 1 - 147 171 148 199 145 96 c 0 - 144 81 147 56 148 51 c 0 - 151 37 198 30 203 30 c 1 - 206 23 207 5 204 -4 c 1 - 178 -2 149 4 120 4 c 0 - 90 4 64 -2 34 -4 c 1 - 29 3 30 20 33 29 c 1 - 42 29 83 35 93 51 c 0 - 100 62 99 79 100 111 c 0 - 102 187 104 349 105 379 c 0 - 105 384 105 389 100 394 c 0 - 93 401 65 407 51 407 c 1 - 44 414 49 441 51 443 c 1 - 82 441 104 439 135 439 c 0xd8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/mu.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/mu.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/mu.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/mu.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: mu -Encoding: 181 181 115 -Width: 499 -Flags: W -HStem: -8 119<276 366> -4 105<478 555> 416 20G<174 185 427 438> -VStem: 144 101<-200 4> 152 104<263 414> 403 109<322 414> 412 52<158 270> -LayerCount: 2 -Fore -SplineSet -225 215 m 1xa8 - 231 175 251 111 301 111 c 0 - 359 111 412 161 412 212 c 1xaa - 409 235 405 299 405 321 c 0 - 405 334 404 375 403 412 c 1 - 408 420 421 436 433 436 c 0 - 443 436 513 409 513 396 c 0xa4 - 513 365 498 318 487 275 c 0 - 479 245 473 223 464 190 c 17 - 463 110 497 102 515 102 c 0 - 552 102 572 136 582 153 c 1 - 588 153 598 133 600 126 c 0 - 601 122 599 109 598 106 c 0 - 584 65 558 -4 519 -4 c 0x62 - 472 -3 444 57 435 119 c 1 - 415 51 376 -8 321 -8 c 0 - 272 -8 224 74 216 134 c 1 - 218 110 223 -83 244 -198 c 1 - 239 -206 221 -222 203 -222 c 0 - 184 -222 144 -184 144 -171 c 0xb2 - 144 -153 156 109 168 211 c 1 - 168 234 152 349 152 371 c 0 - 152 384 153 406 155 414 c 1 - 159 425 168 436 180 436 c 0 - 190 436 257 409 257 396 c 0 - 257 359 249 328 243 301 c 0 - 235 263 231 242 225 215 c 1xa8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/multiply.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/multiply.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/multiply.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/multiply.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: multiply -Encoding: 215 215 149 -Width: 454 -Flags: HW -LayerCount: 2 -Fore -SplineSet -191 242 m 1 - 53 381 l 1 - 53 395 71 421 80 421 c 0 - 83 421 85 421 87 419 c 2 - 87 419 228 282 230 280 c 9 - 370 419 l 2 - 371 420 373 421 376 421 c 0 - 385 421 401 388 401 378 c 1 - 401 378 270 247 267 244 c 1 - 268 243 401 104 401 104 c 1 - 401 89 387 62 376 62 c 0 - 374 62 371 62 369 64 c 2 - 369 64 229 205 228 206 c 1 - 84 62 l 2 - 82 60 80 61 78 61 c 0 - 69 61 53 94 53 104 c 1 - 53 104 187 238 191 242 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" multiply.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/multiply.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/multiply.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/multiply.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/multiply.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: multiply.sc -Encoding: 65621 -1 531 -Width: 439 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 149 215 N 1 0 0 1 -8 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: nacute -Encoding: 324 324 328 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 594 12 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" nacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Nacute -Encoding: 323 323 327 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 678 0 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: nacute.sc -Encoding: 65666 -1 576 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 571 24 2 -Refer: 486 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/napostrophe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/napostrophe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/napostrophe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/napostrophe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: napostrophe -Encoding: 329 329 648 -Width: 582 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 245 -75 2 -Refer: 78 110 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ncaron -Encoding: 328 328 332 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 549 12 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ncaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ncaron -Encoding: 327 327 331 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 209 25 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ncaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ncaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ncaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ncaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ncaron.sc -Encoding: 65668 -1 578 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 548 24 2 -Refer: 486 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/n.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/n.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/n.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/n.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: n -Encoding: 110 110 78 -Width: 582 -Flags: W -HStem: -4 36<26 91 234 292 317 370 512 577> 354 30<27 86> 356 1<228 312> 416 20G<202 223> -VStem: 99 127<40 331> 377 127<40 327> -LayerCount: 2 -Fore -SplineSet -371 436 m 0xbc - 482 436 504 359 504 205 c 2 - 504 142 l 2 - 504 100 504 70 512 50 c 0 - 517 37 562 33 575 32 c 1 - 580 25 579 2 575 -4 c 1 - 537 0 482 3 441 3 c 0 - 400 3 357 0 319 -4 c 1 - 315 2 314 25 319 32 c 1 - 332 33 365 37 370 50 c 0 - 378 70 377 100 377 142 c 2 - 377 219 l 2 - 377 289 364 356 312 356 c 0xbc - 273 356 226 322 226 302 c 2 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 276 33 289 32 c 1 - 294 25 293 2 289 -4 c 1 - 251 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1xdc - 104 390 183 417 220 436 c 1 - 226 436 237 424 237 419 c 1 - 235 411 227 364 227 363 c 0 - 227 360 227 358 228 357 c 1 - 230 357 233 360 235 362 c 0 - 262 393 326 436 371 436 c 0xbc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" n.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_N.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_N.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_N.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_N.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: N -Encoding: 78 78 46 -Width: 742 -Flags: W -HStem: -4 36<29 101 200 274> 610 37<35 101 478 556 642 722> 610 29<38 96> -VStem: 121 60<49 506> 569 60<243 598> -LayerCount: 2 -Fore -SplineSet -147 640 m 0xb8 - 181 640 223 642 254 646 c 1 - 291 570 447 391 567 242 c 1 - 569 249 569 268 569 282 c 2 - 569 465 l 0 - 569 502 565 575 558 590 c 0 - 550 608 491 611 479 611 c 1 - 477 611 474 638 479 647 c 1xd8 - 524 645 553 640 598 640 c 0xb8 - 641 640 682 645 721 647 c 1 - 723 641 725 620 719 610 c 1 - 711 610 646 609 638 588 c 0 - 633 574 629 503 629 468 c 2 - 629 136 l 2 - 629 79 631 50 633 -1 c 1 - 630 -4 611 -5 608 -5 c 0 - 599 -5 588 5 578 18 c 2 - 180 507 l 1 - 180 153 l 2 - 180 118 186 73 191 59 c 0 - 198 40 263 33 271 33 c 1 - 277 23 275 2 273 -4 c 1 - 234 -2 193 4 150 4 c 0 - 105 4 76 -2 31 -4 c 1 - 26 5 29 32 31 32 c 1 - 43 32 101 40 109 58 c 0 - 116 73 121 119 121 156 c 0 - 121 284 121 374 121 502 c 0 - 121 529 116 571 103 590 c 0 - 94 603 51 610 39 610 c 0xd8 - 34 610 32 641 37 646 c 1 - 67 644 102 640 147 640 c 0xb8 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" n.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: nine -Encoding: 57 57 25 -Width: 532 -Flags: W -HStem: -6 25<100 125> 229 58<233 317> 589 41<224 300> -VStem: 63 128<336 508> 341 128<301 494> -LayerCount: 2 -Fore -SplineSet -334 305 m 1 - 340 333 341 377 341 408 c 0 - 341 490 321 589 259 589 c 0 - 221 589 191 534 191 446 c 0 - 191 363 216 286 285 286 c 0 - 297 286 320 291 334 305 c 1 -99 20 m 1 - 222 71 291 154 322 253 c 1 - 297 238 266 229 242 229 c 0 - 147 229 63 280 63 422 c 0 - 63 536 166 630 270 630 c 0 - 379 630 469 515 469 388 c 3 - 469 280 413 186 355 125 c 0 - 271 36 171 3 105 -6 c 1 - 97 0 97 10 99 20 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nine.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nine.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/nine.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/nine.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: nine.prop -Encoding: 65706 -1 616 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 25 57 N 1 0 0 1 -21 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/notelement.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/notelement.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/notelement.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/notelement.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: notelement -Encoding: 8713 8713 231 -Width: 485 -Flags: W -HStem: -10 21G<130 134> 11 59<191 434> 185 60<118 188 283 390> 361 59<169 288 382 434> -VStem: 46 72<170 306> -LayerCount: 2 -Fore -SplineSet -397 215 m 0xb8 - 397 189 390 185 389 185 c 2 - 249 185 l 1 - 190 79 l 1 - 204 73 219 69 237 69 c 2 - 421 69 l 1 - 421 69 436 62 436 28 c 0 - 436 19 429 11 429 11 c 1 - 239 11 l 2x78 - 211 11 184 17 161 28 c 1 - 142 -8 l 1 - 139 -10 136 -10 132 -10 c 0 - 129 -10 113 -6 100 10 c 0 - 96 14 95 17 95 17 c 1 - 117 57 l 1 - 73 95 46 154 46 216 c 0 - 46 322 123 420 229 420 c 2 - 321 420 l 1 - 351 473 l 1 - 351 473 355 476 359 476 c 0 - 371 476 382 468 390 459 c 0 - 395 454 397 448 397 448 c 1 - 382 420 l 1 - 429 420 l 1 - 429 420 436 411 436 399 c 0 - 436 369 421 361 421 361 c 1 - 349 361 l 1 - 283 244 l 1 - 390 244 l 1 - 390 243 397 232 397 215 c 0xb8 -223 244 m 1 - 288 361 l 1 - 229 361 l 2 - 167 361 129 310 118 249 c 0 - 118 246 120 244 123 244 c 2 - 223 244 l 1 -148 112 m 1 - 188 185 l 1 - 123 185 l 2 - 122 185 117 184 118 181 c 0 - 123 156 133 131 148 112 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/notequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/notequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/notequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/notequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: notequal -Encoding: 8800 8800 238 -Width: 558 -Flags: W -HStem: 106 70<60 192 292 498> 245 70<56 270 370 498> -LayerCount: 2 -Fore -SplineSet -370 315 m 1 - 504 315 l 2 - 506 315 508 315 508 311 c 0 - 508 302 504 272 498 251 c 0 - 496 245 492 245 492 245 c 1 - 330 245 l 1 - 292 177 l 1 - 500 177 l 2 - 504 177 508 179 508 172 c 0 - 508 163 504 133 498 112 c 0 - 496 106 492 106 492 106 c 1 - 253 106 l 1 - 202 16 l 1 - 199 14 196 14 192 14 c 0 - 189 14 173 17 160 33 c 0 - 156 37 155 40 155 40 c 1 - 192 106 l 1 - 58 106 l 1 - 58 106 51 106 51 116 c 0 - 51 120 53 149 60 172 c 0 - 62 178 66 177 66 177 c 1 - 231 177 l 1 - 270 245 l 1 - 58 245 l 1 - 58 245 51 245 51 255 c 1 - 51 255 54 296 61 311 c 0 - 62 314 63 315 65 315 c 2 - 310 315 l 1 - 362 410 l 1 - 362 410 367 413 371 413 c 0 - 383 413 393 405 401 396 c 0 - 406 391 409 386 409 386 c 1 - 370 315 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/n.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/n.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/n.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/n.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: n.sc -Encoding: 65576 -1 486 -Width: 566 -VWidth: 0 -Flags: W -HStem: -4 33<34 94 156 216> 410 33<44 91 358 418 480 541> -VStem: 102 48<38 321> 425 48<188 402> -LayerCount: 2 -Fore -SplineSet -472 91 m 0 - 472 53 474 33 476 -1 c 1 - 474 -4 461 -5 459 -5 c 0 - 453 -5 445 2 437 11 c 2 - 150 321 l 1 - 150 109 l 2 - 150 86 151 59 155 48 c 0 - 160 35 209 30 214 30 c 1 - 220 21 218 2 216 -4 c 1 - 187 -2 155 3 123 3 c 0 - 90 3 69 -2 36 -4 c 1 - 31 4 34 29 36 29 c 0 - 44 29 89 34 94 46 c 0 - 99 56 102 87 102 111 c 0 - 102 195 102 254 102 339 c 0 - 102 372 101 383 92 396 c 0 - 86 405 56 410 48 410 c 0 - 43 410 41 438 46 443 c 1 - 68 441 87 438 121 438 c 0 - 146 438 178 440 201 443 c 1 - 225 392 347 281 425 188 c 1 - 425 330 l 2 - 425 353 424 381 420 392 c 0 - 415 405 366 409 361 409 c 1 - 355 418 357 437 359 443 c 1 - 388 441 420 437 452 437 c 0 - 485 437 506 441 539 443 c 1 - 544 435 541 410 539 410 c 0 - 531 410 485 406 480 394 c 0 - 475 384 472 352 472 328 c 0 - 472 244 472 176 472 91 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ntilde -Encoding: 241 241 175 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 530 14 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ntilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ntilde -Encoding: 209 209 143 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 252 -1 N 1 0 0 1 618 5 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ntilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ntilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ntilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ntilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ntilde.sc -Encoding: 65615 -1 525 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 519 26 2 -Refer: 486 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/numbersign.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/numbersign.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/numbersign.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/numbersign.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: numbersign -Encoding: 35 35 3 -Width: 463 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: 145 65<60 377> 331 65<86 405> -LayerCount: 2 -Fore -SplineSet -399 331 m 1 - 244 331 243 331 77 331 c 1 - 65 331 80 392 93 396 c 9 - 411 396 l 17 - 425 396 412 337 399 331 c 1 -371 145 m 1 - 216 145 216 145 50 145 c 1 - 38 145 54 206 67 210 c 9 - 385 210 l 17 - 399 210 384 151 371 145 c 1 -370 516 m 1 - 293 35 l 2 - 292 31 278 22 263 22 c 0 - 253 22 252 26 252 26 c 1 - 329 506 l 1 - 332 515 339 519 358 519 c 0 - 367 519 367 518 370 516 c 1 -213 516 m 1 - 135 35 l 2 - 134 31 121 22 106 22 c 0 - 96 22 95 26 95 26 c 1 - 172 506 l 1 - 175 515 181 519 200 519 c 0 - 209 519 210 518 213 516 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oacute -Encoding: 243 243 177 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 552 12 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" oacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oacute -Encoding: 211 211 145 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 660 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oacute.sc -Encoding: 65617 -1 527 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 562 29 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: obreve -Encoding: 335 335 336 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 514 13 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" obreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Obreve -Encoding: 334 334 335 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 621 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/obreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/obreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/obreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/obreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: obreve.sc -Encoding: 65671 -1 581 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 531 30 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ocircumflex -Encoding: 244 244 178 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 510 13 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ocircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ocircumflex -Encoding: 212 212 146 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 621 2 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ocircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ocircumflex.sc -Encoding: 65618 -1 528 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 527 30 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: odieresis -Encoding: 246 246 180 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 494 14 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" odieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Odieresis -Encoding: 214 214 148 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 183 12 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/odieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/odieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/odieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/odieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: odieresis.sc -Encoding: 65620 -1 530 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 518 31 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: oe -Encoding: 339 339 397 -Width: 767 -Flags: W -HStem: -9 82<542 644> -7 41<224 317> 236 39<478 602> 396 40<204 294 515 595> -VStem: 31 139<116 306> 350 127<142 235> 616 121<283 362> -LayerCount: 2 -Fore -SplineSet -557 396 m 3x3e - 499 396 478 308 478 275 c 1 - 487 274 581 280 604 283 c 0 - 616 284 616 293 616 299 c 11 - 616 344 601 396 557 396 c 3x3e -248 396 m 3 - 177 396 170 302 170 231 c 27 - 170 145 200 34 271 34 c 3x7e - 342 34 350 127 350 197 c 27 - 350 284 319 396 248 396 c 3 -613 73 m 0xbe - 670 73 702 100 723 122 c 1 - 730 120 734 110 734 104 c 3 - 734 97 733 89 731 86 c 0 - 713 59 648 -9 555 -9 c 0xbe - 499 -9 447 12 409 48 c 1 - 370 15 318 -7 261 -7 c 0x7e - 125 -7 31 89 31 212 c 0 - 31 335 131 437 259 437 c 0 - 327 437 385 413 426 373 c 1 - 464 412 514 437 566 437 c 0 - 694 437 737 346 737 289 c 0 - 737 268 726 249 711 248 c 0 - 645 242 549 238 477 236 c 1 - 477 99 569 73 613 73 c 0xbe -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" oe.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_O_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_O_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_O_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_O_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: OE -Encoding: 338 338 396 -Width: 991 -Flags: W -HStem: -3 44<301 439 655 862> 303 46<647 791> 607 40<282 440 650 836> -VStem: 39 147<208 433> 511 137<67 300 350 555> 827 30<378 425> -LayerCount: 2 -Fore -SplineSet -580 642 m 0 - 621 642 839 647 897 648 c 1 - 904 599 917 548 926 504 c 1 - 923 501 910 499 903 499 c 0 - 896 499 890 502 888 507 c 0 - 867 561 842 605 782 605 c 2 - 701 605 l 0 - 679 605 657 605 652 594 c 0 - 647 582 647 562 647 534 c 2 - 647 359 l 2 - 647 353 668 349 689 349 c 2 - 741 349 l 2 - 799 349 811 360 827 417 c 0 - 828 422 832 425 839 425 c 0 - 846 425 854 423 857 420 c 1 - 857 232 l 1 - 855 230 847 229 840 229 c 0 - 833 229 827 231 826 236 c 0 - 814 283 801 292 792 296 c 0 - 780 301 755 303 718 303 c 0 - 691 303 647 301 647 289 c 2 - 647 138 l 2 - 647 132 647 81 655 61 c 0 - 661 47 694 41 719 41 c 0 - 783 41 l 2 - 820 41 852 51 874 73 c 0 - 895 94 910 122 927 166 c 0 - 928 170 933 172 940 172 c 0 - 950 172 967 169 970 166 c 1 - 951 113 924 41 917 -2 c 1 - 890 -2 706 -3 574 -3 c 0 - 507 -3 453 -3 440 -3 c 1 - 419 -3 542 -3 370 -3 c 0 - 198 -3 39 137 39 320 c 0 - 39 503 196 647 368 647 c 0 - 465 647 539 642 580 642 c 0 -345 607 m 0 - 230 607 187 472 187 354 c 3 - 187 205 243 36 389 36 c 1 - 421 36 471 45 490 67 c 0 - 504 84 511 104 511 146 c 2 - 511 470 l 2 - 511 512 499 547 479 568 c 0 - 461 587 421 607 345 607 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oe.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oe.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oe.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oe.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oe.sc -Encoding: 65673 -1 583 -Width: 973 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 477 -1 N 1 0 0 1 509 0 2 -Refer: 487 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/o.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/o.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/o.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/o.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: o -Encoding: 111 111 79 -Width: 519 -Flags: W -HStem: -7 41<224 315> 396 40<204 292> -VStem: 31 139<116 306> 350 139<124 315> -LayerCount: 2 -Fore -SplineSet -248 396 m 3 - 177 396 170 302 170 231 c 27 - 170 145 200 34 271 34 c 3 - 342 34 350 127 350 197 c 27 - 350 284 319 396 248 396 c 3 -259 437 m 0 - 394 437 488 344 488 220 c 0 - 488 97 390 -7 261 -7 c 0 - 125 -7 31 89 31 212 c 0 - 31 335 131 437 259 437 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" o.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_O.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_O.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_O.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_O.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: O -Encoding: 79 79 47 -Width: 742 -Flags: W -HStem: -10 42<315 460> 609 42<282 426> -VStem: 39 156<207 434> 547 156<207 434> -LayerCount: 2 -Fore -SplineSet -348 609 m 3 - 233 609 195 472 195 354 c 3 - 195 205 246 32 392 32 c 3 - 508 32 547 167 547 285 c 3 - 547 434 494 609 348 609 c 3 -371 651 m 0 - 543 651 703 503 703 320 c 0 - 703 137 543 -10 371 -10 c 0 - 199 -10 39 137 39 320 c 0 - 39 503 199 651 371 651 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" o.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: ogonek -Encoding: 731 731 897 -Width: 296 -Flags: HW -LayerCount: 2 -Fore -Refer: 896 808 N 1 0 0 1 398 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ograve -Encoding: 242 242 176 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 490 13 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ograve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ograve -Encoding: 210 210 144 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 573 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ograve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ograve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ograve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ograve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ograve.sc -Encoding: 65616 -1 526 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 514 30 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: ohorn -Encoding: 417 417 619 -Width: 548 -Flags: W -HStem: -7 54<217 314> 344 46<447 487> 383 54<201 302> -VStem: 30 139<122 308> 349 141<122 309> 488 89<391 478> -LayerCount: 2 -Fore -SplineSet -260 437 m 0xb8 - 294 437 320 434 355 417 c 0 - 390 400 428 390 453 390 c 0 - 475 390 488 396 488 408 c 0 - 488 422 467 436 467 459 c 0 - 467 498 528 504 559 504 c 1 - 568 495 577 464 577 438 c 0 - 577 382 511 344 459 344 c 0xd4 - 454 344 450 344 446 345 c 1 - 473 309 489 264 489 215 c 0 - 489 92 389 -7 260 -7 c 0 - 132 -7 30 92 30 215 c 0 - 30 338 132 437 260 437 c 0xb8 -246 383 m 0xb8 - 184 383 169 307 169 245 c 0 - 169 158 183 47 270 47 c 0 - 331 47 349 120 349 181 c 0 - 349 270 335 383 246 383 c 0xb8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: Ohorn -Encoding: 416 416 617 -Width: 742 -Flags: W -HStem: -10 55<298 434> 543 46<581 634> 597 55<272 417> -VStem: 40 152<200 442> 516 152<204 441> 635 89<590 677> -LayerCount: 2 -Fore -SplineSet -339 597 m 0xf8 - 230 597 192 473 192 342 c 0 - 192 221 234 45 369 45 c 0 - 473 45 516 170 516 302 c 0 - 516 433 481 597 339 597 c 0xf8 -354 651 m 0 - 415 651 463 631 469 628 c 0 - 512 611 569 589 600 589 c 0 - 622 589 635 595 635 607 c 0 - 635 621 613 635 613 658 c 0 - 613 697 674 703 705 703 c 1 - 714 694 724 663 724 637 c 0xf4 - 724 581 657 543 605 543 c 0 - 594 543 583 547 581 548 c 1 - 635 488 668 408 668 320 c 0 - 668 137 526 -10 354 -10 c 0 - 182 -10 40 137 40 320 c 0 - 40 503 176 651 354 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ohungarumlaut -Encoding: 337 337 338 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 779 N 1 0 0 1 580 13 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ohungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Ohungarumlaut -Encoding: 336 336 337 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 619 0 2 -Refer: 248 -1 N 1 0 0 1 783 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ohungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ohungarumlaut.sc -Encoding: 65672 -1 582 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 779 N 1 0 0 1 598 30 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: omacron -Encoding: 333 333 334 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 514 42 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" omacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Omacron -Encoding: 332 332 333 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 624 11 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/omacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/omacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/omacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/omacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: omacron.sc -Encoding: 65670 -1 580 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 531 60 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onedotenleader.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onedotenleader.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onedotenleader.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onedotenleader.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: onedotenleader -Encoding: 8228 8228 212 -Width: 228 -Flags: W -HStem: -11 146<63 165> -VStem: 41 146<12 113> -LayerCount: 2 -Fore -SplineSet -188 62 m 0 - 188 23 155 -11 115 -11 c 27 - 74 -11 41 22 41 64 c 0 - 41 103 74 136 114 136 c 27 - 155 136 188 101 188 62 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/one.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/one.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/one.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/one.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: one -Encoding: 49 49 17 -Width: 532 -Flags: W -HStem: -4 36<145 210 353 417> 608 20G<338 345> -VStem: 218 127<40 521> -LayerCount: 2 -Fore -SplineSet -218 142 m 2 - 218 471 l 2 - 218 514 213 522 197 522 c 0 - 188 522 148 512 127 500 c 1 - 119 504 114 513 114 519 c 0 - 114 521 113 529 116 530 c 0 - 228 578 337 628 340 628 c 2 - 342 628 l 2 - 348 628 353 614 354 609 c 1 - 354 609 345 581 345 518 c 2 - 345 142 l 2 - 345 100 345 70 353 50 c 0 - 358 37 402 33 415 32 c 1 - 420 25 419 2 415 -4 c 1 - 377 0 322 3 281 3 c 0 - 240 3 185 0 147 -4 c 1 - 143 2 142 25 147 32 c 1 - 160 33 205 37 210 50 c 0 - 218 70 218 100 218 142 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onehalf.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onehalf.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onehalf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onehalf.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: onehalf -Encoding: 189 189 123 -Width: 730 -Flags: W -HStem: -2 69<515 658> 246 25<47 95 201 247> 325 52<506 580> 606 20G<186 190> -VStem: 106 85<285 544> 594 93<209 310> -LayerCount: 2 -Fore -SplineSet -574 377 m 0 - 642 377 687 342 687 275 c 0 - 687 222 645 178 608 144 c 0 - 579 118 551 93 515 67 c 1 - 624 67 l 2 - 653 67 663 100 673 121 c 0 - 674 124 680 126 684 126 c 0 - 688 126 695 125 698 123 c 1 - 691 95 664 9 660 -2 c 9 - 439 -2 l 1 - 436 1 433 9 432 12 c 1 - 479 64 501 88 548 149 c 0 - 582 193 594 226 594 263 c 0 - 594 302 565 325 532 325 c 0 - 489 325 467 282 462 277 c 1 - 459 277 447 279 447 291 c 1 - 458 313 506 377 574 377 c 0 -191 523 m 2 - 191 338 l 2 - 191 320 194 291 201 284 c 0 - 209 275 241 271 246 271 c 1 - 248 271 247 247 246 246 c 1 - 223 247 172 250 149 250 c 0 - 126 250 72 247 49 246 c 1 - 46 249 46 271 49 271 c 1 - 57 271 89 277 96 285 c 0 - 101 291 106 328 106 339 c 2 - 106 499 l 2 - 106 525 99 545 87 545 c 0 - 78 545 54 534 43 529 c 1 - 38 530 32 549 34 556 c 1 - 103 585 185 626 187 626 c 1 - 193 620 201 609 202 606 c 1 - 199 595 191 561 191 523 c 2 -567 661 m 1 - 230 -11 l 2 - 227 -18 211 -29 194 -33 c 0 - 179 -36 177 -24 177 -24 c 1 - 514 647 l 1 - 520 656 532 664 549 668 c 0 - 558 670 566 666 567 661 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/one.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/one.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/one.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/one.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: one.prop -Encoding: 65698 -1 608 -Width: 364 -Flags: HW -LayerCount: 2 -Fore -Refer: 17 49 N 1 0 0 1 -87 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onequarter.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onequarter.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/onequarter.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/onequarter.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: onequarter -Encoding: 188 188 122 -Width: 719 -Flags: W -HStem: -3 21G<592 616> 90 45<464 564 649 679> 246 25<46 94 200 246> 606 20G<185 201> -VStem: 105 85<285 544> 564 85<-2 90 135 256> -LayerCount: 2 -Fore -SplineSet -629 377 m 0 - 633 377 649 368 649 358 c 10 - 649 135 l 25 - 673 135 l 17 - 686 123 689 108 683 90 c 1 - 649 90 l 25 - 649 2 l 17 - 649 2 629 -3 603 -3 c 0 - 582 -3 564 0 564 5 c 2 - 564 90 l 25 - 414 90 l 17 - 409 92 402 98 402 106 c 1 - 475 194 553 291 616 369 c 0 - 620 374 624 377 629 377 c 0 -564 135 m 1 - 564 256 l 17 - 542 230 476 149 464 135 c 1 - 459 135 533 135 564 135 c 1 -190 523 m 2 - 190 338 l 2 - 190 320 192 291 199 284 c 0 - 207 275 240 271 245 271 c 1 - 247 271 246 247 245 246 c 1 - 222 247 171 250 148 250 c 0 - 125 250 71 247 48 246 c 1 - 45 249 45 271 48 271 c 1 - 56 271 88 277 95 285 c 0 - 100 291 105 328 105 339 c 2 - 105 499 l 2 - 105 525 98 545 86 545 c 0 - 77 545 53 534 42 529 c 1 - 37 530 31 555 32 556 c 1 - 101 585 184 626 186 626 c 9 - 186 626 200 609 201 606 c 1 - 198 595 190 561 190 523 c 2 -214 -33 m 0 - 199 -36 197 -24 197 -24 c 1 - 534 647 l 1 - 540 656 552 664 569 668 c 0 - 578 670 586 666 587 661 c 1 - 250 -11 l 2 - 247 -18 231 -29 214 -33 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ordfeminine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ordfeminine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ordfeminine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ordfeminine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: ordfeminine -Encoding: 170 170 105 -Width: 377 -Flags: W -HStem: 242 47<109 199 258 326> 515 29<141 226> -VStem: 42 96<295 367> 51 77<437 493> 210 93<295 390 417 504> -LayerCount: 2 -Fore -SplineSet -182 289 m 0xe8 - 197 289 210 300 210 304 c 2 - 210 390 l 1 - 196 385 177 379 162 370 c 0 - 142 358 138 344 138 329 c 0 - 139 301 163 289 182 289 c 0xe8 -196 544 m 0 - 255 544 303 501 303 441 c 2 - 303 319 l 2 - 303 301 311 295 320 295 c 0 - 330 295 340 303 343 304 c 1 - 346 303 350 294 350 290 c 3 - 350 285 348 281 346 278 c 1 - 336 269 300 243 270 243 c 0 - 247 243 222 257 215 273 c 1 - 208 268 161 242 136 242 c 0 - 82 242 42 283 42 322 c 0xe8 - 42 347 61 370 79 377 c 0 - 105 387 174 412 210 425 c 1 - 210 430 210 430 210 435 c 2 - 210 452 l 2 - 210 485 193 515 169 515 c 0 - 142 515 135 491 128 462 c 0 - 124 447 112 434 88 434 c 0 - 68 434 51 446 51 465 c 0xd8 - 51 474 55 484 61 493 c 1 - 70 502 134 544 196 544 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ordmasculine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ordmasculine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ordmasculine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ordmasculine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: ordmasculine -Encoding: 186 186 120 -Width: 396 -Flags: W -HStem: 245 30<171 240> 511 29<155 224> -VStem: 34 100<317 465> 263 100<321 469> -LayerCount: 2 -Fore -SplineSet -189 511 m 3 - 137 511 134 450 134 403 c 27 - 134 346 154 275 206 275 c 3 - 258 275 263 335 263 381 c 27 - 263 438 241 511 189 511 c 3 -197 540 m 0 - 294 540 362 478 362 396 c 0 - 362 314 291 245 198 245 c 0 - 101 245 34 309 34 391 c 0 - 34 473 105 540 197 540 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/o.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/o.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/o.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/o.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: o.sc -Encoding: 65577 -1 487 -Width: 594 -VWidth: 0 -Flags: W -HStem: -9 37<254 360> 411 37<235 337> -VStem: 38 146<131 308> 411 146<131 308> -LayerCount: 2 -Fore -SplineSet -282 411 m 3 - 208 411 184 319 184 242 c 3 - 184 144 217 28 311 28 c 3 - 386 28 411 119 411 196 c 3 - 411 294 376 411 282 411 c 3 -298 448 m 0 - 432 448 557 346 557 220 c 0 - 557 94 432 -9 298 -9 c 0 - 164 -9 38 94 38 220 c 0 - 38 346 164 448 298 448 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslashacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslashacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslashacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslashacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oslashacute -Encoding: 511 511 436 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 571 27 2 -Refer: 182 248 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oslashacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oslashacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oslashacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oslashacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oslashacute -Encoding: 510 510 435 -Width: 741 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 689 2 2 -Refer: 150 216 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: oslash -Encoding: 248 248 182 -Width: 519 -Flags: W -HStem: -7 41<224 315> 396 40<204 292> -VStem: 31 139<116 306> 350 139<124 315> -LayerCount: 2 -Fore -SplineSet -364 444 m 17 - 372 441 398 433 396 426 c 9 - 148 -16 l 17 - 140 -13 115 -3 117 4 c 9 - 364 444 l 17 -EndSplineSet -Refer: 79 111 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" oslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Oslash -Encoding: 216 216 150 -Width: 741 -Flags: W -HStem: -10 42<315 460> 609 42<282 426> -VStem: 39 156<207 434> 547 156<207 434> -LayerCount: 2 -Fore -SplineSet -528 660 m 17 - 536 657 567 647 565 640 c 9 - 197 -18 l 17 - 189 -15 158 -3 160 4 c 9 - 528 660 l 17 -EndSplineSet -Refer: 47 79 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/oslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/oslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: oslash.sc -Encoding: 65622 -1 532 -Width: 594 -VWidth: 0 -Flags: W -HStem: -9 37<254 360> 411 37<235 337> -VStem: 38 146<131 308> 411 146<131 308> -LayerCount: 2 -Fore -SplineSet -429 449 m 17 - 436 445 460 433 457 426 c 9 - 123 6 l 17 - 116 10 92 22 95 29 c 9 - 429 449 l 17 -EndSplineSet -Refer: 487 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: otilde -Encoding: 245 245 179 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 503 14 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" otilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Otilde -Encoding: 213 213 147 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 252 -1 N 1 0 0 1 615 5 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/otilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/otilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/otilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/otilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: otilde.sc -Encoding: 65619 -1 529 -Width: 594 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 521 31 2 -Refer: 487 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/paragraph.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/paragraph.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/paragraph.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/paragraph.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: paragraph -Encoding: 182 182 116 -Width: 516 -Flags: W -HStem: -4 36<166 230 407 473> 3 43<296 340> 281 44<291 346> 292 44<396 424> 589 44<291 346> 602 36<399 446> -VStem: 32 259<369 547> 242 49<51 280> 347 49<50 285 336 582> -LayerCount: 2 -Fore -SplineSet -347 330 m 1x2980 - 347 365 347 571 347 584 c 1 - 343 588 328 589 318 589 c 0 - 308 589 297 589 291 583 c 1 - 291 583 291 425 291 325 c 1 - 297 325 343 327 347 330 c 1x2980 -346 285 m 1 - 332 284 307 282 291 281 c 1 - 291 225 291 171 291 115 c 0 - 291 80 291 65 296 51 c 0 - 297 48 307 46 318 46 c 0x6180 - 328 46 339 47 340 50 c 0 - 347 65 346 88 346 109 c 2 - 346 109 346 218 346 285 c 1 -395 292 m 1x1680 - 395 223 395 175 395 114 c 0 - 395 79 394 73 399 59 c 0 - 406 40 463 33 471 33 c 1 - 477 23 475 2 473 -4 c 1x9680 - 438 -2 380 3 320 3 c 24x4280 - 260 3 208 -2 168 -4 c 1 - 163 5 166 32 168 32 c 0 - 180 32 228 40 236 58 c 0 - 243 73 242 92 242 113 c 2 - 242 113 242 215 242 280 c 1x8180 - 117 280 32 341 32 458 c 0 - 32 594 142 637 222 637 c 0 - 280 637 269 633 327 633 c 0x8a80 - 392 633 444 638 444 638 c 1 - 449 633 448 605 443 602 c 1 - 428 602 403 594 398 582 c 0 - 396 575 396 570 396 520 c 0 - 396 460 396 355 396 336 c 1 - 401 335 443 349 443 349 c 1 - 448 349 447 343 447 339 c 0 - 446 329 432 305 425 302 c 0 - 414 297 403 293 395 292 c 1x1680 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenleft -Encoding: 40 40 8 -Width: 284 -Flags: W -VStem: 32 108<144 452> -LayerCount: 2 -Fore -SplineSet -141 298 m 0 - 141 72 236 -74 274 -107 c 1 - 275 -110 271 -131 266 -134 c 1 - 193 -101 32 35 32 298 c 0 - 32 561 193 696 266 729 c 1 - 271 726 275 706 274 703 c 1 - 236 670 141 524 141 298 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" parenleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: parenleft.sc -Encoding: 65553 -1 463 -Width: 259 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 8 40 N 0.75 0 0 0.69 20 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenright -Encoding: 41 41 9 -Width: 284 -Flags: W -VStem: 144 108<144 452> -LayerCount: 2 -Fore -SplineSet -252 298 m 0 - 252 35 92 -101 19 -134 c 1 - 14 -131 9 -110 10 -107 c 1 - 48 -74 144 72 144 298 c 0 - 144 524 48 670 10 703 c 1 - 9 706 14 726 19 729 c 1 - 92 696 252 561 252 298 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" parenright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/parenright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/parenright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: parenright.sc -Encoding: 65554 -1 464 -Width: 258 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 9 41 N 0.75 0 0 0.69 27 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/partialdiff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/partialdiff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/partialdiff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/partialdiff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: partialdiff -Encoding: 8706 8706 227 -Width: 491 -Flags: W -HStem: 0 54<197 279> 310 52<187 284> 570 57<139 252> -VStem: 43 122<90 266> 308 132<149 363> -LayerCount: 2 -Fore -SplineSet -308 214 m 1 - 308 296 261 310 224 310 c 0 - 186 310 165 264 165 204 c 0 - 165 89 201 54 242 54 c 0 - 298 54 308 142 308 214 c 1 -215 0 m 0 - 119 0 43 58 43 189 c 0 - 43 287 135 361 239 361 c 0 - 260 361 279 361 301 353 c 0 - 306 351 311 355 312 360 c 0 - 316 389 309 490 274 529 c 0 - 245 561 216 570 187 570 c 3 - 146 570 101 539 76 521 c 1 - 71 525 62 550 74 562 c 0 - 103 591 168 627 229 627 c 3 - 405 627 439 398 439 275 c 3 - 439 80 317 0 215 0 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/percent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/percent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/percent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/percent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: percent -Encoding: 37 37 5 -Width: 669 -Flags: W -HStem: 0 30<456 520> 268 29<441 505> 329 30<166 230> 597 29<151 215> -VStem: 38 93<399 552> 251 93<403 557> 328 93<69 223> 541 93<74 228> -LayerCount: 2 -Fore -SplineSet -183 597 m 3xfd - 135 597 131 535 131 488 c 24 - 131 431 150 359 198 359 c 3 - 246 359 251 420 251 466 c 24 - 251 524 231 597 183 597 c 3xfd -190 626 m 0 - 280 626 344 563 344 480 c 0 - 344 398 277 329 191 329 c 0 - 100 329 38 394 38 476 c 0 - 38 558 104 626 190 626 c 0 -473 268 m 3 - 425 268 421 206 421 159 c 24xfb - 421 102 440 30 488 30 c 3 - 536 30 541 91 541 137 c 24 - 541 195 521 268 473 268 c 3 -480 297 m 0 - 570 297 634 234 634 151 c 0 - 634 69 567 0 481 0 c 0 - 390 0 328 64 328 146 c 0 - 328 228 394 297 480 297 c 0 -608 620 m 1 - 104 -5 l 2 - 100 -11 81 -20 64 -20 c 0 - 49 -20 50 -8 50 -8 c 1 - 554 617 l 1 - 562 624 576 630 593 630 c 0 - 602 630 608 625 608 620 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/periodcentered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/periodcentered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/periodcentered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/periodcentered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: periodcentered -Encoding: 183 183 117 -Width: 235 -Flags: W -HStem: 185 146<69 168> -VStem: 46 144<207 309> -LayerCount: 2 -Fore -SplineSet -46 259 m 0 - 46 298 78 330 118 330 c 27 - 157 330 189 298 189 259 c 0 - 189 220 159 185 120 185 c 27 - 79 185 46 220 46 259 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/period.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/period.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/period.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/period.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: period -Encoding: 46 46 14 -Width: 228 -Flags: W -HStem: -11 146<63 165> -VStem: 41 146<12 113> -LayerCount: 2 -Fore -SplineSet -41 64 m 0 - 41 103 74 136 114 136 c 27 - 155 136 188 101 188 62 c 0 - 188 23 155 -11 115 -11 c 27 - 74 -11 41 22 41 64 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/perthousand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/perthousand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/perthousand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/perthousand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: perthousand -Encoding: 8240 8240 214 -Width: 1000 -Flags: W -HStem: 0 30<462 526 793 857> 268 29<447 511 778 842> 329 30<172 236> 597 29<157 221> -VStem: 44 93<399 552> 257 93<403 557> 334 93<69 223> 547 93<74 228> 665 93<69 223> 878 93<74 228> -LayerCount: 2 -Fore -SplineSet -810 268 m 3xf9c0 - 762 268 758 206 758 159 c 24 - 758 102 777 30 825 30 c 3 - 873 30 878 91 878 137 c 24 - 878 195 858 268 810 268 c 3xf9c0 -817 297 m 0 - 907 297 971 234 971 151 c 0 - 971 69 904 0 818 0 c 0 - 727 0 665 64 665 146 c 0 - 665 228 731 297 817 297 c 0 -614 620 m 1 - 110 -5 l 2 - 106 -11 87 -20 70 -20 c 0 - 55 -20 56 -8 56 -8 c 1 - 560 617 l 1 - 568 624 582 630 599 630 c 0 - 608 630 614 625 614 620 c 1 -479 268 m 3 - 431 268 427 206 427 159 c 24xfbc0 - 427 102 446 30 494 30 c 3 - 542 30 547 91 547 137 c 24 - 547 195 527 268 479 268 c 3 -486 297 m 0 - 576 297 640 234 640 151 c 0 - 640 69 573 0 487 0 c 0 - 396 0 334 64 334 146 c 0 - 334 228 400 297 486 297 c 0 -188 597 m 3 - 140 597 137 535 137 488 c 24 - 137 431 156 359 204 359 c 3 - 252 359 257 420 257 466 c 24xfdc0 - 257 524 236 597 188 597 c 3 -196 626 m 0 - 286 626 350 563 350 480 c 0 - 350 398 283 329 197 329 c 0 - 106 329 44 394 44 476 c 0 - 44 558 110 626 196 626 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/p.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/p.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/p.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/p.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: p -Encoding: 112 112 80 -Width: 540 -Flags: W -HStem: -213 36<11 76 218 283> -8 43<224 318> 354 30<11 70> 366 71<259 324> -VStem: 83 127<-169 1 49 344> 369 141<132 316> -LayerCount: 2 -Fore -SplineSet -318 438 m 0xdc - 436 438 509 337 509 229 c 0 - 509 80 377 -8 270 -8 c 0 - 243 -8 217 1 213 1 c 1 - 210 1 210 -3 210 -15 c 2 - 210 -67 l 2 - 210 -109 210 -139 218 -159 c 0 - 223 -172 268 -176 281 -177 c 1 - 286 -184 285 -207 281 -213 c 1 - 243 -209 188 -206 147 -206 c 0 - 106 -206 51 -209 13 -213 c 1 - 9 -207 8 -184 13 -177 c 1 - 26 -176 71 -172 76 -159 c 0 - 84 -139 83 -109 83 -67 c 2 - 83 254 l 2 - 83 264 83 319 75 334 c 0 - 67 349 20 354 13 354 c 1 - 10 356 9 384 14 384 c 1xec - 88 390 167 417 204 436 c 1 - 211 434 221 422 221 419 c 1 - 219 413 212 402 212 386 c 0 - 212 380 214 378 216 380 c 0 - 245 411 288 438 318 438 c 0xdc -264 366 m 0xdc - 228 366 210 344 210 339 c 2 - 210 94 l 2 - 210 55 243 35 277 35 c 0 - 309 35 369 81 369 194 c 0 - 369 295 343 366 264 366 c 0xdc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" p.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_P.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_P.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_P.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_P.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: P -Encoding: 80 80 48 -Width: 571 -Flags: W -HStem: -4 36<35 100 252 317> 280 50<289 371> 605 39<36 102 247 350> -VStem: 108 137<40 602> 407 146<382 546> -LayerCount: 2 -Fore -SplineSet -552 471 m 0 - 552 354 455 280 356 280 c 0 - 321 280 295 296 288 303 c 0 - 284 307 281 319 281 327 c 0 - 281 331 283 334 285 334 c 1 - 295 331 310 330 325 330 c 0 - 373 330 407 382 407 457 c 0 - 407 534 363 605 298 605 c 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 277 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0 - 218 642 270 645 328 645 c 0 - 450 645 552 582 552 471 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" p.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/plus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/plus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/plus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/plus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: plus -Encoding: 43 43 11 -Width: 529 -Flags: W -HStem: 212 57<33 234 292 496> -VStem: 235 57<11 212 269 471> -LayerCount: 2 -Fore -SplineSet -235 463 m 1 - 246 472 272 474 276 474 c 0 - 286 474 292 472 292 465 c 2 - 291 269 l 1 - 490 269 l 2 - 496 269 499 261 499 255 c 0 - 499 234 493 222 485 212 c 1 - 292 212 l 1 - 292 19 l 1 - 280 11 256 8 246 8 c 0 - 240 8 235 12 235 16 c 2 - 235 212 l 1 - 36 212 l 2 - 31 212 30 218 30 228 c 0 - 30 232 32 257 40 269 c 1 - 234 269 l 1 - 235 463 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/plusminus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/plusminus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/plusminus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/plusminus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: plusminus -Encoding: 177 177 111 -Width: 568 -Flags: W -HStem: 9 57<52 516> 299 57<52 254 311 516> -VStem: 254 57<98 299 355 558> -LayerCount: 2 -Fore -SplineSet -60 65 m 1 - 510 65 l 2 - 516 65 519 58 519 52 c 0 - 519 31 512 19 504 9 c 1 - 55 9 l 2 - 50 9 49 14 49 24 c 0 - 49 28 52 53 60 65 c 1 -60 355 m 1 - 254 355 l 1 - 254 550 l 1 - 265 559 291 561 295 561 c 0 - 305 561 311 559 311 552 c 2 - 311 355 l 1 - 510 355 l 2 - 516 355 519 348 519 342 c 0 - 519 321 512 309 504 299 c 1 - 311 299 l 1 - 311 105 l 1 - 299 97 275 95 265 95 c 0 - 259 95 254 99 254 103 c 2 - 254 299 l 1 - 55 299 l 2 - 50 299 49 304 49 314 c 0 - 49 318 52 343 60 355 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/propersubset.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/propersubset.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/propersubset.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/propersubset.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: propersubset -Encoding: 8834 8834 241 -Width: 490 -Flags: W -HStem: 11 59<174 435> 361 59<171 436> -VStem: 48 68<132 302> -LayerCount: 2 -Fore -SplineSet -231 361 m 2 - 169 361 116 302 116 215 c 3 - 116 127 174 69 239 69 c 2 - 423 69 l 2 - 423 69 438 62 438 28 c 0 - 438 19 431 11 431 11 c 1 - 241 11 l 2 - 132 11 48 107 48 216 c 0 - 48 322 125 420 231 420 c 2 - 431 420 l 1 - 431 420 438 411 438 399 c 0 - 438 369 423 361 423 361 c 1 - 231 361 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/proportional.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/proportional.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/proportional.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/proportional.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,98 +0,0 @@ -StartChar: proportional -Encoding: 8733 8733 236 -Width: 707 -Flags: W -HStem: 36 71<181 300 583 642> 344 72<178 287 574 647> -VStem: 50 87<153 299> -LayerCount: 2 -Back -SplineSet -105.46875 223.6328125 m 0 - 105.46875 188.4765625 116.455078125 158.203125 138.427734375 132.8125 c 0 - 160.400390625 107.421875 188.151367188 94.7265625 221.6796875 94.7265625 c 0 - 234.049804688 94.7265625 246.174804688 97.0869140625 258.056640625 101.806640625 c 0 - 269.938476562 106.526367188 281.819335938 114.013671875 293.701171875 124.267578125 c 0 - 305.583007812 134.521484375 315.348632812 143.473632812 322.998046875 151.123046875 c 0 - 330.647460938 158.772460938 340.739257812 169.758789062 353.271484375 184.08203125 c 0 - 365.803710938 198.405273438 374.348632812 208.0078125 378.90625 212.890625 c 0 - 379.557617188 213.541992188 379.557617188 214.192382812 378.90625 214.84375 c 0 - 375.651367188 218.75 368.327148438 228.190429688 356.93359375 243.1640625 c 0 - 345.540039062 258.137695312 335.286132812 270.751953125 326.171875 281.005859375 c 0 - 317.057617188 291.259765625 306.15234375 302.571289062 293.45703125 314.94140625 c 0 - 280.76171875 327.311523438 267.741210938 336.833007812 254.39453125 343.505859375 c 0 - 241.047851562 350.178710938 227.864257812 353.515625 214.84375 353.515625 c 0 - 182.942382812 353.515625 156.73828125 340.576171875 136.23046875 314.697265625 c 0 - 115.72265625 288.818359375 105.46875 258.463867188 105.46875 223.6328125 c 0 -608.3984375 41.9921875 m 1 - 584.635742188 41.9921875 561.686523438 46.5498046875 539.55078125 55.6640625 c 0 - 517.415039062 64.7783203125 498.779296875 75.927734375 483.642578125 89.111328125 c 0 - 468.505859375 102.294921875 455.159179688 115.478515625 443.603515625 128.662109375 c 0 - 432.047851562 141.845703125 422.8515625 152.995117188 416.015625 162.109375 c 0 - 409.1796875 171.223632812 404.948242188 175.78125 403.3203125 175.78125 c 2 - 402.34375 175.78125 l 1 - 370.520507812 137.953125 346.66796875 111.897460938 330.78515625 97.61328125 c 0 - 288.110351562 59.23046875 242.953125 40.0390625 195.3125 40.0390625 c 0 - 150.065429688 40.0390625 112.385742188 57.6982421875 82.275390625 93.017578125 c 0 - 52.1650390625 128.336914062 37.109375 169.921875 37.109375 217.7734375 c 0 - 37.109375 271.159179688 55.419921875 316.89453125 92.041015625 354.98046875 c 0 - 128.662109375 393.06640625 173.502929688 412.109375 226.5625 412.109375 c 0 - 248.046875 412.109375 268.717773438 408.366210938 288.57421875 400.87890625 c 0 - 308.430664062 393.391601562 327.961914062 381.34765625 347.16796875 364.74609375 c 0 - 366.374023438 348.14453125 380.126953125 335.530273438 388.427734375 326.904296875 c 0 - 396.728515625 318.278320312 409.223632812 304.267578125 425.912109375 284.874023438 c 0 - 428.103515625 282.458007812 429.6875 280.598632812 430.6640625 279.296875 c 0 - 431.315429688 278.3203125 432.291992188 277.668945312 433.59375 277.34375 c 0 - 434.895507812 277.018554688 435.872070312 277.34375 436.5234375 278.3203125 c 0 - 446.940429688 291.340820312 455.241210938 301.513671875 461.42578125 308.837890625 c 0 - 467.610351562 316.162109375 477.131835938 326.334960938 489.990234375 339.35546875 c 0 - 502.848632812 352.375976562 514.6484375 362.79296875 525.390625 370.60546875 c 0 - 536.1328125 378.41796875 549.072265625 386.067382812 564.208984375 393.5546875 c 0 - 579.345703125 401.041992188 594.401367188 406.25 609.375 409.1796875 c 1 - 611.328125 409.1796875 l 2 - 616.536132812 409.1796875 619.140625 403.971679688 619.140625 393.5546875 c 0 - 619.140625 389.323242188 618.65234375 384.27734375 617.67578125 378.41796875 c 0 - 616.69921875 372.55859375 615.72265625 367.756835938 614.74609375 364.013671875 c 2 - 613.28125 358.3984375 l 1 - 603.840820312 358.3984375 593.75 356.120117188 583.0078125 351.5625 c 0 - 572.265625 347.004882812 563.069335938 342.28515625 555.419921875 337.40234375 c 0 - 547.770507812 332.51953125 538.0859375 324.462890625 526.3671875 313.232421875 c 0 - 514.6484375 302.001953125 506.591796875 293.9453125 502.197265625 289.0625 c 0 - 497.802734375 284.1796875 489.827148438 275.065429688 478.271484375 261.71875 c 0 - 466.715820312 248.372070312 460.612304688 241.2109375 459.9609375 240.234375 c 0 - 458.659179688 238.932617188 458.333007812 237.956054688 458.984375 237.3046875 c 0 - 461.588867188 233.723632812 468.017578125 225.341796875 478.271484375 212.158203125 c 0 - 488.525390625 198.974609375 496.012695312 189.616210938 500.732421875 184.08203125 c 0 - 505.452148438 178.547851562 512.6953125 170.247070312 522.4609375 159.1796875 c 0 - 532.2265625 148.112304688 540.52734375 139.811523438 547.36328125 134.27734375 c 0 - 554.19921875 128.743164062 562.255859375 122.639648438 571.533203125 115.966796875 c 0 - 580.810546875 109.293945312 590.006835938 104.573242188 599.12109375 101.806640625 c 0 - 608.235351562 99.0400390625 617.512695312 97.65625 626.953125 97.65625 c 0 - 632.161132812 97.65625 634.765625 94.7265625 634.765625 88.8671875 c 0 - 634.765625 81.7060546875 631.510742188 72.509765625 625 61.279296875 c 0 - 618.489257812 50.048828125 612.956054688 43.6201171875 608.3984375 41.9921875 c 1 -EndSplineSet -Fore -SplineSet -640 109 m 1 - 649 109 650 99 650 88 c 3 - 650 67 637 48 628 41 c 1 - 500 41 431 158 420 158 c 2 - 419 158 l 1 - 367 96 308 36 212 36 c 0 - 119 36 50 125 50 218 c 0 - 50 324 138 416 244 416 c 0 - 339 416 408 341 448 294 c 0 - 449 292 453 291 454 293 c 0 - 495 345 559 417 635 417 c 0 - 642 417 652 386 652 364 c 0 - 652 357 651 344 646 344 c 0 - 642 344 636 344 629 344 c 0 - 564 344 489 235 490 234 c 0 - 511 205 566 109 640 109 c 1 -137 224 m 0 - 137 156 187 107 239 107 c 0 - 303 107 356 183 379 213 c 0 - 380 215 306 344 232 344 c 0 - 179 344 137 290 137 224 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/p.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/p.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/p.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/p.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: p.sc -Encoding: 65578 -1 488 -Width: 491 -VWidth: 0 -Flags: W -HStem: -4 36<42 90 225 279> 184 46<243 314> 405 36<42 90 226 303> -VStem: 96 127<45 394> 334 135<252 377> -LayerCount: 2 -Fore -SplineSet -162 438 m 0 - 195 438 238 441 285 441 c 0 - 385 441 469 397 469 318 c 0 - 469 235 385 184 301 184 c 0 - 271 184 250 197 244 203 c 0 - 238 208 235 231 241 231 c 1 - 249 230 259 229 271 229 c 0 - 308 229 334 263 334 311 c 0 - 334 360 305 405 260 405 c 0 - 244 405 229 404 226 397 c 0 - 223 389 223 377 223 358 c 2 - 223 104 l 2 - 223 77 223 57 226 44 c 0 - 228 35 271 33 277 32 c 1 - 282 26 281 2 277 -4 c 1 - 249 -1 180 2 150 2 c 0 - 120 2 72 -1 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 334 l 2 - 96 361 96 382 90 395 c 0 - 87 404 53 404 44 405 c 1 - 39 411 40 435 44 441 c 1 - 80 438 129 438 162 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: q -Encoding: 113 113 81 -Width: 521 -Flags: W -HStem: -213 36<256 320 463 528> -8 62<162 295> 385 51<206 312> -VStem: 31 139<116 286> 328 127<-169 30 62 367> -LayerCount: 2 -Fore -SplineSet -256 385 m 0 - 188 385 170 306 170 237 c 0 - 170 156 195 55 270 55 c 0 - 305 55 328 74 328 78 c 2 - 328 336 l 2 - 328 346 307 385 256 385 c 0 -293 436 m 0 - 330 436 379 413 408 413 c 0 - 429 413 437 418 443 420 c 1 - 449 418 467 403 467 396 c 1 - 462 384 455 351 455 284 c 2 - 455 -67 l 2 - 455 -109 455 -139 463 -159 c 0 - 468 -172 512 -176 525 -177 c 1 - 530 -184 529 -207 525 -213 c 1 - 487 -209 433 -206 392 -206 c 0 - 351 -206 296 -209 258 -213 c 1 - 254 -207 253 -184 258 -177 c 1 - 271 -176 315 -172 320 -159 c 0 - 328 -139 328 -109 328 -67 c 2 - 328 17 l 2 - 328 23 328 34 322 29 c 0 - 307 18 257 -8 211 -8 c 0 - 112 -8 31 83 31 188 c 0 - 31 341 169 436 293 436 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" q.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: Q -Encoding: 81 81 49 -Width: 742 -Flags: W -HStem: -140 67<527 695> 609 42<282 426> -VStem: 39 156<209 434> 547 156<208 434> -LayerCount: 2 -Fore -SplineSet -371 651 m 0 - 543 651 703 503 703 320 c 0 - 703 174 600 50 471 7 c 1 - 561 -37 588 -72 688 -72 c 0 - 727 -72 751 -64 758 -64 c 1 - 764 -64 775 -69 780 -77 c 0 - 782 -80 782 -82 782 -82 c 1 - 728 -110 642 -140 582 -140 c 0 - 475 -140 399 -32 294 0 c 0 - 153 37 39 166 39 320 c 0 - 39 503 199 651 371 651 c 0 -348 609 m 0 - 233 609 195 472 195 354 c 0 - 195 205 246 32 392 32 c 0 - 508 32 547 167 547 285 c 0 - 547 434 494 609 348 609 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" q.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/q.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/q.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/q.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/q.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: q.sc -Encoding: 65579 -1 489 -Width: 594 -VWidth: 0 -Flags: W -HStem: -96 58<437 547> 411 37<235 337> -VStem: 38 146<132 308> 411 146<133 308> -LayerCount: 2 -Fore -SplineSet -456 -96 m 0 - 381 -96 245 -18 167 24 c 0 - 92 64 38 137 38 220 c 0 - 38 346 164 448 298 448 c 0 - 432 448 557 346 557 220 c 0 - 557 126 487 45 396 10 c 1 - 432 -13 461 -38 530 -38 c 0 - 564 -38 590 -25 596 -25 c 0 - 603 -25 604 -33 604 -42 c 2 - 604 -44 l 1 - 563 -70 502 -96 456 -96 c 0 -282 411 m 0 - 208 411 184 319 184 242 c 0 - 184 144 217 28 311 28 c 0 - 386 28 411 119 411 196 c 0 - 411 294 376 411 282 411 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/questiondown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/questiondown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/questiondown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/questiondown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: questiondown -Encoding: 191 191 125 -Width: 378 -Flags: W -HStem: -209 65<143 256> 287 146<200 299> -VStem: 31 83<-114 6> 179 144<308 410> 239 37<173 231> -LayerCount: 2 -Fore -SplineSet -322 358 m 0xf0 - 322 317 289 287 252 287 c 0 - 211 287 179 318 179 358 c 0 - 179 398 209 434 248 434 c 0 - 284 434 322 402 322 358 c 0xf0 -276 220 m 1xe8 - 283 204 296 161 296 122 c 0 - 296 65 253 34 218 11 c 0 - 169 -21 114 -64 114 -97 c 0 - 114 -118 132 -144 167 -144 c 0 - 202 -144 233 -83 274 -83 c 0 - 311 -83 335 -115 335 -147 c 0 - 335 -164 327 -186 320 -192 c 1 - 306 -200 280 -209 232 -209 c 0 - 188 -209 31 -173 31 -37 c 0 - 31 49 102 82 154 114 c 0 - 180 131 217 149 234 173 c 0 - 241 183 239 204 239 214 c 1 - 241 220 249 231 254 231 c 0 - 262 231 272 224 276 220 c 1xe8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" questiondown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/questiondown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/questiondown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/questiondown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/questiondown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: questiondown.sc -Encoding: 65597 -1 507 -Width: 307 -VWidth: 3 -Flags: HW -LayerCount: 2 -Fore -Refer: 31 63 N -0.75 0 0 -0.69 301 434 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/question.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/question.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/question.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/question.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: question -Encoding: 63 63 31 -Width: 389 -Flags: W -HStem: -11 146<89 188> 566 65<131 244> -VStem: 65 144<13 115> 111 37<192 250> 273 83<417 537> -LayerCount: 2 -Fore -SplineSet -65 64 m 0xe8 - 65 105 99 136 136 136 c 0 - 177 136 209 104 209 64 c 0 - 209 24 179 -11 140 -11 c 0 - 104 -11 65 20 65 64 c 0xe8 -113 506 m 0 - 76 506 53 538 53 570 c 0 - 53 587 60 609 67 615 c 1 - 81 623 107 632 155 632 c 0 - 199 632 356 596 356 460 c 0 - 356 374 285 341 233 309 c 0 - 207 292 170 274 153 250 c 0 - 146 240 148 219 148 209 c 1 - 146 203 139 191 134 191 c 0 - 126 191 115 199 111 203 c 1xd8 - 104 219 92 262 92 301 c 0 - 92 358 135 389 170 412 c 0 - 219 444 273 487 273 520 c 0 - 273 541 256 566 221 566 c 0 - 186 566 154 506 113 506 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" question.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/question.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/question.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/question.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/question.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: question.sc -Encoding: 65561 -1 471 -Width: 304 -VWidth: 3 -Flags: HW -LayerCount: 2 -Fore -Refer: 31 63 N 0.75 0 0 0.69 3 5 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblbase -Encoding: 8222 8222 208 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 207 8221 N 1 0 0 1 -15 -567 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: quotedbl -Encoding: 34 34 2 -Width: 323 -Flags: W -HStem: 421 263<73 109 230 265> -VStem: 35 91<496 662> 191 91<496 662> -LayerCount: 2 -Fore -SplineSet -252 684 m 0 - 266 684 273 680 282 668 c 1 - 282 635 273 504 266 443 c 1 - 262 436 251 426 242 421 c 1 - 238 421 234 424 232 429 c 1 - 208 512 191 571 191 603 c 0 - 191 635 215 684 252 684 c 0 -96 684 m 0 - 110 684 117 680 126 668 c 1 - 126 635 116 504 109 443 c 1 - 105 436 95 426 86 421 c 1 - 82 421 78 424 76 429 c 1 - 52 512 35 571 35 603 c 0 - 35 635 59 684 96 684 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: quotedblleft -Encoding: 8220 8220 206 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N 1 0 0 1 169 0 2 -Refer: 203 8216 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotedblright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotedblright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblright -Encoding: 8221 8221 207 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 206 8220 N -1 -0 0 -1 398 1152 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quoteleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quoteleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quoteleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quoteleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: quoteleft -Encoding: 8216 8216 203 -Width: 205 -Flags: HW -HStem: 440 272<87 155> -VStem: 26 83<517 622> -LayerCount: 2 -Fore -SplineSet -44 535 m 0 - 44 645 162 712 173 712 c 0 - 183 712 193 704 198 691 c 1 - 127 649 127 616 127 605 c 0 - 127 575 139 555 151 541 c 0 - 164 525 176 516 176 499 c 0 - 176 471 142 440 105 440 c 0 - 97 440 73 446 62 454 c 1 - 51 470 44 500 44 535 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotereversed.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotereversed.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotereversed.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotereversed.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotereversed -Encoding: 8219 8219 628 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N 1 0 0 -1 -24 1152 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quoteright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quoteright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quoteright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quoteright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quoteright -Encoding: 8217 8217 204 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8216 N -1 -0 0 -1 229 1152 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotesinglbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotesinglbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotesinglbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotesinglbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotesinglbase -Encoding: 8218 8218 205 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 204 8217 N 1 0 0 1 -15 -567 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotesingle.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotesingle.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/quotesingle.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/quotesingle.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: quotesingle -Encoding: 39 39 7 -Width: 176 -Flags: W -HStem: 440 254<81 118> -VStem: 32 108<519 671> -LayerCount: 2 -Fore -SplineSet -104 694 m 0 - 120 694 134 688 141 673 c 1 - 136 611 130 526 118 459 c 1 - 114 453 104 444 93 440 c 1 - 89 440 84 442 81 446 c 1 - 60 503 32 566 32 612 c 0 - 32 655 63 694 104 694 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: racute -Encoding: 341 341 340 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 538 12 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" racute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Racute -Encoding: 340 340 339 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 591 0 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/racute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/racute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/racute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/racute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: racute.sc -Encoding: 65674 -1 584 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 547 24 2 -Refer: 490 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/radical.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/radical.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/radical.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/radical.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: radical -Encoding: 8730 8730 235 -Width: 514 -Flags: HW -LayerCount: 2 -Fore -SplineSet -14 146 m 1 - 1 153 -12 170 -12 181 c 0 - -12 194 1 200 11 207 c 0 - 43 229 142 304 156 316 c 0 - 164 323 181 324 184 316 c 1 - 194 285 195 273 206 248 c 2 - 293 46 l 1 - 301 88 438 772 438 772 c 1 - 494 766 l 1 - 494 766 336 -24 312 -149 c 1 - 297 -167 271 -176 265 -176 c 0 - 261 -176 257 -175 255 -171 c 2 - 92 191 l 1 - 14 146 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: rcaron -Encoding: 345 345 344 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 477 12 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" rcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Rcaron -Encoding: 344 344 343 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 109 25 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/rcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/rcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/rcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/rcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: rcaron.sc -Encoding: 65676 -1 586 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 490 24 2 -Refer: 490 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/registered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/registered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/registered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/registered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: registered -Encoding: 174 174 108 -Width: 637 -Flags: W -HStem: 87 43<227 410> 229 16<197 224 287 314 445 464> 347 19<284 299> 471 19<197 224 286 329> 575 45<224 413> -VStem: 52 44<259 447> 227 58<252 347 365 466> 347 61<376 465> 541 45<259 447> -LayerCount: 2 -Fore -SplineSet -317 489 m 0 - 366 489 407 464 407 417 c 0 - 407 385 367 359 348 354 c 1 - 376 316 408 281 408 281 c 0 - 436 249 461 245 464 245 c 1 - 466 242 464 230 464 229 c 1 - 452 228 436 227 420 227 c 0 - 390 227 373 240 355 262 c 0 - 297 341 l 0 - 297 341 293 347 290 347 c 0 - 284 347 l 9 - 284 288 l 2 - 284 271 284 260 287 252 c 0 - 289 247 307 244 312 244 c 1 - 314 241 314 231 312 229 c 1 - 296 231 273 231 256 231 c 0 - 239 231 214 231 198 229 c 1 - 196 231 196 241 198 244 c 1 - 203 244 222 247 224 252 c 0 - 227 260 227 271 227 288 c 2 - 227 431 l 2 - 227 448 227 459 224 467 c 0 - 222 472 203 473 198 473 c 1 - 196 476 196 487 198 489 c 1 - 216 488 240 488 257 488 c 0 - 274 488 294 489 317 489 c 0 -347 414 m 0 - 347 445 332 471 306 471 c 0 - 297 471 288 471 286 467 c 0 - 284 462 284 454 284 442 c 2 - 284 365 l 17 - 300 365 l 0 - 325 365 347 384 347 414 c 0 -96 353 m 0 - 96 230 195 130 318 130 c 0 - 441 130 541 230 541 353 c 0 - 541 476 441 575 318 575 c 0 - 195 575 96 476 96 353 c 0 -52 354 m 0 - 52 501 171 620 318 620 c 0 - 465 620 586 501 586 354 c 0 - 586 207 465 87 318 87 c 0 - 171 87 52 207 52 354 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/r.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/r.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/r.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/r.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: r -Encoding: 114 114 82 -Width: 438 -Flags: W -HStem: -4 36<26 91 234 308> 340 97<271 367> 354 30<27 86> -VStem: 99 127<41 313> -LayerCount: 2 -Fore -SplineSet -355 437 m 11xd0 - 380 437 403 432 416 420 c 1 - 420 414 427 393 427 372 c 0 - 427 339 402 295 369 295 c 3 - 351 295 339 309 327 319 c 0 - 316 329 308 340 291 340 c 11xd0 - 251 340 226 282 226 261 c 2 - 226 142 l 2 - 226 106 226 70 234 50 c 0 - 239 37 293 33 306 32 c 1 - 311 25 310 2 306 -4 c 1 - 268 0 203 3 162 3 c 0 - 121 3 67 0 29 -4 c 1 - 25 2 24 25 29 32 c 1 - 42 33 86 37 91 50 c 0 - 99 70 99 100 99 142 c 2 - 99 254 l 2 - 99 264 98 319 90 334 c 0 - 82 349 36 354 29 354 c 1 - 26 356 25 384 30 384 c 1xb0 - 104 390 183 417 220 436 c 1 - 227 434 237 422 237 419 c 1 - 234 411 227 356 227 342 c 0 - 227 337 232 337 233 339 c 0 - 256 381 293 437 355 437 c 11xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" r.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_R.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_R.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_R.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_R.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: R -Encoding: 82 82 50 -Width: 676 -Flags: W -HStem: -4 36<36 98 253 316 647 713> 292 38<245 279> 605 39<36 102 247 356> -VStem: 108 137<40 292 330 602> 396 146<397 554> -LayerCount: 2 -Fore -SplineSet -328 645 m 0 - 450 645 541 584 541 467 c 0 - 541 387 456 321 409 309 c 1 - 480 213 550 127 550 127 c 1 - 622 35 704 32 712 32 c 1 - 717 25 713 -2 712 -4 c 1 - 684 -6 624 -8 584 -8 c 0 - 509 -8 459 32 435 65 c 0 - 277 277 l 0 - 277 277 267 292 259 292 c 0 - 245 292 l 9 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1 - 277 0 216 3 175 3 c 0 - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 607 37 608 c 1 - 32 615 33 639 37 645 c 1 - 81 642 136 642 177 642 c 0 - 218 642 270 645 328 645 c 0 -396 457 m 0 - 396 534 378 605 298 605 c 0 - 276 605 254 605 249 594 c 0 - 244 582 245 562 245 534 c 2 - 245 330 l 17 - 289 330 l 0 - 345 330 396 382 396 457 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" r.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/r.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/r.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/r.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/r.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: r.sc -Encoding: 65580 -1 490 -Width: 566 -VWidth: 0 -Flags: W -HStem: -3 33<43 90 226 277 518 579> 194 35<223 253> 405 36<42 90 226 304> -VStem: 96 127<43 194 229 394> 327 135<264 383> -LayerCount: 2 -Fore -SplineSet -286 441 m 0 - 387 441 461 399 461 318 c 0 - 461 262 396 218 353 210 c 1 - 414 145 467 86 467 86 c 1 - 517 32 573 30 579 30 c 1 - 584 24 580 -1 579 -3 c 1 - 558 -5 511 -7 481 -7 c 0 - 423 -7 387 21 368 43 c 0 - 247 185 l 0 - 247 185 240 194 234 194 c 0 - 223 194 l 9 - 223 101 l 2 - 223 74 222 55 226 42 c 0 - 228 34 270 31 276 30 c 1 - 281 24 280 2 276 -3 c 1 - 248 1 182 3 151 3 c 0 - 120 3 72 1 44 -3 c 1 - 40 2 39 24 44 30 c 1 - 53 31 87 33 90 42 c 0 - 96 55 96 76 96 103 c 2 - 96 334 l 2 - 96 361 96 382 90 395 c 0 - 87 404 53 404 44 405 c 1 - 39 411 40 435 44 441 c 1 - 80 438 129 438 162 438 c 0 - 195 438 239 441 286 441 c 0 -327 311 m 0 - 327 360 314 405 259 405 c 0 - 243 405 229 404 226 397 c 0 - 223 389 223 378 223 359 c 2 - 223 229 l 17 - 254 229 l 0 - 292 229 327 263 327 311 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: sacute -Encoding: 347 347 346 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 480 12 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" sacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Sacute -Encoding: 346 346 345 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 558 3 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: sacute.sc -Encoding: 65677 -1 587 -Width: 416 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 497 30 2 -Refer: 491 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scaron -Encoding: 353 353 352 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 445 12 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" scaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scaron -Encoding: 352 352 351 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 91 28 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scaron.sc -Encoding: 65680 -1 590 -Width: 416 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 429 30 2 -Refer: 491 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scedilla -Encoding: 351 351 350 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 -27 -1 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" scedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scedilla -Encoding: 350 350 349 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 -1 N 1 0 0 1 19 -2 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scedilla.sc -Encoding: 65679 -1 589 -Width: 416 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 -38 -2 2 -Refer: 491 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scircumflex -Encoding: 349 349 348 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 450 13 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" scircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scircumflex -Encoding: 348 348 347 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 511 5 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/scircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scircumflex.sc -Encoding: 65678 -1 588 -Width: 416 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 447 31 2 -Refer: 491 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/second.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/second.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/second.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/second.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: second -Encoding: 8243 8243 216 -Width: 294 -Flags: W -HStem: 473 210<64 77 196 209> -VStem: 44 232 -LayerCount: 2 -Fore -SplineSet -233 683 m 0 - 253 683 276 671 276 651 c 0 - 276 605 226 515 201 482 c 0 - 197 477 192 473 188 473 c 0 - 182 473 176 477 176 484 c 0 - 176 487 182 597 190 650 c 0 - 192 662 214 683 233 683 c 0 -102 683 m 0 - 122 683 145 671 145 651 c 0 - 145 605 94 515 69 482 c 0 - 65 477 60 473 56 473 c 0 - 50 473 44 477 44 484 c 0 - 44 487 51 597 59 650 c 0 - 61 662 83 683 102 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/section.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/section.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/section.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/section.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: section -Encoding: 167 167 102 -Width: 456 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -90 49<136 233> 589 49<224 320> -VStem: 35 69<340 440> 122 57<441 555> 277 57<-7 106> 352 69<108 208> -LayerCount: 2 -Fore -SplineSet -313 638 m 0 - 204 638 122 553 122 475 c 0 - 122 409 194 355 241 312 c 0 - 294 263 352 208 352 127 c 0 - 352 84 336 64 313 36 c 0 - 313 36 293 15 286 -3 c 24 - 281 -14 285 -21 284 -33 c 17 - 321 -8 421 103 421 180 c 0 - 421 270 366 317 304 375 c 0 - 258 417 179 491 179 536 c 0 - 179 573 223 589 253 589 c 0 - 268 589 282 584 291 576 c 0 - 300 568 312 557 331 557 c 0 - 359 557 369 575 369 596 c 0 - 369 602 367 615 362 625 c 1 - 348 631 327 638 313 638 c 0 -143 -90 m 0 - 252 -90 334 -5 334 73 c 0 - 334 139 262 192 215 235 c 0 - 162 284 104 340 104 421 c 0 - 104 464 118 481 143 511 c 0 - 143 511 163 533 170 551 c 24 - 175 562 171 569 172 581 c 17 - 135 556 35 445 35 368 c 0 - 35 278 90 231 152 173 c 0 - 198 131 277 57 277 12 c 0 - 277 -25 233 -41 203 -41 c 0 - 188 -41 176 -38 168 -30 c 0 - 159 -21 145 -9 126 -9 c 0 - 98 -9 87 -30 87 -51 c 0 - 87 -57 90 -69 94 -76 c 1 - 106 -82 129 -90 143 -90 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/semicolon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/semicolon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/semicolon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/semicolon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: semicolon -Encoding: 59 59 27 -Width: 248 -Flags: W -HStem: 274 147<72 169> -VStem: 48 144<298 400> 107 85<-35 68> -LayerCount: 2 -Fore -SplineSet -136 136 m 0xa0 - 153 136 168 128 179 120 c 1 - 187 105 192 80 192 57 c 0 - 192 -36 127 -119 59 -153 c 1 - 48 -150 38 -136 38 -130 c 1 - 57 -118 107 -74 107 -26 c 0 - 107 6 61 3 61 66 c 0 - 61 82 75 136 136 136 c 0xa0 -48 351 m 0xc0 - 48 390 82 422 122 422 c 27 - 161 422 191 390 191 351 c 0 - 191 312 162 274 122 274 c 27 - 81 274 48 312 48 351 c 0xc0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" semicolon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/semicolon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/semicolon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/semicolon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/semicolon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: semicolon.sc -Encoding: 65557 -1 467 -Width: 260 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 27 59 N 1 0 0 1 7 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/seven.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/seven.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/seven.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/seven.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: seven -Encoding: 55 55 23 -Width: 532 -Flags: W -HStem: -11 21G<164 168> 523 98<121 395> -VStem: 57 35<436 484> -LayerCount: 2 -Fore -SplineSet -381 622 m 2 - 415 622 463 626 469 626 c 0 - 475 626 476 616 476 611 c 0 - 476 602 465 584 449 552 c 2 - 184 -8 l 1 - 180 -11 169 -11 167 -11 c 0 - 160 -11 124 -6 124 13 c 1 - 165 72 306 335 395 523 c 1 - 169 523 l 2 - 120 523 105 478 92 441 c 0 - 91 438 90 437 80 436 c 0 - 70 435 61 439 57 443 c 1 - 70 491 93 591 100 621 c 1 - 116 621 381 622 381 622 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/seven.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/seven.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/seven.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/seven.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: seven.prop -Encoding: 65704 -1 614 -Width: 445 -Flags: HW -LayerCount: 2 -Fore -Refer: 23 55 N 1 0 0 1 -33 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/s.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/s.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/s.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/s.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: s -Encoding: 115 115 83 -Width: 394 -Flags: W -HStem: -8 39<125 227> 398 39<165 268> -VStem: 37 116<268 371> 44 36<84 146> 241 117<55 169> -LayerCount: 2 -Fore -SplineSet -219 438 m 0xe8 - 265 438 296 426 328 419 c 1 - 336 386 349 316 349 299 c 0 - 349 295 338 292 331 292 c 0 - 323 292 318 296 312 300 c 1 - 302 344 277 398 209 398 c 0 - 177 398 153 381 153 346 c 0xe8 - 153 295 210 280 253 259 c 0 - 304 234 358 210 358 127 c 0 - 358 29 268 -8 166 -8 c 0 - 123 -8 76 7 52 13 c 1 - 48 35 44 129 44 140 c 0 - 44 146 54 146 59 146 c 0 - 66 146 77 143 80 137 c 1xd8 - 94 52 147 31 186 31 c 0 - 220 31 241 57 241 84 c 0 - 241 133 187 146 141 171 c 0 - 84 202 37 237 37 303 c 0 - 37 401 142 438 219 438 c 0xe8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" s.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_S.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_S.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_S.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_S.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: S -Encoding: 83 83 51 -Width: 508 -Flags: W -HStem: -10 41<181 310> 613 41<208 322> -VStem: 46 41<134 193> 53 130<473 552> 340 128<92 183> 396 40<459 526> -LayerCount: 2 -Fore -SplineSet -261 654 m 0xd8 - 319 654 365 640 425 627 c 1 - 430 575 433 525 436 465 c 1 - 433 461 429 459 425 459 c 0 - 422 459 398 458 396 466 c 0 - 388 521 341 613 266 613 c 0 - 228 613 183 593 183 528 c 0xd4 - 183 467 264 412 324 372 c 0 - 388 329 468 287 468 171 c 0 - 468 64 362 -10 255 -10 c 0 - 197 -10 128 2 69 16 c 1 - 59 59 48 155 46 182 c 1 - 50 188 69 195 74 195 c 0 - 81 195 86 194 87 188 c 0xe8 - 96 135 157 31 245 31 c 0 - 295 31 340 57 340 126 c 0 - 340 195 244 252 195 285 c 0 - 124 333 53 376 53 478 c 0 - 53 579 160 654 261 654 c 0xd8 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" s.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/six.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/six.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/six.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/six.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: six -Encoding: 54 54 22 -Width: 532 -Flags: W -HStem: -6 41<232 308> 338 58<215 299> 604 25<407 432> -VStem: 63 128<130 323> 341 128<116 288> -LayerCount: 2 -Fore -SplineSet -198 319 m 1 - 193 285 191 243 191 216 c 0 - 191 134 211 35 273 35 c 0 - 311 35 341 90 341 178 c 0 - 341 261 316 338 247 338 c 0 - 235 338 212 333 198 319 c 1 -290 396 m 0 - 385 396 469 344 469 202 c 0 - 469 88 367 -6 263 -6 c 0 - 154 -6 63 109 63 236 c 3 - 63 344 119 438 177 499 c 0 - 261 588 361 621 427 630 c 1 - 435 624 436 614 434 604 c 1 - 311 553 241 470 210 371 c 1 - 235 386 266 396 290 396 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/six.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/six.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/six.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/six.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: six.prop -Encoding: 65703 -1 613 -Width: 491 -Flags: HW -LayerCount: 2 -Fore -Refer: 22 54 N 1 0 0 1 -19 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: slash -Encoding: 47 47 15 -Width: 412 -Flags: HW -LayerCount: 2 -Fore -SplineSet -365 743 m 0 - 379 743 383 739 384 735 c 1 - 95 -14 l 2 - 93 -21 80 -34 46 -34 c 0 - 31 -34 28 -27 28 -27 c 1 - 317 722 l 1 - 321 730 336 743 365 743 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" slash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/slash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/slash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/slash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/slash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: slash.sc -Encoding: 65555 -1 465 -Width: 322 -VWidth: -12 -Flags: HW -LayerCount: 2 -Fore -Refer: 15 47 N 0.72 0 0 0.69 8 -12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/space.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/space.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/space.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/space.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: space -Encoding: 32 32 0 -Width: 208 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/s.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/s.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/s.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/s.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: s.sc -Encoding: 65581 -1 491 -Width: 416 -VWidth: 0 -Flags: W -HStem: -9 38<139 244> 410 38<183 273> -VStem: 43 38<88 135> 50 121<310 386> 260 119<52 139> -LayerCount: 2 -Fore -SplineSet -193 29 m 0xe8 - 228 29 260 46 260 93 c 0 - 260 140 190 178 154 200 c 0 - 102 232 50 261 50 329 c 0 - 50 396 134 448 212 448 c 0 - 257 448 293 435 339 423 c 1 - 344 391 346 358 349 321 c 1 - 346 319 343 317 339 317 c 0 - 336 317 314 314 312 321 c 0 - 307 354 277 410 227 410 c 0 - 202 410 171 398 171 354 c 0xd8 - 171 313 231 275 274 248 c 0 - 321 219 379 190 379 112 c 0 - 379 40 297 -9 212 -9 c 0 - 167 -9 111 2 65 15 c 1 - 55 44 45 109 43 128 c 1 - 47 132 64 137 69 137 c 0 - 75 137 80 135 81 131 c 0 - 87 97 131 29 193 29 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sterling.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sterling.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/sterling.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/sterling.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: sterling -Encoding: 163 163 98 -Width: 466 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 100<286 363> 50 84<122 251> 300 41<57 370> 566 55<236 326> -VStem: 97 103<350 471> 127 111<187 299> -LayerCount: 2 -Fore -SplineSet -309 621 m 0xb8 - 343 621 359 612 378 600 c 1 - 382 596 387 578 387 568 c 0 - 387 533 365 511 339 511 c 0 - 312 511 300 522 289 536 c 0 - 277 551 265 566 247 566 c 0 - 208 566 199 515 199 448 c 0xb8 - 199 376 239 331 239 276 c 0 - 239 203 193 141 169 119 c 1 - 187 129 211 134 233 134 c 0x74 - 270 134 302 92 353 92 c 0 - 390 92 404 123 412 138 c 1 - 416 140 424 136 428 131 c 24 - 433 125 433 118 433 112 c 1 - 422 81 377 -8 301 -8 c 0xb4 - 235 -8 208 50 136 50 c 0x74 - 111 50 78 10 61 -6 c 1 - 53 -6 45 7 45 16 c 0 - 45 44 80 76 94 92 c 0 - 118 119 127 179 127 227 c 0xb4 - 127 276 97 348 97 375 c 0 - 97 508 217 621 309 621 c 0xb8 -66 341 m 1 - 82 341 363 341 374 341 c 1 - 388 330 371 304 365 300 c 1 - 46 300 l 17 - 40 306 57 341 66 341 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/summation.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/summation.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/summation.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/summation.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: summation -Encoding: 8721 8721 232 -Width: 610 -Flags: W -HStem: 0 21G<478 535> 2 28<32 65> 594 47<239 434> 612 28<32 66> -LayerCount: 2 -Fore -SplineSet -531 0 m 1xa0 - 425 0 240 2 151 2 c 0 - 86 2 36 -3 36 -3 c 1 - 34 -1 32 7 32 15 c 0 - 32 23 34 30 36 30 c 0 - 47 30 79 51 88 63 c 2 - 267 299 l 2 - 271 304 270 310 267 314 c 0 - 254 334 162 478 87 578 c 0 - 74 595 48 612 36 612 c 0 - 34 612 32 619 32 626 c 0 - 32 633 34 641 36 643 c 1 - 36 643 84 641 149 641 c 0x50 - 240 641 396 646 502 646 c 1 - 509 597 523 543 532 499 c 1 - 529 496 517 494 510 494 c 0 - 503 494 498 496 496 501 c 0 - 472 550 423 594 359 594 c 27 - 338 594 332 594 305 594 c 0 - 271 594 241 589 239 581 c 1 - 400 352 l 1 - 402 346 404 339 404 333 c 0 - 404 328 402 324 399 321 c 0 - 316 221 198 82 198 69 c 0 - 198 62 202 59 268 59 c 0 - 301 59 304 59 330 59 c 0 - 381 59 442 63 470 78 c 0 - 489 88 516 122 533 166 c 0 - 534 170 540 172 547 172 c 0 - 557 172 573 169 576 166 c 1 - 557 113 538 43 531 0 c 1xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: tbar -Encoding: 359 359 399 -Width: 335 -Flags: W -HStem: -7 62<177 271> 267 36<11 321> 372 46<15 80 207 320> -VStem: 80 127<67 372 418 488> -LayerCount: 2 -Fore -SplineSet -319 267 m 1 - 291 267 27 267 13 267 c 1 - 9 267 8 294 14 303 c 1 - 42 303 305 303 319 303 c 1 - 323 303 323 276 319 267 c 1 -EndSplineSet -Refer: 84 116 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" tbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Tbar -Encoding: 358 358 398 -Width: 619 -Flags: W -HStem: -4 36<169 233 386 450> 301 39<137 482> 599 43<100 241 378 519> -VStem: 8 38<472 525> 241 137<40 599> 573 38<472 525> -LayerCount: 2 -Fore -SplineSet -481 301 m 1 - 453 301 153 301 139 301 c 1 - 135 301 134 331 140 340 c 1 - 168 340 467 340 481 340 c 1 - 485 340 485 310 481 301 c 1 -EndSplineSet -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: tbar.sc -Encoding: 65683 -1 593 -Width: 515 -VWidth: 0 -Flags: W -HStem: -4 33<138 193 331 386> 198 36<113 401> 399 40<78 199 326 442> -VStem: 15 35<324 361> 199 127<42 399> 466 35<324 362> -LayerCount: 2 -Fore -SplineSet -399 198 m 1 - 371 198 128 198 114 198 c 1 - 110 198 109 225 115 234 c 1 - 143 234 385 234 399 234 c 1 - 403 234 403 207 399 198 c 1 -EndSplineSet -Refer: 492 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: tcaron -Encoding: 357 357 356 -Width: 333 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 619 -61 2 -Refer: 84 116 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" tcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Tcaron -Encoding: 356 356 355 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 142 32 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: tcaron.sc -Encoding: 65682 -1 592 -Width: 517 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 521 0 2 -Refer: 492 -1 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/t.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/t.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/t.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/t.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: t -Encoding: 116 116 84 -Width: 333 -Flags: W -HStem: -7 62<177 271> 372 46<15 80 207 320> -VStem: 80 127<67 372 418 488> -LayerCount: 2 -Fore -SplineSet -207 418 m 1 - 214 418 286 418 318 418 c 0 - 322 418 324 410 324 405 c 0 - 324 396 312 379 302 372 c 1 - 273 372 239 372 207 372 c 1 - 207 130 l 2 - 207 78 224 56 260 56 c 0 - 283 56 309 76 312 79 c 1 - 314 77 318 70 318 65 c 0 - 318 60 313 49 311 47 c 0 - 302 37 258 -7 207 -7 c 0 - 146 -7 80 27 80 136 c 2 - 80 372 l 1 - 54 372 36 372 11 372 c 1 - 6 374 6 381 6 385 c 1 - 16 399 25 408 37 418 c 1 - 50 418 70 418 80 418 c 9 - 80 418 80 450 80 470 c 1 - 117 501 153 543 183 573 c 1 - 194 580 206 579 207 573 c 1 - 207 520 207 470 207 418 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" t.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_T.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_T.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_T.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_T.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: T -Encoding: 84 84 52 -Width: 619 -Flags: W -HStem: -4 36<169 233 386 450> 599 43<100 241 378 519> -VStem: 8 38<472 525> 241 137<40 599> 573 38<472 525> -LayerCount: 2 -Fore -SplineSet -472 642 m 0 - 542 642 555 660 573 660 c 0 - 581 660 581 659 585 657 c 1 - 611 478 l 1 - 608 475 592 471 583 471 c 0 - 578 471 574 472 573 476 c 0 - 563 539 519 599 469 599 c 2 - 378 599 l 1 - 378 142 l 2 - 378 100 378 70 386 50 c 0 - 391 37 435 33 448 32 c 1 - 453 25 452 2 448 -4 c 1 - 410 0 350 3 309 3 c 0 - 268 3 209 0 171 -4 c 1 - 167 2 166 25 171 32 c 1 - 184 33 228 37 233 50 c 0 - 241 70 241 100 241 142 c 2 - 241 599 l 1 - 150 599 l 2 - 100 599 56 539 46 476 c 0 - 45 472 41 471 36 471 c 0 - 27 471 11 475 8 478 c 1 - 34 657 l 1 - 38 659 38 660 46 660 c 0 - 64 660 77 642 147 642 c 0 - 234 642 385 642 472 642 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" t.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_T_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_T_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_T_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_T_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -StartChar: T_h -Encoding: 65720 -1 643 -Width: 1085 -Flags: W -HStem: -4 36<169 233 386 450 530 595 737 795 820 873 1016 1080> 356 1<730 815> 599 43<100 241 378 569> 660 20G<595 729> -VStem: 8 38<472 525> 241 137<40 599> 603 127<40 331 357 569> 881 127<40 327> -LayerCount: 2 -Fore -SplineSet -603 506 m 2 - 603 595 530 599 469 599 c 2 - 378 599 l 1 - 378 142 l 2 - 378 100 378 70 386 50 c 0 - 391 37 435 33 448 32 c 1 - 453 25 452 2 448 -4 c 1 - 410 0 350 3 309 3 c 0 - 268 3 209 0 171 -4 c 1 - 167 2 166 25 171 32 c 1 - 184 33 228 37 233 50 c 0 - 241 70 241 100 241 142 c 2 - 241 599 l 1 - 150 599 l 2 - 100 599 56 539 46 476 c 0 - 45 472 41 471 36 471 c 0 - 27 471 11 475 8 478 c 1 - 34 657 l 1 - 38 659 38 660 46 660 c 0 - 64 660 77 642 147 642 c 0 - 234 642 385 642 472 642 c 0 - 571 642 726 680 726 680 c 1 - 732 679 739 668 740 663 c 1 - 740 663 729 601 729 562 c 0 - 729 363 l 0 - 729 360 729 358 730 357 c 1 - 732 357 735 360 737 362 c 0 - 764 393 830 436 875 436 c 0 - 986 436 1008 359 1008 205 c 2 - 1008 142 l 2 - 1008 100 1008 70 1016 50 c 0 - 1021 37 1065 33 1078 32 c 1 - 1083 25 1082 2 1078 -4 c 1 - 1040 0 985 3 944 3 c 0 - 903 3 860 0 822 -4 c 1 - 818 2 817 25 822 32 c 1 - 835 33 868 37 873 50 c 0 - 881 70 881 100 881 142 c 2 - 881 219 l 2 - 881 289 867 356 815 356 c 0 - 776 356 729 322 729 302 c 2 - 729 142 l 2 - 729 106 729 70 737 50 c 0 - 742 37 780 33 793 32 c 1 - 798 25 797 2 793 -4 c 1 - 755 0 707 3 666 3 c 0 - 625 3 570 0 532 -4 c 1 - 528 2 527 25 532 32 c 1 - 545 33 590 37 595 50 c 0 - 603 70 603 100 603 142 c 2 - 603 506 l 2 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" T h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: thorn -Encoding: 254 254 188 -Width: 522 -Flags: W -HStem: -213 36<-7 58 201 265> -8 43<207 301> 366 71<241 307> 609 31<-2 54> 659 20G<187 192> -VStem: 66 127<-169 1 49 359 379 601> 351 141<132 316> -LayerCount: 2 -Fore -SplineSet -300 438 m 0 - 418 438 492 337 492 229 c 0 - 492 80 359 -8 252 -8 c 0 - 225 -8 200 1 196 1 c 1 - 193 1 193 -3 193 -15 c 2 - 193 -67 l 2 - 193 -109 193 -139 201 -159 c 0 - 206 -172 250 -176 263 -177 c 1 - 268 -184 267 -207 263 -213 c 1 - 225 -209 170 -206 129 -206 c 0 - 88 -206 33 -209 -5 -213 c 1 - -9 -207 -10 -184 -5 -177 c 1 - 8 -176 53 -172 58 -159 c 0 - 66 -139 66 -109 66 -67 c 2 - 66 545 l 2 - 66 562 66 575 59 592 c 0 - 54 604 12 609 0 609 c 1 - -4 609 -5 637 0 641 c 1 - 109 651 186 679 189 679 c 1 - 195 678 203 667 204 662 c 1 - 204 662 193 601 193 562 c 0 - 193 398 193 401 193 385 c 0 - 193 383 193 382 193 381 c 0 - 194 378 196 378 197 379 c 0 - 226 410 270 438 300 438 c 0 -246 366 m 0 - 210 366 193 344 193 339 c 2 - 193 94 l 2 - 193 55 225 35 259 35 c 0 - 291 35 351 81 351 194 c 0 - 351 295 325 366 246 366 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" thorn.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Thorn -Encoding: 222 222 156 -Width: 569 -Flags: W -HStem: -4 36<35 100 252 317> 3 193<155 304> 143 50<289 371> 468 37<248 350> 610 36<35 100 252 317> -VStem: 108 137<40 466 505 602> 410 139<244 407> -LayerCount: 2 -Fore -SplineSet -177 640 m 0x9e - 218 640 277 642 315 646 c 1 - 319 640 320 617 315 610 c 1 - 302 609 257 606 252 593 c 0 - 246 578 245 555 245 526 c 0 - 245 519 245 513 245 505 c 1 - 270 506 299 507 328 507 c 0 - 450 507 548 444 548 333 c 0 - 548 216 455 143 356 143 c 0xbe - 321 143 295 158 288 165 c 0 - 284 169 281 181 281 189 c 0 - 281 193 283 196 285 196 c 1x5e - 295 193 310 192 325 192 c 0 - 373 192 410 244 410 319 c 0 - 410 396 363 468 298 468 c 0 - 276 468 254 467 249 456 c 0 - 244 444 245 396 245 396 c 1 - 245 142 l 2 - 245 100 244 70 252 50 c 0 - 257 37 302 33 315 32 c 1 - 320 25 319 2 315 -4 c 1xbe - 277 0 216 3 175 3 c 0x5e - 134 3 75 0 37 -4 c 1 - 33 2 32 25 37 32 c 1 - 50 33 95 37 100 50 c 0 - 108 70 108 100 108 142 c 2 - 108 501 l 2 - 108 543 108 573 100 593 c 0 - 95 606 50 609 37 610 c 1 - 32 617 33 640 37 646 c 1 - 75 642 136 640 177 640 c 0x9e -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/thorn.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/thorn.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/thorn.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/thorn.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: thorn.sc -Encoding: 65628 -1 538 -Width: 493 -Flags: W -HStem: -4 36<42 90 226 276> 2 135<135 255> 89 46<243 314> 311 36<228 303> 311 28<226 284> 405 36<42 90 228 276> -VStem: 96 127<45 310 339 394> 334 135<157 282> -LayerCount: 2 -Fore -SplineSet -223 348 m 0x87 - 223 345 225 339 229 339 c 0x8f - 234 339 272 347 285 347 c 0 - 385 347 469 303 469 224 c 0 - 469 141 385 89 301 89 c 0x37 - 271 89 250 102 244 108 c 0 - 238 113 235 137 241 137 c 1x47 - 249 136 259 135 271 135 c 0 - 308 135 334 168 334 216 c 0 - 334 265 305 311 260 311 c 0 - 244 311 229 310 226 303 c 0 - 223 295 223 283 223 264 c 2 - 223 104 l 2 - 223 77 223 57 226 44 c 0 - 228 35 268 33 274 32 c 1 - 279 26 278 2 274 -4 c 1xb7 - 246 -1 180 2 150 2 c 0x47 - 120 2 72 -1 44 -4 c 1 - 40 2 39 26 44 32 c 1 - 53 33 87 35 90 44 c 0 - 96 57 96 77 96 104 c 2 - 96 334 l 2 - 96 361 96 382 90 395 c 0 - 87 404 53 404 44 405 c 1 - 39 411 40 435 44 441 c 1 - 80 438 128 439 160 438 c 0 - 193 438 243 439 274 443 c 1 - 278 437 279 413 274 407 c 1 - 265 406 231 405 228 396 c 0 - 222 383 223 353 223 348 c 0x87 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/three.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/three.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/three.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/three.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: three -Encoding: 51 51 19 -Width: 532 -Flags: W -HStem: -6 41<201 300> 306 32<171 228> 555 72<191 305> -VStem: 314 114<434 520> 338 130<126 260> -LayerCount: 2 -Fore -SplineSet -281 627 m 0xf0 - 328 627 429 600 429 502 c 0xf0 - 429 420 346 373 322 363 c 1 - 353 361 468 332 468 215 c 0 - 468 77 332 -6 207 -6 c 0 - 144 -6 96 14 76 30 c 1 - 69 39 64 62 64 72 c 0 - 64 95 82 124 115 124 c 0 - 141 124 162 97 178 78 c 0 - 196 57 221 35 246 35 c 0 - 307 35 338 86 338 174 c 0xe8 - 338 247 297 314 232 314 c 0 - 226 314 203 313 178 306 c 1 - 174 311 170 321 170 329 c 0 - 170 333 169 335 170 338 c 1 - 226 348 314 378 314 447 c 0 - 314 507 282 555 223 555 c 0 - 170 555 122 512 115 504 c 1 - 108 506 104 522 104 531 c 1 - 140 579 203 627 281 627 c 0xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/three.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/three.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/three.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/three.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: three.prop -Encoding: 65700 -1 610 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 19 51 N 1 0 0 1 -35 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/threequarters.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/threequarters.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/threequarters.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/threequarters.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: threequarters -Encoding: 190 190 124 -Width: 722 -Flags: W -HStem: -3 21G<595 619> 90 45<467 566 651 682> 239 26<114 183> 582 45<100 177> -VStem: 188 78<490 571> 207 88<304 407> 566 85<-2 90 135 256> -LayerCount: 2 -Fore -SplineSet -632 377 m 0xf2 - 636 377 651 368 651 358 c 10 - 651 135 l 25 - 676 135 l 17 - 689 123 692 108 686 90 c 1 - 651 90 l 25 - 651 2 l 17 - 651 2 631 -3 605 -3 c 0 - 584 -3 566 0 566 5 c 2 - 566 90 l 25 - 417 90 l 17 - 412 92 405 98 405 106 c 1 - 478 194 556 291 619 369 c 0 - 623 374 627 377 632 377 c 0xf2 -566 135 m 1 - 566 256 l 17 - 544 230 479 149 467 135 c 1 - 462 135 535 135 566 135 c 1 -173 627 m 0 - 208 627 267 605 267 545 c 0xfa - 267 485 216 470 195 466 c 1 - 215 465 295 441 295 368 c 0 - 295 281 199 239 123 239 c 0 - 84 239 54 250 42 260 c 1 - 38 266 33 277 33 286 c 0 - 33 301 43 320 64 320 c 0 - 81 320 93 307 104 290 c 0 - 114 274 131 266 147 266 c 0 - 184 266 207 292 207 346 c 0xf6 - 207 391 177 433 137 433 c 0 - 133 433 115 433 105 430 c 1 - 103 433 100 439 100 444 c 0 - 100 446 101 454 102 456 c 1 - 132 460 188 476 188 525 c 0xfa - 188 557 166 582 130 582 c 0 - 98 582 71 555 67 550 c 1 - 63 551 52 556 54 566 c 1 - 76 595 126 627 173 627 c 0 -600 661 m 1 - 263 -11 l 2 - 260 -18 244 -29 227 -33 c 0 - 212 -36 210 -24 210 -24 c 1 - 547 647 l 1 - 553 656 565 664 582 668 c 0 - 591 670 599 666 600 661 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: tildecomb.cap -Encoding: 65540 -1 252 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 59<-208 -97> 771 58<-378 -269> -LayerCount: 2 -Fore -SplineSet --313 829 m 0 - -277 829 -252 816 -226 801 c 0 - -198 785 -166 770 -145 770 c 0 - -92 770 -70 814 -60 819 c 1 - -55 819 -52 811 -52 806 c 0 - -52 789 -61 771 -70 759 c 0 - -94 729 -126 711 -161 711 c 0 - -197 711 -223 724 -249 739 c 0 - -277 755 -304 771 -330 771 c 0 - -383 771 -405 726 -415 721 c 1 - -420 721 -423 730 -423 735 c 0 - -423 752 -413 770 -404 782 c 0 - -380 812 -348 829 -313 829 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tildecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: tildecomb -Encoding: 771 771 244 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 62<-215 -127> 550 61<-353 -265> -VStem: -390 302 -LayerCount: 2 -Fore -SplineSet --302 610 m 0 - -273 610 -251 595 -230 580 c 0 - -208 563 -178 548 -161 548 c 0 - -118 548 -104 595 -96 600 c 1 - -89 600 -88 593 -88 588 c 0 - -88 570 -97 549 -104 536 c 0 - -124 505 -150 486 -178 486 c 0 - -207 486 -228 502 -249 517 c 0 - -271 534 -297 550 -318 550 c 0 - -361 550 -372 502 -380 497 c 1 - -387 497 -390 507 -390 512 c 0 - -390 530 -382 549 -375 562 c 0 - -355 593 -330 610 -302 610 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tonos.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tonos.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/tonos.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/tonos.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: tonos -Encoding: 900 900 627 -Width: 195 -VWidth: 976 -Flags: W -HStem: 479 208 -VStem: 43 117 -LayerCount: 2 -Fore -SplineSet -126 688 m 0 - 147 688 160 676 160 665 c 0 - 160 616 72 491 62 481 c 0 - 61 480 60 479 57 479 c 0 - 53 479 43 486 43 491 c 0 - 43 500 61 607 81 663 c 0 - 85 673 108 688 126 688 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/t.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/t.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/t.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/t.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: t.sc -Encoding: 65582 -1 492 -Width: 515 -Flags: W -HStem: -4 33<138 193 331 386> 399 40<78 199 326 442> -VStem: 15 35<324 361> 199 127<42 399> 466 35<324 362> -LayerCount: 2 -Fore -SplineSet -395 439 m 0 - 446 439 456 452 469 452 c 0 - 475 452 474 451 477 450 c 1 - 501 327 l 1 - 498 325 484 323 476 323 c 0 - 471 323 467 324 466 326 c 0 - 460 364 433 399 403 399 c 2 - 326 399 l 1 - 326 101 l 2 - 326 74 327 54 331 41 c 0 - 334 33 377 30 384 29 c 1 - 389 23 388 2 384 -4 c 1 - 354 0 285 2 253 2 c 0 - 221 2 171 0 141 -4 c 1 - 137 2 136 23 141 29 c 1 - 151 30 189 33 193 41 c 0 - 199 54 199 74 199 101 c 2 - 199 399 l 1 - 122 399 l 2 - 88 399 57 364 50 326 c 0 - 49 324 46 323 41 323 c 0 - 33 323 18 325 15 327 c 1 - 40 450 l 1 - 43 451 42 452 48 452 c 0 - 61 452 71 439 122 439 c 0 - 185 439 332 439 395 439 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/two.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/two.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/two.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/two.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: two -Encoding: 50 50 18 -Width: 532 -Flags: W -HStem: 0 100<185 406> 551 76<181 319> -VStem: 314 128<373 505> 444 33<152 193> -LayerCount: 2 -Fore -SplineSet -478 188 m 1 - 467 142 425 19 419 0 c 9 - 63 0 l 1 - 58 5 56 13 55 18 c 1 - 130 101 190 158 258 265 c 0 - 303 336 314 394 314 438 c 0 - 314 502 263 551 210 551 c 0 - 142 551 106 489 98 481 c 1 - 93 481 77 490 77 505 c 1 - 94 542 163 627 272 627 c 0 - 366 627 442 568 442 463 c 0 - 442 403 413 346 368 293 c 0 - 314 231 252 162 185 100 c 1 - 353 100 l 2 - 412 100 428 152 444 187 c 0 - 446 192 452 193 458 193 c 0 - 465 193 473 192 478 188 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/two.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/two.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/two.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/two.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: two.prop -Encoding: 65699 -1 609 -Width: 486 -Flags: HW -LayerCount: 2 -Fore -Refer: 18 50 N 1 0 0 1 -29 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uacute -Encoding: 250 250 184 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 576 12 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uacute -Encoding: 218 218 152 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 653 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uacute.sc -Encoding: 65624 -1 534 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 584 24 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ubreve -Encoding: 365 365 362 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 528 13 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ubreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ubreve -Encoding: 364 364 361 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 254 -1 N 1 0 0 1 634 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ubreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ubreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ubreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ubreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ubreve.sc -Encoding: 65686 -1 596 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 535 25 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ucircumflex -Encoding: 251 251 185 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 512 13 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ucircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ucircumflex -Encoding: 219 219 153 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 633 2 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ucircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ucircumflex.sc -Encoding: 65625 -1 535 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 536 25 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: udieresis -Encoding: 252 252 186 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 502 14 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" udieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Udieresis -Encoding: 220 220 154 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 196 12 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/udieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/udieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/udieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/udieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: udieresis.sc -Encoding: 65626 -1 536 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 522 26 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/u.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/u.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/u.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/u.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: u -Encoding: 117 117 85 -Width: 552 -Flags: W -HStem: -5 60<159 307> 27 31<483 530> 354 30<9 68 275 334> 416 20G<184 206 450 472> -VStem: 82 127<85 344> 347 127<69 344> -LayerCount: 2 -Fore -SplineSet -347 254 m 2xbc - 347 264 346 319 338 334 c 0 - 330 349 284 354 277 354 c 1 - 274 356 273 384 278 384 c 1 - 352 390 431 417 468 436 c 1 - 475 434 485 422 485 419 c 1 - 482 411 476 377 475 363 c 0 - 474 342 474 308 474 302 c 2 - 474 105 l 10 - 474 90 474 78 483 68 c 0 - 492 58 518 59 527 59 c 1 - 529 57 530 53 530 46 c 0 - 530 40 528 33 524 27 c 1x7c - 466 21 369 -7 356 -7 c 0 - 352 -7 347 2 347 17 c 2 - 347 32 l 18 - 347 34 347 39 344 37 c 0 - 328 26 275 -5 207 -5 c 3 - 112 -5 82 78 82 170 c 2 - 82 254 l 2 - 82 264 81 319 73 334 c 0 - 65 349 18 354 11 354 c 1 - 8 356 7 384 12 384 c 1 - 86 390 166 417 203 436 c 1 - 210 434 219 422 219 419 c 1 - 216 411 210 377 209 363 c 0 - 208 342 208 308 208 302 c 2 - 208 214 l 2 - 208 110 224 55 285 55 c 0 - 312 55 347 76 347 91 c 2 - 347 254 l 2xbc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" u.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_U.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_U.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_U.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_U.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: U -Encoding: 85 85 53 -Width: 712 -Flags: W -HStem: -9 70<315 466> 610 36<20 84 237 301 471 542 638 712> -VStem: 92 137<163 602> 560 61<171 595> -LayerCount: 2 -Fore -SplineSet -162 640 m 0 - 203 640 261 642 299 646 c 1 - 303 640 304 617 299 610 c 1 - 286 609 242 606 237 593 c 0 - 229 573 229 543 229 501 c 2 - 229 322 l 2 - 229 256 231 207 253 155 c 0 - 290 69 364 62 402 62 c 0 - 480 62 560 131 560 302 c 2 - 560 468 l 2 - 560 510 554 567 546 587 c 0 - 538 606 486 609 473 610 c 1 - 468 617 469 640 473 646 c 1 - 519 642 550 640 595 640 c 0 - 638 640 669 644 709 646 c 1 - 713 640 714 617 709 610 c 1 - 696 609 642 608 634 587 c 0 - 626 567 620 511 620 469 c 2 - 620 279 l 2 - 620 80 494 -9 353 -9 c 0 - 271 -9 194 18 147 77 c 0 - 109 125 92 192 92 294 c 2 - 92 501 l 2 - 92 543 92 573 84 593 c 0 - 79 606 35 609 22 610 c 1 - 17 617 18 640 22 646 c 1 - 60 642 121 640 162 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" u.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ugrave -Encoding: 249 249 183 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 477 13 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ugrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ugrave -Encoding: 217 217 151 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 601 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ugrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ugrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ugrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ugrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ugrave.sc -Encoding: 65623 -1 533 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 501 25 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: uhorn -Encoding: 432 432 620 -Width: 598 -Flags: W -HStem: -4 80<169 303> 21 36<498 547> 413 20G<205 209> -VStem: 82 127<104 342> 360 127<88 341> 551 89<438 523> -LayerCount: 2 -Fore -SplineSet -491 427 m 0xbc - 524 434 551 441 551 453 c 0 - 551 467 529 481 529 504 c 0 - 529 543 590 549 621 549 c 1 - 630 540 640 508 640 482 c 0 - 640 404 527 382 508 373 c 0 - 489 364 487 351 487 319 c 2 - 487 128 l 2 - 487 104 488 76 497 66 c 0 - 508 54 541 58 544 57 c 0 - 546 56 548 52 548 49 c 0 - 548 47 547 21 542 21 c 0x7c - 490 18 365 -5 364 -5 c 0 - 359 -5 358 6 358 13 c 2 - 358 49 l 2 - 358 54 356 55 354 53 c 0 - 332 30 276 -4 209 -4 c 3 - 129 -4 82 78 82 170 c 2 - 82 265 l 2 - 82 275 80 321 64 338 c 0 - 48 356 11 356 11 360 c 0 - 11 363 11 395 16 395 c 0 - 41 395 158 418 194 430 c 0 - 195 430 204 433 205 433 c 0 - 213 433 220 421 220 416 c 0 - 216 385 209 351 209 318 c 2 - 209 214 l 2 - 209 110 234 76 294 76 c 0 - 343 76 360 104 360 125 c 2 - 360 265 l 2 - 360 275 359 321 343 338 c 0 - 327 356 289 356 289 360 c 0 - 289 363 289 395 294 395 c 0 - 304 395 412 411 491 427 c 0xbc -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: Uhorn -Encoding: 431 431 618 -Width: 739 -Flags: W -HStem: -5 78<307 465> 610 36<20 77 241 303 452 517> -VStem: 92 137<161 585> 544 62<162 578> 715 89<660 746> -LayerCount: 2 -Fore -SplineSet -715 676 m 0 - 715 690 693 704 693 727 c 0 - 693 766 754 771 785 771 c 1 - 794 762 804 731 804 705 c 0 - 804 649 717 617 672 606 c 0 - 654 602 633 594 620 578 c 0 - 610 566 606 542 606 507 c 2 - 606 284 l 2 - 606 86 496 -5 355 -5 c 0 - 208 -5 92 78 92 304 c 2 - 92 510 l 2 - 92 528 91 574 84 586 c 0 - 77 598 35 610 23 610 c 0 - 21 610 20 621 20 627 c 0 - 20 633 19 644 21 646 c 1 - 66 644 118 641 163 641 c 0 - 206 641 261 644 300 646 c 1 - 301 643 303 634 303 629 c 0 - 303 623 302 610 299 610 c 0 - 291 610 238 598 235 587 c 0 - 228 561 229 536 229 504 c 2 - 229 272 l 2 - 229 154 285 73 379 73 c 0 - 463 73 544 119 544 279 c 2 - 544 512 l 2 - 544 529 546 565 531 582 c 0 - 517 598 467 610 455 610 c 0 - 450 610 448 641 452 646 c 1 - 497 642 536 639 581 639 c 0 - 689 639 715 664 715 676 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uhungarumlaut -Encoding: 369 369 366 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 779 N 1 0 0 1 556 13 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uhungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Uhungarumlaut -Encoding: 368 368 365 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 600 0 2 -Refer: 248 -1 N 1 0 0 1 764 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uhungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uhungarumlaut.sc -Encoding: 65688 -1 598 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 779 N 1 0 0 1 586 25 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: umacron -Encoding: 363 363 360 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 518 42 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" umacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Umacron -Encoding: 362 362 359 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 634 11 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/umacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/umacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/umacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/umacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: umacron.sc -Encoding: 65685 -1 595 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 529 55 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/underscore.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/underscore.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/underscore.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/underscore.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: underscore -Encoding: 95 95 63 -Width: 481 -Flags: W -HStem: -42 55<12 459> -LayerCount: 2 -Fore -SplineSet -8 -32 m 1 - 8 -32 12 13 22 13 c 2 - 461 13 l 2 - 463 13 465 12 465 8 c 0 - 465 -1 461 -15 455 -36 c 0 - 453 -42 449 -42 449 -42 c 1 - 15 -42 l 1 - 15 -42 8 -42 8 -32 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00A0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00A0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00A0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00A0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni00A0 -Encoding: 160 160 95 -Width: 208 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00AD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00AD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00AD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00AD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni00AD -Encoding: 173 173 893 -Width: 365 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 197 8208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: uni00B2 -Encoding: 178 178 112 -Width: 343 -Flags: W -HStem: 248 69<120 263> 575 52<111 185> -VStem: 199 93<459 560> -LayerCount: 2 -Fore -SplineSet -303 373 m 1 - 296 345 270 259 266 248 c 9 - 44 248 l 1 - 41 251 38 259 37 262 c 1 - 84 314 106 338 153 399 c 0 - 187 443 199 476 199 513 c 0 - 199 552 170 575 137 575 c 0 - 94 575 72 532 67 527 c 1 - 64 527 52 529 52 541 c 1 - 63 563 111 627 179 627 c 0 - 247 627 292 592 292 525 c 0 - 292 472 250 428 213 394 c 0 - 184 368 156 343 120 317 c 1 - 229 317 l 2 - 258 317 268 350 278 371 c 0 - 279 374 285 376 289 376 c 0 - 293 376 300 375 303 373 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni00B3 -Encoding: 179 179 113 -Width: 330 -Flags: W -HStem: 239 26<116 185> 582 45<102 179> -VStem: 190 78<490 571> 209 88<304 407> -LayerCount: 2 -Fore -SplineSet -175 627 m 0xe0 - 210 627 269 605 269 545 c 0xe0 - 269 485 218 470 197 466 c 1 - 217 465 297 441 297 368 c 0 - 297 281 201 239 125 239 c 0 - 86 239 56 250 44 260 c 1 - 40 266 35 277 35 286 c 0 - 35 301 45 320 66 320 c 0 - 83 320 94 307 105 290 c 0 - 115 274 133 266 149 266 c 0 - 186 266 209 292 209 346 c 0xd0 - 209 391 179 433 139 433 c 0 - 135 433 117 433 107 430 c 1 - 105 433 102 439 102 444 c 0 - 102 446 103 454 104 456 c 1 - 134 460 190 476 190 525 c 0 - 190 557 168 582 132 582 c 0 - 100 582 73 555 69 550 c 1 - 65 551 54 556 56 566 c 1 - 78 595 128 627 175 627 c 0xe0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni00B9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni00B9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni00B9 -Encoding: 185 185 119 -Width: 284 -Flags: W -HStem: 246 25<53 100 206 253> 606 20G<190 194> -VStem: 111 85<285 544> -LayerCount: 2 -Fore -SplineSet -111 499 m 2 - 111 525 105 545 93 545 c 0 - 84 545 60 534 49 529 c 1 - 44 530 38 541 38 549 c 0 - 38 550 38 555 39 556 c 1 - 108 585 189 626 191 626 c 2 - 192 626 l 2 - 196 626 207 609 208 606 c 1 - 205 595 196 561 196 523 c 2 - 196 338 l 2 - 196 320 199 291 206 284 c 0 - 214 275 247 271 252 271 c 1 - 254 271 253 247 252 246 c 1 - 229 247 177 250 154 250 c 0 - 131 250 78 247 55 246 c 1 - 52 249 52 271 55 271 c 1 - 63 271 95 277 102 285 c 0 - 107 291 111 328 111 339 c 2 - 111 499 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0122.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0122.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0122.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0122.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0122 -Encoding: 290 290 304 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 646 0 2 -Refer: 39 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0123.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0123.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0123.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0123.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0123 -Encoding: 291 291 305 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 786 N 1 0 0 1 466 21 2 -Refer: 71 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni0123.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0123.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0123.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0123.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0123.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0123.sc -Encoding: 65648 -1 558 -Width: 584 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 565 0 2 -Refer: 479 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0136.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0136.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0136.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0136.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0136 -Encoding: 310 310 317 -Width: 702 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 626 0 2 -Refer: 43 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0137.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0137.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0137.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0137.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0137 -Encoding: 311 311 318 -Width: 576 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 554 0 2 -Refer: 75 107 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni0137.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0137.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0137.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0137.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0137.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0137.sc -Encoding: 65659 -1 569 -Width: 568 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 593 0 2 -Refer: 483 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013B -Encoding: 315 315 321 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 565 0 2 -Refer: 44 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni013C -Encoding: 316 316 322 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 405 0 2 -Refer: 76 108 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni013C.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013C.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013C.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni013C.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni013C.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013C.sc -Encoding: 65662 -1 572 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 475 0 2 -Refer: 484 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0145.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0145.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0145.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0145.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0145 -Encoding: 325 325 329 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 652 0 2 -Refer: 46 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0146.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0146.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0146.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0146.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0146 -Encoding: 326 326 330 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 560 0 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni0146.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0146.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0146.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0146.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0146.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0146.sc -Encoding: 65667 -1 577 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 526 0 2 -Refer: 486 -1 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0156.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0156.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0156.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0156.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0156 -Encoding: 342 342 341 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 635 0 2 -Refer: 50 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0157.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0157.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0157.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0157.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0157 -Encoding: 343 343 342 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 415 0 2 -Refer: 82 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni0157.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0157.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0157.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0157.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0157.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0157.sc -Encoding: 65675 -1 585 -Width: 566 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 549 0 2 -Refer: 490 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0162.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0162.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0162.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0162.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0162 -Encoding: 354 354 353 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 -1 N 1 0 0 1 64 6 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0163.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0163.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0163.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0163.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0163 -Encoding: 355 355 354 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 -27 -1 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uni0163.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0163.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0163.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0163.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0163.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0163.sc -Encoding: 65681 -1 591 -Width: 515 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 29 3 2 -Refer: 492 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CD -Encoding: 461 461 402 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 168 25 2 -Refer: 33 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CE -Encoding: 462 462 403 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 484 12 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01CF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01CF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CF -Encoding: 463 463 404 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 6 25 2 -Refer: 41 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D0 -Encoding: 464 464 405 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 408 12 2 -Refer: 242 305 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D1 -Encoding: 465 465 406 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 200 25 2 -Refer: 47 79 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D2 -Encoding: 466 466 407 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 511 12 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D3 -Encoding: 467 467 408 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 192 25 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D4 -Encoding: 468 468 409 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 582 12 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D5 -Encoding: 469 469 410 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 613 215 2 -Refer: 154 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D6 -Encoding: 470 470 411 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 515 241 2 -Refer: 186 252 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D7 -Encoding: 471 471 412 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 698 204 2 -Refer: 154 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D8 -Encoding: 472 472 413 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 582 211 2 -Refer: 186 252 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01D9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01D9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D9 -Encoding: 473 473 414 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 192 229 2 -Refer: 154 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DA -Encoding: 474 474 415 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 513 211 2 -Refer: 186 252 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DB -Encoding: 475 475 416 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 531 204 2 -Refer: 154 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DC -Encoding: 476 476 417 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 459 212 2 -Refer: 186 252 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DE -Encoding: 478 478 418 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 614 215 2 -Refer: 130 196 N 1 0 0 1 25 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01DF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01DF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DF -Encoding: 479 479 419 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 464 241 2 -Refer: 162 228 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E2 -Encoding: 482 482 420 -Width: 879 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 823 11 2 -Refer: 132 198 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E3 -Encoding: 483 483 421 -Width: 679 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 596 42 2 -Refer: 164 230 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E8 -Encoding: 488 488 424 -Width: 702 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 181 25 2 -Refer: 43 75 N 1 0 0 1 -9 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01E9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01E9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E9 -Encoding: 489 489 425 -Width: 576 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 473 252 2 -Refer: 75 107 N 1 0 0 1 12 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: uni01EA -Encoding: 490 490 457 -Width: 709 -Flags: W -HStem: -213 74<411 494> -10 55<300 431> 597 55<275 419> -VStem: 42 152<200 439> 348 82<-163 -71> 518 152<199 437> -LayerCount: 2 -Back -SplineSet -521.965820312 41.9921875 m 0 - 566.565429688 71.890625 602.048828125 111.385742188 628.416992188 160.477539062 c 0 - 654.78515625 209.568359375 667.96875 262.846679688 667.96875 320.3125 c 1024 -EndSplineSet -Fore -SplineSet -341 597 m 0 - 232 597 194 473 194 342 c 0 - 194 221 236 45 371 45 c 0 - 475 45 518 170 518 302 c 0 - 518 433 483 597 341 597 c 0 -355 651 m 0 - 527 651 670 503 670 320 c 0 - 670 203 615 109 531 47 c 0 - 477 8 430 -53 430 -107 c 0 - 430 -128 449 -139 470 -139 c 0 - 497 -139 535 -117 548 -106 c 0 - 549 -106 553 -116 553 -124 c 0 - 553 -129 550 -142 547 -146 c 0 - 532 -165 482 -213 427 -213 c 0 - 395 -213 348 -189 348 -137 c 0 - 348 -94 387 -31 433 1 c 1 - 412 -7 379 -10 355 -10 c 0 - 183 -10 42 137 42 320 c 0 - 42 503 183 651 355 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni01EB -Encoding: 491 491 458 -Width: 509 -Flags: W -HStem: -213 74<304 388> -7 54<211 311> 385 54<195 296> -VStem: 24 139<123 309> 241 82<-163 -72> 343 141<121 308> -LayerCount: 2 -Fore -SplineSet -254 438 m 0 - 382 438 483 339 483 216 c 0 - 483 165 467 118 438 81 c 0 - 380 8 323 -55 323 -107 c 0 - 323 -128 342 -139 363 -139 c 0 - 390 -139 428 -117 441 -106 c 0 - 442 -106 446 -116 446 -124 c 0 - 446 -129 443 -142 440 -146 c 0 - 425 -165 375 -213 320 -213 c 0 - 288 -213 241 -189 241 -137 c 0 - 241 -96 280 -31 323 3 c 1 - 302 -4 278 -7 254 -7 c 0 - 126 -7 24 93 24 216 c 0 - 24 339 126 438 254 438 c 0 -240 385 m 0 - 178 385 163 308 163 246 c 0 - 163 159 177 47 264 47 c 0 - 325 47 343 121 343 182 c 0 - 343 271 329 385 240 385 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01EC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01EC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01EC -Encoding: 492 492 459 -Width: 709 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 606 11 2 -Refer: 457 490 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01ED.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01ED.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01ED.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01ED.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01ED -Encoding: 493 493 460 -Width: 509 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 507 42 2 -Refer: 458 491 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01F0 -Encoding: 496 496 426 -Width: 279 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 409 12 2 -Refer: 378 567 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01F4 -Encoding: 500 500 427 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 705 0 2 -Refer: 39 71 N 1 0 0 1 6 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01F5 -Encoding: 501 501 428 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 543 12 2 -Refer: 71 103 N 1 0 0 1 -2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01F8 -Encoding: 504 504 429 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 247 -1 N 1 0 0 1 548 0 2 -Refer: 46 78 N 1 0 0 1 6 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni01F9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni01F9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01F9 -Encoding: 505 505 430 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 1 0 0 1 497 13 2 -Refer: 78 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0218.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0218.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0218.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0218.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0218 -Encoding: 536 536 437 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 529 0 2 -Refer: 51 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0219.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0219.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0219.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0219.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0219 -Encoding: 537 537 438 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 464 0 2 -Refer: 83 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021A -Encoding: 538 538 439 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 592 0 2 -Refer: 52 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021B -Encoding: 539 539 440 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 461 0 2 -Refer: 84 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021E -Encoding: 542 542 441 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 184 25 2 -Refer: 40 72 N 1 0 0 1 -9 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni021F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni021F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021F -Encoding: 543 543 442 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 549 252 2 -Refer: 72 104 N 1 0 0 1 12 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0226.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0226.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0226.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0226.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0226 -Encoding: 550 550 443 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 638 -6 2 -Refer: 33 65 N 1 0 0 1 25 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0227.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0227.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0227.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0227.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0227 -Encoding: 551 551 444 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 775 N 1 0 0 1 491 13 2 -Refer: 65 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0228.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0228.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0228.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0228.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0228 -Encoding: 552 552 445 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 256 -1 N 1 0 0 1 41 4 2 -Refer: 37 69 N 1 0 0 1 -8 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0229.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0229.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0229.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0229.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0229 -Encoding: 553 553 446 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 118 184 N 1 0 0 1 22 -1 2 -Refer: 69 101 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022A -Encoding: 554 554 447 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 621 215 2 -Refer: 148 214 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022B -Encoding: 555 555 448 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 502 241 2 -Refer: 180 246 N 1 0 0 1 -5 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022C -Encoding: 556 556 449 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 631 183 2 -Refer: 147 213 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022D -Encoding: 557 557 450 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 517 198 2 -Refer: 179 245 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022E -Encoding: 558 558 451 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 619 0 2 -Refer: 47 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni022F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni022F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni022F -Encoding: 559 559 452 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 775 N 1 0 0 1 508 11 2 -Refer: 79 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0230.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0230.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0230.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0230.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0230 -Encoding: 560 560 453 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 621 215 2 -Refer: 451 558 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0231.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0231.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0231.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0231.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0231 -Encoding: 561 561 454 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 509 246 2 -Refer: 452 559 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0232.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0232.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0232.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0232.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0232 -Encoding: 562 562 455 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 253 -1 N 1 0 0 1 561 0 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0233.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0233.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0233.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0233.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0233 -Encoding: 563 563 456 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 510 11 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0237.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0237.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0237.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0237.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: uni0237 -Encoding: 567 567 378 -Width: 279 -Flags: W -HStem: -213 23<-10 4> 354 30<15 73> 416 20G<189 211> -VStem: 87 127<-42 344> -LayerCount: 2 -Fore -SplineSet -87 62 m 2 - 87 254 l 2 - 87 264 86 319 78 334 c 0 - 70 349 24 354 17 354 c 1 - 14 356 13 384 18 384 c 1 - 92 390 171 417 208 436 c 1 - 215 434 225 422 225 419 c 1 - 222 411 216 377 215 363 c 0 - 214 342 214 308 214 302 c 2 - 214 117 l 2 - 214 35 203 -47 167 -100 c 0 - 121 -166 35 -213 2 -213 c 1 - -5 -209 -12 -202 -12 -196 c 0 - -12 -194 -12 -190 -11 -189 c 0 - -7 -187 87 -139 87 62 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BB -Encoding: 699 699 622 -Width: 199 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 786 N 1 0 0 1 331 -25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BC -Encoding: 700 700 623 -Width: 176 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 789 N 1 0 0 1 339 -75 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni02BE -Encoding: 702 702 625 -Width: 182 -Flags: W -HStem: 436 38<28 70> 647 37<28 71> -VStem: 98 56<497 624> -LayerCount: 2 -Fore -SplineSet -29 685 m 1 - 110 685 153 614 153 561 c 0 - 153 502 108 436 29 436 c 1 - 26 446 26 464 29 474 c 1 - 72 474 98 518 98 561 c 27 - 98 605 72 647 29 647 c 1 - 26 657 25 673 29 685 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02BF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02BF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni02BF -Encoding: 703 703 626 -Width: 182 -Flags: W -HStem: 436 38<113 155> 647 37<112 155> -VStem: 29 56<497 625> -LayerCount: 2 -Fore -SplineSet -153 685 m 1 - 157 673 156 657 153 647 c 1 - 110 647 85 605 85 561 c 27 - 85 518 110 474 153 474 c 1 - 156 464 156 446 153 436 c 1 - 74 436 29 502 29 561 c 0 - 29 614 72 685 153 685 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02C0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02C0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni02C0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni02C0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02C0 -Encoding: 704 704 624 -Width: 227 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 777 N 1 0 0 1 360 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0302.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0302.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0302.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0302.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0302.cap -Encoding: 65538 -1 249 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 137 -VStem: -375 254 -LayerCount: 2 -Fore -SplineSet --131 711 m 1 - -143 714 -218 750 -248 770 c 1 - -278 750 -350 715 -365 711 c 1 - -369 713 -375 720 -375 728 c 1 - -367 734 -347 752 -305 791 c 0 - -281 814 -269 829 -261 838 c 0 - -256 844 -252 848 -248 848 c 0 - -244 848 -240 843 -235 838 c 0 - -223 825 -214 814 -194 795 c 0 - -150 752 -129 734 -121 728 c 1 - -121 720 -125 713 -131 711 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0302.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0302.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0302.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0302.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0302 -Encoding: 770 770 243 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 164 -VStem: -363 230 -LayerCount: 2 -Fore -SplineSet --142 485 m 1 - -152 488 -221 535 -248 558 c 1 - -275 535 -340 491 -354 485 c 1 - -359 487 -363 498 -363 508 c 1 - -356 515 -340 531 -299 584 c 0 - -278 612 -269 627 -261 640 c 0 - -257 647 -254 649 -248 649 c 27 - -242 649 -241 646 -236 640 c 0 - -225 625 -218 611 -200 589 c 0 - -160 536 -140 515 -133 508 c 1 - -133 498 -137 487 -142 485 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0304.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0304.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0304.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0304.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0304.cap -Encoding: 65541 -1 253 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 47<-398 -101> -VStem: -399 301<711 758> -LayerCount: 2 -Fore -SplineSet --399 722 m 0 - -399 746 -388 758 -385 758 c 2 - -104 758 l 2 - -102 758 -99 756 -99 748 c 0 - -99 723 -112 711 -112 711 c 1 - -394 711 l 1 - -394 711 -399 710 -399 722 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0304.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0304.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0304.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0304.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0304 -Encoding: 772 772 246 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 47<-386 -112> -VStem: -388 277<485 532> -LayerCount: 2 -Fore -SplineSet --388 496 m 0 - -388 520 -376 532 -373 532 c 2 - -116 532 l 2 - -114 532 -110 530 -110 522 c 0 - -110 497 -124 485 -124 485 c 1 - -382 485 l 1 - -382 485 -388 484 -388 496 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0305.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0305.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0305.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0305.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0305.cap -Encoding: 65546 -1 260 -Width: 549 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 773 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0305.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0305.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0305.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0305.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0305 -Encoding: 773 773 261 -Width: 549 -GlyphClass: 4 -Flags: W -HStem: 717 70<-12 564> -LayerCount: 2 -Fore -SplineSet --16 727 m 0 - -16 729 -13 787 -2 787 c 2 - 566 787 l 2 - 568 787 572 786 572 778 c 0 - 572 760 565 728 564 724 c 0 - 562 718 557 717 557 717 c 1 - -10 717 l 1 - -10 717 -16 717 -16 727 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0306.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0306.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0306.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0306.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0306.cap -Encoding: 65542 -1 254 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 53<-310 -186> -VStem: -356 215<786 795> -LayerCount: 2 -Fore -SplineSet --164 808 m 1 - -158 806 -142 795 -142 788 c 0 - -142 785 -143 783 -144 781 c 0 - -171 735 -210 711 -249 711 c 0 - -288 711 -327 735 -354 781 c 0 - -355 783 -356 786 -356 788 c 0 - -356 795 -340 806 -334 808 c 1 - -319 789 -287 764 -249 764 c 0 - -208 764 -178 786 -164 808 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0306.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0306.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0306.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0306.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0306 -Encoding: 774 774 255 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 54<-306 -195> -VStem: -363 19<589 595> -163 21<586 594> -LayerCount: 2 -Fore -SplineSet --163 604 m 1 - -156 604 -143 589 -143 582 c 3 - -143 580 -143 577 -144 575 c 0 - -159 523 -196 485 -249 485 c 0 - -302 485 -347 523 -362 575 c 0 - -363 577 -363 580 -363 582 c 3 - -363 589 -352 604 -345 604 c 1 - -337 583 -295 539 -249 539 c 0 - -200 539 -172 583 -163 604 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0307.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0307.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0307.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0307.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0307.cap -Encoding: 65544 -1 258 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 775 N 1 0 0 1 1 226 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0307.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0307.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0307.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0307.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0307 -Encoding: 775 775 267 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 133<-297 -201> -VStem: -314 131<503 601> -LayerCount: 2 -Fore -SplineSet --314 552 m 0 - -314 588 -285 618 -249 618 c 0 - -213 618 -184 588 -184 552 c 0 - -184 516 -213 485 -249 485 c 0 - -285 485 -314 516 -314 552 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.cap -Encoding: 65549 -1 264 -Width: 396 -GlyphClass: 4 -Flags: W -HStem: 700 132<38 136 239 337> -VStem: 21 132<717 815> 222 133<717 815> -LayerCount: 2 -Fore -SplineSet -222 767 m 0 - 222 804 251 832 288 832 c 0 - 325 832 354 804 354 767 c 0 - 354 730 325 700 288 700 c 0 - 251 700 222 730 222 767 c 0 -21 767 m 0 - 21 804 50 832 87 832 c 0 - 124 832 153 804 153 767 c 0 - 153 730 124 700 87 700 c 0 - 50 700 21 730 21 767 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308 -Encoding: 776 776 265 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 136<-380 -282 -196 -98> -VStem: -399 136<505 603> -215 136<505 603> -LayerCount: 2 -Fore -SplineSet --147 622 m 0 - -110 622 -79 592 -79 555 c 0 - -79 518 -110 486 -147 486 c 0 - -184 486 -215 518 -215 555 c 0 - -215 592 -184 622 -147 622 c 0 --331 622 m 0 - -294 622 -264 592 -264 555 c 0 - -264 518 -294 486 -331 486 c 0 - -368 486 -399 518 -399 555 c 0 - -399 592 -368 622 -331 622 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.narrow.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.narrow.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0308.narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0308.narrow.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.narrow -Encoding: 65550 -1 266 -Width: 381 -GlyphClass: 4 -Flags: W -HStem: 529 136<48 147 245 343> -VStem: 29 137<548 646> 227 136<548 646> -LayerCount: 2 -Fore -SplineSet -294 665 m 0 - 331 665 362 635 362 598 c 0 - 362 561 331 529 294 529 c 0 - 257 529 227 561 227 598 c 0 - 227 635 257 665 294 665 c 0 -98 665 m 0 - 135 665 166 635 166 598 c 0 - 166 561 135 529 98 529 c 0 - 61 529 29 561 29 598 c 0 - 29 635 61 665 98 665 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030A.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030A.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030A.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030A.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A.cap -Encoding: 65539 -1 250 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 44<-291 -207> 860 43<-291 -207> -VStem: -346 45<765 850> -197 44<765 850> -LayerCount: 2 -Fore -SplineSet --301 808 m 0 - -301 779 -278 755 -249 755 c 0 - -220 755 -197 779 -197 808 c 0 - -197 837 -220 860 -249 860 c 0 - -278 860 -301 837 -301 808 c 0 --346 808 m 0 - -346 861 -302 903 -249 903 c 0 - -196 903 -153 861 -153 808 c 0 - -153 755 -196 711 -249 711 c 0 - -302 711 -346 755 -346 808 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 251 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 44<-291 -208> 635 43<-291 -208> -VStem: -347 45<540 624> -198 44<538 626> -LayerCount: 2 -Fore -SplineSet --302 582 m 0 - -302 553 -278 529 -249 529 c 0 - -220 529 -198 553 -198 582 c 0 - -198 611 -220 635 -249 635 c 0 - -278 635 -302 611 -302 582 c 0 --347 582 m 0 - -347 635 -302 678 -249 678 c 0 - -196 678 -154 635 -154 582 c 0 - -154 529 -196 485 -249 485 c 0 - -302 485 -347 529 -347 582 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030B.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030B.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030B.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030B.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B.cap -Encoding: 65548 -1 263 -Width: 414 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 377 16 2 -Refer: 248 -1 N 1 0 0 1 541 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B -Encoding: 779 779 269 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 -68 -1 2 -Refer: 191 769 N 1 0 0 1 67 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030C.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030C.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030C.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030C.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni030C.cap -Encoding: 65551 -1 271 -Width: 340 -GlyphClass: 4 -Flags: W -HStem: 686 138 -VStem: 45 254 -LayerCount: 2 -Fore -SplineSet -172 763 m 1 - 202 783 277 823 289 823 c 0 - 296 823 299 813 299 805 c 1 - 291 799 270 781 225 736 c 0 - 205 716 198 707 186 694 c 0 - 181 689 175 686 171 686 c 0 - 167 686 163 688 158 694 c 0 - 149 705 139 717 116 740 c 0 - 71 784 53 799 45 805 c 1 - 45 813 48 823 55 823 c 0 - 67 823 142 783 172 763 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni030C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni030C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni030C -Encoding: 780 780 270 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 164 -VStem: -364 230 -LayerCount: 2 -Fore -SplineSet --249 578 m 1 - -222 601 -154 650 -143 650 c 0 - -137 650 -134 638 -134 628 c 1 - -141 621 -161 600 -201 547 c 0 - -219 525 -226 511 -237 496 c 0 - -242 490 -243 486 -249 486 c 27 - -255 486 -258 489 -262 496 c 0 - -270 509 -279 524 -300 552 c 0 - -341 605 -357 621 -364 628 c 1 - -364 638 -361 650 -355 650 c 0 - -344 650 -276 601 -249 578 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0312.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0312.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0312.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0312.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0312 -Encoding: 786 786 272 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 644 14<-174 -166> -VStem: -302 77<526 589> -LayerCount: 2 -Fore -SplineSet --250 486 m 0 - -265 486 -279 490 -289 495 c 1 - -296 504 -302 519 -302 533 c 0 - -302 588 -242 636 -180 657 c 1 - -170 655 -161 648 -161 644 c 1 - -178 637 -225 610 -225 582 c 0 - -225 562 -182 565 -182 527 c 0 - -182 518 -195 486 -250 486 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0315.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0315.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0315.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0315.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0315 -Encoding: 789 789 274 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 484 235 -VStem: -269 77<576 669> -LayerCount: 2 -Fore -SplineSet --239 720 m 0 - -229 720 -218 716 -210 713 c 1 - -202 702 -191 687 -191 651 c 0 - -191 596 -232 533 -285 484 c 1 - -293 484 -310 491 -310 497 c 1 - -287 522 -269 553 -269 586 c 0 - -269 638 -306 636 -306 673 c 0 - -306 693 -280 720 -239 720 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0323.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0323.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0323.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0323.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0323.cap -Encoding: 65545 -1 259 -Width: 308 -GlyphClass: 4 -Flags: W -HStem: -176 145<100 203> -VStem: 79 145<-155 -52> -LayerCount: 2 -Fore -SplineSet -79 -104 m 0 - 79 -64 111 -31 151 -31 c 0 - 191 -31 224 -64 224 -104 c 0 - 224 -144 191 -176 151 -176 c 0 - 111 -176 79 -144 79 -104 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0326.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0326.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0326.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0326.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0326 -Encoding: 806 806 273 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -213 14<-332 -324> -VStem: -273 77<-145 -82> -LayerCount: 2 -Fore -SplineSet --248 -42 m 0 - -233 -42 -219 -46 -209 -51 c 1 - -202 -60 -196 -75 -196 -89 c 0 - -196 -144 -256 -192 -318 -213 c 1 - -328 -211 -337 -203 -337 -199 c 1 - -320 -192 -273 -166 -273 -138 c 0 - -273 -118 -316 -121 -316 -83 c 0 - -316 -74 -303 -42 -248 -42 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0327.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0327.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0327.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0327.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327.cap -Encoding: 65543 -1 256 -Width: 1019 -GlyphClass: 4 -Flags: W -HStem: -163 29<170 257> -68 66<215 244> -VStem: 264 57<-130 -69> -LayerCount: 2 -Fore -SplineSet -244 -26 m 1 - 253 -25 258 -24 268 -24 c 27 - 296 -24 320 -48 320 -75 c 0 - 320 -124 282 -163 219 -163 c 0 - 196 -163 176 -154 168 -146 c 1 - 166 -143 164 -130 164 -126 c 0 - 164 -120 165 -118 167 -118 c 1 - 171 -120 195 -134 217 -134 c 0 - 252 -134 264 -118 264 -103 c 0 - 264 -88 258 -68 236 -68 c 0 - 230 -68 220 -71 209 -75 c 1 - 206 -75 195 -66 195 -60 c 1 - 205 -44 219 -18 225 -2 c 1 - 258 -2 l 1 - 258 -2 249 -16 244 -26 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0327.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0327.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0327.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0327.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327 -Encoding: 807 807 257 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -152 31<-310 -225> -71 69<-271 -243> -65 39<-247 -222> -VStem: -221 50<-119 -66> -LayerCount: 2 -Fore -SplineSet --242 -27 m 1xd0 - -242 -27 -231 -26 -224 -26 c 27 - -196 -26 -171 -51 -171 -76 c 0 - -171 -122 -206 -152 -266 -152 c 0 - -287 -152 -305 -144 -312 -137 c 1 - -313 -134 -314 -124 -314 -120 c 0 - -314 -113 -311 -106 -308 -106 c 0 - -303 -106 -280 -121 -259 -121 c 0 - -232 -121 -221 -107 -221 -93 c 0 - -221 -79 -227 -65 -244 -65 c 0xb0 - -250 -65 -263 -67 -273 -71 c 0 - -275 -71 -289 -60 -287 -56 c 0 - -278 -41 -268 -16 -260 -2 c 1 - -229 -2 l 1 - -242 -27 l 1xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0328.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0328.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0328.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0328.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0328 -Encoding: 808 808 896 -Width: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet --178 2 m 1 - -221 -23 -277 -56 -277 -99 c 0 - -277 -120 -265 -145 -229 -145 c 0 - -202 -145 -166 -114 -156 -106 c 1 - -153 -106 -150 -109 -150 -117 c 0 - -150 -122 -154 -138 -157 -142 c 0 - -172 -161 -222 -213 -277 -213 c 0 - -309 -213 -350 -188 -350 -137 c 0 - -350 -82 -279 -14 -220 4 c 1 - -178 2 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni032E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni032E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni032E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni032E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni032E -Encoding: 814 814 895 -Width: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 255 774 N 1 0 0 1 0 -664 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0331.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0331.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni0331.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni0331.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni0331 -Encoding: 817 817 894 -Width: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 246 772 N 1 0 0 1 0 -615 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E00.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E00.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E00.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E00.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E00 -Encoding: 7680 7680 650 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 -1 0 3 -Refer: 251 778 N 1 0 0 1 553 -708 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E01 -Encoding: 7681 7681 651 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 251 778 N 1 0 0 1 462 -708 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E02.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E02.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E02.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E02.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E02 -Encoding: 7682 7682 652 -Width: 604 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 66 N 1 0 0 1 -1 0 3 -Refer: 258 -1 N 1 0 0 1 518 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E03.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E03.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E03.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E03.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E03 -Encoding: 7683 7683 653 -Width: 529 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 98 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 368 251 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E04.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E04.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E04.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E04.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E04 -Encoding: 7684 7684 654 -Width: 604 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 66 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 137 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E05.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E05.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E05.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E05.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E05 -Encoding: 7685 7685 655 -Width: 529 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 98 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 481 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E06.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E06.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E06.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E06.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E06 -Encoding: 7686 7686 656 -Width: 604 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 66 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 536 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E07.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E07.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E07.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E07.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E07 -Encoding: 7687 7687 657 -Width: 529 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 98 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 477 -595 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E08.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E08.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E08.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E08.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E08 -Encoding: 7688 7688 658 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 133 199 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 706 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E09.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E09.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E09.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E09.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E09 -Encoding: 7689 7689 659 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 165 231 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 501 -3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0A -Encoding: 7690 7690 660 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 258 -1 N 1 0 0 1 576 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0B -Encoding: 7691 7691 661 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 640 251 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0C -Encoding: 7692 7692 662 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 170 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0D -Encoding: 7693 7693 663 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 524 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0E -Encoding: 7694 7694 664 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 570 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E0F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E0F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0F -Encoding: 7695 7695 665 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 540 -593 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E10.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E10.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E10.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E10.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E10 -Encoding: 7696 7696 666 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 256 -1 N 1 0 0 1 86 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E11.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E11.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E11.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E11.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E11 -Encoding: 7697 7697 667 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 257 807 N 1 0 0 1 475 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E12.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E12.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E12.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E12.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E12 -Encoding: 7698 7698 668 -Width: 743 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 68 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 574 -669 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E13.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E13.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E13.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E13.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E13 -Encoding: 7699 7699 669 -Width: 534 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 100 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 521 -672 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E14.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E14.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E14.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E14.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E14 -Encoding: 7700 7700 670 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 290 274 N 1 0 0 1 1 0 3 -Refer: 247 -1 N 1 0 0 1 495 93 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E15.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E15.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E15.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E15.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E15 -Encoding: 7701 7701 671 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 291 275 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 459 97 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E16.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E16.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E16.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E16.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E16 -Encoding: 7702 7702 672 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 290 274 N 1 0 0 1 1 0 3 -Refer: 248 -1 N 1 0 0 1 542 93 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E17.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E17.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E17.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E17.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E17 -Encoding: 7703 7703 673 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 291 275 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 464 97 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E18.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E18.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E18.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E18.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E18 -Encoding: 7704 7704 674 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 563 -670 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E19.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E19.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E19.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E19.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E19 -Encoding: 7705 7705 675 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 472 -674 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1A -Encoding: 7706 7706 676 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 529 -642 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1B -Encoding: 7707 7707 677 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 457 -646 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1E -Encoding: 7710 7710 678 -Width: 536 -Flags: HW -LayerCount: 2 -Fore -Refer: 38 70 N 1 0 0 1 -1 0 3 -Refer: 258 -1 N 1 0 0 1 538 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E1F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E1F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1F -Encoding: 7711 7711 679 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 102 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 489 252 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E20.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E20.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E20.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E20.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E20 -Encoding: 7712 7712 680 -Width: 705 -Flags: HW -LayerCount: 2 -Fore -Refer: 39 71 N 1 0 0 1 0 0 3 -Refer: 253 -1 N 1 0 0 1 623 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E21.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E21.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E21.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E21.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E21 -Encoding: 7713 7713 681 -Width: 466 -Flags: HW -LayerCount: 2 -Fore -Refer: 71 103 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 469 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E22.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E22.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E22.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E22.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E22 -Encoding: 7714 7714 682 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 606 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E23.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E23.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E23.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E23.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E23 -Encoding: 7715 7715 683 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 388 251 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E24.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E24.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E24.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E24.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E24 -Encoding: 7716 7716 684 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 214 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E25.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E25.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E25.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E25.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E25 -Encoding: 7717 7717 685 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 510 -30 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E26.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E26.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E26.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E26.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E26 -Encoding: 7718 7718 686 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 190 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E27.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E27.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E27.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E27.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E27 -Encoding: 7719 7719 687 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 -54 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E28.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E28.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E28.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E28.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E28 -Encoding: 7720 7720 688 -Width: 708 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 2 -Refer: 256 -1 N 1 0 0 1 -61 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E29.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E29.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E29.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E29.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E29 -Encoding: 7721 7721 689 -Width: 503 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 0 0 2 -Refer: 257 807 N 1 0 0 1 385 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2A -Encoding: 7722 7722 690 -Width: 723 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 72 N 1 0 0 1 0 0 3 -Refer: 255 774 N 1 0 0 1 609 -665 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2B -Encoding: 7723 7723 691 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 -1 0 3 -Refer: 255 774 N 1 0 0 1 510 -665 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2C -Encoding: 7724 7724 692 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 41 73 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 411 -639 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2D -Encoding: 7725 7725 693 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 73 105 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 393 -639 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2E -Encoding: 7726 7726 694 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 141 207 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 438 155 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E2F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E2F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2F -Encoding: 7727 7727 695 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 173 239 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 419 160.008 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E30.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E30.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E30.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E30.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E30 -Encoding: 7728 7728 696 -Width: 702 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 75 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 666 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E31.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E31.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E31.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E31.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E31 -Encoding: 7729 7729 697 -Width: 576 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 107 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 426 248 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E32.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E32.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E32.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E32.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E32 -Encoding: 7730 7730 698 -Width: 702 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 75 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 222 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E33.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E33.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E33.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E33.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E33 -Encoding: 7731 7731 699 -Width: 576 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 107 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 507 -646 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E34.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E34.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E34.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E34.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E34 -Encoding: 7732 7732 700 -Width: 702 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 75 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 600 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E35.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E35.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E35.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E35.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E35 -Encoding: 7733 7733 701 -Width: 576 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 107 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 527 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E36.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E36.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E36.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E36.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E36 -Encoding: 7734 7734 702 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 44 76 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 161 -28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E37.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E37.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E37.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E37.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E37 -Encoding: 7735 7735 703 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 76 108 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 373 -30 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E38.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E38.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E38.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E38.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E38 -Encoding: 7736 7736 704 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 702 7734 N 1 0 0 1 0 0 3 -Refer: 253 -1 N 1 0 0 1 419 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E39.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E39.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E39.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E39.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E39 -Encoding: 7737 7737 705 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 703 7735 N 1 0 0 1 13 0 3 -Refer: 246 772 N 1 0 0 1 384 263 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3A -Encoding: 7738 7738 706 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 44 76 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 555 -591 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3B -Encoding: 7739 7739 707 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 76 108 N 1 0 0 1 1 0 3 -Refer: 246 772 N 1 0 0 1 382 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3C -Encoding: 7740 7740 708 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 44 76 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 548 -670 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3D -Encoding: 7741 7741 709 -Width: 298 -Flags: HW -LayerCount: 2 -Fore -Refer: 76 108 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 378 -669 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3E -Encoding: 7742 7742 710 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 77 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 763 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E3F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E3F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3F -Encoding: 7743 7743 711 -Width: 862 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 109 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 680 -2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E40.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E40.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E40.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E40.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E40 -Encoding: 7744 7744 712 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 77 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 697 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E41.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E41.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E41.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E41.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E41 -Encoding: 7745 7745 713 -Width: 862 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 109 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 640 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E42.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E42.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E42.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E42.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E42 -Encoding: 7746 7746 714 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 77 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 303 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E43.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E43.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E43.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E43.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E43 -Encoding: 7747 7747 715 -Width: 862 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 109 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 647 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E44.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E44.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E44.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E44.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E44 -Encoding: 7748 7748 716 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 78 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 618 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E45.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E45.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E45.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E45.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E45 -Encoding: 7749 7749 717 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 536 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E46.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E46.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E46.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E46.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E46 -Encoding: 7750 7750 718 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 78 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 245 -29 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E47.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E47.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E47.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E47.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E47 -Encoding: 7751 7751 719 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 523 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E48.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E48.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E48.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E48.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E48 -Encoding: 7752 7752 720 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 78 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 654 -592 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E49.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E49.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E49.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E49.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E49 -Encoding: 7753 7753 721 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 542 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4A -Encoding: 7754 7754 722 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 78 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 640 -671 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4B -Encoding: 7755 7755 723 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 110 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 530 -669 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4C -Encoding: 7756 7756 724 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 147 213 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 625 143 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4D -Encoding: 7757 7757 725 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 179 245 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 490 163 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4E -Encoding: 7758 7758 726 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 147 213 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 209 129 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E4F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E4F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4F -Encoding: 7759 7759 727 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 179 245 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 504 164 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E50.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E50.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E50.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E50.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E50 -Encoding: 7760 7760 728 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 332 N 1 0 0 1 0 0 3 -Refer: 247 -1 N 1 0 0 1 618 93 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E51.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E51.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E51.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E51.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E51 -Encoding: 7761 7761 729 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 333 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 501 97 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E52.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E52.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E52.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E52.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E52 -Encoding: 7762 7762 730 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 332 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 614 93 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E53.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E53.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E53.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E53.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E53 -Encoding: 7763 7763 731 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 333 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 484 97 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E54.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E54.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E54.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E54.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E54 -Encoding: 7764 7764 732 -Width: 571 -Flags: HW -LayerCount: 2 -Fore -Refer: 48 80 N 1 0 0 1 -1 0 3 -Refer: 248 -1 N 1 0 0 1 550 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E55.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E55.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E55.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E55.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E55 -Encoding: 7765 7765 733 -Width: 540 -Flags: HW -LayerCount: 2 -Fore -Refer: 80 112 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 522 -2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E56.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E56.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E56.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E56.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E56 -Encoding: 7766 7766 734 -Width: 571 -Flags: HW -LayerCount: 2 -Fore -Refer: 48 80 N 1 0 0 1 -1 0 3 -Refer: 258 -1 N 1 0 0 1 522 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E57.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E57.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E57.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E57.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E57 -Encoding: 7767 7767 735 -Width: 540 -Flags: HW -LayerCount: 2 -Fore -Refer: 80 112 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 496 1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E58.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E58.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E58.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E58.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E58 -Encoding: 7768 7768 736 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 82 N 1 0 0 1 -1 0 3 -Refer: 258 -1 N 1 0 0 1 527 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E59.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E59.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E59.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E59.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E59 -Encoding: 7769 7769 737 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 114 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 461 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5A -Encoding: 7770 7770 738 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 82 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 202 -29 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5B -Encoding: 7771 7771 739 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 114 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 390 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5C -Encoding: 7772 7772 740 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 738 7770 N 1 0 0 1 0 0 3 -Refer: 253 -1 N 1 0 0 1 505 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5D -Encoding: 7773 7773 741 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 739 7771 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 467 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5E -Encoding: 7774 7774 742 -Width: 676 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 82 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 585 -592 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E5F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E5F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5F -Encoding: 7775 7775 743 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 114 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 410 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E60.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E60.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E60.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E60.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E60 -Encoding: 7776 7776 744 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 51 83 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 511 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E61.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E61.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E61.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E61.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E61 -Encoding: 7777 7777 745 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 115 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 443 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E62.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E62.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E62.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E62.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E62 -Encoding: 7778 7778 746 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 51 83 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 101 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E63.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E63.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E63.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E63.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E63 -Encoding: 7779 7779 747 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 115 N 1 0 0 1 1 0 3 -Refer: 275 803 N 1 0 0 1 423 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E64.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E64.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E64.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E64.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E64 -Encoding: 7780 7780 748 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 345 346 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 486 119 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E65.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E65.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E65.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E65.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E65 -Encoding: 7781 7781 749 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 347 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 359 89.4844 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E66.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E66.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E66.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E66.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E66 -Encoding: 7782 7782 750 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 351 352 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 514 131 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E67.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E67.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E67.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E67.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E67 -Encoding: 7783 7783 751 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 352 353 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 448 168 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E68.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E68.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E68.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E68.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E68 -Encoding: 7784 7784 752 -Width: 508 -Flags: HW -LayerCount: 2 -Fore -Refer: 746 7778 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 511 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E69.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E69.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E69.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E69.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E69 -Encoding: 7785 7785 753 -Width: 394 -Flags: HW -LayerCount: 2 -Fore -Refer: 747 7779 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 444 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6A -Encoding: 7786 7786 754 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 84 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 579 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6B -Encoding: 7787 7787 755 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 400 115.008 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6C -Encoding: 7788 7788 756 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 84 N 1 0 0 1 1 0 3 -Refer: 259 -1 N 1 0 0 1 164 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6D -Encoding: 7789 7789 757 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 1 0 3 -Refer: 275 803 N 1 0 0 1 413 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6E -Encoding: 7790 7790 758 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 84 N 1 0 0 1 1 0 3 -Refer: 246 772 N 1 0 0 1 562 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E6F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E6F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6F -Encoding: 7791 7791 759 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 1 0 3 -Refer: 246 772 N 1 0 0 1 433 -594 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E70.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E70.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E70.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E70.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E70 -Encoding: 7792 7792 760 -Width: 619 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 84 N 1 0 0 1 1 0 3 -Refer: 243 770 N 1 0 0 1 563 -669 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E71.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E71.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E71.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E71.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E71 -Encoding: 7793 7793 761 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 1 0 3 -Refer: 243 770 N 1 0 0 1 419 -673 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E72.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E72.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E72.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E72.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E72 -Encoding: 7794 7794 762 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 53 85 N 1 0 0 1 1 0 3 -Refer: 265 776 N 1 0 0 1 593 -639 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E73.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E73.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E73.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E73.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E73 -Encoding: 7795 7795 763 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 -1 0 3 -Refer: 265 776 N 1 0 0 1 503 -646 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E74.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E74.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E74.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E74.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E74 -Encoding: 7796 7796 764 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 53 85 N 1 0 0 1 1 0 3 -Refer: 244 771 N 1 0 0 1 589 -638 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E75.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E75.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E75.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E75.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E75 -Encoding: 7797 7797 765 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 -1 0 3 -Refer: 244 771 N 1 0 0 1 499 -646 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E76.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E76.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E76.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E76.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E76 -Encoding: 7798 7798 766 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 53 85 N 1 0 0 1 1 0 3 -Refer: 243 770 N 1 0 0 1 616 -666 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E77.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E77.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E77.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E77.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E77 -Encoding: 7799 7799 767 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 508 -674 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E78.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E78.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E78.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E78.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E78 -Encoding: 7800 7800 768 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 357 360 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 674 140 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E79.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E79.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E79.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E79.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E79 -Encoding: 7801 7801 769 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 358 361 N 1 0 0 1 -1 0 3 -Refer: 191 769 N 1 0 0 1 541 182 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7A -Encoding: 7802 7802 770 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 359 362 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 196 126 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7B -Encoding: 7803 7803 771 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 360 363 N 1 0 0 1 -1 0 3 -Refer: 265 776 N 1 0 0 1 487 122 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7C -Encoding: 7804 7804 772 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 86 N 1 0 0 1 0 0 3 -Refer: 252 -1 N 1 0 0 1 573 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7D -Encoding: 7805 7805 773 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 118 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 482 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7E -Encoding: 7806 7806 774 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 86 N 1 0 0 1 1 0 3 -Refer: 259 -1 N 1 0 0 1 163 -33 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E7F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E7F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7F -Encoding: 7807 7807 775 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 118 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 481 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E86.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E86.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E86.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E86.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E86 -Encoding: 7814 7814 782 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 710 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E87.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E87.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E87.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E87.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E87 -Encoding: 7815 7815 783 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 614 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E88.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E88.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E88.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E88.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E88 -Encoding: 7816 7816 784 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 1 0 3 -Refer: 259 -1 N 1 0 0 1 299 -32 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E89.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E89.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E89.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E89.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E89 -Encoding: 7817 7817 785 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 604 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8A -Encoding: 7818 7818 786 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 88 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 595 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8B -Encoding: 7819 7819 787 -Width: 544 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 120 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 495 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8C -Encoding: 7820 7820 788 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 88 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 179 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8D -Encoding: 7821 7821 789 -Width: 544 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 120 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 483 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8E -Encoding: 7822 7822 790 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 0 0 3 -Refer: 258 -1 N 1 0 0 1 557 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E8F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E8F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8F -Encoding: 7823 7823 791 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 267 775 N 1 0 0 1 489 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E90.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E90.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E90.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E90.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E90 -Encoding: 7824 7824 792 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 58 90 N 1 0 0 1 0 0 3 -Refer: 249 -1 N 1 0 0 1 566 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E91.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E91.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E91.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E91.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E91 -Encoding: 7825 7825 793 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 90 122 N 1 0 0 1 -1 0 3 -Refer: 243 770 N 1 0 0 1 478 25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E92.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E92.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E92.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E92.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E92 -Encoding: 7826 7826 794 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 58 90 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 180 -24 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E93.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E93.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E93.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E93.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E93 -Encoding: 7827 7827 795 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 90 122 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 469 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E94.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E94.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E94.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E94.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E94 -Encoding: 7828 7828 796 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 58 90 N 1 0 0 1 0 0 3 -Refer: 246 772 N 1 0 0 1 572 -587 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E95.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E95.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E95.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E95.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E95 -Encoding: 7829 7829 797 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 90 122 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 464 -587 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E96.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E96.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E96.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E96.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E96 -Encoding: 7830 7830 798 -Width: 569 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 104 N 1 0 0 1 -1 0 3 -Refer: 246 772 N 1 0 0 1 511 -590 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E97.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E97.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E97.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E97.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E97 -Encoding: 7831 7831 799 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 116 N 1 0 0 1 -27 0 3 -Refer: 265 776 N 1 0 0 1 364 96 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E98.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E98.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E98.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E98.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E98 -Encoding: 7832 7832 800 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 251 778 N 1 0 0 1 612 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E99.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E99.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1E99.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1E99.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E99 -Encoding: 7833 7833 801 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 251 778 N 1 0 0 1 494 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA0 -Encoding: 7840 7840 802 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 152 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA1 -Encoding: 7841 7841 803 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 467 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA2 -Encoding: 7842 7842 804 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 590 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA3 -Encoding: 7843 7843 805 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 458 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA4 -Encoding: 7844 7844 806 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 563 -22 2 -Refer: 248 -1 N 0.74 0 0 0.79 639 208 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA5 -Encoding: 7845 7845 807 -Width: 441 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 467 -5 2 -Refer: 191 769 N 0.9 0 0 0.73 571 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA6 -Encoding: 7846 7846 808 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 563 -22 2 -Refer: 247 -1 N 0.74 0 0 0.79 363 209 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA7 -Encoding: 7847 7847 809 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 467 -5 2 -Refer: 190 768 N 0.9 0 0 0.73 303 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA8 -Encoding: 7848 7848 810 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 563 -22 2 -Refer: 262 -1 N 1 0 0 1 707 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EA9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EA9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA9 -Encoding: 7849 7849 811 -Width: 418 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 467 -5 2 -Refer: 268 777 N 1 0 0 1 588 78 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAA -Encoding: 7850 7850 812 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 0.91 563 42 2 -Refer: 252 -1 N 0.95 0 0 0.8 541 254 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAB -Encoding: 7851 7851 813 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 0.83 467 78 2 -Refer: 244 771 N 1 0 0 0.9 454 201 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAC -Encoding: 7852 7852 814 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 802 7840 N 1 0 0 1 0 0 3 -Refer: 249 -1 N 1 0 0 1 568 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAD -Encoding: 7853 7853 815 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 803 7841 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 470 -5 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAE -Encoding: 7854 7854 816 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 254 -1 N 1 0 0 1 564 -17 2 -Refer: 248 -1 N 0.74 0 0 0.79 530 214 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EAF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EAF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAF -Encoding: 7855 7855 817 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 255 774 N 1 0 0 1 461 0 2 -Refer: 191 769 N 0.8 0 0 0.8 412 178 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB0 -Encoding: 7856 7856 818 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 254 -1 N 1 0 0 1 562 -17 2 -Refer: 247 -1 N 0.74 0 0 0.79 472 214 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB1 -Encoding: 7857 7857 819 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 190 768 N 0.9 0 0 0.73 401 213 2 -Refer: 65 97 N 1 0 0 1 0 0 2 -Refer: 255 774 N 1 0 0 1 461 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB2 -Encoding: 7858 7858 820 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 254 -1 N 1 0 0 1 560 -17 2 -Refer: 262 -1 N 1 0 0 1 566 55 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB3 -Encoding: 7859 7859 821 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 279 259 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 469 106 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB4 -Encoding: 7860 7860 822 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N 1 0 0 1 0 0 2 -Refer: 254 -1 N 1 0 0 1 560 -17 2 -Refer: 252 -1 N 0.95 0 0 0.8 541 254 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB5 -Encoding: 7861 7861 823 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 279 259 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 451 154 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB6 -Encoding: 7862 7862 824 -Width: 659 -Flags: HW -LayerCount: 2 -Fore -Refer: 802 7840 N 1 0 0 1 0 0 3 -Refer: 254 -1 N 1 0 0 1 566 -3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB7 -Encoding: 7863 7863 825 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 803 7841 N 1 0 0 1 0 0 3 -Refer: 255 774 N 1 0 0 1 461 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB8 -Encoding: 7864 7864 826 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 147 -28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EB9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EB9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB9 -Encoding: 7865 7865 827 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 469 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBA -Encoding: 7866 7866 828 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 527 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBB -Encoding: 7867 7867 829 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 478 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBC -Encoding: 7868 7868 830 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 -1 0 3 -Refer: 252 -1 N 1 0 0 1 519 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBD -Encoding: 7869 7869 831 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 469 2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EBE -Encoding: 7870 7870 832 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 -1 0 2 -Refer: 249 -1 N 1 0 0 1 526 -22 2 -Refer: 248 -1 N 0.74 0 0 0.79 602 208 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EBF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EBF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EBF -Encoding: 7871 7871 833 -Width: 457 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 472 -5 2 -Refer: 191 769 N 0.9 0 0 0.73 576 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC0 -Encoding: 7872 7872 834 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 -1 0 2 -Refer: 249 -1 N 1 0 0 1 527 -22 2 -Refer: 247 -1 N 0.74 0 0 0.79 327 209 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC1 -Encoding: 7873 7873 835 -Width: 434 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 472 -5 2 -Refer: 190 768 N 0.9 0 0 0.73 308 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC2 -Encoding: 7874 7874 836 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 -1 0 2 -Refer: 249 -1 N 1 0 0 1 533 -22 2 -Refer: 262 -1 N 1 0 0 1 694 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC3 -Encoding: 7875 7875 837 -Width: 413 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 472 -5 2 -Refer: 268 777 N 1 0 0 1 603 68 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC4 -Encoding: 7876 7876 838 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 37 69 N 1 0 0 1 -1 0 2 -Refer: 249 -1 N 1 0 0 0.91 535 42 2 -Refer: 252 -1 N 0.95 0 0 0.8 512 254 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC5 -Encoding: 7877 7877 839 -Width: 419 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 101 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 0.83 474 78 2 -Refer: 244 771 N 1 0 0 0.9 461 201 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC6 -Encoding: 7878 7878 840 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 826 7864 N 1 0 0 1 0 0 3 -Refer: 249 -1 N 1 0 0 1 537 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC7 -Encoding: 7879 7879 841 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 827 7865 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 472 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC8 -Encoding: 7880 7880 842 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 41 73 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 409 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EC9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EC9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC9 -Encoding: 7881 7881 843 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 242 305 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 379 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECA -Encoding: 7882 7882 844 -Width: 351 -Flags: HW -LayerCount: 2 -Fore -Refer: 41 73 N 1 0 0 1 -1 0 3 -Refer: 259 -1 N 1 0 0 1 15 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECB -Encoding: 7883 7883 845 -Width: 307 -Flags: HW -LayerCount: 2 -Fore -Refer: 73 105 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 386 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECC -Encoding: 7884 7884 846 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 221 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECD -Encoding: 7885 7885 847 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 498 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECE -Encoding: 7886 7886 848 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 612 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ECF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ECF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECF -Encoding: 7887 7887 849 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 494 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED0 -Encoding: 7888 7888 850 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 613 -22 2 -Refer: 248 -1 N 0.74 0 0 0.79 688 208 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED1 -Encoding: 7889 7889 851 -Width: 505 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 505 -5 2 -Refer: 191 769 N 0.9 0 0 0.73 609 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED2 -Encoding: 7890 7890 852 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 613 -22 2 -Refer: 247 -1 N 0.74 0 0 0.79 413 209 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED3 -Encoding: 7891 7891 853 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 505 -5 2 -Refer: 190 768 N 0.9 0 0 0.73 341 207 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED4 -Encoding: 7892 7892 854 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 1 613 -22 2 -Refer: 262 -1 N 1 0 0 1 774 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED5 -Encoding: 7893 7893 855 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 1 505 -5 2 -Refer: 268 777 N 1 0 0 1 636 68 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED6 -Encoding: 7894 7894 856 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 79 N 1 0 0 1 0 0 2 -Refer: 249 -1 N 1 0 0 0.91 613 42 2 -Refer: 252 -1 N 0.95 0 0 0.8 590 254 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED7 -Encoding: 7895 7895 857 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 111 N 1 0 0 1 0 0 2 -Refer: 243 770 N 1 0 0 0.83 506 78 2 -Refer: 244 771 N 1 0 0 0.9 493 200 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ED8 -Encoding: 7896 7896 858 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 846 7884 N 1 0 0 1 0 0 3 -Refer: 249 -1 N 1 0 0 1 616 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1ED9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1ED9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ED9 -Encoding: 7897 7897 859 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 847 7885 N 1 0 0 1 0 0 3 -Refer: 243 770 N 1 0 0 1 505 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDA -Encoding: 7898 7898 860 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 617 416 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 658 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDB -Encoding: 7899 7899 861 -Width: 548 -Flags: HW -LayerCount: 2 -Fore -Refer: 619 417 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 520 -4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDC -Encoding: 7900 7900 862 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 617 416 N 1 0 0 1 0 0 3 -Refer: 247 -1 N 1 0 0 1 599 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDD -Encoding: 7901 7901 863 -Width: 548 -Flags: HW -LayerCount: 2 -Fore -Refer: 619 417 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 489 -6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDE -Encoding: 7902 7902 864 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 617 416 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 621 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EDF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EDF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDF -Encoding: 7903 7903 865 -Width: 548 -Flags: HW -LayerCount: 2 -Fore -Refer: 619 417 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 497 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE0 -Encoding: 7904 7904 866 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 617 416 N 1 0 0 1 0 0 3 -Refer: 252 -1 N 1 0 0 1 612 -8 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE1 -Encoding: 7905 7905 867 -Width: 548 -Flags: HW -LayerCount: 2 -Fore -Refer: 619 417 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 494 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE2 -Encoding: 7906 7906 868 -Width: 742 -Flags: HW -LayerCount: 2 -Fore -Refer: 617 416 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 220 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE3 -Encoding: 7907 7907 869 -Width: 548 -Flags: HW -LayerCount: 2 -Fore -Refer: 619 417 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 498 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE4 -Encoding: 7908 7908 870 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 53 85 N 1 0 0 1 1 0 3 -Refer: 259 -1 N 1 0 0 1 205 -28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE5 -Encoding: 7909 7909 871 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 -1 0 3 -Refer: 275 803 N 1 0 0 1 505 -36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE6 -Encoding: 7910 7910 872 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 53 85 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 624 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE7 -Encoding: 7911 7911 873 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 85 117 N 1 0 0 1 -1 0 3 -Refer: 268 777 N 1 0 0 1 487 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE8 -Encoding: 7912 7912 874 -Width: 739 -Flags: HW -LayerCount: 2 -Fore -Refer: 618 431 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 669 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EE9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EE9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE9 -Encoding: 7913 7913 875 -Width: 598 -Flags: HW -LayerCount: 2 -Fore -Refer: 620 432 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 523 -4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEA -Encoding: 7914 7914 876 -Width: 739 -Flags: HW -LayerCount: 2 -Fore -Refer: 618 431 N 1 0 0 1 0 0 3 -Refer: 247 -1 N 1 0 0 1 576 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEB -Encoding: 7915 7915 877 -Width: 598 -Flags: HW -LayerCount: 2 -Fore -Refer: 620 432 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 464 -4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEC -Encoding: 7916 7916 878 -Width: 739 -Flags: HW -LayerCount: 2 -Fore -Refer: 618 431 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 624 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EED.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EED.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EED.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EED.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EED -Encoding: 7917 7917 879 -Width: 598 -Flags: HW -LayerCount: 2 -Fore -Refer: 620 432 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 484 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEE -Encoding: 7918 7918 880 -Width: 739 -Flags: HW -LayerCount: 2 -Fore -Refer: 618 431 N 1 0 0 1 0 0 3 -Refer: 252 -1 N 1 0 0 1 607 -7 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EEF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EEF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEF -Encoding: 7919 7919 881 -Width: 598 -Flags: HW -LayerCount: 2 -Fore -Refer: 620 432 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 495 -1 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF0 -Encoding: 7920 7920 882 -Width: 739 -Flags: HW -LayerCount: 2 -Fore -Refer: 618 431 N 1 0 0 1 0 0 3 -Refer: 259 -1 N 1 0 0 1 205 -28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF1 -Encoding: 7921 7921 883 -Width: 598 -Flags: HW -LayerCount: 2 -Fore -Refer: 275 803 N 1 0 0 1 505 -36 2 -Refer: 620 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF4 -Encoding: 7924 7924 886 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 1 0 3 -Refer: 259 -1 N 1 0 0 1 154 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF5 -Encoding: 7925 7925 887 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 275 803 N 1 0 0 1 590 -25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF6 -Encoding: 7926 7926 888 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 0 0 3 -Refer: 262 -1 N 1 0 0 1 561 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF7 -Encoding: 7927 7927 889 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 268 777 N 1 0 0 1 496 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF8 -Encoding: 7928 7928 890 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 0 0 3 -Refer: 252 -1 N 1 0 0 1 544 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni1EF9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni1EF9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF9 -Encoding: 7929 7929 891 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 244 771 N 1 0 0 1 480 2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2002.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2002.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2002.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2002.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2002 -Encoding: 8194 8194 192 -Width: 534 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2003.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2003.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2003.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2003.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2003 -Encoding: 8195 8195 193 -Width: 899 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2009.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2009.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2009.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2009.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2009 -Encoding: 8201 8201 194 -Width: 103 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni200A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni200A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni200A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni200A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200A -Encoding: 8202 8202 195 -Width: 51 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni200B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni200B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni200B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni200B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200B -Encoding: 8203 8203 196 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2010.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2010.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2010.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2010.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2010 -Encoding: 8208 8208 197 -Width: 365 -Flags: W -HStem: 188 72<59 209> 199 73<163 306> -VStem: 56 255 -LayerCount: 2 -Fore -SplineSet -56 199 m 0x60 - 56 246 64 261 67 261 c 2 - 68 261 l 1xa0 - 304 272 l 1 - 305 272 l 2 - 307 272 311 272 311 264 c 0 - 311 216 298 199 298 199 c 1x60 - 62 188 l 1xa0 - 62 188 56 187 56 199 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2011.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2011.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2011.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2011.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2011 -Encoding: 8209 8209 198 -Width: 365 -Flags: W -HStem: 188 72<59 209> 199 73<163 306> -VStem: 56 255 -LayerCount: 2 -Fore -SplineSet -56 199 m 0x60 - 56 246 64 261 67 261 c 2 - 68 261 l 1xa0 - 304 272 l 1 - 305 272 l 2 - 307 272 311 272 311 264 c 0 - 311 216 298 199 298 199 c 1x60 - 62 188 l 1xa0 - 62 188 56 187 56 199 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2015.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2015.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2015.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2015.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni2015 -Encoding: 8213 8213 202 -Width: 1111 -Flags: W -HStem: 189 72<61 1048> -LayerCount: 2 -Fore -SplineSet -57 198 m 0 - 57 200 59 262 70 262 c 2 - 1051 262 l 2 - 1053 262 1057 261 1057 253 c 0 - 1057 235 1049 200 1048 196 c 0 - 1046 190 1041 189 1041 189 c 1 - 62 189 l 1 - 62 189 57 188 57 198 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni201F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni201F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni201F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni201F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni201F -Encoding: 8223 8223 629 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 207 8221 N -1 0 0 1 374 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni202F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni202F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni202F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni202F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -StartChar: uni202F -Encoding: 8239 8239 644 -Width: 166 -VWidth: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2038.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2038.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2038.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2038.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2038 -Encoding: 8248 8248 217 -Width: 391 -Flags: W -HStem: -64 187 -VStem: 48 307 -LayerCount: 2 -Fore -SplineSet -201 122 m 0 - 206 122 212 120 215 117 c 1 - 284 17 351 -39 354 -43 c 1 - 353 -48 347 -61 338 -64 c 1 - 332 -61 233 10 201 38 c 1 - 169 10 70 -61 64 -64 c 1 - 55 -61 49 -48 48 -43 c 1 - 51 -39 119 17 188 117 c 1 - 191 120 196 122 201 122 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni203E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni203E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni203E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni203E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni203E -Encoding: 8254 8254 220 -Width: 833 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 773 N 1 0 0 1 140 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2042.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2042.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2042.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2042.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni2042 -Encoding: 8258 8258 892 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 10 42 N 1 0 0 1 218 0 2 -Refer: 10 42 N 1 0 0 1 0 -393 2 -Refer: 10 42 N 1 0 0 1 436 -393 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2213.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2213.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uni2213.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uni2213.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: uni2213 -Encoding: 8723 8723 234 -Width: 574 -Flags: W -HStem: 208 70<64 254 324 514> 506 70<65 508> -VStem: 254 70<17 208 278 469> -LayerCount: 2 -Fore -SplineSet -324 205 m 2 - 324 25 l 1 - 324 25 310 16 266 10 c 0 - 263 10 262 10 260 10 c 0 - 254 10 254 13 254 17 c 2 - 254 203 l 2 - 254 205 253 208 248 208 c 2 - 62 208 l 1 - 62 208 56 208 56 218 c 0 - 56 222 56 250 63 273 c 0 - 65 279 70 278 70 278 c 1 - 249 278 l 2 - 252 278 254 282 254 284 c 2 - 254 462 l 1 - 254 462 253 467 259 469 c 0 - 282 476 310 477 314 477 c 0 - 324 477 324 471 324 471 c 1 - 324 283 l 2 - 324 280 325 278 328 278 c 2 - 516 278 l 2 - 520 278 523 278 523 271 c 0 - 523 262 520 235 514 214 c 0 - 512 208 507 208 507 208 c 1 - 328 208 l 2 - 325 208 324 207 324 205 c 2 -508 576 m 1 - 508 576 518 577 516 565 c 0 - 509 518 503 509 500 506 c 1 - 62 506 l 1 - 62 506 55 505 57 519 c 0 - 59 533 58 551 64 571 c 0 - 66 577 71 576 71 576 c 1 - 508 576 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uniF733.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uniF733.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uniF733.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uniF733.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: uniF733 -Encoding: 63283 63283 245 -Width: 1024 -VWidth: 1024 -Flags: H -LayerCount: 2 -Back -SplineSet -264 460 m 0 - 288 460 310 449.833333333 330 429.5 c 0 - 350 409.166666667 360 384.333333333 360 355 c 0 - 360 327 350 296.833333333 330 264.5 c 0 - 310 232.166666667 289.333333333 210.666666667 268 200 c 1 - 295.333333333 198 322.166666667 182.833333333 348.5 154.5 c 0 - 374.833333333 126.166666667 388 92.3333333333 388 53 c 0 - 388 14.3333333333 372.333333333 -23.6666666667 341 -61 c 0 - 309.666666667 -98.3333333333 272.333333333 -127.833333333 229 -149.5 c 0 - 185.666666667 -171.166666667 145.333333333 -182 108 -182 c 0 - 93.3333333333 -182 79.6666666667 -179.333333333 67 -174 c 1 - 63 -166 61 -157.333333333 61 -148 c 0 - 61 -140.666666667 65 -132.833333333 73 -124.5 c 0 - 81 -116.166666667 89 -112 97 -112 c 0 - 107 -112 118 -115.333333333 130 -122 c 0 - 142 -128.666666667 153.666666667 -132 165 -132 c 0 - 205 -132 237.5 -115.833333333 262.5 -83.5 c 0 - 287.5 -51.1666666667 300 -12.3333333333 300 33 c 0 - 300 61.6666666667 291.333333333 87.5 274 110.5 c 0 - 256.666666667 133.5 235 145 209 145 c 0 - 183 145 159 141.333333333 137 134 c 1 - 131.666666667 134.666666667 129 140.666666667 129 152 c 0 - 129 157.333333333 130.333333333 163.333333333 133 170 c 1 - 171.666666667 182 206.666666667 202.666666667 238 232 c 0 - 269.333333333 261.333333333 285 292 285 324 c 0 - 285 346.666666667 279 364.5 267 377.5 c 0 - 255 390.5 239 397 219 397 c 0 - 184.333333333 397 148.666666667 378.666666667 112 342 c 0 - 109.333333333 339.333333333 107 338 105 338 c 0 - 103.666666667 338 101.666666667 340 99 344 c 0 - 96.3333333333 348 95 351.333333333 95 354 c 0 - 95 358 95.6666666667 361 97 363 c 0 - 114.333333333 391 137.833333333 414.166666667 167.5 432.5 c 0 - 197.166666667 450.833333333 229.333333333 460 264 460 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uniFFC4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uniFFC4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uniFFC4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uniFFC4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uniFFC4 -Encoding: 65476 65476 461 -Width: 1031 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 110 176 N 1 0 0 1 174 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/universal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/universal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/universal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/universal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: universal -Encoding: 8704 8704 226 -Width: 725 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 65 N -1 0 0 -1 690 643 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: uogonek -Encoding: 371 371 401 -Width: 552 -Flags: W -HStem: -213 68<385 465> -5 60<159 307> 27 31<483 530> 354 30<9 68 275 334> 416 20G<184 206 450 472> -VStem: 82 127<85 344> 329 72<-163 -68> 347 127<69 344> -LayerCount: 2 -Fore -SplineSet -207 -5 m 0xdd - 112 -5 82 78 82 170 c 2 - 82 254 l 2 - 82 264 81 319 73 334 c 0 - 65 349 18 354 11 354 c 1 - 8 356 7 384 12 384 c 0 - 86 390 166 417 203 436 c 1 - 210 434 219 422 219 419 c 1 - 216 411 210 377 209 363 c 0 - 208 342 208 308 208 302 c 2 - 208 214 l 2 - 208 110 224 55 285 55 c 0 - 312 55 347 76 347 91 c 2 - 347 254 l 2 - 347 264 346 319 338 334 c 0 - 330 349 284 354 277 354 c 1 - 274 356 273 384 278 384 c 0 - 352 390 431 417 468 436 c 1 - 475 434 485 422 485 419 c 1 - 482 411 476 377 475 363 c 0 - 474 342 474 308 474 302 c 2 - 474 105 l 2xdd - 474 90 474 78 483 68 c 0 - 492 58 518 59 527 59 c 1 - 529 57 530 53 530 46 c 0 - 530 40 528 33 524 27 c 1 - 517 26 508 26 500 24 c 0 - 439 9 401 -58 401 -99 c 0 - 401 -120 413 -145 449 -145 c 0 - 476 -145 512 -114 522 -106 c 1 - 525 -106 528 -109 528 -117 c 0 - 528 -122 524 -138 521 -142 c 0 - 506 -161 456 -213 401 -213 c 0 - 369 -213 329 -188 329 -137 c 0xbe - 329 -82 373 -23 432 10 c 1 - 395 1 363 -7 356 -7 c 0 - 352 -7 347 2 347 17 c 2 - 347 32 l 2 - 347 34 347 39 344 37 c 0 - 328 26 275 -5 207 -5 c 0xdd -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: Uogonek -Encoding: 370 370 400 -Width: 733 -Flags: W -HStem: -213 68<411 491> -5 72<317 479> 610 36<21 85 238 302 496 572 648 725> -VStem: 93 137<166 602> 355 72<-163 -69> 579 61<155 601> -LayerCount: 2 -Fore -SplineSet -455 4 m 1 - 425 -4 399 -5 366 -5 c 0 - 219 -5 93 66 93 294 c 2 - 93 501 l 2 - 93 543 93 573 85 593 c 0 - 80 606 36 609 23 610 c 1 - 18 617 19 640 23 646 c 1 - 61 642 121 640 162 640 c 0 - 203 640 262 642 300 646 c 1 - 304 640 305 617 300 610 c 1 - 287 609 243 606 238 593 c 0 - 230 573 230 543 230 501 c 2 - 230 322 l 2 - 230 256 232 207 254 155 c 0 - 291 69 382 67 420 67 c 0 - 512 67 579 119 579 279 c 2 - 579 501 l 2 - 579 543 580 573 572 593 c 0 - 567 606 511 609 498 610 c 1 - 493 617 494 640 498 646 c 1 - 544 642 570 640 615 640 c 0 - 658 640 683 644 723 646 c 1 - 727 640 728 617 723 610 c 1 - 710 609 653 606 648 593 c 0 - 640 573 640 549 640 507 c 2 - 640 311 l 2 - 640 160 598 78 536 36 c 8 - 480 -1 427 -56 427 -99 c 0 - 427 -120 439 -145 475 -145 c 0 - 502 -145 538 -114 548 -106 c 1 - 551 -106 554 -109 554 -117 c 0 - 554 -122 550 -138 547 -142 c 0 - 532 -161 482 -213 427 -213 c 0 - 395 -213 355 -188 355 -137 c 0 - 355 -82 397 -29 455 4 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: uogonek.sc -Encoding: 65689 -1 599 -Width: 558 -VWidth: 0 -Flags: W -HStem: -211 68<245 325> -9 65<245 346> 410 33<27 71 208 246 364 423 484 541> -VStem: 77 127<104 398> 189 72<-161 -82> 429 48<117 404> -LayerCount: 2 -Fore -SplineSet -261 -97 m 0xec - 261 -118 273 -143 309 -143 c 0 - 336 -143 372 -112 382 -104 c 1 - 385 -104 388 -107 388 -115 c 0 - 388 -120 384 -136 381 -140 c 0 - 366 -159 316 -211 261 -211 c 0 - 229 -211 189 -186 189 -135 c 0xec - 189 -89 254 -31 299 -7 c 1 - 287 -9 277 -9 265 -9 c 0 - 205 -9 150 14 118 55 c 0 - 93 87 77 133 77 242 c 2 - 77 336 l 2xf4 - 77 364 76 384 71 398 c 0 - 68 407 39 409 30 410 c 1 - 25 416 26 437 30 443 c 1 - 59 439 106 438 137 438 c 0 - 168 438 215 439 244 443 c 1 - 248 437 249 416 244 410 c 1 - 237 409 210 406 207 398 c 0 - 202 385 204 367 204 340 c 2 - 204 225 l 2 - 204 182 204 150 218 117 c 0 - 240 61 288 57 320 57 c 0 - 367 57 429 102 429 212 c 2 - 429 318 l 2 - 429 352 426 383 422 396 c 0 - 418 408 374 409 367 410 c 1 - 362 416 363 437 367 443 c 1 - 399 439 425 438 456 438 c 0 - 486 438 511 441 538 443 c 1 - 542 437 543 416 538 410 c 1 - 529 409 490 409 484 395 c 0 - 479 381 477 347 477 319 c 2 - 477 187 l 2 - 477 113 444 61 397 29 c 0 - 363 6 261 -62 261 -97 c 0xec -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uring -Encoding: 367 367 364 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 110 176 N 1 0 0 1 158 71 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" uring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uring -Encoding: 366 366 363 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 250 -1 N 1 0 0 1 639 0 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/uring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/uring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uring.sc -Encoding: 65687 -1 597 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 251 778 N 1 0 0 1 533 13 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/u.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/u.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/u.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/u.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: u.sc -Encoding: 65583 -1 493 -Width: 558 -VWidth: 0 -Flags: W -HStem: -9 65<252 363> 410 33<26 73 210 253 367 426 486 544> -VStem: 79 127<105 398> 432 48<114 404> -LayerCount: 2 -Fore -SplineSet -480 319 m 2 - 480 198 l 2 - 480 63 371 -9 268 -9 c 0 - 208 -9 152 14 120 55 c 0 - 95 87 79 133 79 242 c 2 - 79 336 l 2 - 79 364 79 384 74 398 c 0 - 71 407 38 409 29 410 c 1 - 24 416 25 437 29 443 c 1 - 58 439 109 438 140 438 c 0 - 171 438 221 439 250 443 c 1 - 254 437 255 416 250 410 c 1 - 243 409 213 406 210 398 c 0 - 205 385 206 367 206 340 c 2 - 206 225 l 2 - 206 182 206 150 221 117 c 0 - 245 62 298 57 330 57 c 0 - 377 57 432 104 432 202 c 2 - 432 318 l 2 - 432 352 429 383 425 396 c 0 - 421 408 377 409 370 410 c 1 - 365 416 366 437 370 443 c 1 - 402 439 428 438 459 438 c 0 - 489 438 514 441 541 443 c 1 - 545 437 546 416 541 410 c 1 - 532 409 493 409 487 395 c 0 - 482 381 480 347 480 319 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: utilde -Encoding: 361 361 358 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 510 14 2 -Refer: 85 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" utilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Utilde -Encoding: 360 360 357 -Width: 712 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 625 227 2 -Refer: 53 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/utilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/utilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/utilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/utilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: utilde.sc -Encoding: 65684 -1 594 -Width: 558 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 244 771 N 1 0 0 1 523 26 2 -Refer: 493 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/v.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/v.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/v.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/v.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: v -Encoding: 118 118 86 -Width: 520 -Flags: W -HStem: -11 21G<246 254> 396 36<-3 46 201 257 315 384 455 524> -LayerCount: 2 -Fore -SplineSet -132 426 m 0 - 173 426 231 430 255 433 c 1 - 260 428 260 402 255 396 c 1 - 243 396 197 387 197 370 c 0 - 197 367 197 360 199 355 c 0 - 234 287 300 163 300 163 c 1 - 300 163 345 262 377 334 c 0 - 382 344 387 359 387 370 c 0 - 387 394 326 396 318 396 c 1 - 313 401 313 426 317 433 c 1 - 346 429 382 426 420 426 c 0 - 461 426 506 431 521 433 c 1 - 525 428 526 403 521 396 c 1 - 509 396 456 392 442 364 c 2 - 292 44 l 2 - 272 6 260 -11 248 -11 c 0 - 245 -11 239 -6 236 -3 c 1 - 179 114 126 224 61 359 c 1 - 48 388 8 396 -0 396 c 1 - -6 404 -4 427 -0 433 c 1 - 25 430 94 426 132 426 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" v.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_V.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_V.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_V.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_V.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: V -Encoding: 86 86 54 -Width: 667 -Flags: W -HStem: -11 21G<320 330> 610 36<-5 51 218 277 454 532 614 684> -LayerCount: 2 -Fore -SplineSet -137 640 m 0 - 178 640 237 642 275 646 c 1 - 279 640 280 617 275 610 c 1 - 262 609 215 608 215 584 c 0 - 215 568 227 538 239 511 c 0 - 296 381 384 182 384 182 c 1 - 384 182 503 482 513 509 c 0 - 522 534 535 566 535 587 c 0 - 535 605 469 609 456 610 c 1 - 451 617 452 640 456 646 c 1 - 502 642 528 640 573 640 c 0 - 616 640 642 644 682 646 c 1 - 686 640 687 617 682 610 c 1 - 669 609 626 609 614 593 c 0 - 599 573 588 544 574 512 c 0 - 494 316 446 210 371 29 c 0 - 363 11 337 -11 325 -11 c 0 - 316 -11 316 -4 311 3 c 1 - 98 498 l 2 - 86 526 73 558 64 578 c 0 - 52 603 10 609 -3 610 c 1 - -8 617 -7 640 -3 646 c 1 - 35 642 96 640 137 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" v.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/v.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/v.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/v.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/v.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: v.sc -Encoding: 65584 -1 494 -Width: 493 -VWidth: 0 -Flags: W -HStem: -7 21G<245 252> 407 36<3 51 185 231 323 376 433 488> -LayerCount: 2 -Fore -SplineSet -376 392 m 0 - 376 404 335 406 326 407 c 1 - 321 413 321 437 325 443 c 1 - 356 439 377 438 408 438 c 0 - 437 438 459 441 486 443 c 1 - 490 437 492 413 487 407 c 1 - 478 406 441 405 433 394 c 0 - 423 380 421 364 411 343 c 0 - 356 210 330 140 278 18 c 0 - 273 6 256 -7 248 -7 c 0 - 242 -7 239 -3 236 4 c 1 - 77 332 l 2 - 68 351 59 373 53 386 c 0 - 45 403 14 406 5 407 c 1 - 0 413 1 437 5 443 c 1 - 31 439 75 438 103 438 c 0 - 131 438 203 439 229 443 c 1 - 233 437 234 413 229 407 c 1 - 220 406 185 407 185 390 c 0 - 185 379 193 360 202 341 c 0 - 244 254 289 167 289 167 c 1 - 289 167 354 323 361 342 c 0 - 367 359 376 378 376 392 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wacute -Encoding: 7811 7811 779 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 191 769 N 1 0 0 1 646 -3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wacute -Encoding: 7810 7810 778 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 248 -1 N 1 0 0 1 750 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: wcircumflex -Encoding: 373 373 368 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 657 13 2 -Refer: 87 119 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" wcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wcircumflex -Encoding: 372 372 367 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 748 2 2 -Refer: 55 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: wcircumflex.sc -Encoding: 65690 -1 600 -Width: 661 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 610 26 2 -Refer: 495 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wdieresis -Encoding: 7813 7813 781 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 613 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wdieresis -Encoding: 7812 7812 780 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 264 -1 N 1 0 0 1 292 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/w.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/w.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/w.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/w.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: w -Encoding: 119 119 87 -Width: 770 -Flags: W -HStem: -11 21G<244 250 510 516> 396 36<-3 46 201 257 285 332 488 544 573 642 713 773> -VStem: 358 126<313 375> -LayerCount: 2 -Fore -SplineSet -125 426 m 0 - 166 426 231 430 255 433 c 1 - 260 428 260 402 255 396 c 1 - 243 396 197 387 197 370 c 0 - 197 367 197 360 199 355 c 0 - 234 287 294 168 294 168 c 1 - 294 168 358 312 358 327 c 0 - 358 338 352 353 349 359 c 0 - 334 387 296 396 288 396 c 1 - 281 404 283 427 287 433 c 1 - 326 428 381 427 419 426 c 1 - 460 426 518 430 542 433 c 1 - 547 428 547 402 542 396 c 1 - 530 396 484 387 484 370 c 0 - 484 367 484 360 486 355 c 0 - 517 285 568 176 568 176 c 1 - 568 176 604 263 635 334 c 0 - 639 344 645 359 645 370 c 0 - 645 394 584 396 576 396 c 1 - 571 401 571 426 575 433 c 1 - 604 429 640 426 678 426 c 0 - 719 426 755 431 770 433 c 1 - 774 428 775 403 770 396 c 1 - 758 396 717 395 704 366 c 8 - 649 239 618 168 560 43 c 16 - 542 5 521 -11 512 -11 c 0 - 509 -11 503 -6 500 -3 c 1 - 500 -3 423 194 391 270 c 1 - 361 194 295 43 295 43 c 2 - 278 5 255 -11 246 -11 c 0 - 243 -11 237 -6 234 -3 c 1 - 166 143 127 225 61 359 c 1 - 47 388 8 396 -0 396 c 1 - -6 404 -4 427 -0 433 c 1 - 25 430 87 426 125 426 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" w.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_W.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_W.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_W.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_W.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: W -Encoding: 87 87 55 -Width: 928 -Flags: W -HStem: -11 21G<288 299 626 637> 610 36<-5 52 218 277 710 786 870 940> -LayerCount: 2 -Fore -SplineSet -137 640 m 0 - 178 640 237 642 275 646 c 1 - 279 640 280 617 275 610 c 1 - 262 609 216 608 216 584 c 0 - 216 568 228 539 239 511 c 0 - 282 392 335 245 335 245 c 1 - 335 245 442 547 465 610 c 0 - 472 629 484 646 495 646 c 0 - 499 646 503 642 507 631 c 0 - 571 467 674 209 674 209 c 1 - 674 209 759 478 769 509 c 0 - 777 534 789 566 789 587 c 0 - 789 605 726 609 713 610 c 1 - 708 617 709 640 713 646 c 1 - 759 642 784 640 829 640 c 0 - 872 640 898 644 938 646 c 1 - 942 640 943 617 938 610 c 1 - 925 609 882 609 870 593 c 0 - 855 573 841 546 830 512 c 0 - 769 327 732 220 670 39 c 0 - 661 15 643 -11 631 -11 c 0 - 622 -11 617 -4 612 3 c 1 - 451 408 l 1 - 451 408 375 184 327 43 c 0 - 323 32 305 -11 293 -11 c 0 - 284 -11 279 -4 274 3 c 1 - 98 498 l 2 - 88 527 73 558 64 578 c 0 - 52 603 11 609 -2 610 c 1 - -8 617 -6 640 -2 646 c 1 - 36 642 96 640 137 640 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" w.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wgrave -Encoding: 7809 7809 777 -Width: 770 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 119 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 589 -3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wgrave -Encoding: 7808 7808 776 -Width: 928 -Flags: HW -LayerCount: 2 -Fore -Refer: 55 87 N 1 0 0 1 0 0 3 -Refer: 247 -1 N 1 0 0 1 671 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/w.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/w.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/w.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/w.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: w.sc -Encoding: 65585 -1 495 -Width: 661 -VWidth: 0 -Flags: W -HStem: -9 20G<227 234 436 443> 407 36<1 49 178 225 484 538 604 657> -LayerCount: 2 -Fore -SplineSet -4 407 m 1 - -2 413 0 437 4 443 c 1 - 30 439 73 438 101 438 c 0 - 129 438 196 439 222 443 c 1 - 226 437 227 413 222 407 c 1 - 213 406 178 407 178 390 c 0 - 178 379 184 362 193 343 c 0 - 215 296 262 195 262 195 c 1 - 262 195 320 369 336 413 c 0 - 341 426 355 443 363 443 c 0 - 366 443 372 442 374 438 c 0 - 419 325 476 189 476 189 c 1 - 476 189 518 321 525 342 c 0 - 530 359 538 378 538 392 c 0 - 538 404 495 406 486 407 c 1 - 481 413 482 437 486 443 c 1 - 517 439 544 438 575 438 c 0 - 604 438 628 441 655 443 c 1 - 659 437 660 413 655 407 c 1 - 646 406 611 407 603 396 c 0 - 593 382 587 365 579 342 c 0 - 541 227 505 132 470 29 c 0 - 464 12 447 -10 439 -10 c 0 - 433 -10 430 -3 427 4 c 1 - 329 237 l 1 - 329 237 291 123 260 33 c 0 - 257 26 238 -9 230 -9 c 0 - 224 -9 217 -3 214 4 c 1 - 71 336 l 2 - 62 356 58 373 52 386 c 0 - 44 403 13 406 4 407 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/x.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/x.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/x.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/x.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: x -Encoding: 120 120 88 -Width: 544 -Flags: W -HStem: -4 36<6 69 168 237 275 324 487 540> 396 36<15 70 229 277 303 372 461 528> -LayerCount: 2 -Fore -SplineSet -152 426 m 1 - 193 426 251 430 275 433 c 1 - 280 428 280 402 275 396 c 1 - 263 396 228 392 228 375 c 0 - 228 372 234 366 238 361 c 10 - 300 281 l 17 - 328 311 375 361 375 370 c 0 - 375 394 314 396 306 396 c 1 - 301 401 301 426 305 433 c 1 - 334 429 370 426 408 426 c 0 - 449 426 511 431 526 433 c 1 - 530 428 531 403 526 396 c 1 - 508 396 472 393 445 365 c 0 - 410 328 380 295 332 240 c 9 - 386 172 418 131 471 64 c 0 - 491 39 529 32 537 32 c 1 - 544 24 541 2 537 -4 c 1 - 498 1 440 2 402 3 c 1 - 361 3 302 -1 278 -4 c 1 - 273 1 273 26 278 32 c 1 - 290 32 325 37 325 54 c 0 - 325 57 319 62 315 67 c 10 - 245 152 l 17 - 223 129 188 94 172 73 c 0 - 167 67 164 62 164 59 c 0 - 164 35 226 32 234 32 c 1 - 239 27 239 3 235 -4 c 1 - 206 0 170 3 132 3 c 0 - 91 3 23 -2 8 -4 c 1 - 4 1 3 25 8 32 c 1 - 26 32 67 43 90 65 c 0 - 138 111 165 144 213 194 c 25 - 163 260 138 298 85 365 c 0 - 65 390 26 396 18 396 c 1 - 11 404 13 427 17 433 c 1 - 56 428 114 427 152 426 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" x.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_X.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_X.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_X.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_X.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: X -Encoding: 88 88 56 -Width: 693 -Flags: W -HStem: -4 36<-8 69 173 249 382 435 628 696> 610 36<17 85 259 313 429 497 611 680> -LayerCount: 2 -Fore -SplineSet -172 641 m 0 - 220 641 273 644 312 646 c 1 - 314 640 315 610 310 610 c 1 - 296 610 260 605 259 590 c 0 - 259 584 262 574 266 568 c 2 - 375 404 l 1 - 418 460 487 538 502 570 c 0 - 504 574 505 578 505 580 c 0 - 505 597 465 610 432 610 c 1 - 427 610 426 641 431 646 c 1 - 465 642 525 640 561 640 c 0 - 612 640 650 642 678 646 c 1 - 681 640 682 610 677 610 c 1 - 669 610 610 609 568 559 c 2 - 401 360 l 1 - 483 236 582 91 597 74 c 0 - 625 40 680 32 694 32 c 1 - 698 23 699 4 694 -4 c 1 - 655 -2 578 2 538 2 c 0 - 483 2 439 -2 384 -4 c 1 - 379 1 380 32 385 32 c 0 - 396 32 440 42 440 60 c 0 - 440 63 439 67 437 70 c 2 - 307 267 l 1 - 292 247 201 127 173 81 c 0 - 168 73 165 67 165 64 c 0 - 165 41 217 32 246 32 c 1 - 251 25 252 7 249 -4 c 1 - 217 -2 156 2 120 2 c 0 - 69 2 34 -2 -5 -4 c 1 - -10 2 -10 25 -5 32 c 1 - 3 32 70 34 101 77 c 2 - 275 314 l 1 - 138 524 l 2 - 120 550 100 586 86 596 c 0 - 72 606 31 610 19 610 c 1 - 14 610 14 641 19 646 c 1 - 67 644 124 641 172 641 c 0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" x.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/x.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/x.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/x.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/x.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: x.sc -Encoding: 65586 -1 496 -Width: 556 -VWidth: 0 -Flags: W -HStem: -4 37<12 78 146 201 273 323 470 539> 407 36<33 87 238 273 347 392 470 529> -LayerCount: 2 -Fore -SplineSet -164 438 m 0 - 197 438 246 441 272 443 c 1 - 274 437 275 407 270 407 c 1 - 260 407 239 404 238 394 c 0 - 238 390 241 382 244 378 c 2 - 307 282 l 1 - 340 325 392 371 392 387 c 0 - 392 399 371 407 349 407 c 1 - 344 407 344 438 349 443 c 1 - 372 439 419 438 443 438 c 0 - 478 438 507 439 527 443 c 1 - 530 437 531 407 526 407 c 1 - 521 407 473 401 444 368 c 2 - 333 245 l 1 - 390 166 451 71 461 60 c 0 - 481 39 527 33 537 33 c 1 - 541 25 542 4 537 -4 c 1 - 511 -2 442 2 415 2 c 0 - 378 2 312 -2 275 -4 c 1 - 270 1 271 33 276 33 c 0 - 284 33 323 39 323 51 c 0 - 323 53 322 56 321 58 c 2 - 244 170 l 1 - 232 155 146 65 146 54 c 0 - 146 39 177 33 198 33 c 1 - 203 26 203 6 200 -4 c 1 - 178 -2 133 2 109 2 c 0 - 74 2 40 -2 14 -4 c 1 - 9 2 9 26 14 33 c 1 - 19 33 76 41 97 66 c 2 - 218 208 l 1 - 124 350 l 2 - 112 368 98 390 88 397 c 0 - 78 404 44 407 36 407 c 1 - 31 407 31 438 36 443 c 1 - 69 441 131 438 164 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: yacute -Encoding: 253 253 187 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 590 12 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" yacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Yacute -Encoding: 221 221 155 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 632 0 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: yacute.sc -Encoding: 65627 -1 537 -Width: 500 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 568 24 2 -Refer: 497 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ycircumflex -Encoding: 375 375 370 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 521 13 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ycircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ycircumflex -Encoding: 374 374 369 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 -1 N 1 0 0 1 568 2 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ycircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ycircumflex.sc -Encoding: 65691 -1 601 -Width: 500 -Flags: HW -LayerCount: 2 -Fore -Refer: 243 770 N 1 0 0 1 530 25 2 -Refer: 497 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ydieresis -Encoding: 255 255 189 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 517 14 2 -Refer: 89 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" ydieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ydieresis -Encoding: 376 376 371 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 -1 N 1 0 0 1 129 12 2 -Refer: 57 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ydieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ydieresis.sc -Encoding: 65692 -1 602 -Width: 500 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 509 26 2 -Refer: 497 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/yen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/yen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: yen -Encoding: 165 165 100 -Width: 675 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -4 36<183 247 400 465> 146 41<170 483> 224 41<170 483> 592 36<28 83 251 310 426 498 581 650> -VStem: 255 137<40 299> -LayerCount: 2 -Fore -SplineSet -178 187 m 1 - 194 187 476 187 487 187 c 1 - 501 176 483 150 477 146 c 1 - 159 146 l 17 - 153 152 169 187 178 187 c 1 -178 265 m 1 - 194 265 476 265 487 265 c 1 - 501 254 483 228 477 224 c 1 - 159 224 l 17 - 153 230 169 265 178 265 c 1 -255 142 m 2 - 255 258 l 2 - 255 259 254 268 252 273 c 0 - 232 320 127 506 127 506 c 2 - 112 533 109 540 97 560 c 0 - 82 584 44 591 31 592 c 1 - 26 599 27 622 31 628 c 1 - 69 624 129 621 170 621 c 0 - 211 621 270 624 308 628 c 1 - 312 622 313 599 308 592 c 1 - 295 591 248 589 248 565 c 0 - 248 561 251 557 255 550 c 2 - 372 334 l 1 - 377 329 453 468 495 546 c 0 - 499 554 500 561 500 568 c 0 - 500 586 441 591 428 592 c 1 - 423 599 424 622 428 628 c 1 - 474 624 493 621 538 621 c 0 - 581 621 608 626 648 628 c 1 - 652 622 653 599 648 592 c 1 - 635 591 591 589 576 567 c 0 - 557 538 425 327 398 271 c 0 - 395 265 393 255 393 253 c 2 - 392 142 l 2 - 392 100 392 70 400 50 c 0 - 405 37 449 33 462 32 c 1 - 467 25 466 2 462 -4 c 1 - 424 0 364 3 323 3 c 0 - 282 3 223 0 185 -4 c 1 - 181 2 180 25 185 32 c 1 - 198 33 242 37 247 50 c 0 - 255 70 255 100 255 142 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: y -Encoding: 121 121 89 -Width: 521 -Flags: W -HStem: -213 98<17 132> 396 36<-3 46 201 257 315 384 455 524> -LayerCount: 2 -Fore -SplineSet -132 426 m 0 - 173 426 231 430 255 433 c 1 - 260 428 260 402 255 396 c 1 - 243 396 197 387 197 370 c 0 - 197 367 197 360 199 355 c 0 - 234 287 300 163 300 163 c 1 - 300 163 345 262 377 334 c 0 - 382 344 387 359 387 370 c 0 - 387 394 326 396 318 396 c 1 - 313 401 313 426 317 433 c 1 - 346 429 382 426 420 426 c 0 - 461 426 506 431 521 433 c 1 - 525 428 526 403 521 396 c 1 - 509 396 456 392 442 364 c 2 - 442 364 342 153 281 24 c 0 - 251 -39 236 -81 195 -132 c 0 - 144 -196 101 -213 71 -213 c 0 - 30 -213 6 -187 6 -161 c 3 - 6 -139 15 -124 28 -115 c 1 - 105 -115 149 -105 189 -39 c 0 - 207 -10 210 1 223 30 c 1 - 183 111 61 359 61 359 c 1 - 48 388 8 396 -0 396 c 1 - -6 404 -4 427 -0 433 c 1 - 25 430 94 426 132 426 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" y.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: Y -Encoding: 89 89 57 -Width: 609 -Flags: W -HStem: -4 36<155 220 372 437> 610 36<1 56 224 283 399 470 554 623> -VStem: 228 137<40 319> -LayerCount: 2 -Fore -SplineSet -228 142 m 2 - 228 277 l 0 - 228 284 226 289 222 297 c 0 - 197 350 100 524 100 524 c 2 - 85 551 82 558 70 578 c 0 - 55 602 16 609 3 610 c 1 - -2 617 -1 640 3 646 c 1 - 41 642 102 640 143 640 c 0 - 184 640 243 642 281 646 c 1 - 285 640 286 617 281 610 c 1 - 268 609 221 608 221 584 c 0 - 221 580 224 575 228 568 c 2 - 345 353 l 1 - 350 348 426 486 468 564 c 0 - 472 572 473 580 473 587 c 0 - 473 605 414 609 401 610 c 1 - 396 617 397 640 401 646 c 1 - 447 642 466 640 511 640 c 0 - 554 640 580 644 620 646 c 1 - 624 640 625 617 620 610 c 1 - 607 609 563 608 548 586 c 0 - 529 557 398 349 370 291 c 0 - 367 284 365 278 365 272 c 0 - 365 142 l 2 - 365 100 364 70 372 50 c 0 - 377 37 422 33 435 32 c 1 - 440 25 439 2 435 -4 c 1 - 397 0 336 3 295 3 c 0 - 254 3 196 0 158 -4 c 1 - 154 2 153 25 158 32 c 1 - 171 33 215 37 220 50 c 0 - 228 70 228 100 228 142 c 2 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" y.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ygrave -Encoding: 7923 7923 885 -Width: 521 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 121 N 1 0 0 1 0 0 3 -Refer: 190 768 N 1 0 0 1 445 2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ygrave -Encoding: 7922 7922 884 -Width: 609 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 89 N 1 0 0 1 0 0 3 -Refer: 247 -1 N 1 0 0 1 502 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/y.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/y.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/y.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/y.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: y.sc -Encoding: 65587 -1 497 -Width: 500 -Flags: W -HStem: -4 37<123 180 320 376> 407 36<9 58 209 247 320 363 440 499> -VStem: 188 127<46 227> -LayerCount: 2 -Fore -SplineSet -322 250 m 0 - 318 246 315 239 315 227 c 2 - 315 104 l 2 - 315 77 315 58 320 45 c 0 - 323 36 365 34 374 33 c 1 - 379 26 378 2 374 -4 c 1 - 341 0 277 3 242 3 c 0 - 207 3 158 0 125 -4 c 1 - 121 2 120 26 125 33 c 1 - 137 34 175 36 180 45 c 0 - 187 58 188 77 188 104 c 2 - 188 180 l 2 - 188 190 187 194 182 202 c 0 - 150 257 94 350 94 350 c 2 - 83 368 68 390 58 397 c 0 - 48 404 19 407 11 407 c 1 - 6 407 6 438 11 443 c 1 - 44 441 102 438 135 438 c 0 - 168 438 220 441 246 443 c 1 - 248 437 249 407 244 407 c 1 - 234 407 210 404 209 394 c 0 - 209 390 213 382 215 378 c 2 - 278 268 l 1 - 312 309 363 371 363 387 c 0 - 363 399 344 407 322 407 c 1 - 317 407 317 438 322 443 c 1 - 345 439 390 438 414 438 c 0 - 449 438 478 439 498 443 c 1 - 501 437 502 407 497 407 c 1 - 492 407 443 403 415 368 c 2 - 322 250 l 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zacute -Encoding: 378 378 373 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 517 12 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" zacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zacute -Encoding: 377 377 372 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 248 -1 N 1 0 0 1 610 0 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zacute.sc -Encoding: 65693 -1 603 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 191 769 N 1 0 0 1 544 28 2 -Refer: 498 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zcaron -Encoding: 382 382 377 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 471 12 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" zcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zcaron -Encoding: 381 381 376 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 -1 N 1 0 0 1 166 25 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zcaron.sc -Encoding: 65695 -1 605 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 780 N 1 0 0 1 497 28 2 -Refer: 498 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zdotaccent -Encoding: 380 380 375 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 479 -202 2 -Refer: 90 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" zdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zdotaccent -Encoding: 379 379 374 -Width: 625 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 585 -6 2 -Refer: 58 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zdotaccent.sc -Encoding: 65694 -1 604 -Width: 489 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 258 -1 N 1 0 0 1 491 -217 2 -Refer: 498 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: zero -Encoding: 48 48 16 -Width: 532 -Flags: W -HStem: -3 41<235 307> 569 41<231 307> -VStem: 51 127<164 431> 354 127<170 447> -LayerCount: 2 -Fore -SplineSet -270 569 m 0 - 207 569 178 448 178 295 c 0 - 178 142 220 38 270 38 c 0 - 333 38 354 167 354 320 c 0 - 354 473 324 569 270 569 c 0 -269 610 m 0 - 386 610 481 499 481 304 c 0 - 481 134 386 -3 269 -3 c 0 - 152 -3 51 109 51 304 c 0 - 51 474 152 610 269 610 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: zero.prop -Encoding: 65697 -1 607 -Width: 532 -Flags: HW -LayerCount: 2 -Fore -Refer: 16 48 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/zero.slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/zero.slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: zero.slash -Encoding: 65696 -1 606 -Width: 532 -Flags: W -HStem: -3 41<235 307> 569 41<231 307> -VStem: 51 127<209 431> 354 127<170 391> -LayerCount: 2 -Fore -SplineSet -51 304 m 0 - 51 474 152 610 269 610 c 0 - 386 610 481 499 481 304 c 0 - 481 134 386 -3 269 -3 c 0 - 152 -3 51 109 51 304 c 0 -341 470 m 1 - 327 533 303 569 270 569 c 0 - 207 569 178 448 178 295 c 0 - 178 263 180 233 183 206 c 1 - 341 470 l 1 -352 395 m 1 - 196 136 l 1 - 213 74 241 38 270 38 c 0 - 333 38 354 167 354 320 c 0 - 354 346 354 373 352 395 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: z -Encoding: 122 122 90 -Width: 449 -Flags: W -HStem: 0 45<173 341> 373 45<104 251> -VStem: 36 34<275 325> -LayerCount: 2 -Fore -SplineSet -146 418 m 2 - 281 418 l 2 - 334 418 367 421 407 426 c 1 - 412 418 410 407 410 402 c 1 - 173 45 l 25 - 284 45 l 2 - 344 45 379 107 387 144 c 0 - 388 149 395 150 399 150 c 0 - 410 150 423 142 424 141 c 1 - 411 103 385 0 385 0 c 1 - 38 0 l 1 - 38 0 28 8 28 17 c 0 - 28 22 30 29 32 33 c 2 - 251 372 l 1 - 251 372 180 373 149 373 c 0 - 99 373 81 315 70 281 c 0 - 69 277 58 274 48 274 c 0 - 42 274 36 276 36 278 c 1 - 39 294 51 372 54 424 c 1 - 54 424 111 418 146 418 c 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 0 subtable" z.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/_Z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/_Z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: Z -Encoding: 90 90 58 -Width: 625 -Flags: W -HStem: 0 46<202 490> 596 44<151 404> 627 20G<76 88 531 574> -LayerCount: 2 -Fore -SplineSet -228 596 m 2xc0 - 124 596 108 524 86 463 c 0 - 85 460 84 457 74 457 c 0 - 63 457 48 459 45 462 c 1 - 56 519 70 584 80 646 c 1xa0 - 96 642 194 640 208 640 c 2 - 345 641 l 2 - 427 642 490 644 572 650 c 1 - 576 649 581 628 581 618 c 1 - 579 610 202 46 202 46 c 17 - 412 46 l 2 - 449 46 483 58 505 80 c 0 - 526 101 540 122 557 166 c 0 - 558 170 564 172 571 172 c 0 - 581 172 597 169 600 166 c 1 - 584 114 556 43 547 1 c 1 - 506 1 45 0 45 0 c 1 - 32 0 17 17 20 21 c 2 - 407 596 l 1 - 228 596 l 2xc0 -EndSplineSet -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" z.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/z.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/z.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Bold.sfdir/z.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Bold.sfdir/z.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: z.sc -Encoding: 65588 -1 498 -Width: 489 -VWidth: 0 -Flags: W -HStem: 0 43<185 389> 396 42<108 291> -LayerCount: 2 -Fore -SplineSet -421 1 m 1 - 393 1 46 0 46 0 c 1 - 42 2 33 13 33 22 c 0 - 33 24 33 25 35 28 c 2 - 291 396 l 1 - 172 396 l 0 - 101 395 91 352 75 316 c 0 - 74 314 69 313 62 313 c 0 - 54 313 45 314 43 316 c 1 - 51 355 60 400 67 443 c 1 - 78 439 166 438 176 438 c 2 - 248 438 l 2 - 305 438 381 441 438 447 c 1 - 441 446 444 426 444 416 c 1 - 443 411 185 43 185 43 c 17 - 325 43 l 2 - 350 43 373 50 389 64 c 0 - 403 77 412 90 424 117 c 0 - 425 119 433 121 438 121 c 0 - 445 121 455 119 457 117 c 1 - 446 81 427 30 421 1 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldSlanted.sfd fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldSlanted.sfd --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-BoldSlanted.sfd 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-BoldSlanted.sfd 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,11639 @@ +SplineFontDB: 3.0 +FontName: AmiriLatin-BoldItalic +FullName: Amiri Latin Bold Italic +FamilyName: Amiri Latin +Weight: Bold +Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. +Version: 0.8 +ItalicAngle: -11 +UnderlinePosition: -102 +UnderlineWidth: 51 +Ascent: 700 +Descent: 300 +InvalidEm: 0 +LayerCount: 2 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1273891947 +ModificationTime: 0 +PfmFamily: 17 +TTFWeight: 700 +TTFWidth: 5 +LineGap: 90 +VLineGap: 0 +OS2TypoAscent: 700 +OS2TypoAOffset: 0 +OS2TypoDescent: -300 +OS2TypoDOffset: 0 +OS2TypoLinegap: 90 +OS2WinAscent: 0 +OS2WinAOffset: 0 +OS2WinDescent: 0 +OS2WinDOffset: 0 +HheadAscent: 700 +HheadAOffset: 0 +HheadDescent: -300 +HheadDOffset: 0 +OS2SubXSize: 649 +OS2SubYSize: 699 +OS2SubXOff: 26 +OS2SubYOff: 140 +OS2SupXSize: 649 +OS2SupYSize: 699 +OS2SupXOff: -91 +OS2SupYOff: 479 +OS2StrikeYSize: 50 +OS2StrikeYPos: 259 +OS2Vendor: 'PfEd' +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +KernClass2: 75+ 59 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" + 9 ampersand + 10 exclamdown + 10 registered + 12 questiondown + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 9 B uni1E02 + 47 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron + 51 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 + 84 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE + 9 F uni1E1E + 39 G Gcircumflex Gbreve Gdotaccent uni0122 + 113 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E28 uni1E2A + 16 J IJ Jcircumflex + 9 K uni0136 + 35 L Lacute uni013B Lcaron Ldot Lslash + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 80 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut + 9 P uni1E56 + 1 Q + 23 R Racute uni0156 Rcaron + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 5 Thorn + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 19 b uni1E03 f_b f_f_b + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 84 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe + 19 f longs uni1E1F f_f + 39 g gcircumflex gbreve gdotaccent uni0123 + 92 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i i.TRK + 34 j ij jcircumflex uni0237 f_j f_f_j + 32 k uni0137 kgreenlandic f_k f_f_k + 40 l lacute uni013C lcaron lslash f_l f_f_l + 113 h m n ntilde hcircumflex hbar nacute uni0146 ncaron napostrophe uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h + 80 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut + 15 p thorn uni1E57 + 1 q + 23 r racute uni0157 rcaron + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 1 x + 37 y yacute ydieresis ycircumflex ygrave + 34 z zacute zdotaccent zcaron uni1E93 + 10 germandbls + 4 ldot + 3 eng + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 40 comma period quotesinglbase quotedblbase + 5 slash + 15 colon semicolon + 9 backslash + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 29 guillemotright guilsinglright + 9 parenleft + 14 seven.ltr.prop + 13 nine.ltr.prop + 11 bracketleft + 9 braceleft + 0 + 2 mu + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 353 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E28 uni1E2A uni1E56 + 13 J Jcircumflex + 34 N Ntilde Nacute uni0145 Ncaron Eng + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 5 slash + 171 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 1 Q + 1 V + 9 backslash + 12 bracketright + 9 b uni1E03 + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 39 g gcircumflex gbreve gdotaccent uni0123 + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 21 j jcircumflex uni0237 + 35 l lacute uni013C lcaron ldot lslash + 93 m n r ntilde kgreenlandic nacute uni0146 ncaron napostrophe eng racute uni0157 rcaron uni1E41 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 9 p uni1E57 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 39 v w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 10 registered + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 34 z zacute zdotaccent zcaron uni1E93 + 1 x + 10 parenright + 9 M uni1E40 + 1 X + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 2 AE + 49 comma period quotesinglbase quotedblbase ellipsis + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 1 q + 2 ae + 3 eth + 9 ampersand + 15 colon semicolon + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 29 guillemotright guilsinglright + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 10 braceright + 13 four.ltr.prop + 2 at + 0 + 0 {} -25 {} -10 {} -10 {} -13 {} -18 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -30 {} -32 {} -17 {} 29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -10 {} 0 {} -13 {} -19 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -28 {} -25 {} -14 {} 32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -61 {} -60 {} -51 {} -38 {} -9 {} -49 {} -43 {} -18 {} 7 {} -24 {} -25 {} -66 {} -43 {} -13 {} -12 {} -6 {} -5 {} -10 {} -13 {} -5 {} -5 {} -7 {} -6 {} -12 {} -8 {} -27 {} -26 {} -29 {} -47 {} -45 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -5 {} -6 {} -6 {} -18 {} -21 {} -7 {} -6 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} -6 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -8 {} -9 {} -10 {} -23 {} -35 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -16 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -26 {} -9 {} -29 {} -5 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -9 {} -6 {} -15 {} 0 {} -6 {} 0 {} -6 {} -9 {} 0 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -16 {} 0 {} -7 {} 0 {} 0 {} -21 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -24 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} -10 {} -9 {} -6 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} -12 {} 0 {} -8 {} -8 {} 0 {} 0 {} -11 {} 0 {} -17 {} -14 {} 0 {} -12 {} 0 {} -8 {} -18 {} -19 {} -16 {} -7 {} -13 {} -6 {} 0 {} 0 {} 0 {} -13 {} -6 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -14 {} -9 {} -15 {} -11 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} -8 {} 0 {} -5 {} -6 {} 0 {} 0 {} -13 {} 6 {} -18 {} -20 {} 0 {} -11 {} 0 {} -8 {} -19 {} -20 {} -16 {} -5 {} -8 {} 0 {} 0 {} 0 {} 0 {} -10 {} -18 {} -13 {} 0 {} 0 {} 0 {} 0 {} -8 {} -8 {} -20 {} -20 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 19 {} -45 {} -45 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -13 {} 0 {} 0 {} 0 {} -16 {} -6 {} -9 {} -28 {} -54 {} -46 {} -14 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -57 {} -41 {} -56 {} -11 {} -5 {} -56 {} -65 {} 0 {} 0 {} 0 {} 0 {} -65 {} -33 {} -14 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -22 {} -41 {} -15 {} -56 {} -58 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -11 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -12 {} 0 {} -14 {} 0 {} -7 {} -16 {} 0 {} -16 {} -6 {} -13 {} -6 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -13 {} 0 {} -8 {} -8 {} 0 {} 0 {} -14 {} 14 {} -21 {} -24 {} 0 {} -13 {} 9 {} -15 {} -22 {} -22 {} -23 {} -12 {} -16 {} -8 {} 0 {} 0 {} 0 {} -15 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} -7 {} -10 {} -23 {} -23 {} -23 {} -22 {} 0 {} 0 {} -10 {} -9 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -8 {} -8 {} -10 {} -22 {} -34 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -16 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -27 {} -10 {} -29 {} -5 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -5 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -39 {} -39 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -8 {} -8 {} -9 {} -22 {} -34 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} -5 {} 5 {} -47 {} -30 {} -21 {} -23 {} -6 {} -16 {} -23 {} -16 {} 33 {} -20 {} -19 {} -55 {} -29 {} 0 {} -9 {} -6 {} -5 {} 0 {} -9 {} -5 {} 0 {} -7 {} -5 {} -8 {} 0 {} -27 {} -29 {} -24 {} -11 {} -12 {} -35 {} 13 {} 0 {} 0 {} 8 {} 16 {} 14 {} 18 {} 13 {} -5 {} -5 {} 0 {} -5 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -17 {} 0 {} 0 {} -7 {} 0 {} -11 {} 0 {} 0 {} 0 {} -5 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -7 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 20 {} -54 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -73 {} -5 {} -20 {} 0 {} -55 {} -67 {} -65 {} -16 {} -55 {} -56 {} -42 {} 0 {} 0 {} 0 {} -48 {} -52 {} -62 {} 0 {} 0 {} 0 {} 0 {} -54 {} -37 {} -68 {} -68 {} -65 {} -67 {} 0 {} 0 {} -32 {} -13 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -9 {} -11 {} 0 {} 0 {} 0 {} 0 {} -12 {} 27 {} -23 {} -21 {} 0 {} -6 {} 22 {} -6 {} -23 {} -25 {} -15 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -21 {} 0 {} 0 {} 0 {} 0 {} -34 {} -20 {} -26 {} -25 {} -23 {} -25 {} 0 {} 0 {} -11 {} -8 {} 23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -64 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 20 {} 0 {} -49 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -68 {} 0 {} -12 {} 44 {} -49 {} -66 {} 0 {} -40 {} -45 {} -45 {} -35 {} 0 {} 0 {} 0 {} -46 {} -69 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -65 {} -70 {} -68 {} -69 {} 0 {} 0 {} 0 {} 0 {} -34 {} 47 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -60 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 16 {} 0 {} -43 {} -34 {} -19 {} -19 {} 0 {} 0 {} -16 {} 48 {} -57 {} -60 {} 0 {} -13 {} 42 {} -41 {} -58 {} -57 {} -36 {} -38 {} -42 {} -34 {} -16 {} 0 {} 0 {} -41 {} -61 {} -62 {} 0 {} 0 {} 0 {} 0 {} -68 {} -58 {} -60 {} -60 {} -61 {} -59 {} 0 {} 0 {} -45 {} -32 {} 45 {} -31 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -8 {} 0 {} 0 {} 19 {} -10 {} -19 {} 0 {} -19 {} -20 {} -43 {} -37 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 19 {} 0 {} -60 {} -30 {} -22 {} -23 {} 0 {} 0 {} -14 {} 49 {} -72 {} -67 {} 0 {} -14 {} 44 {} -62 {} -73 {} -64 {} -47 {} -61 {} -63 {} -59 {} -18 {} 0 {} 0 {} -58 {} -73 {} -68 {} 0 {} 0 {} 0 {} 0 {} -55 {} -43 {} -73 {} -66 {} -68 {} -73 {} 0 {} 0 {} -47 {} -35 {} 45 {} -39 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} -13 {} -8 {} -19 {} 0 {} -18 {} 0 {} -8 {} -16 {} -17 {} -32 {} -33 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} -8 {} -11 {} -27 {} -46 {} -11 {} -5 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -19 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -20 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 39 {} 0 {} 43 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 53 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -12 {} -10 {} 0 {} 0 {} -6 {} 0 {} 0 {} -32 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -14 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -49 {} -44 {} -56 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -29 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} 0 {} 0 {} -7 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -18 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} -7 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -50 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -30 {} -18 {} 0 {} 0 {} 0 {} -16 {} -21 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} -48 {} -11 {} -11 {} 0 {} -10 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -24 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -37 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} -8 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -6 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -5 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -81 {} -10 {} -18 {} 0 {} -10 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -36 {} -13 {} -42 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -12 {} -10 {} -17 {} -37 {} -59 {} -56 {} -9 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} -15 {} -24 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -33 {} -33 {} -22 {} 0 {} -89 {} 0 {} 0 {} 0 {} -19 {} -19 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -24 {} 0 {} -97 {} -100 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -26 {} 0 {} 0 {} 0 {} -15 {} -35 {} 0 {} -16 {} -12 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} -32 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -28 {} -19 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} -30 {} -22 {} -19 {} -15 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -52 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -92 {} -17 {} -21 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} -56 {} 0 {} 0 {} 0 {} 15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} 0 {} 0 {} -16 {} -8 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -100 {} -21 {} -21 {} 0 {} -21 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -27 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -13 {} -12 {} -16 {} -38 {} -48 {} -50 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} -15 {} -21 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 77 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 26 {} -12 {} 0 {} 0 {} -21 {} -30 {} 0 {} -26 {} -21 {} -26 {} 26 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -24 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -14 {} 0 {} -13 {} -14 {} -13 {} -12 {} -18 {} 70 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 7 {} 0 {} 0 {} 0 {} -16 {} -26 {} 0 {} -21 {} -13 {} -16 {} 17 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -26 {} -23 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -49 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +LangName: 1033 "" "" "Bold Italic" "" "" "" "" "" "" "" "" "" "" "Copyright (c) 2011, Sebastian Kosch,,, (),+AAoA-with Reserved Font Name Crimson.+AAoACgAA-This Font Software is licensed under the SIL Open Font License, Version 1.1.+AAoA-This license is copied below, and is also available with a FAQ at:+AAoA-http://scripts.sil.org/OFL+AAoACgAK------------------------------------------------------------+AAoA-SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007+AAoA------------------------------------------------------------+AAoACgAA-PREAMBLE+AAoA-The goals of the Open Font License (OFL) are to stimulate worldwide+AAoA-development of collaborative font projects, to support the font creation+AAoA-efforts of academic and linguistic communities, and to provide a free and+AAoA-open framework in which fonts may be shared and improved in partnership+AAoA-with others.+AAoACgAA-The OFL allows the licensed fonts to be used, studied, modified and+AAoA-redistributed freely as long as they are not sold by themselves. The+AAoA-fonts, including any derivative works, can be bundled, embedded, +AAoA-redistributed and/or sold with any software provided that any reserved+AAoA-names are not used by derivative works. The fonts and derivatives,+AAoA-however, cannot be released under any other type of license. The+AAoA-requirement for fonts to remain under this license does not apply+AAoA-to any document created using the fonts or their derivatives.+AAoACgAA-DEFINITIONS+AAoAIgAA-Font Software+ACIA refers to the set of files released by the Copyright+AAoA-Holder(s) under this license and clearly marked as such. This may+AAoA-include source files, build scripts and documentation.+AAoACgAi-Reserved Font Name+ACIA refers to any names specified as such after the+AAoA-copyright statement(s).+AAoACgAi-Original Version+ACIA refers to the collection of Font Software components as+AAoA-distributed by the Copyright Holder(s).+AAoACgAi-Modified Version+ACIA refers to any derivative made by adding to, deleting,+AAoA-or substituting -- in part or in whole -- any of the components of the+AAoA-Original Version, by changing formats or by porting the Font Software to a+AAoA-new environment.+AAoACgAi-Author+ACIA refers to any designer, engineer, programmer, technical+AAoA-writer or other person who contributed to the Font Software.+AAoACgAA-PERMISSION & CONDITIONS+AAoA-Permission is hereby granted, free of charge, to any person obtaining+AAoA-a copy of the Font Software, to use, study, copy, merge, embed, modify,+AAoA-redistribute, and sell modified and unmodified copies of the Font+AAoA-Software, subject to the following conditions:+AAoACgAA-1) Neither the Font Software nor any of its individual components,+AAoA-in Original or Modified Versions, may be sold by itself.+AAoACgAA-2) Original or Modified Versions of the Font Software may be bundled,+AAoA-redistributed and/or sold with any software, provided that each copy+AAoA-contains the above copyright notice and this license. These can be+AAoA-included either as stand-alone text files, human-readable headers or+AAoA-in the appropriate machine-readable metadata fields within text or+AAoA-binary files as long as those fields can be easily viewed by the user.+AAoACgAA-3) No Modified Version of the Font Software may use the Reserved Font+AAoA-Name(s) unless explicit written permission is granted by the corresponding+AAoA-Copyright Holder. This restriction only applies to the primary font name as+AAoA-presented to the users.+AAoACgAA-4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font+AAoA-Software shall not be used to promote, endorse or advertise any+AAoA-Modified Version, except to acknowledge the contribution(s) of the+AAoA-Copyright Holder(s) and the Author(s) or with their explicit written+AAoA-permission.+AAoACgAA-5) The Font Software, modified or unmodified, in part or in whole,+AAoA-must be distributed entirely under this license, and must not be+AAoA-distributed under any other license. The requirement for fonts to+AAoA-remain under this license does not apply to any document created+AAoA-using the Font Software.+AAoACgAA-TERMINATION+AAoA-This license becomes null and void if any of the above conditions are+AAoA-not met.+AAoACgAA-DISCLAIMER+AAoA-THE FONT SOFTWARE IS PROVIDED +ACIA-AS IS+ACIA, WITHOUT WARRANTY OF ANY KIND,+AAoA-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF+AAoA-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT+AAoA-OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE+AAoA-COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,+AAoA-INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL+AAoA-DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING+AAoA-FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM+AAoA-OTHER DEALINGS IN THE FONT SOFTWARE." "http://scripts.sil.org/OFL" +GaspTable: 1 65535 15 1 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +BeginPrivate: 0 +EndPrivate +Grid +-249.0234375 -196.77734375 m 25 + -249.0234375 887.20703125 l 1025 +0 1200.1953125 m 1 + 0 -799.8046875 l 1025 +490.234375 626.953125 m 25 + 0 626.953125 l 1 + 490.234375 626.953125 l 25 +770.5078125 -221.6796875 m 25 + 1166.9921875 -221.6796875 l 1025 +0 646.484375 m 25 + 546.875 646.484375 l 1025 +0 654.296875 m 25 + 546.875 654.296875 l 1025 +541.9921875 -212.890625 m 25 + 0 -212.890625 l 1 + 541.9921875 -212.890625 l 25 +546.875 678.7109375 m 25 + 0 678.7109375 l 1 + 546.875 678.7109375 l 25 +546.875 432.6171875 m 25 + -5.859375 432.6171875 l 1 + 546.875 432.6171875 l 25 +546.875 438.4765625 m 25 + -5.859375 438.4765625 l 1 + 546.875 438.4765625 l 25 +EndSplineSet +BeginChars: 65644 535 + +StartChar: space +Encoding: 32 32 0 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclam +Encoding: 33 33 1 +Width: 235 +Flags: W +HStem: -11 107<75 160> 607 20G<106 137> +VStem: 63 107<1 85> 73 92<319 617> +LayerCount: 2 +Fore +SplineSet +63 44 m 0xe0 + 63 73 89 97 118 97 c 0 + 147 97 171 73 171 44 c 0 + 171 15 147 -11 118 -11 c 0 + 89 -11 63 15 63 44 c 0xe0 +122 627 m 0 + 152 627 165 595 165 570 c 0 + 165 543 152 412 131 168 c 1 + 127 160 124 156 115 155 c 1 + 110 157 106 160 103 166 c 1 + 89 323 73 520 73 570 c 0xd0 + 73 597 91 627 122 627 c 0 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 2 +Width: 273 +Flags: W +HStem: 462 221<72 100 190 218> +VStem: 38 76<511 669> 155 76<511 669> +LayerCount: 2 +Fore +SplineSet +206 683 m 0 + 218 683 223 680 231 670 c 1 + 231 642 224 531 218 480 c 1 + 215 474 206 466 198 462 c 1 + 195 462 191 464 189 468 c 1 + 168 538 155 587 155 614 c 0 + 155 641 175 683 206 683 c 0 +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 3 +Width: 468 +Flags: W +HStem: 174 48<58 383> 360 48<84 410> +LayerCount: 2 +Fore +SplineSet +404 360 m 1 + 249 360 249 360 83 360 c 1 + 71 360 78 404 91 408 c 9 + 410 408 l 17 + 424 408 417 366 404 360 c 1 +377 174 m 1 + 222 174 221 174 55 174 c 1 + 43 174 52 218 65 222 c 9 + 383 222 l 17 + 397 222 390 180 377 174 c 1 +365 516 m 1 + 295 75 l 2 + 294 71 286 62 271 62 c 0 + 261 62 260 66 260 66 c 1 + 331 506 l 1 + 334 515 333 519 352 519 c 0 + 361 519 362 518 365 516 c 1 +208 516 m 1 + 136 75 l 2 + 135 71 129 62 114 62 c 0 + 104 62 103 66 103 66 c 1 + 173 506 l 1 + 176 515 176 519 195 519 c 0 + 204 519 205 518 208 516 c 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 4 +Width: 486 +UnlinkRmOvrlpSave: 1 +Flags: W +HStem: -10 33<215 303> 592 32<186 272> +VStem: 50 35<114 168> 67 75<426 538> 278 34<623 665> 355 82<83 202> 373 31<461 511> +LayerCount: 2 +Fore +SplineSet +285 667 m 1xd8 + 293 667 319 667 319 660 c 1 + 312 618 l 1 + 335 613 358 606 393 598 c 1 + 405 548 403 490 404 465 c 1 + 399 462 394 461 387 461 c 0 + 383 461 376 463 373 466 c 1xda + 369 499 345 547 305 573 c 1 + 268 347 l 1 + 270 346 272 344 274 343 c 0 + 336 304 438 255 438 162 c 0 + 438 58 342 -10 241 -10 c 0 + 230 -10 220 -9 209 -8 c 1 + 202 -51 l 1 + 193 -51 168 -49 168 -42 c 1 + 174 -4 l 1 + 136 2 101 12 72 18 c 1 + 60 74 50 150 50 161 c 1 + 54 165 67 169 74 169 c 0 + 79 169 83 168 85 164 c 1xec + 90 141 109 64 181 35 c 1 + 221 277 l 1 + 151 318 67 368 67 459 c 0 + 67 559 157 624 251 624 c 0 + 261 624 270 624 278 623 c 1 + 285 667 l 1xd8 +253 259 m 1 + 215 26 l 1 + 224 25 233 23 243 23 c 0 + 302 23 355 64 355 137 c 0xcc + 355 206 308 229 253 259 c 1 +236 367 m 1 + 272 588 l 1 + 263 590 254 592 245 592 c 0 + 163 592 143 533 143 488 c 0xd8 + 143 428 187 397 236 367 c 1 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 5 +Width: 651 +Flags: W +HStem: -7 24<441 509> 282 23<428 496> 317 24<159 226> 606 23<146 213> +VStem: 39 62<398 558> 265 64<390 557> 320 62<74 232> 546 64<65 233> +LayerCount: 2 +Fore +SplineSet +182 606 m 0xfd + 124 606 102 542 102 484 c 0 + 102 417 142 342 191 342 c 0 + 248 342 265 408 265 465 c 0 + 265 530 234 606 182 606 c 0xfd +186 630 m 0 + 271 630 329 558 329 473 c 0 + 329 395 275 317 186 317 c 0 + 105 317 39 387 39 473 c 0 + 39 560 99 630 186 630 c 0 +464 282 m 0 + 406 282 383 218 383 160 c 0xfb + 383 93 425 18 474 18 c 0 + 531 18 546 84 546 141 c 0 + 546 206 516 282 464 282 c 0 +468 306 m 0 + 553 306 610 233 610 148 c 0 + 610 70 557 -7 467 -7 c 0 + 386 -7 320 62 320 148 c 0 + 320 235 381 306 468 306 c 0 +584 609 m 1 + 112 0 l 2 + 108 -5 92 -12 80 -12 c 0 + 66 -12 63 -3 62 -1 c 1 + 533 609 l 2 + 538 615 547 621 553 621 c 0 + 581 621 575 618 584 609 c 1 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 6 +Width: 790 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -5 49<332 499> 472 52<333 460> +VStem: -10 61<87 173> 118 126<141 334> 382 145<377 468> 437 35<127 179> 599 62<131 228> 711 74<434 495> +LayerCount: 2 +Fore +SplineSet +438 523 m 27xf7 + 484 523 526 491 526 445 c 27 + 526 280 221 237 166 222 c 0 + 99 203 51 191 51 151 c 3 + 51 134 58 127 71 115 c 0 + 83 104 91 93 91 77 c 3 + 91 45 67 24 38 24 c 27 + 25 24 17 26 7 29 c 1 + -5 49 -10 78 -10 96 c 0 + -10 166 35 220 113 246 c 0 + 188 271 382 293 382 427 c 3xfb + 382 455 365 472 346 472 c 3 + 281 472 244 346 244 242 c 3 + 244 124 312 44 414 44 c 27 + 505 44 599 97 599 188 c 0 + 599 205 593 223 587 229 c 1 + 534 209 472 189 472 146 c 3 + 472 131 473 128 474 118 c 1 + 470 116 457 122 450 128 c 1 + 447 133 437 146 437 172 c 3 + 437 245 477 260 562 311 c 0 + 628 351 711 407 711 533 c 1 + 720 534 729 530 735 527 c 1 + 758 509 785 467 785 421 c 27 + 785 338 720 287 652 254 c 1 + 656 245 660 232 660 217 c 0 + 660 84 522 -5 384 -5 c 0 + 258 -5 118 68 118 209 c 3 + 118 355 263 523 438 523 c 27xf7 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 7 +Width: 156 +Flags: W +HStem: 462 221<72 100> +VStem: 38 76<511 669> +LayerCount: 2 +Back +SplineSet +103.515625 681.640625 m 2 + 118.1640625 681.640625 l 2 + 127.604492188 681.640625 134.846679688 677.571289062 139.892578125 669.43359375 c 0 + 144.938476562 661.295898438 147.4609375 644.206054688 147.4609375 618.1640625 c 0 + 147.4609375 598.958007812 142.415039062 569.254882812 132.32421875 529.052734375 c 0 + 122.233398438 488.850585938 116.2109375 458.659179688 114.2578125 438.4765625 c 0 + 113.932617188 433.918945312 112.223632812 430.338867188 109.130859375 427.734375 c 0 + 106.038085938 425.129882812 102.5390625 423.828125 98.6328125 423.828125 c 0 + 95.0517578125 423.828125 91.796875 424.967773438 88.8671875 427.24609375 c 0 + 85.9375 429.524414062 84.3095703125 432.6171875 83.984375 436.5234375 c 0 + 81.0546875 467.448242188 74.7880859375 502.685546875 65.185546875 542.236328125 c 0 + 55.5830078125 581.787109375 50.78125 607.747070312 50.78125 620.1171875 c 0 + 50.78125 630.208007812 56.640625 642.985351562 68.359375 658.447265625 c 0 + 80.078125 673.909179688 91.796875 681.640625 103.515625 681.640625 c 2 +EndSplineSet +Fore +SplineSet +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 8 +Width: 270 +VWidth: 0 +Flags: HW +HStem: -118 12<209 214> +VStem: 38 286 +LayerCount: 2 +Fore +SplineSet +316 730 m 1 + 322 728 325 722 324 718 c 1 + 251 649 87 408 108 160 c 0 + 120 22 155 -52 214 -106 c 1 + 214 -109 214 -116 208 -118 c 1 + 140 -97 53 4 38 173 c 0 + 13 463 221 660 316 730 c 1 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 9 +Width: 268 +VWidth: 0 +Flags: HW +HStem: 719 12<74 79> +VStem: -37 285 +LayerCount: 2 +Fore +SplineSet +-28 -118 m 1 + -34 -116 -38 -109 -37 -105 c 1 + 36 -36 201 204 180 452 c 0 + 168 590 132 665 73 719 c 1 + 73 722 73 728 79 730 c 1 + 147 709 233 608 248 439 c 0 + 273 149 67 -48 -28 -118 c 1 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 10 +Width: 432 +Flags: W +HStem: 381 60<302 384> 424 63<37 145> +VStem: 127 56<560 645> 204 24<411 440> +LayerCount: 2 +Fore +SplineSet +295 599 m 0x70 + 312 618 334 625 349 610 c 0 + 365 594 362 573 343 556 c 0 + 309 525 276 519 249 493 c 1 + 249 493 243 484 244 479 c 0 + 245 474 248 472 253 470 c 0 + 287 454 315 460 358 440 c 0 + 380 430 395 412 386 393 c 0 + 376 373 354 369 333 381 c 0xb0 + 292 403 277 433 244 451 c 1 + 244 451 235 456 230 454 c 0 + 224 451 225 446 224 441 c 0 + 220 404 233 380 228 333 c 0 + 225 309 212 289 191 292 c 0 + 170 295 159 315 164 339 c 0 + 173 385 197 409 204 446 c 1 + 204 446 205 455 201 459 c 0 + 198 463 193 463 188 462 c 0 + 152 454 133 434 86 424 c 0 + 63 419 38 425 35 446 c 0 + 31 467 48 484 72 487 c 0 + 119 493 147 477 185 482 c 1 + 185 482 194 485 196 490 c 0 + 198 495 197 499 194 504 c 0 + 175 536 150 549 127 590 c 0 + 115 611 114 635 132 645 c 0 + 152 655 171 644 182 622 c 0 + 202 579 195 547 212 513 c 1 + 212 513 217 503 222 502 c 0 + 227 501 231 504 235 508 c 0 + 260 535 264 564 295 599 c 0x70 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 11 +Width: 529 +Flags: W +HStem: 213 55<35 236 291 495> +VStem: 236 55<7 213 268 470> +LayerCount: 2 +Back +SplineSet +206.0546875 18.5546875 m 25 + 298.828125 508.7890625 l 1 + 287.596679688 38.248046875 l 1 + 374.0234375 492.1875 l 1025 +EndSplineSet +Fore +SplineSet +236 463 m 1 + 252 469 271 474 278 474 c 0 + 288 474 291 468 291 468 c 1 + 291 268 l 25 + 369 268 412 268 490 268 c 16 + 494 268 499 264 499 256 c 0 + 499 240 491 221 483 213 c 1 + 291 213 l 25 + 291 213 291 91 291 16 c 1 + 279 7 259 5 249 5 c 0 + 242 5 236 10 236 14 c 2 + 236 213 l 25 + 36 213 l 1 + 36 213 30 213 30 223 c 0 + 30 227 35 260 45 268 c 1 + 236 268 l 9 + 236 268 236 444 236 463 c 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 12 +Width: 208 +Flags: HW +HStem: -120 252 +VStem: 9 116<26 110> 43 82<-24 109> +LayerCount: 2 +Back +SplineSet +190.4296875 113.28125 m 0 + 193.034179688 59.8955078125 180.419921875 9.27734375 152.587890625 -38.57421875 c 0 + 124.755859375 -86.42578125 82.6826171875 -126.301757812 26.3671875 -158.203125 c 1024 +EndSplineSet +Fore +SplineSet +-29 -101 m 1xc0 + -21 -96 43 -48 43 0 c 0xa0 + 43 28 9 28 9 66 c 0 + 9 104 49 132 91 132 c 0 + 103 132 117 126 122 120 c 1 + 124 115 125 110 125 99 c 0 + 125 68 116 24 97 -10 c 0 + 66 -66 35 -89 -14 -120 c 1 + -22 -118 -29 -111 -29 -101 c 1xc0 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 13 +Width: 356 +Flags: HW +VStem: 47 251<202 260> +LayerCount: 2 +Fore +SplineSet +70 261 m 2 + 292 272 l 2 + 297 272 298 266 298 261 c 0 + 298 248 282 200 272 199 c 10 + 52 188 l 2 + 49 188 47 195 47 203 c 0 + 47 214 59 260 70 261 c 2 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 14 +Width: 211 +Flags: HW +HStem: -11 135<32 104> +VStem: 7 123<15 100> +LayerCount: 2 +Fore +SplineSet +7 59 m 0 + 14 95 47 124 81 124 c 27 + 114 124 137 95 130 59 c 0 + 123 23 91 -11 57 -11 c 27 + 22 -11 0 23 7 59 c 0 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 15 +Width: 394 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +SplineSet +455 737 m 1 + 41 -12 l 2 + 38 -17 10 -33 -12 -33 c 0 + -16 -33 -22 -29 -23 -27 c 9 + 392 722 l 2 + 397 730 425 743 443 743 c 0 + 449 743 453 740 455 737 c 1 +EndSplineSet +EndChar + +StartChar: zero.ltr +Encoding: 65536 -1 16 +Width: 514 +Flags: HW +HStem: -5 37<184 238> 590 37<275 330> +LayerCount: 2 +Fore +SplineSet +165 148 m 0 + 165 90 177 32 208 32 c 0 + 268 32 350 233 350 451 c 0 + 350 482 349 590 307 590 c 0 + 245 590 165 388 165 148 c 0 +44 288 m 0 + 81 476 212 627 317 627 c 0 + 444 627 501 491 469 326 c 0 + 437 161 312 -5 191 -5 c 0 + 81 -5 12 123 44 288 c 0 +EndSplineSet +EndChar + +StartChar: one.ltr +Encoding: 65537 -1 17 +Width: 514 +Flags: HW +HStem: -3 28<102 162 307 357> 607 20G<379 409> +VStem: 101 313 +LayerCount: 2 +Fore +SplineSet +184 468 m 1 + 177 472 174 483 174 490 c 0 + 174 492 175 495 178 498 c 1 + 278 552 354 595 404 627 c 9 + 406 627 l 2 + 411 627 416 605 414 592 c 1 + 414 592 387 537 366 429 c 2 + 312 132 l 2 + 306 100 301 71 302 45 c 0 + 303 34 351 25 358 25 c 0 + 361 25 359 15 358 8 c 0 + 357 3 356 -1 355 -3 c 1 + 319 -1 237 2 201 2 c 0 + 165 2 138 -1 101 -3 c 1 + 97 2 101 25 106 25 c 0 + 117 25 164 34 169 45 c 0 + 178 65 182 82 185 101 c 2 + 244 405 l 2 + 256 464 262 494 243 494 c 0 + 236 494 202 477 184 468 c 1 +EndSplineSet +EndChar + +StartChar: two.ltr +Encoding: 65538 -1 18 +Width: 514 +Flags: HW +HStem: 0 107<165 379> 544 83<256 370> +VStem: 344 139<393 520> +LayerCount: 2 +Fore +SplineSet +482 479 m 0 + 482 395 425 330 350 264 c 0 + 261 186 163 107 165 107 c 9 + 333 107 l 2 + 385 107 404 141 416 172 c 0 + 418 177 423 181 431 181 c 0 + 438 181 443 177 447 174 c 1 + 426 125 378 18 370 0 c 9 + 370 0 45 0 38 0 c 1 + 34 0 30 9 31 21 c 1 + 85 70 196 187 251 254 c 0 + 312 328 344 396 344 457 c 0 + 344 508 316 544 263 544 c 0 + 206 544 161 490 154 481 c 1 + 145 481 137 493 136 501 c 1 + 147 525 239 627 334 627 c 0 + 405 627 482 574 482 479 c 0 +EndSplineSet +EndChar + +StartChar: three.ltr +Encoding: 65539 -1 19 +Width: 514 +Flags: HW +HStem: -5 37<180 270> 308 31<197 243> 550 77<263 365> +VStem: 52 108<49 111> 333 128<141 288> 353 111<434 526> +LayerCount: 2 +Fore +SplineSet +342 627 m 0xf4 + 388 627 464 601 464 503 c 0xf4 + 464 419 381 374 344 363 c 1 + 399 356 461 303 461 231 c 0 + 461 81 302 -5 192 -5 c 0 + 127 -5 83 12 61 28 c 1 + 57 33 52 47 52 58 c 0 + 52 111 88 123 109 123 c 0 + 144 123 151 95 160 76 c 0 + 172 53 198 32 222 32 c 0 + 278 32 333 101 333 211 c 0xf8 + 333 276 309 313 243 313 c 0 + 229 313 213 311 201 308 c 1 + 198 313 197 320 197 325 c 0 + 197 329 199 336 201 339 c 1 + 264 347 353 389 353 463 c 0 + 353 522 318 550 277 550 c 0 + 222 550 174 487 165 479 c 1 + 157 479 146 492 146 501 c 1 + 174 550 264 627 342 627 c 0xf4 +EndSplineSet +EndChar + +StartChar: four.ltr +Encoding: 65540 -1 20 +Width: 514 +Flags: HW +HStem: -5 21G<292 320> 171 65<121 282 418 472> 607 20G<464 472> +LayerCount: 2 +Fore +SplineSet +468 627 m 0 + 477 627 490 610 488 602 c 2 + 418 236 l 25 + 470 236 l 18 + 476 236 478 229 478 221 c 0 + 478 203 468 180 461 171 c 1 + 404 171 l 25 + 372 2 l 1 + 372 2 338 -5 303 -5 c 0 + 282 -5 249 -2 250 5 c 2 + 282 171 l 25 + 33 171 l 1 + 27 175 24 187 25 193 c 1 + 440 611 l 2 + 450 621 461 627 468 627 c 0 +336 454 m 25 + 121 236 l 25 + 294 236 l 25 + 336 454 l 25 +EndSplineSet +EndChar + +StartChar: five.ltr +Encoding: 65541 -1 21 +Width: 514 +Flags: HW +HStem: -5 37<177 267> 323 83<203 295> 518 103<224 418> +VStem: 49 108<49 111> 330 125<150 288> +LayerCount: 2 +Fore +SplineSet +455 241 m 0 + 455 91 299 -5 189 -5 c 0 + 124 -5 80 12 58 28 c 1 + 54 33 49 47 49 58 c 0 + 49 111 85 123 106 123 c 0 + 141 123 148 95 157 76 c 0 + 169 53 195 32 219 32 c 0 + 275 32 330 101 330 211 c 0 + 330 283 294 323 227 323 c 3 + 207 323 172 318 153 312 c 1 + 150 314 146 320 142 325 c 1 + 175 457 200 577 209 620 c 1 + 298 620 407 620 456 631 c 1 + 462 627 466 619 466 616 c 1 + 466 597 430 541 420 527 c 1 + 376 517 246 518 229 518 c 1 + 226 506 210 428 200 383 c 1 + 227 401 280 406 291 406 c 0 + 366 406 455 349 455 241 c 0 +EndSplineSet +EndChar + +StartChar: six.ltr +Encoding: 65542 -1 22 +Width: 514 +VWidth: 0 +Flags: HW +HStem: -6 34<187 247> 314 51<250 346> 604 23<452 473> +VStem: 41 127<86 279> 311 128<128 303> +LayerCount: 2 +Fore +SplineSet +319 365 m 0 + 394 365 438 309 438 223 c 0 + 438 96 330 -6 206 -6 c 0 + 128 -6 41 63 41 174 c 0 + 41 264 79 363 165 456 c 0 + 230 527 344 609 469 627 c 1 + 475 623 475 610 474 604 c 1 + 354 553 275 478 223 367 c 0 + 183 280 168 197 168 130 c 0 + 168 63 189 28 214 28 c 0 + 269 28 311 148 311 223 c 0 + 311 271 300 314 260 314 c 0 + 251 314 243 315 237 312 c 1 + 234 314 232 318 232 326 c 3 + 232 338 283 365 319 365 c 0 +EndSplineSet +EndChar + +StartChar: seven.ltr +Encoding: 65543 -1 23 +Width: 514 +Flags: HW +HStem: -10 21G<69 73> 514 107<122 376> +LayerCount: 2 +Fore +SplineSet +35 13 m 1 + 85 72 257 326 376 514 c 1 + 166 514 l 2 + 121 514 97 469 78 432 c 0 + 76 429 75 427 66 426 c 0 + 57 425 49 430 46 434 c 1 + 67 482 118 591 131 621 c 1 + 146 621 393 622 393 622 c 2 + 425 622 469 626 475 626 c 0 + 481 626 480 616 479 611 c 0 + 477 602 463 584 442 552 c 2 + 86 -8 l 1 + 82 -10 74 -10 72 -10 c 0 + 65 -10 31 -6 35 13 c 1 +EndSplineSet +EndChar + +StartChar: eight.ltr +Encoding: 65544 -1 24 +Width: 514 +Flags: HW +HStem: -6 36<186 268> 594 33<277 343> +LayerCount: 2 +Fore +SplineSet +322 627 m 0 + 402 627 493 593 472 481 c 0 + 458 410 398 370 341 347 c 0 + 337 345 338 343 340 341 c 0 + 399 290 446 225 432 158 c 0 + 409 44 299 -6 204 -6 c 0 + 104 -6 24 69 43 164 c 0 + 60 250 136 282 187 304 c 0 + 190 305 190 309 188 310 c 0 + 155 339 116 402 130 474 c 0 + 147 557 223 627 322 627 c 0 +313 594 m 0 + 278 594 246 553 246 496 c 0 + 246 440 274 403 307 374 c 0 + 309 373 310 372 311 372 c 0 + 312 372 313 372 315 375 c 0 + 340 410 360 454 360 507 c 0 + 360 541 353 594 313 594 c 0 +223 30 m 0 + 267 30 299 73 306 117 c 0 + 320 203 232 269 223 277 c 0 + 221 278 221 278 219 278 c 0 + 218 278 217 277 216 276 c 0 + 196 244 181 207 172 147 c 0 + 161 72 183 30 223 30 c 0 +EndSplineSet +EndChar + +StartChar: nine.ltr +Encoding: 65545 -1 25 +Width: 514 +VWidth: 0 +Flags: HW +HStem: -6 23<42 63> 256 51<169 264> 593 34<268 328> +VStem: 76 128<318 493> 347 127<342 535> +LayerCount: 2 +Fore +SplineSet +195 256 m 0 + 120 256 76 312 76 398 c 0 + 76 525 185 627 309 627 c 0 + 387 627 474 558 474 447 c 0 + 474 357 436 258 350 165 c 0 + 285 94 171 12 46 -6 c 1 + 40 -2 40 12 41 18 c 1 + 161 69 240 143 292 254 c 0 + 332 341 347 424 347 491 c 0 + 347 558 326 593 301 593 c 0 + 246 593 204 473 204 398 c 0 + 204 350 215 307 255 307 c 0 + 264 307 271 307 277 310 c 1 + 280 308 282 303 282 295 c 3 + 282 283 231 256 195 256 c 0 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 26 +Width: 220 +Flags: W +HStem: -11 107<69 153> 313 107<69 153> +VStem: 57 107<1 85 325 410> +LayerCount: 2 +Fore +SplineSet +57 44 m 0 + 57 73 82 97 111 97 c 0 + 140 97 164 73 164 44 c 0 + 164 15 140 -11 111 -11 c 0 + 82 -11 57 15 57 44 c 0 +57 368 m 0 + 57 397 82 421 111 421 c 0 + 140 421 164 397 164 368 c 0 + 164 339 140 313 111 313 c 0 + 82 313 57 339 57 368 c 0 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 27 +Width: 226 +Flags: W +HStem: 313 107<72 156> +VStem: 66 101<25 109 325 410> 99 68<-26 63> +LayerCount: 2 +Fore +SplineSet +124 120 m 0xc0 + 132 120 142 117 149 113 c 1 + 156 101 167 82 167 45 c 0xc0 + 167 -11 102 -109 52 -136 c 1 + 45 -136 37 -121 37 -115 c 1 + 57 -100 99 -69 99 -7 c 0xa0 + 99 25 66 34 66 72 c 0 + 66 93 89 120 124 120 c 0xc0 +60 368 m 0 + 60 397 85 421 114 421 c 0 + 143 421 167 397 167 368 c 0 + 167 339 143 313 114 313 c 0 + 85 313 60 339 60 368 c 0 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 28 +Width: 480 +Flags: W +HStem: 400 20G<412 414> +LayerCount: 2 +Fore +SplineSet +434 34 m 0 + 434 27 424 -15 418 -15 c 0 + 417 -15 415 -14 413 -13 c 2 + 47 173 l 2 + 32 181 29 195 29 212 c 0 + 29 223 37 230 47 235 c 2 + 407 418 l 2 + 409 419 411 420 412 420 c 0 + 415 420 422 410 429 374 c 0 + 430 368 426 365 426 365 c 1 + 107 204 l 1 + 431 40 l 1 + 431 40 434 39 434 34 c 0 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 29 +Width: 551 +Flags: W +HStem: 117 54<79 474> 258 54<79 474> +LayerCount: 2 +Fore +SplineSet +467 117 m 1 + 310 117 239 117 71 117 c 1 + 59 117 72 166 86 171 c 9 + 480 171 l 17 + 494 171 481 124 467 117 c 1 +467 258 m 1 + 310 258 239 258 71 258 c 1 + 59 258 72 307 86 312 c 9 + 480 312 l 17 + 494 312 481 265 467 258 c 1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 30 +Width: 481 +Flags: W +HStem: 400 20G<66 69> +LayerCount: 2 +Fore +SplineSet +47 34 m 0 + 47 38 50 40 50 40 c 1 + 373 204 l 1 + 56 365 l 1 + 56 365 53 366 53 373 c 0 + 53 391 64 420 68 420 c 0 + 69 420 71 419 73 418 c 2 + 435 235 l 2 + 445 230 451 223 451 212 c 0 + 451 195 450 181 435 173 c 2 + 68 -13 l 2 + 66 -14 64 -15 63 -15 c 0 + 57 -15 47 26 47 34 c 0 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 31 +Width: 347 +Flags: W +HStem: -11 107<73 158> 535 92<63 179> 556 71<81 188> +VStem: 62 107<1 85> 94 28<156 236> 254 49<422 523> +LayerCount: 2 +Fore +SplineSet +62 44 m 0x94 + 62 73 87 97 116 97 c 0 + 145 97 169 73 169 44 c 0 + 169 15 145 -11 116 -11 c 0 + 87 -11 62 15 62 44 c 0x94 +98 535 m 0xd4 + 84 535 55 552 55 584 c 0 + 55 599 58 613 63 620 c 1 + 73 625 89 627 110 627 c 0 + 174 627 303 560 303 446 c 0 + 303 380 277 339 204 297 c 0 + 178 281 134 247 128 236 c 0 + 119 220 122 190 122 168 c 1 + 118 160 115 156 106 155 c 1 + 101 157 97 160 94 166 c 1xcc + 89 187 86 229 86 255 c 0 + 86 327 133 353 169 376 c 0 + 217 406 254 429 254 476 c 0 + 254 527 219 556 182 556 c 0xb4 + 130 556 123 535 98 535 c 0xd4 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 32 +Width: 730 +Flags: W +HStem: -121 18<255 279> -7 42<483 570> -5 57<276 333> 380 45<381 486> 525 39<307 506> +VStem: 48 39<61 280> 189 72<64 227> 413 64<41 122> 656 39<153 369> +LayerCount: 2 +Back +SplineSet +16.4404296875 222.65625 m 1 + 26.3203125 273.484375 45.427734375 322.051757812 73.7607421875 368.358398438 c 0 + 102.094726562 414.666015625 135.834960938 454.5546875 174.98046875 488.025390625 c 0 + 214.125976562 521.49609375 258.157226562 548.135742188 307.076171875 567.943359375 c 0 + 355.994140625 587.751953125 405.158203125 597.65625 454.568359375 597.65625 c 0 + 487.58984375 597.65625 519.0234375 593.189453125 548.869140625 584.255859375 c 0 + 578.71484375 575.322265625 605.330078125 562.716796875 628.712890625 546.44140625 c 0 + 652.096679688 530.165039062 672.948242188 510.615234375 691.26953125 487.79296875 c 0 + 709.590820312 464.970703125 723.736328125 439.669921875 733.708007812 411.892578125 c 0 + 743.678710938 384.114257812 750.17578125 354.256835938 753.198242188 322.3203125 c 0 + 756.219726562 290.3828125 754.124023438 257.161132812 746.909179688 222.65625 c 1 + 737.029296875 171.828125 717.921875 123.260742188 689.587890625 76.9541015625 c 0 + 661.254882812 30.646484375 627.514648438 -9.2421875 588.369140625 -42.712890625 c 0 + 549.224609375 -76.18359375 505.192382812 -102.823242188 456.274414062 -122.630859375 c 0 + 407.35546875 -142.439453125 358.19140625 -152.34375 308.782226562 -152.34375 c 0 + 275.760742188 -152.34375 244.327148438 -147.876953125 214.481445312 -138.943359375 c 0 + 184.634765625 -130.009765625 158.020507812 -117.404296875 134.63671875 -101.12890625 c 0 + 111.25390625 -84.8525390625 90.4013671875 -65.302734375 72.0810546875 -42.48046875 c 0 + 53.759765625 -19.658203125 39.61328125 5.642578125 29.6416015625 33.419921875 c 0 + 19.6708984375 61.1982421875 13.173828125 91.0556640625 10.1513671875 122.9921875 c 0 + 7.1298828125 154.9296875 9.2255859375 188.151367188 16.4404296875 222.65625 c 1 +66.0556640625 221.6796875 m 1 + 74.6201171875 265.741210938 91.1416015625 307.876953125 115.618164062 348.0859375 c 0 + 140.094726562 388.294921875 169.245117188 422.969726562 203.068359375 452.109375 c 0 + 236.891601562 481.25 274.971679688 504.453125 317.309570312 521.71875 c 0 + 359.646484375 538.984375 402.215820312 547.6171875 445.015625 547.6171875 c 0 + 473.625976562 547.6171875 500.840820312 543.721679688 526.662109375 535.9296875 c 0 + 552.482421875 528.138671875 575.479492188 517.154296875 595.653320312 502.975585938 c 0 + 615.826171875 488.797851562 633.80859375 471.77734375 649.598632812 451.9140625 c 0 + 665.389648438 432.05078125 677.559570312 410.047851562 686.109375 385.904296875 c 0 + 694.659179688 361.760742188 700.221679688 335.828125 702.794921875 308.106445312 c 0 + 705.369140625 280.384765625 703.525390625 251.575195312 697.265625 221.6796875 c 1 + 688.701171875 177.618164062 672.1796875 135.482421875 647.703125 95.2734375 c 0 + 623.225585938 55.064453125 594.075195312 20.3896484375 560.251953125 -8.7509765625 c 0 + 526.428710938 -37.8916015625 488.34765625 -61.0947265625 446.009765625 -78.3603515625 c 0 + 403.671875 -95.6259765625 361.103515625 -104.258789062 318.303710938 -104.258789062 c 0 + 289.693359375 -104.258789062 262.477539062 -100.36328125 236.657226562 -92.572265625 c 0 + 210.8359375 -84.7802734375 187.83984375 -73.7958984375 167.666015625 -59.6171875 c 0 + 147.493164062 -45.439453125 129.51171875 -28.4189453125 113.720703125 -8.5556640625 c 0 + 97.9306640625 11.3076171875 85.7607421875 33.310546875 77.2109375 57.4541015625 c 0 + 68.6611328125 81.5986328125 63.099609375 107.53125 60.525390625 135.252929688 c 0 + 57.9521484375 162.974609375 59.794921875 191.784179688 66.0556640625 221.6796875 c 1 +EndSplineSet +Fore +SplineSet +408 564 m 0xdf80 + 599 564 695 416 695 264 c 0 + 695 115 608 -7 494 -7 c 0xdf80 + 446 -7 413 17 413 77 c 0 + 413 89 417 114 420 122 c 1 + 401 86 339 -5 282 -5 c 3xbf80 + 221 -5 189 59 189 127 c 3 + 189 270 335 425 469 425 c 0 + 503 425 521 419 540 412 c 9 + 480 104 l 2 + 479 100 478 84 478 79 c 0 + 478 48 498 35 524 35 c 0 + 586 35 656 139 656 261 c 0 + 656 393 578 525 408 525 c 0 + 209 525 87 336 87 166 c 0 + 87 52 147 -35 217 -76 c 0 + 252 -97 271 -101 290 -104 c 1 + 290 -112 267 -121 255 -121 c 0 + 243 -121 230 -120 217 -115 c 0 + 127 -82 48 28 48 166 c 0 + 48 357 181 564 408 564 c 0xdf80 +428 380 m 3 + 353 380 262 259 262 147 c 0 + 262 86 278 52 312 52 c 3xbf80 + 361 52 429 174 448 268 c 2 + 468 367 l 17 + 459 377 441 380 428 380 c 3 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 33 +Width: 605 +Flags: HW +HStem: -4 36<-57 -2 88 141 309 370 521 568> 220 47<193 346> 627 20G<382 391> +LayerCount: 2 +Fore +SplineSet +60 131 m 2 + 347 609 l 2 + 355 622 377 646 387 646 c 0 + 395 646 404 643 405 640 c 1 + 495 145 l 2 + 501 115 503 95 507 74 c 0 + 515 34 564 32 571 32 c 1 + 574 23 569 0 565 -4 c 1 + 529 -2 485 4 445 4 c 0 + 403 4 339 -2 306 -4 c 1 + 302 1 309 32 314 32 c 1 + 330 32 355 38 370 50 c 0 + 377 55 381 59 382 66 c 0 + 384 75 356 215 356 215 c 1 + 356 215 354 219 351 219 c 0 + 317 221 286 220 264 220 c 0 + 227 220 201 220 169 219 c 0 + 166 219 163 216 162 214 c 1 + 162 214 129 159 113 132 c 0 + 99 108 81 72 80 65 c 0 + 75 40 137 32 144 32 c 1 + 148 25 141 0 137 -4 c 1 + 106 0 80 4 40 4 c 0 + -2 4 -27 0 -59 -4 c 1 + -62 0 -60 20 -54 31 c 1 + -43 31 3 46 15 62 c 0 + 36 89 43 104 60 131 c 2 +308 465 m 1 + 193 273 l 1 + 193 273 193 270 195 270 c 0 + 213 268 248 267 269 267 c 0 + 297 267 314 267 342 269 c 0 + 344 269 346 273 346 273 c 1 + 308 465 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 34 +Width: 575 +Flags: HW +HStem: -3 41<-2 64 202 315> 324 38<256 352> 605 39<115 167 305 394> +LayerCount: 2 +Fore +SplineSet +256 362 m 1 + 303 362 l 2 + 348 362 387 403 402 476 c 0 + 420 569 399 605 353 605 c 0 + 332 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 256 362 l 1 +248 324 m 1 + 206 106 l 2 + 205 100 197 62 202 50 c 0 + 207 39 234 38 257 38 c 0 + 299 38 359 71 379 172 c 0 + 394 245 381 324 295 324 c 2 + 248 324 l 1 +387 645 m 0 + 471 645 562 603 540 490 c 0 + 524 412 442 367 416 357 c 0 + 408 354 409 352 410 352 c 0 + 454 346 544 290 524 188 c 0 + 511 124 461 65 398 29 c 0 + 337 -5 270 -4 203 -3 c 0 + 165 -3 27 -2 -8 -3 c 1 + -11 3 -7 26 -1 33 c 1 + 11 34 54 37 61 50 c 0 + 72 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 + 285 642 334 645 387 645 c 0 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 35 +Width: 630 +Flags: HW +HStem: -7 43<284 442> 609 42<351 511> +VStem: 51 141<160 395> 577 33<469 532> +LayerCount: 2 +Fore +SplineSet +433 609 m 0 + 305 609 191 467 191 262 c 0 + 191 172 228 36 356 36 c 0 + 402 36 445 54 474 78 c 0 + 519 115 558 191 561 199 c 1 + 575 199 585 195 591 188 c 1 + 589 177 538 47 524 39 c 0 + 469 9 413 -7 329 -7 c 0 + 139 -7 51 139 51 270 c 0 + 51 514 260 651 433 651 c 0 + 493 651 571 635 623 623 c 1 + 623 612 612 494 610 482 c 0 + 609 476 600 469 589 469 c 3 + 584 469 580 469 577 473 c 1 + 575 511 548 609 433 609 c 0 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 36 +Width: 703 +Flags: HW +HStem: -3 41<-2 64 205 361> 605 39<115 167 305 434> +LayerCount: 2 +Fore +SplineSet +289 534 m 2 + 212 138 l 2 + 211 132 200 81 204 61 c 0 + 207 47 234 38 257 38 c 0 + 405 38 488 117 525 307 c 0 + 562 498 488 605 353 605 c 0 + 332 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 +387 645 m 0 + 597 645 709 510 670 310 c 0 + 626 81 450 -3 254 -3 c 0 + 216 -3 27 -2 -8 -3 c 1 + -11 3 -7 26 -1 33 c 1 + 11 34 54 37 61 50 c 0 + 72 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 + 285 642 333 644 387 645 c 0 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 37 +Width: 558 +Flags: HW +HStem: -3 36<-4 61> -2 43<204 395> 303 46<255 377> 605 36<116 167 305 475> +VStem: 397 28<229 269> 434 28<390 425> 507 35<499 567> +LayerCount: 2 +Back +SplineSet +104.453125 1.953125 m 0 + 87.8232421875 1.953125 73.3837890625 1.6220703125 61.134765625 0.9599609375 c 0 + 48.8857421875 0.2978515625 36.423828125 -0.55859375 23.748046875 -1.611328125 c 0 + 11.0712890625 -2.6630859375 -0.763671875 -3.4287109375 -11.7578125 -3.90625 c 1 + -13.0595703125 -2.6044921875 -13.7109375 0.3251953125 -13.7109375 4.8828125 c 0 + -13.7109375 8.494140625 -13.19140625 12.2822265625 -12.1513671875 16.2470703125 c 0 + -11.111328125 20.2119140625 -9.9814453125 23.3779296875 -8.7607421875 25.7451171875 c 0 + -7.5400390625 28.11328125 -6.5859375 29.296875 -5.8984375 29.296875 c 0 + 0.8671875 29.296875 11.3935546875 31.9404296875 25.6806640625 37.2265625 c 0 + 39.96875 42.5126953125 48.6474609375 48.0078125 51.71875 53.7109375 c 0 + 59.794921875 67.6611328125 67.9326171875 96.306640625 76.1328125 139.6484375 c 2 + 147.421875 508.7890625 l 2 + 147.70703125 510.498046875 148.634765625 515.694335938 150.205078125 524.377929688 c 0 + 151.775390625 533.060546875 153.001953125 540.139648438 153.885742188 545.614257812 c 0 + 154.76953125 551.088867188 155.59765625 557.712890625 156.369140625 565.484375 c 0 + 157.141601562 573.256835938 157.4140625 579.749023438 157.1875 584.9609375 c 1 + 156.2890625 590.349609375 149.314453125 596.416992188 136.263671875 603.163085938 c 0 + 123.211914062 609.908203125 113.584960938 613.28125 107.3828125 613.28125 c 0 + 106.081054688 613.28125 105.4296875 615.559570312 105.4296875 620.1171875 c 0 + 105.4296875 633.137695312 107.708007812 641.926757812 112.265625 646.484375 c 1 + 164.4140625 644.53125 207.057617188 643.5546875 240.1953125 643.5546875 c 0 + 274.865234375 643.850585938 323.76171875 644.739257812 386.884765625 646.21875 c 0 + 450.0078125 647.698242188 499.092773438 648.4375 534.140625 648.4375 c 1 + 532.838867188 628.90625 532.1875 599.284179688 532.1875 559.5703125 c 2 + 532.1875 503.90625 l 1 + 528.932617188 500.651367188 521.770507812 499.0234375 510.703125 499.0234375 c 0 + 503.801757812 499.0234375 499.895507812 501.301757812 498.984375 505.859375 c 1 + 492.076171875 530.532226562 478.041992188 551.673828125 456.881835938 569.28515625 c 0 + 435.720703125 586.897460938 413.296875 595.703125 389.609375 595.703125 c 2 + 355.4296875 595.703125 l 2 + 334.43359375 595.703125 319.3828125 594.944335938 310.278320312 593.426757812 c 0 + 301.172851562 591.909179688 295.715820312 588.436523438 293.90625 583.0078125 c 0 + 285.970703125 561.469726562 279.4609375 536.079101562 274.375 506.8359375 c 1 + 245.078125 356.4453125 l 2 + 244.633789062 354.22265625 247.958007812 352.689453125 255.05078125 351.848632812 c 0 + 262.143554688 351.006835938 271.514648438 350.5859375 283.1640625 350.5859375 c 2 + 360.3125 350.5859375 l 2 + 365.831054688 350.5859375 370.02734375 350.663085938 372.901367188 350.81640625 c 0 + 375.775390625 350.970703125 378.938476562 351.942382812 382.391601562 353.732421875 c 0 + 385.844726562 355.522460938 388.408203125 357.278320312 390.081054688 359 c 0 + 391.754882812 360.721679688 394.231445312 364.415039062 397.510742188 370.081054688 c 0 + 400.7890625 375.74609375 403.60546875 381.182617188 405.959960938 386.388671875 c 0 + 408.313476562 391.595703125 411.978515625 399.84375 416.953125 411.1328125 c 0 + 418.776367188 415.690429688 423.984375 417.96875 432.578125 417.96875 c 0 + 442.77734375 417.96875 448.962890625 416.340820312 451.1328125 413.0859375 c 1 + 415.9765625 228.515625 l 1 + 415.036132812 227.575195312 412.278320312 226.689453125 407.703125 225.857421875 c 0 + 403.127929688 225.025390625 399.049804688 224.609375 395.46875 224.609375 c 0 + 388.046875 224.609375 383.815429688 227.213867188 382.7734375 232.421875 c 1 + 382.213867188 248.653320312 381.296875 260.487304688 380.021484375 267.923828125 c 0 + 378.747070312 275.359375 376.083007812 281.104492188 372.03125 285.15625 c 0 + 367.350585938 289.836914062 359.641601562 292.959960938 348.90234375 294.526367188 c 0 + 338.1640625 296.091796875 321.458984375 296.875 298.7890625 296.875 c 0 + 255.168945312 296.875 232.708007812 293.9453125 231.40625 288.0859375 c 2 + 203.0859375 137.6953125 l 2 + 197.877929688 111.653320312 195.2734375 92.4482421875 195.2734375 80.078125 c 0 + 195.2734375 71.9287109375 196.233398438 66.244140625 198.153320312 63.0244140625 c 0 + 200.073242188 59.8046875 205.206054688 57.28515625 213.551757812 55.46484375 c 0 + 221.897460938 53.64453125 235.661132812 52.734375 254.84375 52.734375 c 2 + 278.28125 52.734375 l 2 + 295.1953125 52.734375 313.625 55.115234375 333.5703125 59.8759765625 c 0 + 353.516601562 64.6376953125 370.893554688 70.720703125 385.703125 78.125 c 0 + 396.9296875 83.73828125 410.596679688 94.73046875 426.705078125 111.099609375 c 0 + 442.813476562 127.469726562 456.489257812 145.775390625 467.734375 166.015625 c 0 + 469.6875 169.921875 474.245117188 171.875 481.40625 171.875 c 0 + 486.072265625 171.875 491.399414062 171.248046875 497.389648438 169.994140625 c 0 + 503.379882812 168.741210938 506.840820312 167.4140625 507.7734375 166.015625 c 1 + 505.0234375 160.711914062 497.912109375 147.159179688 486.44140625 125.359375 c 0 + 474.970703125 103.559570312 466.501953125 87.2978515625 461.03515625 76.5751953125 c 0 + 455.569335938 65.8515625 449.17578125 52.5927734375 441.85546875 36.7978515625 c 0 + 434.53515625 21.0029296875 429.1640625 8.0859375 425.7421875 -1.953125 c 1 + 391.5625 -1.953125 336.061523438 -1.3017578125 259.23828125 0 c 0 + 182.415039062 1.3017578125 130.8203125 1.953125 104.453125 1.953125 c 0 +EndSplineSet +Fore +SplineSet +247 642 m 0xbe + 285 642 490 647 544 648 c 1 + 541 599 542 548 542 504 c 1 + 539 501 527 499 520 499 c 0 + 513 499 508 502 507 507 c 0 + 498 561 484 605 428 605 c 2 + 353 605 l 0 + 332 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 255 359 l 2 + 254 353 272 349 292 349 c 2 + 340 349 l 2 + 394 349 409 360 434 417 c 0 + 436 422 438 425 445 425 c 0 + 452 425 460 423 462 420 c 1 + 426 232 l 1 + 424 230 415 229 408 229 c 0 + 401 229 397 231 397 236 c 0 + 395 283 385 292 377 296 c 0 + 367 301 344 303 310 303 c 0 + 285 303 243 301 241 289 c 2 + 212 138 l 2 + 211 132 200 81 204 61 c 0 + 207 47 236 41 259 41 c 0 + 319 41 l 2 + 353 41 385 51 410 73 c 0 + 433 94 453 122 477 166 c 0 + 479 170 484 172 491 172 c 0 + 500 172 515 169 517 166 c 1 + 490 113 451 41 436 -2 c 1 + 411 -2 240 -2 117 -2 c 0x7e + 54 -2 4 -3 -8 -3 c 1 + -11 3 -7 26 -1 33 c 1 + 11 34 54 37 61 50 c 0 + 72 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0xbe +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 38 +Width: 512 +Flags: HW +HStem: -4 36<-5 60 202 261> 299 46<254 375> 605 36<116 167 305 475> +VStem: 396 28<225 265> 433 28<386 421> 507 35<499 567> +LayerCount: 2 +Back +SplineSet +115.1953125 2.9296875 m 0 + 98.287109375 2.9296875 83.4697265625 2.60546875 70.744140625 1.9560546875 c 0 + 58.0185546875 1.3076171875 43.8154296875 0.3291015625 28.1357421875 -0.9794921875 c 0 + 12.4560546875 -2.2890625 -0.841796875 -3.263671875 -11.7578125 -3.90625 c 1 + -13.0595703125 -2.6044921875 -13.7109375 0.3251953125 -13.7109375 4.8828125 c 0 + -13.7109375 8.494140625 -13.19140625 12.2822265625 -12.1513671875 16.2470703125 c 0 + -11.111328125 20.2119140625 -9.9814453125 23.3779296875 -8.7607421875 25.7451171875 c 0 + -7.5400390625 28.11328125 -6.5859375 29.296875 -5.8984375 29.296875 c 0 + 0.8671875 29.296875 11.3935546875 31.9404296875 25.6806640625 37.2265625 c 0 + 39.96875 42.5126953125 48.6474609375 48.0078125 51.71875 53.7109375 c 0 + 59.794921875 67.6611328125 67.9326171875 96.306640625 76.1328125 139.6484375 c 2 + 147.421875 508.7890625 l 2 + 147.70703125 510.498046875 148.634765625 515.694335938 150.205078125 524.377929688 c 0 + 151.775390625 533.060546875 153.001953125 540.139648438 153.885742188 545.614257812 c 0 + 154.76953125 551.088867188 155.59765625 557.712890625 156.369140625 565.484375 c 0 + 157.141601562 573.256835938 157.4140625 579.749023438 157.1875 584.9609375 c 1 + 156.2890625 590.349609375 149.314453125 596.416992188 136.263671875 603.163085938 c 0 + 123.211914062 609.908203125 113.584960938 613.28125 107.3828125 613.28125 c 0 + 106.081054688 613.28125 105.4296875 615.559570312 105.4296875 620.1171875 c 0 + 105.4296875 633.137695312 107.708007812 641.926757812 112.265625 646.484375 c 1 + 164.4140625 644.53125 207.057617188 643.5546875 240.1953125 643.5546875 c 0 + 274.904296875 643.8515625 323.65234375 644.739257812 386.438476562 646.21875 c 0 + 449.225585938 647.698242188 498.134765625 648.4375 533.1640625 648.4375 c 1 + 531.862304688 628.90625 531.2109375 599.284179688 531.2109375 559.5703125 c 2 + 531.2109375 503.90625 l 1 + 527.956054688 500.651367188 520.793945312 499.0234375 509.7265625 499.0234375 c 0 + 502.825195312 499.0234375 498.918945312 501.301757812 498.0078125 505.859375 c 1 + 491.099609375 530.532226562 477.065429688 551.673828125 455.905273438 569.28515625 c 0 + 434.744140625 586.897460938 412.3203125 595.703125 388.6328125 595.703125 c 2 + 354.453125 595.703125 l 2 + 333.45703125 595.703125 318.40625 594.944335938 309.301757812 593.426757812 c 0 + 300.196289062 591.909179688 294.739257812 588.436523438 292.9296875 583.0078125 c 0 + 284.994140625 561.469726562 278.484375 536.079101562 273.3984375 506.8359375 c 1 + 244.1015625 356.4453125 l 2 + 243.657226562 354.22265625 246.981445312 352.689453125 254.07421875 351.848632812 c 0 + 261.166992188 351.006835938 270.538085938 350.5859375 282.1875 350.5859375 c 2 + 359.3359375 350.5859375 l 2 + 364.854492188 350.5859375 369.05078125 350.663085938 371.924804688 350.81640625 c 0 + 374.798828125 350.970703125 377.961914062 351.942382812 381.415039062 353.732421875 c 0 + 384.868164062 355.522460938 387.431640625 357.278320312 389.104492188 359 c 0 + 390.778320312 360.721679688 393.254882812 364.415039062 396.534179688 370.081054688 c 0 + 399.8125 375.74609375 402.62890625 381.182617188 404.983398438 386.388671875 c 0 + 407.336914062 391.595703125 411.001953125 399.84375 415.9765625 411.1328125 c 0 + 417.799804688 415.690429688 423.0078125 417.96875 431.6015625 417.96875 c 0 + 441.80078125 417.96875 447.986328125 416.340820312 450.15625 413.0859375 c 1 + 415 228.515625 l 1 + 414.059570312 227.575195312 411.301757812 226.689453125 406.7265625 225.857421875 c 0 + 402.151367188 225.025390625 398.073242188 224.609375 394.4921875 224.609375 c 0 + 387.0703125 224.609375 382.838867188 227.213867188 381.796875 232.421875 c 1 + 381.237304688 248.653320312 380.3203125 260.487304688 379.044921875 267.923828125 c 0 + 377.770507812 275.359375 375.106445312 281.104492188 371.0546875 285.15625 c 0 + 366.374023438 289.836914062 358.665039062 292.959960938 347.92578125 294.526367188 c 0 + 337.1875 296.091796875 320.482421875 296.875 297.8125 296.875 c 0 + 254.192382812 296.875 231.731445312 293.9453125 230.4296875 288.0859375 c 2 + 202.109375 137.6953125 l 1 + 196.25 108.3984375 193.3203125 86.5888671875 193.3203125 72.265625 c 0 + 193.3203125 64.4013671875 196.005859375 57.5634765625 201.375976562 51.751953125 c 0 + 206.747070312 45.9404296875 212.821289062 41.6630859375 219.600585938 38.919921875 c 0 + 226.37890625 36.1767578125 234.236328125 34.005859375 243.172851562 32.408203125 c 0 + 252.110351562 30.810546875 258.731445312 29.892578125 263.038085938 29.654296875 c 0 + 267.34375 29.416015625 271.123046875 29.296875 274.375 29.296875 c 0 + 276.76171875 29.296875 277.087890625 24.0888671875 275.3515625 13.671875 c 0 + 273.3984375 3.90625 271.770507812 -1.953125 270.46875 -3.90625 c 1 + 186.159179688 0.6513671875 134.401367188 2.9296875 115.1953125 2.9296875 c 0 +EndSplineSet +Fore +SplineSet +247 642 m 0 + 285 642 490 647 544 648 c 1 + 541 599 542 548 542 504 c 1 + 539 501 526 499 519 499 c 0 + 512 499 508 502 507 507 c 0 + 498 561 484 605 428 605 c 2 + 352 605 l 0 + 331 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 254 355 l 2 + 253 349 271 345 291 345 c 2 + 339 345 l 2 + 393 345 408 356 433 413 c 0 + 435 418 437 421 444 421 c 0 + 451 421 459 419 461 416 c 1 + 425 229 l 1 + 423 227 414 225 407 225 c 0 + 400 225 396 227 396 232 c 0 + 394 279 384 288 376 292 c 0 + 366 297 342 299 308 299 c 0 + 283 299 242 297 240 285 c 2 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 253 33 265 32 c 1 + 268 25 263 2 258 -4 c 1 + 224 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 39 +Width: 662 +Flags: HW +HStem: -7 43<284 415> 268 36<394 447 594 643> 609 42<351 511> +VStem: 51 141<160 395> 450 103<99 209> 577 33<469 532> +LayerCount: 2 +Fore +SplineSet +433 651 m 0 + 493 651 571 635 623 623 c 1 + 623 612 612 494 610 482 c 0 + 609 476 600 469 589 469 c 3 + 584 469 580 469 577 473 c 1 + 575 511 547 609 433 609 c 0 + 305 609 191 467 191 262 c 0 + 191 172 228 36 356 36 c 0 + 389 36 405 44 412 49 c 0 + 416 52 420 56 422 65 c 0 + 425 80 436 144 445 191 c 0 + 449 211 451 220 450 241 c 0 + 448 265 402 268 391 268 c 0 + 386 268 391 299 397 304 c 1 + 443 302 494 298 540 298 c 0 + 578 298 610 302 647 304 c 1 + 648 291 643 268 640 268 c 1 + 633 268 606 262 594 255 c 0 + 588 251 579 232 575 213 c 0 + 568 177 560 129 553 96 c 0 + 551 87 554 72 553 67 c 0 + 551 56 530 41 517 35 c 0 + 465 10 413 -7 329 -7 c 0 + 139 -7 51 139 51 270 c 0 + 51 514 260 651 433 651 c 0 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 40 +Width: 690 +Flags: HW +HStem: -4 36<-5 60 202 253 341 406 548 599> 310 50<258 463> 610 36<115 166 308 373 460 512 653 718> +LayerCount: 2 +Back +SplineSet +356.40625 360.3515625 m 0 + 428.671875 360.3515625 465.129882812 362.3046875 465.78125 366.2109375 c 2 + 493.125 510.7421875 l 1 + 498.984375 545.8984375 501.9140625 570.963867188 501.9140625 585.9375 c 0 + 501.9140625 591.834960938 500.08203125 596.791992188 496.416992188 600.80859375 c 0 + 492.751953125 604.826171875 488.008789062 607.637695312 482.188476562 609.243164062 c 0 + 476.3671875 610.849609375 471.375 611.923828125 467.211914062 612.466796875 c 0 + 463.047851562 613.009765625 458.990234375 613.28125 455.0390625 613.28125 c 0 + 453.737304688 613.28125 453.0859375 615.234375 453.0859375 619.140625 c 0 + 453.0859375 623.643554688 453.91015625 628.848632812 455.55859375 634.756835938 c 0 + 457.20703125 640.6640625 458.987304688 644.573242188 460.8984375 646.484375 c 1 + 469.318359375 646.083007812 482.56640625 645.328125 500.640625 644.217773438 c 0 + 518.715820312 643.108398438 534.97265625 642.232421875 549.411132812 641.588867188 c 0 + 563.849609375 640.946289062 577.314453125 640.625 589.8046875 640.625 c 0 + 601.724609375 640.625 614.31640625 640.9453125 627.581054688 641.5859375 c 0 + 640.844726562 642.225585938 655.700195312 643.104492188 672.145507812 644.221679688 c 0 + 688.591796875 645.338867188 700.532226562 646.092773438 707.96875 646.484375 c 1 + 707.96875 640.625 l 2 + 707.96875 634.124023438 707.341796875 628.645507812 706.088867188 624.189453125 c 0 + 704.834960938 619.733398438 703.592773438 616.801757812 702.361328125 615.393554688 c 0 + 701.130859375 613.985351562 700.069335938 613.28125 699.1796875 613.28125 c 0 + 694.375976562 613.28125 684.543945312 610.559570312 669.682617188 605.115234375 c 0 + 654.821289062 599.670898438 646.099609375 594.580078125 643.515625 589.84375 c 0 + 642.125976562 587.279296875 640.833007812 584.73046875 639.635742188 582.196289062 c 0 + 638.438476562 579.663085938 637.287109375 576.84765625 636.182617188 573.751953125 c 0 + 635.078125 570.65625 634.13671875 568.05078125 633.358398438 565.93359375 c 0 + 632.580078125 563.817382812 631.702148438 560.8203125 630.725585938 556.943359375 c 0 + 629.748046875 553.06640625 629.015625 550.223632812 628.528320312 548.416992188 c 0 + 628.040039062 546.610351562 627.306640625 543.32421875 626.329101562 538.55859375 c 0 + 625.350585938 533.79296875 624.698242188 530.608398438 624.372070312 529.00390625 c 0 + 624.046875 527.399414062 623.329101562 523.716796875 622.221679688 517.956054688 c 0 + 621.114257812 512.194335938 620.399414062 508.48828125 620.078125 506.8359375 c 2 + 547.8125 135.7421875 l 2 + 547.0390625 131.744140625 545.94140625 126.330078125 544.521484375 119.500976562 c 0 + 543.1015625 112.670898438 542.069335938 107.514648438 541.423828125 104.030273438 c 0 + 540.77734375 100.546875 540.049804688 96.115234375 539.240234375 90.7353515625 c 0 + 538.431640625 85.35546875 537.8671875 80.0419921875 537.548828125 74.7958984375 c 0 + 537.229492188 69.5498046875 537.0703125 63.8232421875 537.0703125 57.6171875 c 0 + 537.0703125 50.84375 543.627929688 44.4306640625 556.744140625 38.376953125 c 0 + 569.859375 32.3232421875 579.251953125 29.296875 584.921875 29.296875 c 0 + 586.223632812 29.296875 586.875 27.6689453125 586.875 24.4140625 c 0 + 586.875 20.453125 586.0546875 15.466796875 584.415039062 9.4521484375 c 0 + 582.774414062 3.4384765625 580.990234375 -1.013671875 579.0625 -3.90625 c 1 + 577.724609375 -3.833984375 561.357421875 -2.6767578125 529.962890625 -0.43359375 c 0 + 498.568359375 1.80859375 474.895507812 2.9296875 458.9453125 2.9296875 c 0 + 442.615234375 2.9296875 419.286132812 1.8720703125 388.958007812 -0.244140625 c 0 + 358.630859375 -2.3603515625 339.967773438 -3.5810546875 332.96875 -3.90625 c 1 + 332.317382812 -3.2548828125 331.9921875 -1.3017578125 331.9921875 1.953125 c 0 + 331.9921875 6.9580078125 332.567382812 12.7666015625 333.716796875 19.37890625 c 0 + 334.8671875 25.9912109375 335.919921875 29.296875 336.875 29.296875 c 0 + 343.9375 29.296875 354.598632812 31.6259765625 368.858398438 36.28515625 c 0 + 383.118164062 40.9443359375 391.98828125 46.1015625 395.46875 51.7578125 c 0 + 401.513671875 62.03515625 409.326171875 88.7275390625 418.90625 131.8359375 c 1 + 452.109375 296.875 l 1 + 452.109375 297.8515625 l 2 + 452.109375 301.7578125 416.301757812 303.7109375 344.6875 303.7109375 c 0 + 271.770507812 303.7109375 234.661132812 301.106445312 233.359375 295.8984375 c 2 + 202.109375 135.7421875 l 2 + 201.731445312 133.790039062 200.955078125 129.834960938 199.78125 123.875976562 c 0 + 198.606445312 117.91796875 197.864257812 114.075195312 197.553710938 112.349609375 c 0 + 197.2421875 110.623046875 196.678710938 107.41796875 195.86328125 102.733398438 c 0 + 195.047851562 98.0498046875 194.521484375 94.4921875 194.28515625 92.060546875 c 0 + 194.047851562 89.6298828125 193.723632812 86.3447265625 193.3125 82.2060546875 c 0 + 192.901367188 78.0673828125 192.63671875 74.0654296875 192.51953125 70.2001953125 c 0 + 192.40234375 66.3349609375 192.34375 62.140625 192.34375 57.6171875 c 0 + 192.34375 50.837890625 198.75390625 44.4228515625 211.575195312 38.373046875 c 0 + 224.396484375 32.322265625 233.611328125 29.296875 239.21875 29.296875 c 0 + 240.520507812 29.296875 241.171875 27.6689453125 241.171875 24.4140625 c 0 + 241.171875 20.21484375 240.495117188 15.1396484375 239.142578125 9.1884765625 c 0 + 237.790039062 3.236328125 236.188476562 -1.1279296875 234.3359375 -3.90625 c 1 + 226.517578125 -3.4833984375 214.158203125 -2.64453125 197.2578125 -1.3876953125 c 0 + 180.357421875 -0.1318359375 164.602539062 0.90234375 149.995117188 1.712890625 c 0 + 135.38671875 2.5244140625 122.159179688 2.9296875 110.3125 2.9296875 c 0 + 94.0634765625 2.9296875 71.4140625 1.8798828125 42.365234375 -0.220703125 c 0 + 13.3154296875 -2.3203125 -5.05078125 -3.548828125 -12.734375 -3.90625 c 1 + -13.3857421875 -3.2548828125 -13.7109375 -1.3017578125 -13.7109375 1.953125 c 0 + -13.7109375 6.7705078125 -12.982421875 12.5322265625 -11.5244140625 19.23828125 c 0 + -10.06640625 25.9443359375 -8.8427734375 29.296875 -7.8515625 29.296875 c 0 + -0.6484375 29.296875 9.888671875 31.46875 23.7578125 35.8115234375 c 0 + 37.6279296875 40.154296875 46.296875 45.14453125 49.765625 50.78125 c 0 + 54.1611328125 58.2529296875 58.87109375 70.8857421875 63.896484375 88.6787109375 c 0 + 68.921875 106.471679688 72.349609375 120.857421875 74.1796875 131.8359375 c 2 + 147.421875 510.7421875 l 2 + 153.28125 541.9921875 156.2109375 565.754882812 156.2109375 582.03125 c 0 + 156.2109375 589.0703125 152.625 595.158203125 145.453125 600.295898438 c 0 + 138.28125 605.43359375 131.34765625 608.881835938 124.651367188 610.641601562 c 0 + 117.954101562 612.401367188 112.849609375 613.28125 109.3359375 613.28125 c 0 + 108.684570312 613.28125 108.359375 614.583007812 108.359375 617.1875 c 0 + 108.359375 621.907226562 108.98828125 627.623046875 110.247070312 634.333984375 c 0 + 111.504882812 641.043945312 112.829101562 645.094726562 114.21875 646.484375 c 1 + 123.668945312 646.034179688 136.220703125 645.272460938 151.875976562 644.200195312 c 0 + 167.530273438 643.126953125 181.922851562 642.262695312 195.05078125 641.607421875 c 0 + 208.1796875 640.952148438 220.94921875 640.625 233.359375 640.625 c 0 + 245.078125 640.625 288.046875 642.578125 362.265625 646.484375 c 1 + 362.265625 641.6015625 l 2 + 362.265625 636.23046875 361.420898438 630.16796875 359.732421875 623.413085938 c 0 + 358.043945312 616.658203125 356.284179688 613.28125 354.453125 613.28125 c 0 + 349.552734375 613.28125 339.369140625 610.555664062 323.90234375 605.10546875 c 0 + 308.434570312 599.655273438 299.413085938 594.568359375 296.8359375 589.84375 c 0 + 293.092773438 583.189453125 288.537109375 569.40625 283.166992188 548.494140625 c 0 + 277.797851562 527.58203125 274.541992188 513.696289062 273.3984375 506.8359375 c 2 + 247.03125 369.140625 l 1 + 247.03125 367.1875 l 2 + 247.03125 366.286132812 247.423828125 365.547851562 248.209960938 364.97265625 c 0 + 248.99609375 364.397460938 250.678710938 363.825195312 253.2578125 363.2578125 c 0 + 255.836914062 362.690429688 259.537109375 362.24609375 264.359375 361.92578125 c 0 + 269.182617188 361.604492188 275.657226562 361.313476562 283.784179688 361.051757812 c 0 + 291.911132812 360.791015625 301.887695312 360.608398438 313.711914062 360.505859375 c 0 + 325.537109375 360.403320312 339.768554688 360.3515625 356.40625 360.3515625 c 0 +EndSplineSet +Fore +SplineSet +247 640 m 0 + 285 640 340 642 376 646 c 1 + 379 640 375 617 369 610 c 1 + 357 609 315 606 308 593 c 0 + 297 573 290 543 282 501 c 2 + 256 362 l 1 + 256 360 257 359 257 359 c 1 + 292 358 325 356 366 356 c 0 + 399 356 440 358 473 359 c 1 + 473 359 475 361 475 363 c 0 + 501 501 l 2 + 509 543 516 573 512 593 c 0 + 510 606 469 609 457 610 c 1 + 454 617 459 640 464 646 c 1 + 498 642 555 640 593 640 c 0 + 631 640 686 642 722 646 c 1 + 725 640 721 617 715 610 c 1 + 703 609 660 606 653 593 c 0 + 642 573 636 543 628 501 c 2 + 558 142 l 2 + 550 100 544 70 548 50 c 0 + 550 37 590 33 602 32 c 1 + 605 25 601 2 596 -4 c 1 + 562 0 505 3 467 3 c 0 + 429 3 374 0 338 -4 c 1 + 335 2 339 25 345 32 c 1 + 357 33 399 37 406 50 c 0 + 417 70 424 100 432 142 c 2 + 463 303 l 0 + 463 305 462 308 462 308 c 1 + 429 309 393 310 356 310 c 0 + 255 310 248 308 245 306 c 1 + 244 305 243 302 243 302 c 1 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 123 609 111 610 c 1 + 108 617 113 640 118 646 c 1 + 152 642 209 640 247 640 c 0 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 41 +Width: 344 +Flags: HW +HStem: -4 36<-5 60 202 253> 610 36<115 166 308 373> +LayerCount: 2 +Fore +SplineSet +247 640 m 0 + 285 640 340 642 376 646 c 1 + 379 640 375 617 369 610 c 1 + 357 609 315 606 308 593 c 0 + 297 573 290 543 282 501 c 2 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 123 609 111 610 c 1 + 108 617 113 640 118 646 c 1 + 152 642 209 640 247 640 c 0 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 42 +Width: 328 +Flags: HW +HStem: -213 23<-105 -87> 610 36<109 160 302 367> +LayerCount: 2 +Fore +SplineSet +241 640 m 0 + 279 640 334 642 370 646 c 1 + 373 640 369 617 363 610 c 1 + 351 609 309 606 302 593 c 0 + 291 573 284 543 276 501 c 2 + 206 140 l 2 + 163 -83 -38 -195 -96 -213 c 1 + -101 -210 -106 -200 -106 -195 c 0 + -106 -192 -105 -190 -104 -189 c 1 + -3 -134 47 -30 78 132 c 2 + 149 501 l 2 + 157 543 164 573 160 593 c 0 + 158 606 117 609 105 610 c 1 + 102 617 107 640 112 646 c 1 + 146 642 203 640 241 640 c 0 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 43 +Width: 671 +Flags: HW +HStem: -4 36<-5 60 202 253 588 641> 610 36<115 166 308 373 477 521 627 705> +LayerCount: 2 +Fore +SplineSet +509 138 m 0 + 584 26 637 28 644 28 c 1 + 647 21 641 0 640 -2 c 1 + 614 -4 613 -6 576 -6 c 0 + 479 -6 439 20 392 90 c 0 + 370 123 297 238 261 295 c 0 + 259 298 254 299 252 299 c 0 + 248 299 245 297 242 293 c 1 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 123 609 111 610 c 1 + 108 617 113 640 118 646 c 1 + 152 642 209 640 247 640 c 0 + 285 640 340 642 376 646 c 1 + 379 640 375 617 369 610 c 1 + 357 609 315 606 308 593 c 0 + 297 573 290 543 282 501 c 2 + 249 329 l 1 + 296 363 334 394 360 418 c 0 + 426 478 457 502 506 557 c 0 + 518 570 520 582 521 589 c 0 + 525 610 488 611 475 611 c 1 + 472 619 474 637 479 646 c 1 + 512 644 564 640 597 640 c 0 + 637 640 676 642 710 646 c 1 + 711 639 708 618 702 612 c 1 + 693 611 629 604 591 569 c 2 + 591 569 454 444 371 367 c 0 + 364 360 363 357 366 352 c 0 + 419 268 457 215 509 138 c 0 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 44 +Width: 534 +Flags: HW +HStem: -3 36<-4 61> -2 43<204 395> 610 36<115 166 308 373> +LayerCount: 2 +Back +SplineSet +202.109375 135.7421875 m 1 + 197.551757812 108.3984375 195.2734375 89.84375 195.2734375 80.078125 c 0 + 195.2734375 72.2177734375 196.206054688 66.6787109375 198.071289062 63.458984375 c 0 + 199.936523438 60.2392578125 205.124023438 57.646484375 213.634765625 55.681640625 c 0 + 222.14453125 53.716796875 235.880859375 52.734375 254.84375 52.734375 c 2 + 278.28125 52.734375 l 2 + 295.1953125 52.734375 313.625 55.115234375 333.5703125 59.8759765625 c 0 + 353.516601562 64.6376953125 370.893554688 70.720703125 385.703125 78.125 c 0 + 396.9296875 83.73828125 410.596679688 94.73046875 426.705078125 111.099609375 c 0 + 442.813476562 127.469726562 456.489257812 145.775390625 467.734375 166.015625 c 0 + 469.6875 169.921875 474.245117188 171.875 481.40625 171.875 c 0 + 486.072265625 171.875 491.399414062 171.248046875 497.389648438 169.994140625 c 0 + 503.379882812 168.741210938 506.840820312 167.4140625 507.7734375 166.015625 c 1 + 505.0234375 160.711914062 497.912109375 147.159179688 486.44140625 125.359375 c 0 + 474.970703125 103.559570312 466.501953125 87.2978515625 461.03515625 76.5751953125 c 0 + 455.569335938 65.8515625 449.17578125 52.5927734375 441.85546875 36.7978515625 c 0 + 434.53515625 21.0029296875 429.1640625 8.0859375 425.7421875 -1.953125 c 1 + 391.5625 -1.953125 338.014648438 -1.3017578125 265.09765625 0 c 0 + 192.180664062 1.3017578125 142.5390625 1.953125 116.171875 1.953125 c 0 + 100.8359375 1.953125 82.5078125 1.46484375 61.185546875 0.48828125 c 0 + 39.8642578125 -0.48828125 22.376953125 -1.46484375 8.72265625 -2.44140625 c 2 + -11.7578125 -3.90625 l 1 + -13.0595703125 -1.3017578125 -13.7109375 1.6279296875 -13.7109375 4.8828125 c 0 + -13.7109375 8.51953125 -13.2744140625 12.310546875 -12.400390625 16.255859375 c 0 + -11.5263671875 20.2021484375 -10.5556640625 23.3623046875 -9.4873046875 25.736328125 c 0 + -8.419921875 28.1103515625 -7.548828125 29.296875 -6.875 29.296875 c 0 + -0.55078125 29.296875 10.451171875 32.30078125 26.1328125 38.3095703125 c 0 + 41.814453125 44.318359375 50.994140625 49.7783203125 53.671875 54.6875 c 0 + 60.955078125 69.9150390625 67.791015625 95.6318359375 74.1796875 131.8359375 c 1 + 147.421875 510.7421875 l 2 + 153.28125 541.9921875 156.2109375 565.754882812 156.2109375 582.03125 c 0 + 156.2109375 589.0703125 152.625 595.158203125 145.453125 600.295898438 c 0 + 138.28125 605.43359375 131.34765625 608.881835938 124.651367188 610.641601562 c 0 + 117.954101562 612.401367188 112.849609375 613.28125 109.3359375 613.28125 c 0 + 108.684570312 613.28125 108.359375 614.583007812 108.359375 617.1875 c 0 + 108.359375 621.907226562 108.98828125 627.623046875 110.247070312 634.333984375 c 0 + 111.504882812 641.043945312 112.829101562 645.094726562 114.21875 646.484375 c 1 + 123.668945312 646.034179688 136.220703125 645.272460938 151.875976562 644.200195312 c 0 + 167.530273438 643.126953125 181.922851562 642.262695312 195.05078125 641.607421875 c 0 + 208.1796875 640.952148438 220.94921875 640.625 233.359375 640.625 c 0 + 245.078125 640.625 288.046875 642.578125 362.265625 646.484375 c 1 + 362.265625 641.6015625 l 2 + 362.265625 636.23046875 361.420898438 630.16796875 359.732421875 623.413085938 c 0 + 358.043945312 616.658203125 356.284179688 613.28125 354.453125 613.28125 c 0 + 349.552734375 613.28125 339.369140625 610.555664062 323.90234375 605.10546875 c 0 + 308.434570312 599.655273438 299.413085938 594.568359375 296.8359375 589.84375 c 0 + 293.092773438 583.189453125 288.537109375 569.40625 283.166992188 548.494140625 c 0 + 277.797851562 527.58203125 274.541992188 513.696289062 273.3984375 506.8359375 c 2 + 202.109375 135.7421875 l 1 +EndSplineSet +Fore +SplineSet +212 138 m 2xa0 + 211 132 200 81 204 61 c 0 + 207 47 236 41 259 41 c 0 + 319 41 l 2 + 353 41 385 51 410 73 c 0 + 433 94 453 122 477 166 c 0 + 479 170 484 172 491 172 c 0 + 500 172 515 169 517 166 c 1 + 490 113 451 41 436 -2 c 1 + 411 -2 243 -2 121 -2 c 0x60 + 57 -2 5 -3 -8 -3 c 1 + -11 3 -7 26 -1 33 c 1 + 11 34 54 37 61 50 c 0 + 72 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 123 609 111 610 c 1 + 108 617 113 640 118 646 c 1 + 152 642 209 640 247 640 c 0 + 285 640 340 642 376 646 c 1 + 379 640 375 617 369 610 c 1 + 357 609 315 606 308 593 c 0 + 297 573 290 543 282 501 c 2 + 212 138 l 2xa0 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 45 +Width: 838 +Flags: HW +HStem: -4 36<-23 45 143 201 491 558 707 757> 610 36<135 184 800 852> +LayerCount: 2 +Fore +SplineSet +236 641 m 0 + 267 641 295 644 332 646 c 1 + 347 584 387 398 423 232 c 1 + 423 232 425 230 426 230 c 0 + 427 230 431 235 431 236 c 2 + 431 236 534 416 596 533 c 24 + 618 575 647 643 647 643 c 1 + 655 642 727 640 745 640 c 0 + 776 640 815 644 852 646 c 1 + 855 642 855 617 849 609 c 1 + 842 609 810 606 799 599 c 0 + 788 592 783 585 779 559 c 0 + 768 491 732 273 713 148 c 0 + 707 110 702 75 706 50 c 0 + 709 36 752 32 759 32 c 1 + 761 23 760 6 755 -4 c 1 + 719 -2 672 4 632 4 c 0 + 590 4 530 -2 488 -4 c 1 + 485 0 490 24 494 32 c 1 + 505 32 549 37 560 51 c 0 + 566 59 573 75 575 85 c 0 + 577 95 582 127 585 145 c 2 + 642 485 l 2 + 643 488 648 511 641 511 c 0 + 639 511 638 509 635 504 c 2 + 384 39 l 2 + 379 30 355 -2 338 -2 c 0 + 335 -2 333 -1 330 0 c 1 + 226 511 l 1 + 180 308 176 284 141 131 c 0 + 136 110 131 70 131 63 c 0 + 132 42 198 32 205 32 c 1 + 206 25 204 6 199 -4 c 1 + 163 -2 129 4 89 4 c 0 + 47 4 15 -2 -27 -4 c 1 + -29 3 -26 21 -21 31 c 1 + -10 31 48 41 63 66 c 0 + 69 76 86 136 90 152 c 0 + 117 266 176 521 187 567 c 0 + 188 574 189 582 186 589 c 0 + 181 600 147 610 131 610 c 1 + 127 618 136 644 138 646 c 1 + 179 644 194 641 236 641 c 0 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 46 +Width: 698 +Flags: HW +HStem: -4 36<-13 58 149 210> 4 28<-14 52> 610 37<111 162 523 587 667 746> 610 29<528 585 671 748> +LayerCount: 2 +Fore +SplineSet +215 640 m 0x90 + 247 640 286 642 316 646 c 1 + 336 570 446 391 529 242 c 1 + 532 249 536 268 539 282 c 2 + 574 465 l 0 + 581 502 592 575 588 590 c 0 + 584 608 530 611 519 611 c 1 + 517 611 520 638 526 647 c 1x20 + 567 645 593 640 635 640 c 0x10 + 675 640 715 645 752 647 c 1 + 753 641 750 620 742 610 c 1 + 735 610 675 609 663 588 c 0 + 656 574 636 503 629 468 c 2 + 565 136 l 2 + 554 79 551 50 543 -1 c 1 + 540 -4 522 -5 519 -5 c 0 + 511 -5 503 5 496 18 c 2 + 220 507 l 1 + 152 153 l 2 + 145 118 141 73 143 59 c 0 + 146 40 206 33 213 33 c 1 + 217 23 211 2 208 -4 c 1xa0 + 172 -2 134 4 94 4 c 0x40 + 52 4 24 -2 -18 -4 c 1 + -21 5 -12 32 -10 32 c 1 + 1 32 56 40 67 58 c 0 + 76 73 90 119 97 156 c 0 + 121 284 140 374 165 502 c 0 + 175 555 173 571 165 590 c 0 + 159 603 120 610 109 610 c 0 + 104 610 108 641 114 646 c 1 + 141 644 173 640 215 640 c 0x90 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 47 +Width: 688 +Flags: HW +HStem: -10 42<255 385> 609 42<326 452> +VStem: 48 141<146 381> 522 141<253 490> +LayerCount: 2 +Fore +SplineSet +393 609 m 3 + 258 609 188 399 188 238 c 0 + 188 126 225 32 318 32 c 3 + 450 32 522 239 522 400 c 0 + 522 512 481 609 393 609 c 3 +414 651 m 0 + 574 651 663 510 663 384 c 0 + 663 134 450 -10 288 -10 c 0 + 151 -10 48 112 48 255 c 0 + 48 498 253 651 414 651 c 0 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 48 +Width: 543 +Flags: HW +HStem: -4 36<-5 60 202 253> 279 40<279 354> 605 39<115 167 305 393> +LayerCount: 2 +Fore +SplineSet +559 454 m 0 + 537 337 418 279 326 279 c 0 + 300 279 287 289 280 294 c 0 + 276 297 270 311 270 316 c 0 + 270 320 273 323 275 323 c 1 + 284 320 291 319 305 319 c 0 + 350 319 409 376 422 440 c 0 + 439 527 413 605 352 605 c 0 + 331 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 + 285 642 334 645 388 645 c 0 + 501 645 580 558 559 454 c 0 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 49 +Width: 689 +Flags: HW +HStem: -137 65<503 602> 609 42<327 453> +VStem: 49 141<146 381> 523 141<251 490> +LayerCount: 2 +Fore +SplineSet +415 651 m 0 + 575 651 664 510 664 384 c 0 + 664 175 522 55 396 10 c 1 + 474 -35 514 -71 608 -71 c 0 + 630 -71 651 -66 658 -64 c 1 + 665 -64 673 -68 677 -74 c 1 + 665 -84 578 -137 522 -137 c 0 + 418 -137 347 -57 229 -8 c 0 + 116 39 49 138 49 255 c 0 + 49 498 254 651 415 651 c 0 +394 609 m 0 + 259 609 189 399 189 238 c 0 + 189 126 226 32 319 32 c 0 + 451 32 523 239 523 400 c 0 + 523 512 482 609 394 609 c 0 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 50 +Width: 629 +Flags: HW +HStem: -4 36<-5 60 202 252 559 620> 292 38<249 270> 605 39<115 167 305 398> +LayerCount: 2 +Fore +SplineSet +247 642 m 0 + 285 642 334 645 388 645 c 0 + 501 645 571 568 548 447 c 0 + 531 362 425 318 387 309 c 1 + 435 213 439 195 483 127 c 0 + 537 43 606 27 621 27 c 1 + 624 20 620 -2 619 -4 c 1 + 593 -6 598 -8 561 -8 c 0 + 412 -8 378 64 361 97 c 0 + 268 277 l 0 + 268 277 262 292 255 292 c 0 + 242 292 l 9 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 +249 330 m 17 + 291 330 l 0 + 343 330 390 364 411 438 c 0 + 431 508 426 605 352 605 c 0 + 331 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 249 330 l 17 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 51 +Width: 482 +Flags: HW +HStem: -10 41<132 252> 613 41<264 369> +VStem: 32 39<105 193> 413 37<459 557> +LayerCount: 2 +Back +SplineSet +298.0078125 654.296875 m 0 + 313.905273438 654.296875 329.366210938 652.89453125 344.391601562 650.090820312 c 0 + 359.41796875 647.287109375 376.563476562 643.36328125 395.830078125 638.3203125 c 0 + 415.095703125 633.27734375 431.642578125 629.48828125 445.46875 626.953125 c 1 + 429.1875 511.71875 419.748046875 454.1015625 417.1484375 454.1015625 c 2 + 403.4765625 454.1015625 l 2 + 398.731445312 454.1015625 395.045898438 454.36328125 392.419921875 454.885742188 c 0 + 389.793945312 455.409179688 387.399414062 456.948242188 385.236328125 459.501953125 c 0 + 383.07421875 462.055664062 381.9921875 465.790039062 381.9921875 470.703125 c 0 + 381.9921875 478.837890625 381.034179688 488.076171875 379.1171875 498.419921875 c 0 + 377.200195312 508.762695312 373.8671875 519.97265625 369.118164062 532.048828125 c 0 + 364.368164062 544.125 358.576171875 555.102539062 351.7421875 564.982421875 c 0 + 344.907226562 574.861328125 335.94921875 583.102539062 324.868164062 589.705078125 c 0 + 313.786132812 596.307617188 301.578125 599.609375 288.2421875 599.609375 c 0 + 274.575195312 599.609375 262.186523438 596.91015625 251.076171875 591.512695312 c 0 + 239.965820312 586.115234375 231.133789062 579.473632812 224.580078125 571.588867188 c 0 + 218.026367188 563.704101562 212.525390625 554.94921875 208.076171875 545.325195312 c 0 + 203.626953125 535.701171875 200.576171875 527.028320312 198.923828125 519.307617188 c 0 + 197.271484375 511.586914062 196.4453125 504.825195312 196.4453125 499.0234375 c 0 + 196.4453125 493.297851562 197.03515625 487.666015625 198.21484375 482.126953125 c 0 + 199.39453125 476.588867188 201.494140625 471.014648438 204.514648438 465.403320312 c 0 + 207.534179688 459.79296875 210.32421875 454.774414062 212.8828125 450.349609375 c 0 + 215.442382812 445.923828125 219.462890625 440.829101562 224.9453125 435.064453125 c 0 + 230.427734375 429.299804688 234.768554688 424.702148438 237.96875 421.272460938 c 0 + 241.16796875 417.841796875 246.370117188 413.108398438 253.575195312 407.072265625 c 0 + 260.780273438 401.036132812 265.93359375 396.741210938 269.033203125 394.188476562 c 0 + 272.133789062 391.635742188 277.778320312 387.146484375 285.966796875 380.719726562 c 0 + 294.155273438 374.293945312 299.470703125 370.108398438 301.9140625 368.1640625 c 0 + 306.762695312 364.264648438 314.2890625 358.55859375 324.495117188 351.047851562 c 0 + 334.700195312 343.536132812 342.568359375 337.599609375 348.099609375 333.23828125 c 0 + 353.631835938 328.875976562 360.321289062 322.572265625 368.168945312 314.327148438 c 0 + 376.016601562 306.081054688 381.986328125 298.07421875 386.077148438 290.305664062 c 0 + 390.168945312 282.537109375 393.765625 272.770507812 396.869140625 261.004882812 c 0 + 399.971679688 249.239257812 401.5234375 236.45703125 401.5234375 222.65625 c 0 + 401.5234375 192.46484375 396.415039062 164.359375 386.19921875 138.340820312 c 0 + 375.982421875 112.322265625 362.60546875 90.439453125 346.067382812 72.6904296875 c 0 + 329.528320312 54.94140625 310.744140625 39.7099609375 289.71484375 26.9970703125 c 0 + 268.684570312 14.2841796875 247.416992188 4.978515625 225.911132812 -0.9189453125 c 0 + 204.405273438 -6.81640625 183.515625 -9.765625 163.2421875 -9.765625 c 0 + 119.901367188 -9.765625 66.1904296875 -1.3017578125 2.109375 15.625 c 1 + 5.3642578125 43.6767578125 6.9921875 72.3232421875 6.9921875 101.5625 c 0 + 6.9921875 112.060546875 6.8291015625 127.319335938 6.50390625 147.338867188 c 0 + 6.1787109375 167.358398438 6.015625 177.490234375 6.015625 177.734375 c 0 + 6.015625 179.069335938 6.365234375 180.236328125 7.0634765625 181.236328125 c 0 + 7.76171875 182.236328125 8.7490234375 183.010742188 10.0244140625 183.559570312 c 0 + 11.2998046875 184.109375 12.61328125 184.556640625 13.96484375 184.903320312 c 0 + 15.31640625 185.25 16.873046875 185.465820312 18.6337890625 185.552734375 c 0 + 20.3955078125 185.639648438 21.8681640625 185.688476562 23.052734375 185.700195312 c 0 + 24.2373046875 185.711914062 25.54296875 185.689453125 26.970703125 185.6328125 c 0 + 28.3974609375 185.575195312 29.2255859375 185.546875 29.453125 185.546875 c 0 + 31.94921875 185.546875 36.1513671875 184.682617188 42.0595703125 182.953125 c 0 + 47.9677734375 181.223632812 51.578125 179.484375 52.890625 177.734375 c 1 + 52.890625 164.182617188 55.28125 149.869140625 60.0625 134.795898438 c 0 + 64.8447265625 119.721679688 71.4609375 105.500976562 79.9140625 92.1328125 c 0 + 88.3662109375 78.765625 99.3369140625 67.7177734375 112.828125 58.990234375 c 0 + 126.318359375 50.2626953125 140.844726562 45.8984375 156.40625 45.8984375 c 0 + 171.690429688 45.8984375 185.586914062 48.4560546875 198.09765625 53.5712890625 c 0 + 210.608398438 58.685546875 220.696289062 65.384765625 228.362304688 73.6669921875 c 0 + 236.028320312 81.94921875 242.640625 90.673828125 248.201171875 99.83984375 c 0 + 253.760742188 109.005859375 257.853515625 118.318359375 260.48046875 127.775390625 c 0 + 263.107421875 137.233398438 264.97265625 144.971679688 266.077148438 150.9921875 c 0 + 267.182617188 157.01171875 267.734375 161.694335938 267.734375 165.0390625 c 0 + 267.734375 175.034179688 265.5546875 184.87109375 261.193359375 194.547851562 c 0 + 256.833007812 204.225585938 250.380859375 213.599609375 241.837890625 222.670898438 c 0 + 233.294921875 231.741210938 225.376953125 239.4921875 218.083984375 245.922851562 c 0 + 210.791015625 252.354492188 201.44921875 260.009765625 190.056640625 268.889648438 c 0 + 178.665039062 277.768554688 170.703125 284.166992188 166.171875 288.0859375 c 0 + 163.719726562 290.146484375 158.90234375 294.151367188 151.720703125 300.102539062 c 0 + 144.538085938 306.052734375 139.584960938 310.19140625 136.860351562 312.517578125 c 0 + 134.135742188 314.844726562 129.624023438 318.837890625 123.326171875 324.499023438 c 0 + 117.02734375 330.159179688 112.5234375 334.522460938 109.813476562 337.587890625 c 0 + 107.103515625 340.654296875 103.251953125 345.055664062 98.259765625 350.793945312 c 0 + 93.2666015625 356.53125 89.6337890625 361.486328125 87.3603515625 365.658203125 c 0 + 85.0869140625 369.831054688 82.3173828125 375.0078125 79.052734375 381.190429688 c 0 + 75.787109375 387.372070312 73.447265625 393.286132812 72.0322265625 398.931640625 c 0 + 70.6171875 404.578125 69.3515625 410.897460938 68.236328125 417.891601562 c 0 + 67.1201171875 424.884765625 66.5625 432.072265625 66.5625 439.453125 c 0 + 66.5625 464.442382812 71.501953125 488.447265625 81.380859375 511.466796875 c 0 + 91.259765625 534.486328125 104.310546875 554.461914062 120.533203125 571.392578125 c 0 + 136.756835938 588.323242188 154.956054688 603.150390625 175.130859375 615.873046875 c 0 + 195.305664062 628.595703125 216.012695312 638.180664062 237.251953125 644.626953125 c 0 + 258.4921875 651.073242188 278.744140625 654.296875 298.0078125 654.296875 c 0 +EndSplineSet +Fore +SplineSet +324 654 m 0 + 378 654 419 640 472 627 c 1 + 466 575 459 525 450 465 c 1 + 446 461 443 459 439 459 c 0 + 436 459 413 458 413 466 c 0 + 416 521 390 613 320 613 c 0 + 285 613 240 593 227 528 c 0 + 215 467 280 412 328 372 c 0 + 380 329 445 287 423 171 c 0 + 402 64 290 -10 190 -10 c 0 + 136 -10 74 2 22 16 c 1 + 21 59 28 155 32 182 c 1 + 37 188 57 195 62 195 c 0 + 69 195 71 194 71 188 c 0 + 69 135 107 31 189 31 c 0 + 235 31 281 57 295 126 c 0 + 309 195 230 252 191 285 c 0 + 134 333 77 376 97 478 c 0 + 117 579 230 654 324 654 c 0 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 52 +Width: 582 +Flags: HW +HStem: -4 36<114 179 320 371> 599 43<157 293 420 547> +VStem: 578 35<472 559> +LayerCount: 2 +Fore +SplineSet +355 642 m 0 + 516 642 l 0 + 581 642 596 660 613 660 c 0 + 620 660 621 659 624 657 c 1 + 613 478 l 1 + 610 475 594 471 586 471 c 0 + 581 471 578 472 578 476 c 0 + 581 539 551 599 505 599 c 2 + 420 599 l 1 + 331 142 l 2 + 323 100 316 70 320 50 c 0 + 322 37 363 33 375 32 c 1 + 378 25 373 2 368 -4 c 1 + 334 0 278 3 240 3 c 0 + 202 3 146 0 110 -4 c 1 + 107 2 111 25 117 32 c 1 + 129 33 172 37 179 50 c 0 + 190 70 196 100 204 142 c 2 + 293 599 l 1 + 208 599 l 2 + 162 599 108 539 87 476 c 0 + 85 472 82 471 77 471 c 0 + 69 471 55 475 53 478 c 1 + 111 657 l 1 + 115 659 116 660 123 660 c 0 + 140 660 149 642 214 642 c 0 + 355 642 l 0 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 53 +Width: 675 +Flags: HW +HStem: -9 70<263 389> 610 36<97 148 289 354 517 574 664 736> +LayerCount: 2 +Fore +SplineSet +229 640 m 0 + 267 640 322 642 358 646 c 1 + 361 640 357 617 351 610 c 1 + 339 609 296 606 289 593 c 0 + 278 573 272 543 264 501 c 2 + 230 322 l 2 + 217 256 209 207 220 155 c 0 + 238 69 305 62 340 62 c 0 + 412 62 501 131 534 302 c 2 + 566 468 l 2 + 574 510 581 567 577 587 c 0 + 573 606 525 609 513 610 c 1 + 510 617 515 640 520 646 c 1 + 562 642 590 640 632 640 c 0 + 672 640 702 644 740 646 c 1 + 743 640 739 617 733 610 c 1 + 721 609 671 608 659 587 c 0 + 648 567 630 511 622 469 c 2 + 585 279 l 2 + 546 80 412 -9 281 -9 c 0 + 205 -9 138 18 106 77 c 0 + 80 125 77 192 97 294 c 2 + 137 501 l 2 + 145 543 152 573 148 593 c 0 + 146 606 105 609 93 610 c 1 + 90 617 95 640 100 646 c 1 + 134 642 191 640 229 640 c 0 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 54 +Width: 612 +Flags: HW +HStem: -11 21G<236 245> 610 36<61 103 258 318 488 550 627 697> +LayerCount: 2 +Fore +SplineSet +192 640 m 0 + 230 640 286 642 322 646 c 1 + 325 640 320 617 314 610 c 1 + 302 609 259 608 254 584 c 0 + 251 568 256 538 262 511 c 0 + 289 381 333 182 333 182 c 1 + 333 182 501 482 516 509 c 0 + 529 534 548 566 552 587 c 0 + 555 605 495 609 483 610 c 1 + 480 617 486 640 491 646 c 1 + 533 642 555 640 597 640 c 0 + 637 640 662 644 700 646 c 1 + 703 640 699 617 693 610 c 1 + 681 609 641 609 627 593 c 0 + 609 573 592 544 573 512 c 0 + 461 316 397 210 292 29 c 0 + 281 11 251 -11 240 -11 c 0 + 232 -11 233 -4 230 3 c 1 + 129 498 l 2 + 123 526 116 558 112 578 c 0 + 106 603 68 609 56 610 c 1 + 53 617 59 640 64 646 c 1 + 98 642 154 640 192 640 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 55 +Width: 856 +Flags: HW +HStem: -11 21G<208 218 523 532> 610 36<62 109 266 320 727 788 867 937> +LayerCount: 2 +Fore +SplineSet +195 640 m 0 + 233 640 288 642 324 646 c 1 + 327 640 323 617 317 610 c 1 + 305 609 258 605 258 572 c 0 + 258 567 260 539 264 511 c 0 + 281 392 301 245 301 245 c 1 + 301 245 458 547 492 610 c 0 + 502 629 518 646 528 646 c 0 + 532 646 533 642 535 631 c 0 + 563 467 609 209 609 209 c 1 + 609 209 740 478 756 509 c 0 + 768 534 785 566 789 587 c 0 + 792 605 735 609 723 610 c 1 + 720 617 726 640 731 646 c 1 + 773 642 795 640 837 640 c 0 + 877 640 903 644 941 646 c 1 + 944 640 939 617 933 610 c 1 + 921 609 881 609 867 593 c 0 + 849 573 830 546 813 512 c 0 + 721 327 666 220 573 39 c 0 + 560 15 538 -11 527 -11 c 0 + 519 -11 515 -4 512 3 c 1 + 441 408 l 1 + 441 408 326 184 254 43 c 0 + 248 32 223 -11 212 -11 c 0 + 204 -11 201 -4 198 3 c 1 + 130 498 l 2 + 127 527 125 536 119 576 c 0 + 115 602 71 609 59 610 c 1 + 55 617 61 640 66 646 c 1 + 100 642 157 640 195 640 c 0 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 56 +Width: 643 +Flags: HW +HStem: -4 36<-52 23 120 183 310 365 543 598> 610 36<89 145 306 361 473 527 633 702> +LayerCount: 2 +Back +SplineSet +276.6015625 640.625 m 0 + 290.081054688 640.625 304.116210938 640.922851562 318.708984375 641.517578125 c 0 + 333.30078125 642.112304688 350.911132812 643.036132812 371.5390625 644.290039062 c 0 + 392.16796875 645.543945312 404.466796875 646.275390625 408.4375 646.484375 c 1 + 408.522460938 645.975585938 408.502929688 644.810546875 408.379882812 642.989257812 c 0 + 408.256835938 641.16796875 408.1953125 639.728515625 408.1953125 638.671875 c 0 + 408.1953125 633.049804688 407.22265625 626.924804688 405.278320312 620.295898438 c 0 + 403.333007812 613.666015625 401.45703125 610.3515625 399.6484375 610.3515625 c 0 + 390.661132812 610.3515625 380.217773438 608.546875 368.319335938 604.9375 c 0 + 356.420898438 601.327148438 349.611328125 596.296875 347.890625 589.84375 c 1 + 346.588867188 582.03125 347.565429688 574.870117188 350.8203125 568.359375 c 1 + 420.15625 404.296875 l 1 + 429.21875 414.126953125 441.640625 427.303710938 457.421875 443.828125 c 0 + 473.204101562 460.352539062 486.985351562 474.841796875 498.765625 487.296875 c 0 + 510.546875 499.750976562 522.462890625 512.62109375 534.515625 525.90625 c 0 + 546.568359375 539.19140625 556.052734375 550.478515625 562.96875 559.765625 c 0 + 569.885742188 569.052734375 573.713867188 575.823242188 574.453125 580.078125 c 0 + 575.87109375 588.112304688 570.033203125 595.166015625 556.940429688 601.240234375 c 0 + 543.846679688 607.314453125 529.176757812 610.3515625 512.9296875 610.3515625 c 0 + 511.956054688 610.3515625 511.469726562 613.932617188 511.469726562 621.09375 c 0 + 511.469726562 625.696289062 512.384765625 630.688476562 514.213867188 636.071289062 c 0 + 516.043945312 641.454101562 517.89453125 644.924804688 519.765625 646.484375 c 1 + 524.958007812 646.178710938 536.125976562 645.435546875 553.270507812 644.25390625 c 0 + 570.4140625 643.072265625 585.1875 642.171875 597.58984375 641.553710938 c 0 + 609.991210938 640.934570312 621.159179688 640.625 631.09375 640.625 c 0 + 645.071289062 640.625 658.956054688 640.942382812 672.747070312 641.578125 c 0 + 686.5390625 642.212890625 701.629882812 643.096679688 718.021484375 644.229492188 c 0 + 734.413085938 645.362304688 746.126953125 646.114257812 753.1640625 646.484375 c 1 + 753.41015625 645.74609375 753.533203125 643.466796875 753.533203125 639.6484375 c 0 + 753.533203125 633.907226562 752.625976562 627.58984375 750.811523438 620.694335938 c 0 + 748.997070312 613.798828125 747.176757812 610.3515625 745.3515625 610.3515625 c 0 + 736.874023438 610.3515625 723.161132812 607.325195312 704.211914062 601.271484375 c 0 + 685.262695312 595.21875 669.353515625 585.549804688 656.484375 572.265625 c 2 + 443.59375 347.65625 l 1 + 516.103515625 177.124023438 555.817382812 85.978515625 562.734375 74.21875 c 0 + 567.250976562 66.3154296875 573.198242188 59.375 580.576171875 53.3984375 c 0 + 587.955078125 47.421875 595.240234375 43.037109375 602.43359375 40.2451171875 c 0 + 609.625976562 37.453125 615.758789062 35.41796875 620.829101562 34.1416015625 c 0 + 625.900390625 32.865234375 629.647460938 32.2265625 632.0703125 32.2265625 c 0 + 632.623046875 32.2265625 632.963867188 31.7216796875 633.092773438 30.712890625 c 0 + 633.220703125 29.703125 633.165039062 28.322265625 632.923828125 26.568359375 c 0 + 632.682617188 24.8154296875 632.400390625 23.06640625 632.077148438 21.322265625 c 0 + 631.752929688 19.5771484375 631.384765625 17.6494140625 630.970703125 15.537109375 c 0 + 630.556640625 13.42578125 630.272460938 11.8271484375 630.1171875 10.7421875 c 0 + 629.466796875 7.4873046875 627.513671875 2.6044921875 624.2578125 -3.90625 c 1 + 551.9921875 0 508.373046875 1.953125 493.3984375 1.953125 c 0 + 478.416992188 1.953125 463.008789062 1.625 447.17578125 0.9677734375 c 0 + 431.342773438 0.310546875 413.98046875 -0.5517578125 395.090820312 -1.6181640625 c 0 + 376.200195312 -2.6845703125 360.791992188 -3.447265625 348.8671875 -3.90625 c 1 + 348.287109375 -3.1806640625 347.99609375 -0.2509765625 347.99609375 4.8828125 c 0 + 347.99609375 10.2421875 349.155273438 16.138671875 351.473632812 22.57421875 c 0 + 353.791992188 29.0087890625 355.852539062 32.2265625 357.65625 32.2265625 c 0 + 365.375 32.2265625 376.262695312 34.87109375 390.321289062 40.16015625 c 0 + 404.37890625 45.44921875 412.044921875 51.9189453125 413.3203125 59.5703125 c 1 + 414.513671875 63.1513671875 414.513671875 66.7314453125 413.3203125 70.3125 c 2 + 332.265625 262.6953125 l 1 + 331.080078125 261.340820312 323.022460938 252.266601562 308.090820312 235.473632812 c 0 + 293.16015625 218.681640625 278.838867188 202.446289062 265.127929688 186.768554688 c 0 + 251.416992188 171.08984375 236.618164062 153.987304688 220.731445312 135.458007812 c 0 + 204.844726562 116.9296875 191.9296875 101.241210938 181.987304688 88.3935546875 c 0 + 172.044921875 75.544921875 166.799804688 67.564453125 166.25 64.453125 c 0 + 164.45703125 54.58984375 170.294921875 46.7529296875 183.764648438 40.9423828125 c 0 + 197.235351562 35.1318359375 211.904296875 32.2265625 227.7734375 32.2265625 c 0 + 229.7265625 32.2265625 229.7265625 25.390625 227.7734375 11.71875 c 0 + 226.9921875 6.25 225.365234375 1.0419921875 222.890625 -3.90625 c 1 + 164.296875 0 124.909179688 1.953125 104.7265625 1.953125 c 0 + 93.890625 1.953125 82.837890625 1.73046875 71.568359375 1.28515625 c 0 + 60.298828125 0.83984375 50.6962890625 0.3388671875 42.76171875 -0.216796875 c 0 + 34.8271484375 -0.7734375 25.447265625 -1.4326171875 14.623046875 -2.193359375 c 0 + 3.7978515625 -2.955078125 -5.2294921875 -3.525390625 -12.4609375 -3.90625 c 1 + -12.4609375 -3.634765625 -12.7197265625 -1.7705078125 -13.23828125 1.685546875 c 0 + -13.7568359375 5.142578125 -13.8232421875 7.8359375 -13.4375 9.765625 c 0 + -10.94140625 24.7392578125 -8.337890625 32.2265625 -5.625 32.2265625 c 0 + 1.7939453125 32.2265625 15.8857421875 35.3623046875 36.65234375 41.6337890625 c 0 + 57.41796875 47.90625 71.9716796875 55.837890625 80.3125 65.4296875 c 2 + 305.8984375 324.21875 l 1 + 222.890625 524.4140625 l 2 + 221.94140625 526.659179688 219.7734375 531.87890625 216.388671875 540.073242188 c 0 + 213.002929688 548.267578125 210.447265625 554.3203125 208.721679688 558.231445312 c 0 + 206.99609375 562.143554688 204.723632812 567.111328125 201.904296875 573.135742188 c 0 + 199.083984375 579.16015625 196.529296875 583.962890625 194.237304688 587.543945312 c 0 + 191.9453125 591.125976562 189.778320312 593.845703125 187.734375 595.703125 c 0 + 182.848632812 600.145507812 175.747070312 603.697265625 166.430664062 606.358398438 c 0 + 157.114257812 609.020507812 149.2421875 610.3515625 142.8125 610.3515625 c 0 + 141.920898438 610.3515625 141.474609375 614.2578125 141.474609375 622.0703125 c 0 + 141.474609375 626.571289062 142.377929688 631.3828125 144.184570312 636.505859375 c 0 + 145.991210938 641.62890625 147.8125 644.955078125 149.6484375 646.484375 c 1 + 159.826171875 646.032226562 173.228515625 645.270507812 189.854492188 644.19921875 c 0 + 206.48046875 643.127929688 221.77734375 642.263671875 235.745117188 641.608398438 c 0 + 249.712890625 640.953125 263.33203125 640.625 276.6015625 640.625 c 0 +EndSplineSet +Fore +SplineSet +233 641 m 0 + 278 641 328 644 365 646 c 1 + 366 640 361 610 356 610 c 1 + 343 610 309 605 305 590 c 0 + 304 584 305 574 308 568 c 2 + 377 404 l 1 + 428 460 507 538 527 570 c 0 + 530 574 531 577 531 580 c 0 + 534 597 502 610 471 610 c 1 + 466 610 471 641 477 646 c 1 + 508 642 563 640 596 640 c 0 + 643 640 679 642 706 646 c 1 + 708 640 703 610 698 610 c 1 + 691 610 636 609 587 559 c 2 + 393 360 l 1 + 445 236 509 91 520 74 c 0 + 540 40 589 32 602 32 c 1 + 604 23 601 4 595 -4 c 1 + 559 -2 487 2 450 2 c 0 + 399 2 357 -2 306 -4 c 1 + 302 1 309 32 314 32 c 0 + 324 32 368 42 371 60 c 0 + 372 63 371 67 370 70 c 2 + 287 267 l 1 + 269 247 160 127 126 81 c 0 + 120 73 116 67 115 64 c 0 + 110 41 158 32 185 32 c 1 + 188 25 186 7 181 -4 c 1 + 152 -2 95 2 62 2 c 0 + 15 2 -19 -2 -56 -4 c 1 + -59 2 -55 25 -49 32 c 1 + -42 32 22 34 59 77 c 2 + 267 314 l 1 + 181 524 l 2 + 170 550 157 586 146 596 c 0 + 135 606 97 610 86 610 c 1 + 81 610 87 641 93 646 c 1 + 137 644 188 641 233 641 c 0 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 57 +Width: 562 +Flags: HW +HStem: -4 36<96 161 303 354> 610 36<72 114 270 330 442 500 577 646> +LayerCount: 2 +Fore +SplineSet +186 142 m 2 + 213 277 l 0 + 214 284 213 289 211 297 c 0 + 198 351 142 524 142 524 c 2 + 133 551 131 558 124 578 c 0 + 115 602 80 609 68 610 c 1 + 65 617 70 640 75 646 c 1 + 109 642 166 640 204 640 c 0 + 242 640 297 642 333 646 c 1 + 336 640 332 617 326 610 c 1 + 314 609 271 608 266 584 c 0 + 265 580 267 575 269 568 c 2 + 336 353 l 1 + 340 348 437 486 492 564 c 0 + 497 572 500 580 501 587 c 0 + 504 605 450 609 438 610 c 1 + 435 617 440 640 445 646 c 1 + 487 642 504 640 546 640 c 0 + 586 640 611 644 649 646 c 1 + 652 640 648 617 642 610 c 1 + 630 609 588 608 570 586 c 0 + 547 558 385 349 348 291 c 0 + 343 284 340 278 339 272 c 0 + 313 142 l 2 + 304 100 299 70 303 50 c 0 + 305 37 345 33 357 32 c 1 + 360 25 355 2 350 -4 c 1 + 316 0 260 3 222 3 c 0 + 184 3 129 0 93 -4 c 1 + 90 2 94 25 100 32 c 1 + 112 33 154 37 161 50 c 0 + 172 70 177 100 186 142 c 2 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 58 +Width: 593 +Flags: HW +HStem: 0 46<153 426> 596 44<208 450> 627 20G<146 164 576 617> +LayerCount: 2 +Fore +SplineSet +284 596 m 2xc0 + 187 596 159 524 127 463 c 0 + 125 460 123 457 114 457 c 0 + 104 457 91 459 89 462 c 1 + 110 519 136 584 157 646 c 1xa0 + 171 642 262 640 275 640 c 2 + 402 641 l 2 + 478 642 538 644 615 650 c 1 + 619 649 620 628 618 618 c 1 + 615 610 153 46 153 46 c 17 + 349 46 l 2 + 383 46 417 58 442 80 c 0 + 465 101 483 122 507 166 c 0 + 509 170 513 172 520 172 c 0 + 529 172 545 169 547 166 c 1 + 523 114 483 43 466 1 c 1 + 428 1 -1 0 -1 0 c 1 + -13 0 -25 17 -21 21 c 2 + 451 596 l 1 + 284 596 l 2xc0 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 59 +Width: 256 +Flags: HW +HStem: 690 51<215 320> +LayerCount: 2 +Fore +SplineSet +167 732 m 2 + 169 737 172 741 176 741 c 0 + 228 741 298 743 335 747 c 1 + 338 744 340 741 340 735 c 0 + 340 724 330 715 321 711 c 0 + 290 697 241 692 222 690 c 0 + 218 690 217 689 215 685 c 2 + 69 -55 l 2 + 68 -59 70 -61 74 -62 c 0 + 93 -67 136 -74 165 -93 c 0 + 173 -98 181 -105 181 -112 c 0 + 181 -121 177 -127 173 -130 c 1 + 106 -117 33 -105 10 -104 c 0 + 6 -104 2 -100 3 -95 c 2 + 167 732 l 2 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 60 +Width: 380 +Flags: HW +VStem: 120 176 +LayerCount: 2 +Fore +SplineSet +296 -4 m 2 + 299 -20 276 -39 265 -39 c 0 + 261 -39 257 -39 253 -36 c 1 + 202 263 120 737 120 737 c 1 + 122 740 128 744 134 744 c 0 + 155 744 173 718 175 708 c 2 + 296 -4 l 2 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 61 +Width: 253 +Flags: HW +HStem: -130 41<-57 13> 711 36<92 172> +VStem: -59 329 +LayerCount: 2 +Fore +SplineSet +100 747 m 1 + 134 744 205 738 261 738 c 0 + 269 738 272 732 271 728 c 0 + 270 721 109 -95 109 -95 c 2 + 108 -96 106 -103 98 -104 c 0 + 35 -110 -14 -118 -52 -130 c 1 + -54 -129 -59 -123 -59 -116 c 0 + -59 -104 -42 -94 -32 -89 c 0 + -9 -77 27 -63 53 -55 c 0 + 59 -53 61 -51 62 -47 c 2 + 205 681 l 2 + 206 686 204 688 198 689 c 0 + 175 692 130 699 105 711 c 1 + 94 717 91 728 91 737 c 0 + 91 745 99 747 100 747 c 1 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 62 +Width: 380 +Flags: W +HStem: 413 217 +VStem: 60 244 +LayerCount: 2 +Fore +SplineSet +182 630 m 0 + 187 630 193 625 197 617 c 0 + 236 540 262 502 304 429 c 1 + 304 419 295 413 289 413 c 1 + 244 460 182 539 182 539 c 25 + 182 539 120 460 75 413 c 1 + 69 413 60 419 60 429 c 1 + 102 502 128 540 167 617 c 0 + 171 625 177 630 182 630 c 0 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 63 +Width: 462 +Flags: HW +HStem: -44 61<-28 383> +LayerCount: 2 +Fore +SplineSet +-35 -34 m 1 + -35 -34 -26 17 -12 17 c 2 + 396 17 l 2 + 399 17 398 13 398 9 c 0 + 398 3 395 -13 383 -38 c 0 + 380 -44 374 -44 374 -44 c 1 + -30 -44 l 1 + -30 -44 -37 -44 -35 -34 c 1 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 64 +Width: 197 +Flags: HW +LayerCount: 2 +Fore +Refer: 190 768 N 1 0 0 1 348 0 2 +EndChar + +StartChar: a +Encoding: 97 97 65 +Width: 477 +Flags: HW +HStem: -8 84<67 186 275 375> 385 54<223 328> +VStem: 11 123<84 217> +LayerCount: 2 +Fore +SplineSet +311 438 m 0 + 346 438 395 428 415 421 c 1 + 354 129 l 2 + 353 125 351 102 351 97 c 0 + 351 88 354 76 364 76 c 0 + 385 76 431 130 434 136 c 1 + 441 136 447 115 447 109 c 1 + 430 78 345 -8 292 -8 c 0 + 258 -8 231 14 231 57 c 0 + 231 61 232 68 233 75 c 0 + 234 83 236 90 237 94 c 1 + 216 58 154 -7 95 -7 c 0 + 40 -7 11 46 11 112 c 0 + 11 287 187 438 311 438 c 0 +256 385 m 0 + 190 385 134 263 134 148 c 0 + 134 101 148 79 169 79 c 0 + 202 79 251 177 271 274 c 2 + 290 373 l 1 + 283 381 270 385 256 385 c 0 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 66 +Width: 454 +Flags: HW +HStem: -6 44<117 217> 353 86<251 365> 617 28<66 123> 660 20G<234 248> +VStem: 125 126<545 664> 301 126<215 351> +LayerCount: 2 +Fore +SplineSet +273 353 m 0 + 229 353 171 249 154 163 c 0 + 143 108 144 38 179 38 c 0 + 241 38 301 201 301 295 c 0 + 301 319 296 353 273 353 c 0 +186 328 m 1 + 213 370 291 438 338 438 c 0 + 393 438 427 400 427 329 c 0 + 427 145 258 -6 147 -6 c 0 + 85 -6 34 37 34 104 c 0 + 34 117 37 144 40 158 c 2 + 116 547 l 2 + 120 565 125 588 125 599 c 0 + 125 618 81 617 65 617 c 1 + 62 621 65 642 69 646 c 1 + 123 651 224 672 245 680 c 1 + 250 677 251 667 251 661 c 0 + 251 653 243 611 238 588 c 2 + 186 328 l 1 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 67 +Width: 368 +Flags: HW +HStem: -6 81<103 200> 390 49<187 279> +VStem: 15 123<88 240> +LayerCount: 2 +Fore +SplineSet +260 438 m 0 + 299 438 333 427 346 417 c 1 + 352 408 360 390 360 368 c 0 + 360 339 335 309 306 309 c 0 + 282 309 266 326 256 345 c 0 + 247 362 234 390 213 390 c 0 + 177 390 138 269 138 166 c 0 + 138 100 159 75 198 75 c 0 + 242 75 293 134 296 137 c 1 + 304 137 309 117 309 111 c 1 + 294 89 206 -6 132 -6 c 0 + 74 -6 15 36 15 128 c 0 + 15 280 143 438 260 438 c 0 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 68 +Width: 475 +Flags: HW +HStem: -7 86<66 185 280 374> 385 54<255 303> 617 28<274 331> 660 20G<442 456> +VStem: 10 123<84 217> 333 126<544 664> +LayerCount: 2 +Fore +SplineSet +280 345 m 0 + 280 374 272 385 255 385 c 0 + 189 385 133 263 133 148 c 0 + 133 101 147 79 168 79 c 0 + 201 79 258 196 270 274 c 2 + 270 274 280 332 280 345 c 0 +324 547 m 0 + 327 565 333 588 333 599 c 0 + 333 618 289 617 273 617 c 1 + 270 621 273 642 277 646 c 1 + 331 651 432 672 453 680 c 1 + 458 677 459 667 459 661 c 0 + 459 653 451 611 446 588 c 2 + 354 129 l 2 + 353 125 350 102 350 97 c 0 + 350 88 353 76 363 76 c 0 + 384 76 430 130 433 136 c 1 + 440 136 446 115 446 109 c 1 + 429 78 344 -8 291 -8 c 0 + 270 -8 253 0 242 16 c 0 + 236 25 230 36 230 57 c 0 + 230 65 234 86 236 94 c 1 + 215 58 153 -7 94 -7 c 0 + 39 -7 10 46 10 112 c 0 + 10 275 165 419 286 438 c 0 + 292 439 297 438 303 438 c 1 + 324 547 l 0 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 69 +Width: 384 +Flags: HW +HStem: -6 81<93 218> 184 37<142 182> 402 36<201 287> +VStem: 16 121<90 184> 254 116<294 402> +LayerCount: 2 +Fore +SplineSet +262 438 m 0 + 312 438 370 417 370 349 c 0 + 370 248 200 184 139 184 c 1 + 138 181 137 164 137 159 c 0 + 137 123 147 75 196 75 c 0 + 240 75 292 136 295 139 c 1 + 304 139 310 115 310 109 c 1 + 297 88 190 -6 128 -6 c 0 + 59 -6 16 46 16 137 c 0 + 16 282 150 438 262 438 c 0 +142 221 m 1 + 180 221 254 292 254 364 c 0 + 254 382 250 402 229 402 c 0 + 182 402 147 271 142 221 c 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 70 +Width: 310 +Flags: HW +HStem: -213 45<-73 4> 369 45<50 104 226 326> 634 45<276 352> +LayerCount: 2 +Fore +SplineSet +335 679 m 0 + 368 679 396 669 407 661 c 1 + 412 653 416 642 416 629 c 0 + 416 605 401 581 379 581 c 0 + 362 581 349 589 338 604 c 0 + 329 617 320 634 302 634 c 0 + 272 634 256 569 226 414 c 1 + 323 414 l 2 + 327 414 328 407 328 402 c 0 + 328 392 322 377 317 369 c 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 270 679 335 679 c 0 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 71 +Width: 433 +VWidth: 0 +Flags: HW +HStem: -221 47<93 235> 385 54<356 433> 409 38<191 257> +VStem: -56 113<-141 -54> 19 165<45 113> 40 111<202 352> 268 102<-132 10> 273 109<228 377> +LayerCount: 2 +Fore +SplineSet +268 -110 m 0x92 + 268 -70 170 -32 112 -14 c 1 + 77 -33 58 -52 58 -82 c 0 + 58 -145 109 -174 168 -174 c 0 + 206 -174 268 -153 268 -110 c 0x92 +229 409 m 0xa5 + 181 411 154 336 151 271 c 0 + 149 225 158 176 194 174 c 0 + 237 172 271 236 273 295 c 0 + 275 341 267 407 229 409 c 0xa5 +355 385 m 1xc4 + 359 379 383 352 383 302 c 0 + 383 210 295 156 248 137 c 0 + 221 126 184 124 184 103 c 0xc9 + 184 74 369 59 369 -39 c 0 + 369 -132 261 -221 118 -221 c 0 + 11 -221 -56 -169 -56 -107 c 0xd2 + -56 -38 30 -13 77 4 c 1 + 77 4 40 20 33 27 c 0 + 25 35 19 36 19 55 c 0xc8 + 19 79 113 130 160 141 c 1 + 99 157 40 194 40 271 c 0 + 40 368 122 447 218 447 c 1xa4 + 256 447 287 435 311 424 c 0 + 320 420 382 436 395 438 c 1 + 408 434 444 414 444 402 c 0 + 444 395 437 385 429 385 c 0 + 415 385 368 385 355 385 c 1xc4 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 72 +Width: 492 +Flags: HW +HStem: -8 84<296 396> 331 107<264 370> 617 28<69 126> 660 20G<237 250> +VStem: 128 126<544 664> 251 120<33 187> 294 119<215 389> +LayerCount: 2 +Fore +SplineSet +241 588 m 0xfa + 241 588 188 316 186 307 c 0 + 183 295 180 278 178 268 c 1 + 207 334 294 438 343 438 c 3 + 398 438 413 410 413 354 c 0xfa + 413 321 399 253 394 228 c 2 + 375 129 l 2 + 374 125 371 102 371 97 c 0 + 371 88 375 76 385 76 c 0 + 406 76 451 130 454 136 c 1 + 461 136 468 115 468 109 c 1 + 451 78 365 -8 312 -8 c 0 + 280 -8 251 12 251 62 c 0xf4 + 251 76 258 112 260 120 c 1 + 282 236 l 2 + 285 248 294 301 294 311 c 0 + 294 321 289 331 278 331 c 0 + 250 331 173 213 146 89 c 10 + 127 0 l 17 + 117 -3 83 -6 72 -6 c 0 + 61 -6 27 -3 15 0 c 1 + 21 30 118 541 119 547 c 0 + 123 566 128 588 128 599 c 0 + 128 618 84 617 68 617 c 1 + 65 621 68 642 72 646 c 1 + 126 651 227 672 248 680 c 1 + 253 677 254 667 254 661 c 0 + 254 653 244 602 241 588 c 0xfa +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 73 +Width: 302 +VWidth: 0 +Flags: HW +HStem: -8 84<104 203> 354 84<83 182> 527 144<159 238> +VStem: 59 120<33 186> 108 119<245 396> 132 133<554 645> +LayerCount: 2 +Fore +SplineSet +104 302 m 2xf0 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0 + 201 438 228 414 228 369 c 0xe8 + 228 355 221 321 219 311 c 0 + 183 129 l 2 + 182 125 179 102 179 97 c 0 + 179 88 182 76 192 76 c 0 + 213 76 259 130 262 136 c 1 + 269 136 275 115 275 109 c 1 + 258 78 173 -8 120 -8 c 0 + 88 -8 59 12 59 62 c 0 + 59 76 65 112 67 120 c 1 + 104 302 l 2xf0 +208 671 m 0 + 241 671 265 644 265 610 c 0 + 265 567 229 527 188 527 c 0 + 155 527 132 555 132 589 c 0xe4 + 132 632 167 671 208 671 c 0 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 74 +Width: 279 +VWidth: 0 +Flags: HW +HStem: -213 21<-83 -77> 354 84<93 191> 528 145<181 260> +VStem: 118 119<241 396> 154 133<555 646> +LayerCount: 2 +Fore +SplineSet +113 302 m 2xf0 + 114 306 118 329 118 334 c 0 + 118 343 114 354 104 354 c 0 + 83 354 37 301 34 295 c 1 + 27 295 21 315 21 321 c 1 + 38 352 119 438 172 438 c 0 + 211 438 237 414 237 369 c 0 + 237 355 231 321 229 311 c 0 + 229 311 206 190 191 117 c 0 + 175 35 146 -19 106 -73 c 0 + 64 -129 -50 -205 -77 -213 c 1 + -82 -213 -86 -200 -86 -191 c 1 + 17 -112 46 -48 74 98 c 0 + 113 302 l 2xf0 +230 673 m 0 + 263 673 287 645 287 611 c 0 + 287 568 252 528 211 528 c 0 + 178 528 154 556 154 590 c 0xe8 + 154 633 189 673 230 673 c 0 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 75 +Width: 491 +VWidth: 0 +Flags: HW +HStem: -4 84<276 393> 365 73<289 396> 617 28<69 126> 660 20G<237 250> +VStem: 128 126<540 664> 321 126<316 391> +LayerCount: 2 +Back +SplineSet +351.5625 128.876953125 m 0 + 348.854492188 113.158203125 347.5 102.430664062 347.5 96.6962890625 c 0 + 347.5 91.4296875 348.69140625 86.6923828125 351.07421875 82.484375 c 0 + 353.45703125 78.2763671875 356.977539062 76.171875 361.63671875 76.171875 c 0 + 370.772460938 76.171875 383.87109375 84.619140625 400.93359375 101.512695312 c 0 + 417.99609375 118.40625 428.009765625 129.815429688 430.97265625 135.7421875 c 1 + 434.041992188 135.7421875 437.087890625 132.30078125 440.110351562 125.416992188 c 0 + 443.1328125 118.534179688 444.64453125 113.186523438 444.64453125 109.375 c 1 + 440.317382812 101.229492188 432.265625 90.7255859375 420.490234375 77.86328125 c 0 + 408.715820312 65.0009765625 395.416992188 52.1650390625 380.596679688 39.35546875 c 0 + 365.775390625 26.5458984375 349.858398438 15.5517578125 332.846679688 6.373046875 c 0 + 315.833984375 -2.8046875 301.08984375 -7.3935546875 288.61328125 -7.3935546875 c 1024 +EndSplineSet +Fore +SplineSet +367 438 m 3 + 424 438 447 413 447 368 c 0 + 447 304 352 249 279 225 c 1 + 296 178 339 80 381 80 c 0 + 404 80 439 124 447 135 c 1 + 457 135 461 114 461 109 c 1 + 451 83 372 -4 313 -4 c 0 + 238 -4 188 134 167 203 c 1 + 152 130 127 0 127 0 c 17 + 117 -3 83 -6 72 -6 c 0 + 61 -6 27 -3 15 0 c 1 + 21 30 118 541 119 547 c 0 + 123 566 128 588 128 599 c 0 + 128 618 84 617 68 617 c 1 + 65 621 68 642 72 646 c 1 + 126 651 227 672 248 680 c 1 + 253 677 254 667 254 661 c 0 + 254 653 244 602 241 588 c 2 + 193 333 l 17 + 205 358 285 438 367 438 c 3 +294 365 m 3 + 236 365 175 265 175 242 c 1 + 236 242 321 281 321 334 c 3 + 321 344 316 365 294 365 c 3 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 76 +Width: 276 +Flags: HW +HStem: -8 84<76 175> 617 28<72 129> 660 20G<240 253> +VStem: 30 120<33 187> 131 126<546 664> +LayerCount: 2 +Fore +SplineSet +122 547 m 2xf0 + 125 565 131 588 131 599 c 0 + 131 618 87 617 71 617 c 1 + 68 621 71 642 75 646 c 1 + 129 651 230 672 251 680 c 1 + 256 677 257 667 257 661 c 0xe8 + 257 653 249 611 244 588 c 2 + 154 129 l 2 + 153 123 150 102 150 97 c 0 + 150 88 154 76 164 76 c 0 + 185 76 230 130 233 136 c 1 + 240 136 247 115 247 109 c 1 + 230 78 145 -8 92 -8 c 0 + 60 -8 30 12 30 62 c 0 + 30 76 37 112 39 120 c 1 + 122 547 l 2xf0 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 77 +Width: 737 +Flags: HW +HStem: -8 84<542 641> 419 20G<136 182 350 401 569 618> +VStem: 108 119<240 396> 325 119<242 389> 496 120<33 179> 542 119<216 389> +LayerCount: 2 +Fore +SplineSet +505 120 m 0xf8 + 515 164 530 236 530 236 c 2 + 533 248 542 301 542 311 c 0 + 542 321 537 331 526 331 c 0 + 498 331 422 213 395 89 c 1 + 375 0 l 1 + 365 -3 331 -6 320 -6 c 0 + 309 -6 275 -3 263 0 c 1 + 313 236 l 2 + 316 248 325 301 325 311 c 0 + 325 321 321 331 310 331 c 0 + 282 331 205 213 178 89 c 2 + 158 0 l 1 + 148 -3 115 -6 104 -6 c 0 + 93 -6 58 -3 46 0 c 1 + 104 302 l 2 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0 + 201 438 228 414 228 369 c 0 + 228 355 221 321 219 311 c 0 + 217 299 209 268 209 268 c 1 + 238 334 325 438 374 438 c 0 + 429 438 444 410 444 354 c 0 + 444 338 442 313 438 290 c 1 + 474 355 547 438 591 438 c 0 + 646 438 661 410 661 354 c 0xf4 + 661 318 647 254 642 228 c 0 + 637 204 625 156 620 129 c 0 + 618 119 616 102 616 97 c 0 + 616 88 620 76 630 76 c 0 + 651 76 696 130 699 136 c 1 + 706 136 713 115 713 109 c 1 + 696 78 611 -8 558 -8 c 0 + 526 -8 496 12 496 62 c 0 + 496 76 503 112 505 120 c 0xf8 +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 78 +Width: 523 +Flags: HW +HStem: -8 84<328 427> 331 107<295 401> 354 84<83 182> +VStem: 108 119<240 396> 282 120<33 187> 325 119<215 389> +LayerCount: 2 +Fore +SplineSet +219 311 m 0xb4 + 217 299 209 267 209 268 c 1 + 238 334 325 438 374 438 c 3 + 429 438 444 410 444 354 c 0xd4 + 444 321 430 253 425 228 c 2 + 406 129 l 2 + 405 125 402 102 402 97 c 0 + 402 88 406 76 416 76 c 0 + 437 76 482 130 485 136 c 1 + 492 136 499 115 499 109 c 1 + 482 78 397 -8 344 -8 c 0 + 312 -8 282 12 282 62 c 0xd8 + 282 76 289 112 291 120 c 1 + 313 236 l 2 + 316 248 325 301 325 311 c 0 + 325 321 321 331 310 331 c 0xd4 + 282 331 205 213 178 89 c 10 + 158 0 l 17 + 148 -3 115 -6 104 -6 c 0 + 93 -6 58 -3 46 0 c 1 + 104 302 l 2 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0 + 201 438 228 414 228 369 c 0 + 228 355 221 321 219 311 c 0xb4 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 79 +Width: 444 +Flags: HW +HStem: -6 39<146 211> 399 39<216 279> +VStem: 15 122<54 239> 289 122<191 383> +LayerCount: 2 +Back +SplineSet +252.9296875 393.5546875 m 0 + 233.3984375 393.5546875 215.087890625 385.7421875 197.998046875 370.1171875 c 0 + 180.908203125 354.4921875 166.911132812 334.635742188 156.005859375 310.546875 c 0 + 145.100585938 286.458007812 136.555664062 260.661132812 130.37109375 233.154296875 c 0 + 124.186523438 205.647460938 121.09375 179.362304688 121.09375 154.296875 c 0 + 121.09375 114.909179688 125.9765625 83.740234375 135.7421875 60.791015625 c 0 + 145.5078125 37.841796875 159.1796875 26.3671875 176.7578125 26.3671875 c 0 + 195.963867188 26.3671875 213.948242188 34.2607421875 230.712890625 50.048828125 c 0 + 247.477539062 65.8369140625 261.067382812 85.8564453125 271.484375 110.107421875 c 0 + 281.901367188 134.358398438 290.0390625 160.237304688 295.8984375 187.744140625 c 0 + 301.7578125 215.250976562 304.6875 241.536132812 304.6875 266.6015625 c 0 + 304.6875 306.640625 300.374023438 337.809570312 291.748046875 360.107421875 c 0 + 283.122070312 382.405273438 270.182617188 393.5546875 252.9296875 393.5546875 c 0 +266.6015625 424.8046875 m 0 + 304.362304688 424.8046875 332.844726562 411.865234375 352.05078125 385.986328125 c 0 + 371.256835938 360.107421875 380.859375 325.1953125 380.859375 281.25 c 0 + 380.859375 247.721679688 374.430664062 213.623046875 361.572265625 178.955078125 c 0 + 348.713867188 144.287109375 332.112304688 113.525390625 311.767578125 86.669921875 c 0 + 291.422851562 59.814453125 267.578125 37.841796875 240.234375 20.751953125 c 0 + 212.890625 3.662109375 185.546875 -4.8828125 158.203125 -4.8828125 c 0 + 120.442382812 -4.8828125 92.1220703125 7.4873046875 73.2421875 32.2265625 c 0 + 54.3623046875 56.9658203125 44.921875 91.1455078125 44.921875 134.765625 c 0 + 44.921875 168.293945312 51.26953125 202.555664062 63.96484375 237.548828125 c 0 + 76.66015625 272.541992188 93.1806640625 303.7109375 113.525390625 331.0546875 c 0 + 133.870117188 358.3984375 157.633789062 380.859375 184.814453125 398.4375 c 0 + 211.995117188 416.015625 239.2578125 424.8046875 266.6015625 424.8046875 c 0 +256.484375 438.4765625 m 3 + 282.490234375 438.4765625 305.001953125 434.391601562 324.021484375 426.22265625 c 0 + 343.040039062 418.053710938 357.952148438 406.5546875 368.7578125 391.724609375 c 0 + 379.563476562 376.89453125 387.478515625 360.287109375 392.502929688 341.903320312 c 0 + 397.52734375 323.518554688 400.0390625 302.975585938 400.0390625 280.2734375 c 0 + 400.0390625 244.118164062 393.84375 208.655273438 381.452148438 173.883789062 c 0 + 369.060546875 139.112304688 352.4609375 108.537109375 331.651367188 82.1591796875 c 0 + 310.841796875 55.7802734375 285.775390625 34.5166015625 256.452148438 18.3662109375 c 0 + 227.129882812 2.2158203125 196.541015625 -5.859375 164.6875 -5.859375 c 0 + 138.681640625 -5.859375 116.169921875 -1.7744140625 97.150390625 6.39453125 c 0 + 78.1318359375 14.5634765625 63.2197265625 26.0625 52.4140625 40.892578125 c 0 + 41.6083984375 55.72265625 33.693359375 72.330078125 28.6689453125 90.7138671875 c 0 + 23.64453125 109.098632812 21.1328125 129.641601562 21.1328125 152.34375 c 0 + 21.1328125 178.461914062 25.041015625 205.2109375 32.857421875 232.591796875 c 0 + 40.673828125 259.971679688 51.880859375 285.825195312 66.478515625 310.150390625 c 0 + 81.076171875 334.4765625 97.8896484375 356.290039062 116.919921875 375.591796875 c 0 + 135.94921875 394.892578125 157.625 410.19921875 181.947265625 421.509765625 c 0 + 206.26953125 432.821289062 231.115234375 438.4765625 256.484375 438.4765625 c 3 +EndSplineSet +Fore +SplineSet +256 399 m 0 + 183 399 137 229 137 122 c 0 + 137 99 137 33 170 33 c 0 + 243 33 289 204 289 305 c 0 + 289 337 289 399 256 399 c 0 +267 438 m 0 + 348 438 411 406 411 290 c 0 + 411 149 271 -6 154 -6 c 0 + 73 -6 15 45 15 139 c 0 + 15 280 150 438 267 438 c 0 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 80 +Width: 484 +Flags: HW +HStem: -214 31<-52 -10> -205 29<134 179> -5 43<172 244> 356 82<291 393> +VStem: 332 126<216 352> +LayerCount: 2 +Fore +SplineSet +294 356 m 0x38 + 265 356 235 336 214 315 c 1 + 209 289 180 146 180 146 c 2 + 165 71 177 38 202 38 c 0 + 271 38 332 210 332 292 c 0 + 332 324 325 356 294 356 c 0x38 +362 438 m 0 + 424 438 458 388 458 320 c 0 + 458 156 294 -5 175 -5 c 0 + 169 -5 157 -4 148 0 c 1 + 123 -123 l 2 + 121 -132 120 -140 120 -150 c 0 + 120 -155 124 -170 134 -173 c 0 + 151 -177 177 -176 180 -176 c 0 + 184 -177 181 -204 176 -206 c 1 + 163 -206 153 -205 142 -205 c 0x78 + 92 -205 6 -207 -51 -214 c 1 + -56 -213 -54 -186 -49 -183 c 1xb8 + -31 -183 -19 -178 -10 -167 c 0 + -3 -158 1 -147 6 -125 c 2 + 79 227 l 1 + 32 180 l 1 + 28 185 25 199 25 206 c 0 + 25 217 34 228 40 233 c 2 + 90 280 l 1 + 119 434 l 1 + 130 437 168 438 179 438 c 0 + 190 438 225 436 235 431 c 1 + 232 413 224 373 222 364 c 1 + 249 394 312 438 362 438 c 0 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 81 +Width: 443 +Flags: HW +HStem: -215 21G<120 139> -205 21<125 270 319 352> -7 86<64 184> 385 54<223 332> +VStem: 11 123<84 216> +LayerCount: 2 +Fore +SplineSet +349 -206 m 1x78 + 335 -206 283 -205 270 -205 c 0x78 + 213 -205 157 -211 121 -215 c 1xb8 + 119 -213 119 -184 125 -184 c 0 + 153 -181 181 -168 186 -143 c 2 + 229 82 l 1 + 208 48 150 -7 93 -7 c 0 + 35 -7 11 54 11 111 c 0 + 11 269 168 438 314 438 c 0 + 348 438 384 433 409 417 c 1 + 355 136 l 2 + 354 132 305 -130 305 -130 c 2 + 304 -137 303 -144 303 -150 c 0 + 303 -166 310 -177 353 -177 c 0 + 357 -177 354 -203 349 -206 c 1x78 +280 333 m 0 + 283 350 282 385 256 385 c 0 + 191 385 134 265 134 153 c 0 + 134 99 150 79 167 79 c 0 + 201 79 253 182 270 269 c 0 + 275 295 276 307 280 333 c 0 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 82 +Width: 421 +Flags: HW +HStem: -6 21G<98 109> 338 101<293 393> 354 84<83 182> +VStem: 108 119<231 396> 205 230<248 392> +LayerCount: 2 +Fore +SplineSet +366 438 m 3xc8 + 394 438 403 435 420 426 c 1 + 428 416 436 402 436 383 c 0 + 436 336 405 312 379 312 c 0 + 359 312 346 324 334 330 c 0 + 324 335 324 338 308 338 c 0xc8 + 280 338 205 213 178 89 c 10 + 158 0 l 17 + 148 -3 115 -6 104 -6 c 0 + 93 -6 58 -3 46 0 c 1 + 104 302 l 2 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0 + 201 438 228 414 228 369 c 0xb0 + 228 355 221 321 219 311 c 0 + 217 299 205 247 205 248 c 1 + 229 338 313 438 366 438 c 3xc8 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 83 +Width: 357 +Flags: HW +HStem: -7 39<94 190> 400 38<151 244> +VStem: 53 90<273 372> 201 91<65 164> +LayerCount: 2 +Fore +SplineSet +218 438 m 3 + 270 438 304 425 325 408 c 1 + 334 398 336 377 336 369 c 3 + 336 348 318 319 287 319 c 3 + 263 319 242 345 229 364 c 0 + 216 384 205 400 182 400 c 3 + 161 400 143 381 143 355 c 0 + 143 319 201 280 237 245 c 0 + 260 223 292 195 292 134 c 0 + 292 47 208 -7 113 -7 c 3 + 74 -7 32 6 11 23 c 1 + 2 34 -1 50 -1 61 c 3 + -1 86 18 113 46 113 c 3 + 70 113 85 95 104 69 c 0 + 121 46 133 32 157 32 c 3 + 178 32 201 56 201 74 c 0 + 201 117 138 156 101 197 c 0 + 77 224 53 244 53 303 c 0 + 53 381 123 438 218 438 c 3 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 84 +Width: 320 +Flags: HW +HStem: -8 84<94 193> 369 45<43 106 229 317> +VStem: 49 120<33 186> +LayerCount: 2 +Fore +SplineSet +115 414 m 1 + 130 492 l 1 + 141 506 229 557 237 557 c 0 + 243 557 250 554 254 551 c 1 + 229 414 l 1 + 314 414 l 2 + 318 414 318 407 318 402 c 0 + 318 392 314 377 309 369 c 1 + 220 369 l 1 + 173 129 l 2 + 172 123 169 102 169 97 c 0 + 169 88 173 76 183 76 c 0 + 204 76 249 130 252 136 c 1 + 259 136 266 115 266 109 c 1 + 249 78 163 -8 110 -8 c 0 + 78 -8 49 12 49 62 c 0 + 49 76 55 107 58 120 c 2 + 106 369 l 1 + 34 369 l 2 + 33 369 32 370 32 372 c 0 + 32 382 57 414 79 414 c 2 + 115 414 l 1 +EndSplineSet +EndChar + +StartChar: u +Encoding: 117 117 85 +Width: 520 +Flags: HW +HStem: -8 107<98 210> -8 84<321 420> 354 84<79 178> +VStem: 62 119<41 215> 104 119<242 396> 275 120<33 192> +LayerCount: 2 +Fore +SplineSet +282 110 m 0x74 + 286 131 291 151 294 162 c 1 + 257 83 165 -8 123 -8 c 3xb4 + 73 -8 62 16 62 76 c 0x74 + 62 107 75 174 80 199 c 8 + 88 239 94 262 100 302 c 18 + 101 306 104 329 104 334 c 0 + 104 343 100 354 90 354 c 0 + 69 354 24 301 21 295 c 1 + 14 295 7 315 7 321 c 1 + 24 352 105 438 158 438 c 0 + 197 438 224 414 224 369 c 0x6c + 224 355 217 321 215 311 c 0 + 213 299 192 194 192 194 c 2 + 190 182 181 130 181 120 c 0 + 181 110 185 100 196 100 c 0xb4 + 224 100 306 243 330 363 c 10 + 344 431 l 17 + 354 434 387 437 398 437 c 0 + 409 437 444 434 456 431 c 1 + 399 129 l 2 + 398 124 396 102 396 97 c 0 + 396 88 399 76 409 76 c 0 + 430 76 476 130 479 136 c 1 + 486 136 492 115 492 109 c 1 + 475 78 390 -8 337 -8 c 0 + 305 -8 275 12 275 62 c 0 + 275 69 278 89 282 110 c 0x74 +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 86 +Width: 454 +VWidth: 0 +Flags: HW +HStem: -5 21G<115 157> 348 91<72 181> +VStem: 90 119<110 348> 340 100<275 355> +LayerCount: 2 +Fore +SplineSet +230 109 m 1 + 261 131 295 166 316 206 c 0 + 337 247 340 279 340 300 c 0 + 340 324 323 355 299 375 c 1 + 299 411 340 438 363 438 c 0 + 400 438 439 415 439 349 c 0 + 439 225 188 -5 126 -5 c 1 + 105 44 90 164 90 283 c 2 + 90 326 l 2 + 90 335 89 348 79 348 c 0 + 64 348 25 301 22 295 c 1 + 15 295 9 315 9 321 c 1 + 27 353 107 438 160 438 c 0 + 202 438 209 413 209 384 c 2 + 209 384 209 365 209 353 c 24 + 209 333 l 2 + 209 226 222 119 230 109 c 1 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 87 +Width: 708 +VWidth: 0 +Flags: HW +HStem: -5 21G<116 162 374 417> 348 91<71 180> +VStem: 89 119<122 348> 339 108<246 328> 595 100<275 355> +LayerCount: 2 +Fore +SplineSet +447 396 m 1 + 447 345 453 281 460 225 c 0 + 468 164 477 114 481 109 c 1 + 506 123 546 157 571 201 c 0 + 592 238 595 273 595 295 c 0 + 595 323 578 355 554 375 c 1 + 554 411 595 438 618 438 c 0 + 655 438 694 415 694 349 c 0 + 694 225 453 -4 381 -4 c 1 + 367 15 358 57 350 100 c 0 + 344 132 340 165 339 188 c 1 + 308 123 197 23 127 -5 c 1 + 106 44 89 164 89 283 c 2 + 89 326 l 2 + 89 335 88 348 78 348 c 0 + 63 348 24 301 21 295 c 1 + 14 295 8 315 8 321 c 1 + 26 353 106 438 159 438 c 0 + 201 438 208 413 208 384 c 2 + 208 384 208 365 208 353 c 0 + 208 333 l 2 + 208 226 221 128 229 118 c 1 + 253 135 284 176 303 213 c 0 + 317 240 331 280 337 315 c 1 + 345 348 426 396 447 396 c 1 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 88 +Width: 499 +VWidth: 0 +Flags: HW +HStem: -8 84<267 368> -7 74<53 124> 348 91<111 213> 364 74<352 419> +LayerCount: 2 +Fore +SplineSet +199 438 m 0x60 + 226 438 240 412 248 384 c 2 + 274 290 l 1 + 313 366 l 1 + 337 411 368 438 407 438 c 0 + 431 438 465 430 478 418 c 1 + 483 409 489 387 489 371 c 0 + 489 345 471 312 436 312 c 0 + 413 312 399 329 392 340 c 0 + 386 350 377 364 370 364 c 0 + 359 364 351 352 339 332 c 2 + 288 245 l 1 + 327 115 l 2 + 333 96 340 76 357 76 c 0 + 378 76 424 130 427 136 c 1 + 434 136 440 115 440 109 c 1 + 423 78 337 -8 284 -8 c 0x90 + 250 -8 236 24 224 57 c 0 + 224 59 214 94 200 140 c 1 + 162 65 l 1 + 138 20 107 -7 68 -7 c 0 + 37 -7 19 0 3 11 c 1 + -4 17 -12 37 -12 58 c 0 + -12 84 5 120 40 120 c 0 + 63 120 77 103 84 92 c 0 + 90 83 98 67 105 67 c 0 + 115 67 125 74 141 102 c 2 + 187 185 l 1 + 150 308 l 2 + 147 317 138 348 118 348 c 0 + 103 348 65 301 62 295 c 1 + 55 295 48 315 48 321 c 1 + 66 353 146 438 199 438 c 0x60 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 89 +Width: 489 +Flags: HW +HStem: -213 78<-26 59> 348 91<57 196> +VStem: 139 118<25 262> 360 100<244 355> +LayerCount: 2 +Fore +SplineSet +126 438 m 0 + 266 438 257 85 257 25 c 1 + 292 68 360 191 360 297 c 0 + 360 335 334 363 319 375 c 1 + 319 408 357 438 385 438 c 0 + 420 438 460 416 460 348 c 0 + 460 119 121 -213 -11 -213 c 0 + -46 -213 -74 -194 -74 -152 c 0 + -74 -135 -60 -112 -45 -104 c 1 + -30 -113 15 -135 52 -135 c 0 + 113 -135 128 -104 130 -98 c 0 + 140 -68 139 8 139 50 c 0 + 139 161 117 348 69 348 c 0 + 45 348 16 298 13 295 c 1 + 5 296 -2 318 -1 321 c 1 + 10 340 80 438 126 438 c 0 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 90 +Width: 430 +Flags: HW +HStem: -3 96<245 321> 37 93<68 184> 307 93<229 344> 344 96<92 168> +LayerCount: 2 +Back +SplineSet +117.1875 343.75 m 0 + 127.278320312 343.75 138.752929688 340.657226562 151.611328125 334.47265625 c 0 + 164.469726562 328.288085938 178.955078125 322.102539062 195.068359375 315.91796875 c 0 + 211.181640625 309.733398438 228.515625 306.640625 247.0703125 306.640625 c 1024 +EndSplineSet +Fore +SplineSet +166 439 m 0x10 + 207 439 233 430 259 418 c 0 + 277 410 302 399 340 399 c 0 + 362 399 392 423 408 438 c 1 + 428 438 428 420 429 411 c 0 + 429 397 132 126 129 122 c 1 + 134 124 157 130 170 130 c 0x60 + 197 130 223 125 243 115 c 0 + 260 107 286 93 307 93 c 0 + 336 93 355 133 362 142 c 1 + 372 142 379 126 380 118 c 1 + 361 80 299 -3 247 -3 c 0x80 + 206 -3 180 7 154 19 c 0 + 136 27 111 37 73 37 c 0 + 51 37 21 13 5 -2 c 1 + -15 -2 -15 16 -16 25 c 1 + -16 41 282 310 284 314 c 1 + 279 312 256 307 243 307 c 0x60 + 216 307 190 311 170 321 c 0 + 153 329 127 344 106 344 c 0 + 77 344 58 304 51 295 c 1 + 41 295 34 310 33 318 c 1 + 52 356 114 439 166 439 c 0x10 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 91 +Width: 242 +Flags: HW +HStem: -141 21<122 129> 701 21<279 295> +VStem: 22 272 +LayerCount: 2 +Fore +SplineSet +125 395 m 0 + 130 422 124 445 121 470 c 0 + 117 491 115 514 120 541 c 0 + 139 639 244 713 288 723 c 1 + 294 723 299 709 295 701 c 1 + 267 687 211 642 200 585 c 0 + 192 547 197 527 202 504 c 0 + 206 483 211 460 203 422 c 0 + 188 348 118 296 89 291 c 1 + 116 286 167 234 152 160 c 0 + 144 122 132 99 120 78 c 0 + 106 55 94 35 86 -3 c 0 + 75 -60 113 -105 135 -119 c 1 + 136 -127 126 -141 120 -141 c 1 + 80 -131 3 -57 22 41 c 0 + 28 71 42 96 55 119 c 0 + 68 141 80 163 85 188 c 0 + 95 240 62 268 28 280 c 1 + 27 282 26 287 27 291 c 0 + 28 295 30 300 32 302 c 1 + 71 314 115 343 125 395 c 0 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 92 +Width: 195 +Flags: HW +LayerCount: 2 +Fore +SplineSet +168 739 m 1 + 175 744 185 748 198 748 c 0 + 206 748 215 745 214 738 c 2 + 48 -113 l 17 + 37 -121 21 -122 14 -122 c 0 + 5 -122 1 -116 2 -112 c 2 + 2 -112 100 408 168 739 c 1 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 93 +Width: 242 +Flags: HW +HStem: -141 21<-40 -23> 701 21<125 132> +VStem: -39 271 +LayerCount: 2 +Fore +SplineSet +134 723 m 1 + 174 713 250 639 231 541 c 0 + 225 513 214 489 201 467 c 0 + 188 444 175 421 170 395 c 0 + 160 343 192 314 226 302 c 1 + 227 300 227 295 226 291 c 0 + 225 287 224 282 222 280 c 1 + 183 268 140 240 130 188 c 0 + 125 163 129 140 133 118 c 0 + 137 95 140 70 134 41 c 0 + 115 -57 10 -131 -34 -141 c 1 + -40 -141 -43 -127 -39 -119 c 1 + -12 -105 43 -60 54 -3 c 0 + 61 34 57 55 52 77 c 0 + 48 98 43 121 51 160 c 0 + 66 234 137 286 166 291 c 1 + 139 296 86 348 101 422 c 0 + 110 465 123 488 137 510 c 0 + 150 531 161 551 168 585 c 0 + 179 642 141 687 120 701 c 1 + 119 709 128 723 134 723 c 1 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 94 +Width: 525 +Flags: HW +HStem: 239 60<302 433> 291 60<110 241> +LayerCount: 2 +Fore +SplineSet +188 351 m 0x40 + 273 351 308 299 393 299 c 0 + 428 299 453 320 483 342 c 1 + 485 341 487 335 487 327 c 0 + 487 282 412 239 355 239 c 0x80 + 269 239 235 291 149 291 c 0 + 114 291 89 270 59 248 c 1 + 57 249 55 255 55 263 c 0 + 55 311 137 351 188 351 c 0x40 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 95 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclamdown +Encoding: 161 161 96 +Width: 209 +Flags: W +HStem: 312 107<63 147> +VStem: 52 107<324 408> 58 92<-208 90> +LayerCount: 2 +Fore +SplineSet +52 365 m 0xc0 + 52 394 75 420 104 420 c 0 + 133 420 159 394 159 365 c 0 + 159 336 133 312 104 312 c 0 + 75 312 52 336 52 365 c 0xc0 +101 -218 m 0 + 71 -218 58 -186 58 -161 c 0 + 58 -134 70 -3 91 241 c 1 + 95 249 97 253 106 254 c 1 + 111 252 117 249 120 243 c 1 + 134 86 149 -111 149 -161 c 0xa0 + 149 -188 132 -218 101 -218 c 0 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 97 +Width: 396 +Flags: HW +HStem: -6 81<113 210> 390 49<197 289> +VStem: 24 123<88 240> +LayerCount: 2 +Back +SplineSet +192.3828125 -89.84375 m 1 + 455.078125 626.953125 l 1025 +136.71875 -89.84375 m 1 + 399.4140625 626.953125 l 1025 +EndSplineSet +Fore +SplineSet +274 463 m 17 + 281 463 310 462 309 455 c 9 + 137 -44 l 17 + 129 -44 102 -42 103 -35 c 9 + 274 463 l 17 +EndSplineSet +Refer: 67 99 N 1 0 0 1 10 0 2 +EndChar + +StartChar: sterling +Encoding: 163 163 98 +Width: 463 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -8 100<225 342> 300 41<73 359> 571 55<282 383> +VStem: 121 102<202 449> +LayerCount: 2 +Fore +SplineSet +82 341 m 1 + 97 341 360 341 370 341 c 1 + 381 330 358 304 352 300 c 1 + 56 300 l 17 + 52 306 74 341 82 341 c 1 +222 264 m 0 + 207 191 162 141 135 119 c 1 + 154 129 177 134 198 134 c 0 + 232 134 278 92 325 92 c 0 + 359 92 378 123 388 138 c 1 + 392 140 399 136 402 131 c 24 + 406 125 404 118 403 112 c 1 + 387 81 327 -8 256 -8 c 0 + 194 -8 158 50 91 50 c 0 + 74 50 29 10 10 -6 c 1 + 3 -6 -2 12 0 21 c 1 + 16 43 59 79 74 100 c 1 + 95 136 108 179 118 227 c 0 + 128 276 115 355 121 382 c 0 + 156 554 282 626 367 626 c 0 + 399 626 408 614 423 602 c 1 + 433 581 414 522 376 522 c 0 + 333 522 338 571 299 571 c 0 + 263 571 240 515 228 448 c 0 + 216 378 233 319 222 264 c 0 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 99 +Width: 526 +Flags: HW +HStem: 117 34<214 288> 450 34<253 326> +LayerCount: 2 +Fore +SplineSet +249 151 m 0 + 294 151 333 214 348 287 c 0 + 366 377 339 450 292 450 c 0 + 247 450 205 385 190 312 c 0 + 172 222 202 151 249 151 c 0 +400 444 m 1 + 464 498 l 2 + 467 500 470 499 474 496 c 0 + 482 489 492 471 493 455 c 1 + 428 400 l 1 + 439 371 442 336 435 300 c 0 + 427 261 409 224 384 194 c 1 + 422 138 l 2 + 424 136 422 131 419 127 c 0 + 411 116 392 103 375 98 c 1 + 338 151 l 1 + 307 130 270 117 234 117 c 0 + 195 117 162 132 139 156 c 1 + 81 107 l 2 + 78 105 75 105 72 108 c 0 + 64 114 54 133 53 150 c 1 + 111 200 l 1 + 99 229 97 264 104 300 c 0 + 113 343 132 382 160 413 c 1 + 123 468 l 2 + 121 470 122 473 125 477 c 0 + 132 488 154 503 171 508 c 1 + 208 454 l 1 + 238 474 273 484 307 484 c 0 + 346 484 377 469 400 444 c 1 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 100 +Width: 616 +Flags: HW +HStem: -4 35<119 183 320 370> 127 43<117 433> 214 43<133 450> 592 35<95 137 288 347 455 511 585 653> +LayerCount: 2 +Fore +SplineSet +136 214 m 2 + 133 214 131 217 131 221 c 0 + 131 232 136 246 146 257 c 1 + 448 257 l 2 + 450 257 451 254 451 250 c 0 + 451 239 450 224 439 214 c 1 + 136 214 l 2 +119 127 m 2 + 116 127 114 130 114 134 c 0 + 114 145 119 159 129 170 c 1 + 432 170 l 2 + 434 170 435 167 435 163 c 0 + 435 152 433 137 422 127 c 1 + 119 127 l 2 +207 138 m 2 + 232 269 l 0 + 233 276 233 280 231 288 c 0 + 218 340 163 509 163 509 c 2 + 154 535 154 542 147 561 c 0 + 138 584 105 591 93 592 c 1 + 90 599 94 621 99 627 c 1 + 132 623 188 620 225 620 c 0 + 262 620 315 623 350 627 c 1 + 353 621 349 599 343 592 c 1 + 331 591 289 589 284 566 c 0 + 283 562 286 559 288 552 c 2 + 352 342 l 1 + 356 337 451 472 504 548 c 0 + 509 556 511 562 512 569 c 0 + 515 586 463 591 451 592 c 1 + 448 599 453 621 458 627 c 1 + 499 623 515 620 556 620 c 0 + 595 620 619 625 656 627 c 1 + 659 621 655 599 649 592 c 1 + 637 591 596 589 579 568 c 0 + 557 541 399 338 363 282 c 0 + 358 275 356 271 355 265 c 0 + 330 138 l 2 + 321 97 316 67 320 48 c 0 + 322 35 361 32 373 31 c 1 + 376 24 371 2 366 -4 c 1 + 333 0 278 3 241 3 c 0 + 204 3 151 0 116 -4 c 1 + 113 2 117 24 123 31 c 1 + 135 32 176 35 183 48 c 0 + 194 67 198 97 207 138 c 2 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 101 +Width: 199 +Flags: HW +LayerCount: 2 +Fore +SplineSet +169 739 m 1 + 176 744 186 748 199 748 c 0 + 207 748 216 745 215 738 c 2 + 144 375 l 17 + 133 367 117 366 110 366 c 0 + 101 366 97 372 98 376 c 2 + 98 376 106 407 169 739 c 1 +74 251 m 1 + 81 256 92 260 105 260 c 0 + 113 260 121 257 120 250 c 2 + 49 -113 l 17 + 38 -121 22 -122 15 -122 c 0 + 6 -122 2 -116 3 -112 c 2 + 3 -112 11 -81 74 251 c 1 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 102 +Width: 430 +UnlinkRmOvrlpSave: 1 +Flags: W +HStem: -76 49<110 233> 589 49<199 322> +VStem: 37 53<345 459> 117 45<482 538> 270 45<24 80> 342 53<103 217> +LayerCount: 2 +Fore +SplineSet +297 638 m 0 + 188 638 117 573 117 495 c 0 + 117 425 185 370 232 327 c 0 + 285 278 342 213 342 132 c 0 + 342 89 324 69 303 32 c 0 + 303 32 280 14 270 -3 c 24 + 264 -14 266 -22 264 -34 c 17 + 301 -9 395 103 395 175 c 0 + 395 259 332 327 281 374 c 0 + 235 416 162 491 162 536 c 0 + 162 573 211 589 241 589 c 0 + 256 589 264 585 272 581 c 0 + 282 576 291 569 308 569 c 0 + 324 569 343 590 343 604 c 0 + 343 610 342 620 337 630 c 1 + 323 636 311 638 297 638 c 0 +135 -76 m 0 + 244 -76 314 -12 314 66 c 0 + 314 136 246 191 199 234 c 0 + 146 283 90 349 90 430 c 0 + 90 473 108 492 129 529 c 0 + 129 529 152 547 162 564 c 24 + 168 575 166 584 168 596 c 17 + 131 571 37 459 37 387 c 0 + 37 303 99 235 150 188 c 0 + 196 146 270 70 270 25 c 0 + 270 -12 220 -27 190 -27 c 0 + 175 -27 167 -24 159 -20 c 0 + 149 -15 141 -8 124 -8 c 0 + 108 -8 89 -29 89 -43 c 0 + 89 -49 90 -58 95 -68 c 1 + 109 -74 121 -76 135 -76 c 0 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 103 +Width: 336 +Flags: HW +LayerCount: 2 +Fore +Refer: 226 776 N 1 0 0 1 396 0 2 +EndChar + +StartChar: copyright +Encoding: 169 169 104 +Width: 643 +Flags: W +HStem: 67 30<242 402> 190 31<289 407> 438 33<283 395> 570 30<242 402> +VStem: 55 32<251 417> 183 56<265 400> 559 30<254 414> +LayerCount: 2 +Fore +SplineSet +445 270 m 1 + 445 267 433 212 426 209 c 0 + 395 196 363 190 322 190 c 0 + 243 190 183 251 183 328 c 0 + 183 406 239 472 320 472 c 0 + 349 472 397 466 430 453 c 1 + 430 453 445 398 445 394 c 0 + 445 389 437 385 430 385 c 0 + 427 385 425 386 423 387 c 1 + 420 400 401 438 332 438 c 0 + 279 438 238 391 238 337 c 0 + 238 258 296 222 341 222 c 0 + 370 222 398 228 411 240 c 0 + 423 251 424 272 426 272 c 0 + 429 272 444 272 445 270 c 1 +87 334 m 0 + 87 204 192 98 322 98 c 0 + 452 98 559 204 559 334 c 0 + 559 464 452 570 322 570 c 0 + 192 570 87 464 87 334 c 0 +55 334 m 0 + 55 481 174 601 321 601 c 0 + 468 601 589 481 589 334 c 0 + 589 187 468 67 321 67 c 0 + 174 67 55 187 55 334 c 0 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 105 +Width: 389 +Flags: HW +HStem: 241 58<95 175 248 322> 498 43<196 287> +VStem: 54 90<299 406> +LayerCount: 2 +Fore +SplineSet +260 240 m 0 + 236 240 214 251 214 280 c 0 + 214 283 215 289 216 294 c 0 + 217 299 217 303 218 306 c 1 + 203 282 158 241 115 241 c 0 + 75 241 54 276 54 321 c 0 + 54 439 183 541 273 541 c 0 + 299 541 336 534 350 529 c 1 + 307 341 l 2 + 307 338 304 322 304 319 c 0 + 304 313 306 306 314 306 c 0 + 330 306 363 342 365 346 c 1 + 370 343 375 328 373 319 c 1 + 361 298 299 240 260 240 c 0 +231 498 m 0 + 182 498 144 424 144 346 c 0 + 144 315 153 299 169 299 c 0 + 193 299 228 366 243 431 c 2 + 257 490 l 1 + 252 495 241 498 231 498 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 106 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +SplineSet +386 90 m 1 + 380 80 365 72 359 71 c 1 + 355 75 302 151 198 228 c 1 + 195 232 194 237 195 242 c 0 + 196 247 199 253 203 257 c 1 + 337 334 420 409 425 413 c 1 + 430 412 444 405 446 395 c 1 + 441 389 334 277 294 242 c 1 + 320 207 383 96 386 90 c 1 +217 90 m 1 + 211 80 195 72 189 71 c 1 + 185 75 133 151 29 228 c 1 + 26 232 24 237 25 242 c 0 + 26 247 29 253 33 257 c 1 + 167 334 250 409 255 413 c 1 + 260 412 274 405 276 395 c 1 + 271 389 164 277 124 242 c 1 + 150 207 214 96 217 90 c 1 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 107 +Width: 573 +Flags: W +HStem: 355 55<48 445> +VStem: 445 59<155 355> +LayerCount: 2 +Fore +SplineSet +504 410 m 17 + 504 165 l 17 + 503 164 478 150 458 150 c 0 + 458 150 448 151 445 157 c 1 + 445 178 445 278 445 355 c 9 + 50 355 l 1 + 50 355 44 355 44 365 c 1 + 44 365 49 410 59 410 c 2 + 504 410 l 17 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 108 +Width: 643 +Flags: W +HStem: 130 31<242 402> 266 14<199 229 279 309 439 467> 393 18<277 307> 523 16<200 229 279 333> 633 31<242 402> +VStem: 55 32<314 481> 231 46<287 393 411 519> 357 47<421 514> 559 30<317 478> +LayerCount: 2 +Fore +SplineSet +315 540 m 0 + 353 540 404 515 404 468 c 0 + 404 438 378 410 350 400 c 1 + 372 364 393 336 420 303 c 0 + 433 288 444 282 467 280 c 1 + 469 278 466 267 466 266 c 1 + 438 266 408 268 400 271 c 0 + 394 273 383 276 373 289 c 0 + 367 297 330 348 304 388 c 0 + 302 392 298 393 292 393 c 0 + 292 393 281 393 277 393 c 1 + 277 317 l 1 + 277 305 277 294 279 287 c 0 + 280 282 303 280 308 280 c 1 + 310 278 310 268 308 266 c 1 + 291 267 271 268 255 268 c 0 + 239 268 218 267 201 266 c 1 + 199 268 199 278 201 280 c 1 + 206 280 228 282 229 287 c 0 + 231 294 231 304 231 317 c 2 + 231 490 l 2 + 231 502 231 513 229 520 c 0 + 228 525 206 527 201 527 c 1 + 199 529 199 539 201 541 c 1 + 218 540 241 539 257 539 c 0 + 273 539 291 540 315 540 c 0 +357 458 m 0 + 357 495 346 523 300 523 c 0 + 295 523 281 523 279 519 c 0 + 277 514 277 501 277 488 c 2 + 277 411 l 1 + 277 411 288 411 295 411 c 16 + 330 411 357 426 357 458 c 0 +87 397 m 0 + 87 267 192 161 322 161 c 0 + 452 161 559 267 559 397 c 0 + 559 527 452 633 322 633 c 0 + 192 633 87 527 87 397 c 0 +55 397 m 0 + 55 544 174 664 321 664 c 0 + 468 664 589 544 589 397 c 0 + 589 250 468 130 321 130 c 0 + 174 130 55 250 55 397 c 0 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 109 +Width: 254 +Flags: HW +LayerCount: 2 +Fore +Refer: 223 772 N 1 0 0 1 376 0 2 +EndChar + +StartChar: degree +Encoding: 176 176 110 +Width: 274 +Flags: HW +HStem: 415 45<136 221> 588 44<152 239> +VStem: 86 201 +LayerCount: 2 +Fore +SplineSet +128 524 m 0 + 121 489 142 460 174 460 c 0 + 206 460 238 489 245 524 c 0 + 252 559 232 588 200 588 c 0 + 168 588 135 559 128 524 c 0 +86 524 m 0 + 98 584 151 632 207 632 c 0 + 263 632 299 584 287 524 c 0 + 275 464 221 415 165 415 c 0 + 109 415 74 464 86 524 c 0 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 111 +Width: 535 +Flags: W +HStem: 6 55<38 498> 298 55<38 239 294 498> +VStem: 239 55<92 298 353 555> +LayerCount: 2 +Fore +SplineSet +48 61 m 1 + 126 61 447 61 493 61 c 0 + 497 61 502 57 502 49 c 0 + 502 33 494 14 486 6 c 1 + 39 6 l 1 + 39 6 33 6 33 16 c 0 + 33 20 38 53 48 61 c 1 +48 353 m 1 + 239 353 l 9 + 239 353 239 529 239 548 c 1 + 255 554 274 559 281 559 c 0 + 291 559 294 553 294 553 c 1 + 294 353 l 25 + 372 353 415 353 493 353 c 16 + 497 353 502 349 502 341 c 0 + 502 325 494 306 486 298 c 1 + 294 298 l 25 + 294 298 294 176 294 101 c 1 + 282 92 262 90 252 90 c 0 + 245 90 239 95 239 99 c 2 + 239 298 l 25 + 39 298 l 1 + 39 298 33 298 33 308 c 0 + 33 312 38 345 48 353 c 1 +EndSplineSet +EndChar + +StartChar: uni00B2 +Encoding: 178 178 112 +Width: 349 +Flags: W +HStem: 248 54<118 277> 588 44<106 206> +VStem: 222 63<461 572> +LayerCount: 2 +Back +SplineSet +365.33203125 539.94140625 m 0 + 365.33203125 516.33984375 358.310546875 494.393554688 344.268554688 474.10546875 c 0 + 330.2265625 453.81640625 309.799804688 432.076171875 282.98828125 408.88671875 c 0 + 275.548828125 402.452148438 267.651367188 395.708007812 259.297851562 388.654296875 c 0 + 250.944335938 381.600585938 243.15625 375.08203125 235.93359375 369.09765625 c 0 + 228.7109375 363.11328125 221.565429688 357.220703125 214.497070312 351.41796875 c 0 + 207.427734375 345.616210938 201.154296875 340.486328125 195.676757812 336.030273438 c 0 + 190.198242188 331.573242188 185.350585938 327.625976562 181.134765625 324.186523438 c 0 + 176.91796875 320.747070312 173.7265625 318.118164062 171.559570312 316.30078125 c 0 + 169.393554688 314.483398438 168.391601562 313.57421875 168.5546875 313.57421875 c 2 + 272.6953125 313.57421875 l 2 + 287.15625 313.57421875 298.220703125 317.166992188 305.888671875 324.3515625 c 0 + 313.556640625 331.537109375 319.647460938 341.049804688 324.16015625 352.890625 c 0 + 325.521484375 356.46484375 328.548828125 358.251953125 333.2421875 358.251953125 c 0 + 336.336914062 358.251953125 339.767578125 356.862304688 343.53515625 354.08203125 c 1 + 342.766601562 352.283203125 326.823242188 316.938476562 295.703125 248.046875 c 1 + 89.84375 248.046875 l 2 + 88.576171875 248.046875 87.4794921875 249.370117188 86.5546875 252.016601562 c 0 + 85.6298828125 254.6640625 85.3134765625 257.708984375 85.60546875 261.15234375 c 1 + 102.861328125 276.5859375 125.736328125 299.077148438 154.231445312 328.624023438 c 0 + 182.7265625 358.171875 205.26171875 382.940429688 221.8359375 402.9296875 c 0 + 260.182617188 449.176757812 279.35546875 490.478515625 279.35546875 526.8359375 c 0 + 279.35546875 542.758789062 274.96875 555.575195312 266.1953125 565.287109375 c 0 + 257.420898438 574.998046875 245.056640625 579.853515625 229.1015625 579.853515625 c 0 + 220.993164062 579.853515625 212.885742188 578.215820312 204.779296875 574.94140625 c 0 + 196.672851562 571.666992188 189.5859375 567.5234375 183.520507812 562.510742188 c 0 + 177.455078125 557.498046875 172.829101562 553.407226562 169.642578125 550.23828125 c 0 + 166.45703125 547.069335938 163.874023438 544.232421875 161.89453125 541.728515625 c 1 + 159.321289062 541.728515625 156.842773438 543.068359375 154.458984375 545.749023438 c 0 + 152.07421875 548.4296875 150.71875 551.061523438 150.390625 553.642578125 c 1 + 152.3046875 557.923828125 156.997070312 564.06640625 164.466796875 572.072265625 c 0 + 171.936523438 580.077148438 181.114257812 588.556640625 191.998046875 597.510742188 c 0 + 202.8828125 606.46484375 215.7421875 614.19921875 230.577148438 620.71484375 c 0 + 245.411132812 627.23046875 259.65234375 630.48828125 273.30078125 630.48828125 c 0 + 297.178710938 630.48828125 318.487304688 622.228515625 337.224609375 605.708007812 c 0 + 355.962890625 589.1875 365.33203125 567.264648438 365.33203125 539.94140625 c 0 +EndSplineSet +Fore +SplineSet +313 352 m 1 + 302 324 291 280 277 248 c 1 + 50 248 l 1 + 44 248 36 256 38 260 c 1 + 77 303 135 354 175 408 c 0 + 202 445 222 482 222 518 c 0 + 222 559 199 588 158 588 c 0 + 114 588 91 561 73 540 c 1 + 69 536 55 552 56 557 c 1 + 78 596 124 632 169 632 c 0 + 237 632 285 589 285 527 c 0 + 285 495 270 464 241 429 c 0 + 215 398 165 350 118 302 c 1 + 236 302 l 2 + 276 302 288 344 294 354 c 0 + 295 356 296 356 299 357 c 0 + 302 357 310 356 313 352 c 1 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 113 +Width: 310 +Flags: W +HStem: 243 27<105 183> 593 38<100 176> +VStem: 188 55<502 583> 212 62<305 419> +LayerCount: 2 +Fore +SplineSet +158 631 m 0xe0 + 199 631 243 606 243 556 c 0xe0 + 243 513 208 485 187 475 c 1 + 212 475 274 441 274 377 c 0 + 274 291 200 243 115 243 c 0 + 94 243 60 249 50 258 c 1 + 50 258 38 268 38 281 c 0 + 38 301 52 313 68 313 c 0 + 85 313 92 297 104 285 c 0 + 114 275 127 271 142 271 c 0 + 183 271 212 299 212 359 c 0xd0 + 212 407 178 443 142 443 c 0 + 124 443 108 437 103 436 c 1 + 101 438 99 442 98 446 c 0 + 97 450 97 454 98 456 c 1 + 146 466 188 495 188 543 c 0 + 188 568 164 593 139 593 c 0 + 103 593 76 563 70 557 c 1 + 65 559 61 571 62 572 c 1 + 76 593 106 631 158 631 c 0xe0 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 114 +Width: 197 +Flags: HW +LayerCount: 2 +Back +SplineSet +296.895507812 638.66015625 m 0 + 296.895507812 646.025390625 292.3828125 653.240234375 283.356445312 660.303710938 c 0 + 274.331054688 667.3671875 262.766601562 670.8984375 248.6640625 670.8984375 c 0 + 234.471679688 670.8984375 225.03125 667.96875 220.34375 662.109375 c 1 + 209.11328125 643.53515625 196.536132812 617.595703125 182.61328125 584.291015625 c 0 + 168.690429688 550.987304688 161.729492188 532.088867188 161.729492188 527.59765625 c 0 + 161.729492188 525.173828125 164.01953125 521.595703125 168.599609375 516.86328125 c 0 + 173.1796875 512.131835938 177.081054688 509.765625 180.3046875 509.765625 c 0 + 182.607421875 509.765625 189.889648438 514.654296875 202.15234375 524.431640625 c 0 + 214.415039062 534.209960938 227.612304688 545.706054688 241.743164062 558.921875 c 0 + 255.875 572.137695312 268.599609375 586.403320312 279.91796875 601.720703125 c 0 + 291.236328125 617.038085938 296.895507812 629.350585938 296.895507812 638.66015625 c 0 +EndSplineSet +Fore +Refer: 191 769 N 1 0 0 1 348 0 2 +EndChar + +StartChar: mu +Encoding: 181 181 115 +Width: 516 +Flags: HW +HStem: -9 97<163 221> -4 80<338 409> +LayerCount: 2 +Fore +SplineSet +168 436 m 0x80 + 177 436 220 412 217 399 c 0 + 215 389 208 347 175 260 c 0 + 173 254 161 218 161 218 c 0 + 146 141 158 88 188 88 c 0x80 + 238 88 264 141 282 199 c 1 + 284 207 329 423 329 423 c 17 + 344 433 363 437 374 436 c 0 + 414 433 436 412 433 399 c 0 + 430 381 415 327 382 240 c 0 + 380 234 373 218 373 218 c 1 + 356 138 349 76 388 76 c 0 + 409 76 438 97 446 106 c 1 + 449 106 452 99 454 94 c 0 + 455 90 454 77 453 74 c 0 + 433 31 392 -4 358 -4 c 0x40 + 317 -3 300 63 305 125 c 1 + 266 57 225 -9 165 -9 c 0 + 130 -9 128 41 124 74 c 1 + 121 50 64 -121 106 -187 c 1 + 100 -195 70 -222 54 -222 c 0 + 9 -222 1 -162 1 -124 c 0 + 1 -88 51 97 81 199 c 1 + 86 222 92 269 96 291 c 0 + 99 304 113 381 120 416 c 1 + 126 424 157 436 168 436 c 0x80 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 116 +Width: 472 +Flags: W +HStem: -4 26<153 210 363 422> 2 33<262 311> 281 39<259 313> 292 39<354 382> 597 36<259 314> 609 28<361 415> +VStem: 33 226<383 543> 221 38<42 280> 314 39<42 285 331 596> +LayerCount: 2 +Fore +SplineSet +314 325 m 1x2980 + 314 360 314 579 314 592 c 1 + 310 596 296 597 286 597 c 0 + 276 597 265 597 259 591 c 9 + 259 591 259 420 259 320 c 1 + 265 320 310 322 314 325 c 1x2980 +313 285 m 17 + 299 284 275 282 259 281 c 9 + 259 216 259 178 259 113 c 16 + 259 84 259 57 262 41 c 0 + 263 34 282 35 286 35 c 0x6180 + 293 35 311 35 312 41 c 0 + 315 57 314 84 314 113 c 2 + 313 285 l 17 +353 292 m 1x1680 + 353 223 353 182 353 113 c 16 + 353 84 352 57 357 41 c 0 + 360 30 409 22 421 22 c 1 + 423 22 423 -2 421 -4 c 1x9680 + 359 -2 352 2 290 2 c 0x4280 + 245 2 193 -2 154 -4 c 1 + 152 2 151 18 156 22 c 1 + 164 22 213 30 216 41 c 0 + 221 57 221 84 221 113 c 2 + 221 280 l 17x8180 + 96 280 33 390 33 458 c 0 + 33 564 120 637 200 637 c 0 + 258 637 237 633 295 633 c 0x8a80 + 360 633 413 638 413 638 c 1 + 418 633 417 612 412 609 c 1 + 397 609 361 602 356 590 c 0 + 354 583 354 577 354 527 c 0 + 354 467 354 350 354 331 c 1 + 359 330 401 344 401 344 c 1 + 406 344 411 342 411 338 c 0 + 410 328 390 305 383 302 c 0 + 372 297 361 293 353 292 c 1x1680 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 117 +Width: 292 +Flags: HW +HStem: 184 146<158.78 231.78> +VStem: 127.78 137<217 300> +LayerCount: 2 +Fore +SplineSet +127.780273438 244 m 0 + 127.780273438 290 169.780273438 330 210.780273438 330 c 19 + 241.780273438 330 264.780273438 305 264.780273438 273 c 0 + 264.780273438 230 224.780273438 184 183.780273438 184 c 19 + 150.780273438 184 127.780273438 211 127.780273438 244 c 0 +EndSplineSet +EndChar + +StartChar: cedilla +Encoding: 184 184 118 +Width: 396 +Flags: HW +LayerCount: 2 +Fore +Refer: 232 807 N 1 0 0 1 439 0 2 +EndChar + +StartChar: uni00B9 +Encoding: 185 185 119 +Width: 285 +Flags: W +HStem: 247 24<56 113 203 253> +VStem: 120 72<287 555> +LayerCount: 2 +Fore +SplineSet +120 506 m 2 + 120 551 113 556 102 556 c 0 + 90 556 67 547 47 540 c 1 + 41 543 38 551 38 557 c 0 + 38 560 39 563 41 564 c 0 + 145 607 185 637 188 637 c 2 + 189 637 l 2 + 195 637 200 617 201 614 c 1 + 201 614 192 573 192 535 c 2 + 192 332 l 2 + 192 312 193 302 200 286 c 0 + 203 279 243 272 251 272 c 1 + 254 272 254 251 251 247 c 1 + 213 248 195 250 157 250 c 0 + 119 250 98 248 60 247 c 1 + 55 250 55 271 60 271 c 0 + 72 271 111 278 114 285 c 0 + 119 298 120 320 120 330 c 2 + 120 506 l 2 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 120 +Width: 378 +Flags: W +HStem: 241 23<160 233> 518 23<146 222> +VStem: 37 67<315 467> 274 67<316 469> +LayerCount: 2 +Back +SplineSet +262.6953125 510.7421875 m 3 + 254.231445312 510.7421875 246.500976562 508.463867188 239.501953125 503.90625 c 0 + 232.502929688 499.348632812 226.725585938 493.65234375 222.16796875 486.81640625 c 0 + 217.610351562 479.98046875 213.37890625 471.435546875 209.47265625 461.181640625 c 0 + 205.56640625 450.927734375 202.555664062 441.487304688 200.439453125 432.861328125 c 0 + 198.323242188 424.235351562 196.2890625 414.387695312 194.3359375 403.3203125 c 0 + 191.40625 383.463867188 189.778320312 364.013671875 189.453125 344.970703125 c 0 + 189.127929688 325.927734375 192.626953125 309.5703125 199.951171875 295.8984375 c 0 + 207.275390625 282.2265625 217.7734375 275.390625 231.4453125 275.390625 c 0 + 241.862304688 275.390625 251.139648438 278.564453125 259.27734375 284.912109375 c 0 + 267.415039062 291.259765625 274.006835938 300.129882812 279.052734375 311.5234375 c 0 + 284.098632812 322.916992188 288.166992188 333.821289062 291.259765625 344.23828125 c 0 + 294.352539062 354.655273438 297.200195312 366.862304688 299.8046875 380.859375 c 1 + 302.734375 400.715820312 304.362304688 420.329101562 304.6875 439.697265625 c 0 + 305.012695312 459.065429688 301.513671875 475.749023438 294.189453125 489.74609375 c 0 + 286.865234375 503.743164062 276.3671875 510.7421875 262.6953125 510.7421875 c 3 +275.390625 540.0390625 m 0 + 317.3828125 540.0390625 349.202148438 526.286132812 370.849609375 498.779296875 c 0 + 392.497070312 471.272460938 399.4140625 436.848632812 391.6015625 395.5078125 c 0 + 383.7890625 354.166992188 363.118164062 318.766601562 329.58984375 289.306640625 c 0 + 296.061523438 259.846679688 259.114257812 245.1171875 218.75 245.1171875 c 0 + 176.7578125 245.1171875 144.938476562 259.033203125 123.291015625 286.865234375 c 0 + 101.643554688 314.697265625 94.7265625 349.284179688 102.5390625 390.625 c 0 + 110.3515625 431.640625 131.103515625 466.796875 164.794921875 496.09375 c 0 + 198.486328125 525.390625 235.3515625 540.0390625 275.390625 540.0390625 c 0 +EndSplineSet +Fore +SplineSet +183 518 m 0 + 126 518 104 456 104 401 c 0 + 104 337 135 265 199 265 c 0 + 253 265 274 328 274 382 c 0 + 274 445 246 518 183 518 c 0 +191 541 m 0 + 276 541 342 475 342 394 c 0 + 342 313 276 241 191 241 c 0 + 106 241 37 309 37 390 c 0 + 37 473 104 541 191 541 c 0 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 121 +Width: 466 +Flags: HW +LayerCount: 2 +Fore +SplineSet +73 395 m 1 + 79 405 96 412 102 413 c 1 + 106 409 158 334 262 257 c 1 + 265 253 266 247 265 242 c 0 + 264 237 260 232 256 228 c 1 + 122 151 40 75 35 71 c 1 + 30 72 16 80 14 90 c 1 + 19 96 125 207 165 242 c 1 + 139 277 76 389 73 395 c 1 +243 395 m 1 + 249 405 265 412 271 413 c 1 + 275 409 328 334 432 257 c 1 + 435 253 436 247 435 242 c 0 + 434 237 430 232 426 228 c 1 + 292 151 209 75 204 71 c 1 + 199 72 186 80 184 90 c 1 + 189 96 295 207 335 242 c 1 + 309 277 246 389 243 395 c 1 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 122 +Width: 682 +Flags: W +HStem: 104 44<432 543 604 637> 245 21<50 96 180 228> +VStem: 109 61<282 542> 543 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +592 397 m 0 + 598 397 601 391 601 386 c 8 + 601 291 601 233 601 143 c 1 + 608 143 625 143 635 143 c 1 + 644 135 649 118 641 104 c 1 + 627 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 588 -3 574 -3 c 0 + 561 -3 548 -2 543 2 c 9 + 543 104 l 1 + 382 104 l 1 + 377 105 373 108 372 119 c 1 + 572 386 l 2 + 576 391 584 397 592 397 c 0 +543 147 m 9 + 543 147 543 289 543 298 c 1 + 503 247 476 204 432 147 c 1 + 439 147 535 147 543 147 c 9 +170 521 m 2 + 170 328 l 2 + 170 308 172 295 177 280 c 0 + 179 273 218 267 226 267 c 1 + 231 262 228 247 227 245 c 1 + 189 246 181 248 143 248 c 0 + 105 248 91 246 53 245 c 1 + 48 248 49 263 53 267 c 1 + 65 267 99 274 102 281 c 0 + 107 294 109 316 109 326 c 2 + 109 508 l 2 + 109 527 103 542 93 542 c 0 + 82 542 66 534 46 527 c 1 + 40 530 35 539 33 545 c 1 + 52 557 82 574 165 623 c 1 + 172 621 178 614 178 607 c 1 + 178 607 170 559 170 521 c 2 +182 -12 m 0 + 172 -10 171 -4 171 -4 c 1 + 512 621 l 1 + 513 623 525 632 542 629 c 0 + 548 628 550 622 550 619 c 1 + 213 2 l 2 + 210 -4 198 -15 182 -12 c 0 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 123 +Width: 732 +Flags: W +HStem: -1 54<505 663> 245 21<53 99 183 231> 339 44<493 592> +VStem: 112 61<282 542> 608 63<212 323> +LayerCount: 2 +Fore +SplineSet +556 383 m 0 + 624 383 672 340 672 278 c 0 + 672 246 656 215 627 180 c 0 + 601 149 552 101 505 53 c 1 + 622 53 l 2 + 662 53 675 95 681 105 c 0 + 682 107 683 107 686 108 c 0 + 689 108 696 107 699 103 c 1 + 688 75 677 31 663 -1 c 1 + 437 -1 l 1 + 431 -1 423 7 425 11 c 1 + 462 51 515 98 554 148 c 0 + 586 188 608 230 608 269 c 0 + 608 310 585 339 544 339 c 0 + 500 339 477 312 459 291 c 1 + 455 287 441 303 442 308 c 1 + 464 347 511 383 556 383 c 0 +173 521 m 2 + 173 328 l 2 + 173 308 175 295 180 280 c 0 + 182 273 221 267 229 267 c 1 + 234 262 230 247 229 245 c 1 + 191 246 184 248 146 248 c 0 + 108 248 94 246 56 245 c 1 + 51 248 52 263 56 267 c 1 + 68 267 101 274 104 281 c 0 + 109 294 112 316 112 326 c 2 + 112 508 l 2 + 112 527 106 542 96 542 c 0 + 85 542 69 534 49 527 c 1 + 43 530 38 539 36 545 c 1 + 55 557 85 574 168 623 c 1 + 175 621 181 614 181 607 c 1 + 181 607 173 559 173 521 c 2 +551 619 m 1 + 214 2 l 2 + 211 -4 199 -15 183 -12 c 0 + 173 -10 172 -4 172 -4 c 1 + 513 621 l 1 + 514 623 526 632 543 629 c 0 + 549 628 551 622 551 619 c 1 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 124 +Width: 683 +Flags: W +HStem: 104 44<433 544 604 638> 243 27<101 179> 593 38<96 172> +VStem: 185 55<502 583> 208 62<305 419> 544 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +593 397 m 0xe4 + 599 397 602 391 602 386 c 8 + 602 291 602 233 602 143 c 1 + 609 143 626 143 636 143 c 1 + 645 135 650 118 642 104 c 1 + 628 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 589 -3 575 -3 c 0 + 562 -3 549 -2 544 2 c 9 + 544 104 l 1 + 383 104 l 1 + 378 105 374 108 373 119 c 1 + 573 386 l 2 + 577 391 585 397 593 397 c 0xe4 +544 147 m 9 + 544 147 544 289 544 298 c 1 + 504 247 477 204 433 147 c 1 + 440 147 536 147 544 147 c 9 +154 631 m 0 + 195 631 239 606 239 556 c 0xf4 + 239 513 204 485 183 475 c 1 + 208 475 271 441 271 377 c 0 + 271 291 196 243 111 243 c 0 + 90 243 56 249 46 258 c 1 + 46 258 34 268 34 281 c 0 + 34 301 48 313 64 313 c 0 + 81 313 88 297 100 285 c 0 + 110 275 123 271 138 271 c 0 + 179 271 208 299 208 359 c 0xec + 208 407 174 443 138 443 c 0 + 120 443 104 437 99 436 c 1 + 97 438 95 442 94 447 c 0 + 93 450 93 454 94 456 c 1 + 142 466 185 495 185 543 c 0xf4 + 185 568 160 593 135 593 c 0 + 99 593 72 563 66 557 c 1 + 61 559 57 571 58 572 c 1 + 72 593 102 631 154 631 c 0 +556 619 m 1 + 219 2 l 2 + 216 -4 204 -15 188 -12 c 0 + 178 -10 176 -4 176 -4 c 1 + 518 621 l 1 + 519 623 531 632 548 629 c 0 + 554 628 556 622 556 619 c 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 125 +Width: 336 +Flags: W +HStem: -218 92<164 280> -218 71<155 261> 312 107<185 269> +VStem: 40 49<-114 -13> 174 107<324 408> 221 28<174 254> +LayerCount: 2 +Fore +SplineSet +281 365 m 0x38 + 281 336 256 312 227 312 c 0 + 198 312 174 336 174 365 c 0 + 174 394 198 420 227 420 c 0 + 256 420 281 394 281 365 c 0x38 +249 243 m 1xb4 + 254 222 257 180 257 154 c 0 + 257 82 210 56 174 33 c 0 + 126 3 89 -19 89 -66 c 0 + 89 -117 124 -146 161 -146 c 0x78 + 213 -146 220 -126 245 -126 c 0 + 259 -126 288 -143 288 -175 c 0 + 288 -190 284 -204 279 -211 c 1 + 269 -216 253 -218 232 -218 c 0 + 168 -218 40 -151 40 -37 c 0 + 40 29 66 70 139 112 c 0 + 165 128 209 162 215 173 c 0 + 224 189 221 219 221 241 c 1 + 225 249 227 253 236 254 c 1 + 241 252 246 249 249 243 c 1xb4 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 126 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 233 -1 N 1 0 0 1 10 -3 2 +EndChar + +StartChar: Aacute +Encoding: 193 193 127 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 219 -3 2 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 128 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 96 25 2 +EndChar + +StartChar: Atilde +Encoding: 195 195 129 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 237 -1 N 1 0 0 1 70 0 2 +EndChar + +StartChar: Adieresis +Encoding: 196 196 130 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 119 12 2 +EndChar + +StartChar: Aring +Encoding: 197 197 131 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 112 0 2 +EndChar + +StartChar: AE +Encoding: 198 198 132 +Width: 843 +Flags: HW +HStem: -3 36<-62 -2 301 365> -2 43<507 698> 264 47<254 392> 295 46<530 657> 605 36<359 380 558 729> +VStem: 684 28<221 277> 703 27<378 417> 768 35<499 558> +LayerCount: 2 +Back +SplineSet +410.15625 485.3515625 m 25 + 126.953125 97.65625 l 1025 +468.75 459.9609375 m 25 + 185.546875 72.265625 l 1025 +EndSplineSet +Fore +SplineSet +495 642 m 0xad + 533 642 738 647 792 648 c 1 + 794 599 799 548 803 504 c 1 + 800 501 789 499 782 499 c 0 + 775 499 769 502 768 507 c 0 + 754 561 736 605 680 605 c 2 + 605 605 l 2 + 584 605 564 605 558 594 c 0 + 552 582 550 562 547 534 c 2 + 530 352 l 2 + 530 346 548 341 568 341 c 2 + 616 341 l 2 + 670 341 682 352 703 409 c 0 + 705 414 707 417 714 417 c 0 + 721 417 729 415 731 412 c 1x1b + 712 225 l 1 + 710 223 703 221 696 221 c 0 + 689 221 684 224 684 229 c 0 + 678 276 666 284 658 288 c 0 + 648 293 624 295 590 295 c 0 + 565 295 524 293 523 281 c 2 + 507 138 l 2 + 506 132 501 81 507 61 c 0 + 511 47 541 41 564 41 c 2 + 624 41 l 2 + 658 41 689 51 712 73 c 0 + 733 94 749 122 770 166 c 0 + 772 170 776 172 783 172 c 0 + 792 172 808 169 810 166 c 1 + 788 113 755 41 744 -2 c 1 + 719 -2 549 -2 426 -2 c 0x5d + 363 -2 313 -3 301 -3 c 1 + 297 3 299 26 304 33 c 1 + 316 34 359 37 365 50 c 0 + 374 70 376 100 380 142 c 2 + 392 259 l 2 + 391 260 390 263 388 263 c 0 + 354 265 332 264 310 264 c 0 + 273 264 258 264 226 263 c 0 + 223 263 218 260 217 258 c 2 + 217 258 148 159 129 132 c 0 + 113 108 93 72 91 65 c 0 + 84 40 145 32 152 32 c 1 + 155 25 153 0 149 -4 c 1 + 118 0 79 4 39 4 c 0 + -3 4 -28 0 -60 -4 c 1 + -63 0 -66 20 -59 31 c 1 + -48 31 0 46 13 62 c 0 + 36 89 44 104 64 131 c 2 + 372 576 l 0 + 372 576 380 589 380 594 c 0 + 380 604 362 608 356 608 c 1 + 352 615 357 639 361 645 c 1 + 401 642 457 642 495 642 c 0xad +421 554 m 1 + 254 317 l 1 + 254 317 254 313 256 313 c 0 + 274 311 298 311 319 311 c 0x29 + 347 311 365 310 393 312 c 0 + 395 312 398 317 398 317 c 1 + 417 501 l 2 + 419 522 420 539 421 554 c 1 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 133 +Width: 630 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 140 1 2 +EndChar + +StartChar: Egrave +Encoding: 200 200 134 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 233 -1 N 1 0 0 1 21 -16 2 +EndChar + +StartChar: Eacute +Encoding: 201 201 135 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 157 -16 2 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 136 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 49 25 2 +EndChar + +StartChar: Edieresis +Encoding: 203 203 137 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 81 12 2 +EndChar + +StartChar: Igrave +Encoding: 204 204 138 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 233 -1 N 1 0 0 1 -69 -16 2 +EndChar + +StartChar: Iacute +Encoding: 205 205 139 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 27 -16 2 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 140 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 -46 25 2 +EndChar + +StartChar: Idieresis +Encoding: 207 207 141 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 -23 12 2 +EndChar + +StartChar: Eth +Encoding: 208 208 142 +Width: 704 +Flags: HW +HStem: -3 41<-1 65 206 362> 297 38<50 383> 605 39<116 168 306 435> +LayerCount: 2 +Fore +SplineSet +59 335 m 1 + 86 335 368 335 381 335 c 0 + 385 335 387 331 386 327 c 0 + 385 322 380 304 375 297 c 1 + 348 297 65 297 52 297 c 0 + 48 297 48 304 49 308 c 0 + 50 313 52 328 59 335 c 1 +EndSplineSet +Refer: 36 68 N 1 0 0 1 1 0 2 +EndChar + +StartChar: Ntilde +Encoding: 209 209 143 +Width: 698 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 237 -1 N 1 0 0 1 89 0 2 +EndChar + +StartChar: Ograve +Encoding: 210 210 144 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 233 -1 N 1 0 0 1 47 -16 2 +EndChar + +StartChar: Oacute +Encoding: 211 211 145 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 210 -16 2 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 146 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 104 25 2 +EndChar + +StartChar: Otilde +Encoding: 213 213 147 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 237 -1 N 1 0 0 1 83 0 2 +EndChar + +StartChar: Odieresis +Encoding: 214 214 148 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 139 12 2 +EndChar + +StartChar: multiply +Encoding: 215 215 149 +Width: 425 +Flags: HW +VStem: 176 66<226 258> +LayerCount: 2 +Fore +SplineSet +38 68 m 0 + 32 68 23 94 23 110 c 1 + 174 242 l 2 + 175 243 176 244 176 245 c 0 + 176 247 176 249 175 250 c 2 + 76 384 l 1 + 76 398 102 419 107 419 c 0 + 111 419 109 417 111 415 c 2 + 213 277 l 2 + 214 276 216 275 217 275 c 2 + 219 276 l 26 + 373 414 l 2 + 375 416 377 417 379 417 c 0 + 386 417 394 392 394 374 c 1 + 244 241 l 2 + 243 240 242 240 242 239 c 3 + 242 238 242 238 243 237 c 2 + 341 104 l 1 + 341 90 321 68 314 68 c 0 + 310 68 309 69 308 71 c 2 + 207 208 l 2 + 206 209 205 210 204 210 c 0 + 203 210 201 209 200 208 c 2 + 43 71 l 2 + 41 69 40 68 38 68 c 0 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 150 +Width: 688 +Flags: HW +HStem: -10 42<255 385> 609 42<326 452> +VStem: 48 141<146 381> 522 141<253 490> +LayerCount: 2 +Fore +SplineSet +102 -13 m 17 + 94 -10 73 6 78 12 c 9 + 582 653 l 17 + 590 651 611 636 606 630 c 9 + 102 -13 l 17 +EndSplineSet +Refer: 47 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ugrave +Encoding: 217 217 151 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 233 -1 N 1 0 0 1 99 -16 2 +EndChar + +StartChar: Uacute +Encoding: 218 218 152 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 264 -16 2 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 153 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 139 25 2 +EndChar + +StartChar: Udieresis +Encoding: 220 220 154 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 165 12 2 +EndChar + +StartChar: Yacute +Encoding: 221 221 155 +Width: 562 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 207 -16 2 +EndChar + +StartChar: Thorn +Encoding: 222 222 156 +Width: 542 +Flags: HW +HStem: -4 36<-5 60 202 253> 132 43<248 329> 461 40<286 366> 608 36<116 166 305 371> +LayerCount: 2 +Fore +SplineSet +355 501 m 0 + 471 501 552 414 531 310 c 0 + 509 193 390 132 298 132 c 0 + 266 132 253 143 248 150 c 0 + 245 154 243 167 243 172 c 0 + 243 176 245 179 247 179 c 1 + 256 176 262 175 276 175 c 0 + 321 175 380 232 393 296 c 0 + 410 383 385 461 324 461 c 0 + 303 461 286 457 277 445 c 0 + 269 435 267 418 261 390 c 2 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 + 260 25 255 2 250 -4 c 1 + 216 0 159 3 121 3 c 0 + 83 3 27 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 + 285 642 340 644 376 648 c 1 + 379 642 375 619 369 612 c 1 + 357 611 315 608 308 595 c 0 + 298 577 291 546 284 508 c 0 + 284 508 284 497 286 497 c 0 + 288 497 289 498 291 498 c 0 + 305 501 334 501 355 501 c 0 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 157 +Width: 514 +Flags: HW +HStem: -213 45<-74 3> -4 33<300 363> 369 45<50 104> 640 39<300 372> +VStem: 255 97<299 358> 373 89<61 147> 391 104<480 622> +LayerCount: 2 +Back +SplineSet +298.828125 301.7578125 m 0 + 298.828125 317.3828125 303.547851562 332.438476562 312.98828125 346.923828125 c 0 + 322.428710938 361.409179688 333.821289062 375 347.16796875 387.6953125 c 0 + 360.514648438 400.390625 373.860351562 413.818359375 387.20703125 427.978515625 c 0 + 400.553710938 442.138671875 411.946289062 459.9609375 421.38671875 481.4453125 c 0 + 430.827148438 502.9296875 435.546875 526.692382812 435.546875 552.734375 c 1024 +EndSplineSet +Fore +SplineSet +225 414 m 0xfa + 202 275 185 180 162 57 c 0 + 131 -103 20 -213 -58 -213 c 0 + -91 -213 -119 -203 -130 -195 c 1 + -135 -187 -139 -176 -139 -163 c 0 + -139 -139 -124 -115 -102 -115 c 0 + -85 -115 -72 -124 -61 -139 c 0 + -52 -152 -42 -168 -24 -168 c 0 + 14 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 281 679 359 679 c 0 + 423 679 495 633 495 557 c 0xfa + 495 457 397 404 367 382 c 0 + 354 373 352 363 352 353 c 3 + 352 327 379 288 400 260 c 0 + 438 208 462 170 462 124 c 0 + 462 56 390 -4 313 -4 c 3 + 254 -4 242 0 225 11 c 1 + 219 16 208 29 208 51 c 0 + 208 78 232 95 253 95 c 3 + 289 95 284 29 332 29 c 0 + 348 29 373 43 373 74 c 0xfc + 373 104 328 153 302 188 c 0 + 274 226 255 258 255 303 c 0 + 255 352 307 389 336 420 c 0 + 351 436 391 481 391 543 c 0 + 391 555 389 640 339 640 c 0 + 282 640 247 550 225 414 c 0xfa +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 158 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 544 10 2 +EndChar + +StartChar: aacute +Encoding: 225 225 159 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 603 10 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 160 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 568 19 2 +EndChar + +StartChar: atilde +Encoding: 227 227 161 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 536 21 2 +EndChar + +StartChar: adieresis +Encoding: 228 228 162 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 523 21 2 +EndChar + +StartChar: aring +Encoding: 229 229 163 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 227 778 N 1 0 0 1 529 6 2 +EndChar + +StartChar: ae +Encoding: 230 230 164 +Width: 592 +Flags: HW +HStem: -8 68<62 174> -6 81<315 428> 184 37<352 392> 401 37<180 274 408 497> +VStem: 230 116<90 184> 464 116<294 402> +LayerCount: 2 +Fore +SplineSet +438 402 m 0x3c + 391 402 357 271 352 221 c 1 + 390 221 464 292 464 364 c 0 + 464 382 459 402 438 402 c 0x3c +230 89 m 1 + 227 103 229 182 235 204 c 1 + 214 200 173 184 163 178 c 0 + 148 168 128 142 125 121 c 1 + 117 79 143 61 164 61 c 0xbc + 184 61 221 81 230 89 c 1 +253 438 m 0 + 295 438 328 417 345 382 c 1 + 385 417 430 438 472 438 c 0 + 522 438 580 417 580 349 c 0 + 580 248 410 184 349 184 c 1 + 348 181 347 164 347 159 c 0 + 347 123 357 75 406 75 c 0 + 450 75 502 136 505 139 c 1 + 514 139 520 115 520 109 c 1 + 507 88 400 -6 338 -6 c 0x7c + 293 -6 259 16 241 56 c 1 + 226 45 123 -8 94 -8 c 0 + 30 -8 -5 53 6 111 c 0 + 14 149 42 181 65 189 c 0 + 100 201 169 222 233 243 c 0 + 238 245 239 248 240 257 c 2 + 243 304 l 2 + 244 312 244 320 244 328 c 0 + 244 367 237 401 212 401 c 0 + 180 401 164 363 146 319 c 0 + 137 297 121 276 92 276 c 0 + 70 276 50 296 55 323 c 0 + 58 336 65 349 75 363 c 1 + 89 376 178 438 253 438 c 0 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 165 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 232 807 N 1 0 0 1 352 0 2 +EndChar + +StartChar: egrave +Encoding: 232 232 166 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 489 10 2 +EndChar + +StartChar: eacute +Encoding: 233 233 167 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 552 10 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 168 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 521 1 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 169 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 483 21 2 +EndChar + +StartChar: igrave +Encoding: 236 236 170 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 190 768 N 1 0 0 1 414 10 2 +EndChar + +StartChar: iacute +Encoding: 237 237 171 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 191 769 N 1 0 0 1 456 10 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 172 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 220 770 N 1 0 0 1 435 1 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 173 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 245 -1 N 1 0 0 1 -67 65 2 +EndChar + +StartChar: eth +Encoding: 240 240 174 +Width: 452 +VWidth: 0 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -7 40<147 208> 399 39<214 290> 658 21<146 154> +LayerCount: 2 +Fore +SplineSet +169 497 m 17 + 165 504 155 523 160 528 c 9 + 404 688 l 17 + 408 682 419 663 414 658 c 9 + 169 497 l 17 +141 658 m 1 + 142 665 147 679 154 679 c 1 + 291 641 454 497 407 257 c 0 + 379 112 243 -7 155 -7 c 0 + 36 -7 0 92 21 199 c 0 + 42 304 160 438 264 438 c 0 + 282 438 297 437 304 436 c 1 + 304 497 283 584 141 658 c 1 +278 212 m 0 + 289 266 300 346 297 360 c 0 + 289 395 268 399 254 399 c 0 + 195 399 160 297 144 205 c 0 + 128 109 134 33 169 33 c 0 + 218 33 259 116 278 212 c 0 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 175 +Width: 523 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 540 21 2 +EndChar + +StartChar: ograve +Encoding: 242 242 176 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 491 10 2 +EndChar + +StartChar: oacute +Encoding: 243 243 177 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 557 10 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 178 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 545 1 2 +EndChar + +StartChar: otilde +Encoding: 245 245 179 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 520 21 2 +EndChar + +StartChar: odieresis +Encoding: 246 246 180 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 483 21 2 +EndChar + +StartChar: divide +Encoding: 247 247 181 +Width: 522 +VWidth: 0 +Flags: HW +HStem: 0 109<190 261> 218 50<48 469> 376 109<261 333> +VStem: 175 102<15 95> 247 102<391 471> +LayerCount: 2 +Fore +SplineSet +50 218 m 2xe0 + 47 218 45 221 45 226 c 0 + 45 239 50 255 60 268 c 1 + 468 268 l 2 + 470 268 471 265 471 260 c 0 + 471 247 469 230 458 218 c 1 + 50 218 l 2xe0 +304 485 m 0 + 329 485 348 465 348 439 c 0 + 348 407 321 376 289 376 c 0 + 264 376 247 397 247 423 c 0xe8 + 247 455 272 485 304 485 c 0 +232 109 m 0 + 257 109 276 89 276 63 c 0 + 276 31 250 0 218 0 c 0 + 193 0 175 21 175 47 c 0xf0 + 175 79 200 109 232 109 c 0 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 182 +Width: 444 +Flags: HW +HStem: -6 39<146 211> 399 39<216 279> +VStem: 15 122<54 239> 289 122<191 383> +LayerCount: 2 +Fore +SplineSet +326 448 m 17 + 332 448 353 444 354 438 c 9 + 107 -19 l 17 + 101 -20 84 -16 80 -8 c 9 + 326 448 l 17 +EndSplineSet +Refer: 79 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ugrave +Encoding: 249 249 183 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 511 10 2 +EndChar + +StartChar: uacute +Encoding: 250 250 184 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 585 10 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 185 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 545 1 2 +EndChar + +StartChar: udieresis +Encoding: 252 252 186 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 517 21 2 +EndChar + +StartChar: yacute +Encoding: 253 253 187 +Width: 489 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 582 10 2 +EndChar + +StartChar: thorn +Encoding: 254 254 188 +Width: 485 +Flags: HW +HStem: -214 31<-51 -9> -205 29<135 180> -5 43<173 245> 356 82<292 394> 618 28<95 152> 661 20G<264 277> +VStem: 154 126<544 665> 333 126<216 352> +LayerCount: 2 +Fore +SplineSet +267 589 m 2xbf + 264 571 225 373 223 364 c 1 + 250 394 313 438 363 438 c 0 + 425 438 459 388 459 320 c 0 + 459 156 295 -5 176 -5 c 0 + 170 -5 158 -4 149 0 c 1 + 124 -123 l 2 + 122 -132 121 -140 121 -150 c 0 + 121 -155 125 -170 135 -173 c 0 + 152 -177 178 -176 181 -176 c 0 + 185 -177 182 -204 177 -206 c 1 + 164 -206 153 -205 142 -205 c 0x7f + 92 -205 7 -207 -50 -214 c 1 + -55 -213 -53 -186 -48 -183 c 1 + -30 -183 -18 -178 -9 -167 c 0 + -2 -158 2 -147 7 -125 c 2 + 80 227 l 1 + 33 180 l 1 + 29 185 26 199 26 206 c 0 + 26 217 35 228 41 233 c 2 + 91 280 l 1 + 145 548 l 2 + 149 566 154 589 154 600 c 0 + 154 619 111 618 95 618 c 1 + 92 622 95 642 99 646 c 1 + 153 651 253 673 274 681 c 1 + 279 678 280 668 280 662 c 0 + 280 654 272 612 267 589 c 2xbf +295 356 m 0 + 266 356 236 336 215 315 c 1 + 210 289 181 146 181 146 c 2 + 166 71 178 38 203 38 c 0 + 272 38 333 210 333 292 c 0 + 333 324 326 356 295 356 c 0 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 189 +Width: 489 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 506 21 2 +EndChar + +StartChar: gravecomb +Encoding: 768 768 190 +Width: 0 +VWidth: 978 +GlyphClass: 4 +Flags: HW +HStem: 479 145 +VStem: -338 168 +LayerCount: 2 +Fore +SplineSet +-179 479 m 1 + -196 483 -338 549 -338 583 c 0 + -338 609 -311 623 -294 623 c 0 + -281 623 -268 620 -264 616 c 0 + -235 589 -173 500 -170 490 c 1 + -171 484 -176 481 -179 479 c 1 +EndSplineSet +EndChar + +StartChar: acutecomb +Encoding: 769 769 191 +Width: 0 +VWidth: 978 +GlyphClass: 4 +Flags: HW +HStem: 479 145 +VStem: -328 168 +LayerCount: 2 +Back +SplineSet +159.1796875 500 m 1 + 153.971679688 503.254882812 151.041992188 507.161132812 150.390625 511.71875 c 1 + 152.018554688 517.578125 164.713867188 536.946289062 188.4765625 569.82421875 c 0 + 212.239257812 602.702148438 230.793945312 625.325195312 244.140625 637.6953125 c 0 + 248.698242188 642.252929688 259.765625 644.53125 277.34375 644.53125 c 0 + 304.6875 644.53125 318.359375 634.114257812 318.359375 613.28125 c 0 + 318.359375 601.237304688 294.921875 580.078125 248.046875 549.8046875 c 0 + 201.171875 519.53125 171.549804688 502.9296875 159.1796875 500 c 1 +EndSplineSet +Fore +SplineSet +-319 479 m 1 + -322 481 -327 484 -328 490 c 1 + -325 500 -263 589 -234 616 c 0 + -230 620 -217 623 -204 623 c 0 + -187 623 -160 609 -160 583 c 0 + -160 549 -302 483 -319 479 c 1 +EndSplineSet +EndChar + +StartChar: uni2010 +Encoding: 8208 8208 192 +Width: 281 +Flags: HW +VStem: 62 251<202 260> +LayerCount: 2 +Fore +SplineSet +86 261 m 2 + 308 272 l 2 + 313 272 313 266 313 261 c 0 + 313 248 298 200 288 199 c 10 + 67 188 l 2 + 64 188 62 195 62 203 c 0 + 62 214 75 260 86 261 c 2 +EndSplineSet +EndChar + +StartChar: uni2011 +Encoding: 8209 8209 193 +Width: 281 +Flags: HW +VStem: 62 251<202 260> +LayerCount: 2 +Fore +SplineSet +86 261 m 2 + 308 272 l 2 + 313 272 313 266 313 261 c 0 + 313 248 298 200 288 199 c 10 + 67 188 l 2 + 64 188 62 195 62 203 c 0 + 62 214 75 260 86 261 c 2 +EndSplineSet +EndChar + +StartChar: figuredash +Encoding: 8210 8210 194 +Width: 451 +Flags: HW +HStem: 189 72<70 456> +LayerCount: 2 +Fore +SplineSet +459 262 m 2 + 466 262 466 252 466 246 c 0 + 466 225 449 194 444 189 c 9 + 67 189 l 2 + 60 189 61 199 61 205 c 0 + 61 226 77 257 82 262 c 9 + 459 262 l 2 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 195 +Width: 451 +Flags: HW +HStem: 189 72<70 456> +LayerCount: 2 +Fore +SplineSet +459 262 m 2 + 466 262 466 252 466 246 c 0 + 466 225 449 194 444 189 c 9 + 67 189 l 2 + 60 189 61 199 61 205 c 0 + 61 226 77 257 82 262 c 9 + 459 262 l 2 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 196 +Width: 804 +Flags: HW +HStem: 189 72<70 801> +LayerCount: 2 +Fore +SplineSet +804 262 m 2 + 811 262 811 252 811 246 c 0 + 811 225 794 194 789 189 c 9 + 67 189 l 2 + 60 189 61 199 61 205 c 0 + 61 226 77 257 82 262 c 9 + 804 262 l 2 +EndSplineSet +EndChar + +StartChar: uni2015 +Encoding: 8213 8213 197 +Width: 981 +Flags: HW +HStem: 189 72<70 981> +LayerCount: 2 +Fore +SplineSet +983 262 m 2 + 990 262 990 252 990 246 c 0 + 990 225 974 194 969 189 c 9 + 67 189 l 2 + 60 189 61 199 61 205 c 0 + 61 226 77 257 82 262 c 9 + 983 262 l 2 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 198 +Width: 205 +Flags: W +HStem: 423 315 +VStem: 15 84<508 628.96> +LayerCount: 2 +Fore +SplineSet +43 534 m 0 + 43 644 161 711 172 711 c 0 + 182 711 190 703 195 690 c 1 + 124 648 113 595 113 584 c 0 + 113 566 129 553 142 537 c 0 + 153 525 161 514 161 500 c 0 + 161 472 121 449 84 449 c 0 + 76 449 69 451 61 453 c 1 + 50 469 43 505 43 534 c 0 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 199 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 229 1162 2 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 200 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 -0 0 -1 214 594 2 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 201 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N 1 0 0 1 0 0 2 +Refer: 198 8216 N 1 0 0 1 165 0 2 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 202 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 0 -0 -1 230 1160 2 +Refer: 198 8216 N -1 0 -0 -1 395 1160 2 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 203 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 198 8216 N -1 0 -0 -1 380 592 2 +Refer: 198 8216 N -1 0 -0 -1 215 592 2 +EndChar + +StartChar: dagger +Encoding: 8224 8224 204 +Width: 389 +Flags: W +HStem: -8 21G<193 196> 427 79<39 103 286 351> 454 21<103 171 218 286> 627 20G<184 206> +VStem: 154 80<546 642> 179 31<390 450 478 595> 188 12<-8 73> +LayerCount: 2 +Fore +SplineSet +150 475 m 8xb4 + 164 475 171 480 181 493 c 1 + 181 525 173 591 154 610 c 1 + 154 631 173 646 195 646 c 0 + 216 646 234 631 234 610 c 1 + 215 591 208 525 208 493 c 1 + 218 480 226 475 239 475 c 0xb8 + 271 475 299 487 318 506 c 1 + 339 506 355 486 355 465 c 0 + 355 444 339 427 318 427 c 1xd8 + 299 446 271 454 239 454 c 24xb8 + 223 454 210 439 210 427 c 1xd4 + 217 410 227 384 239 356 c 1 + 218 221 213 167 200 4 c 1 + 198 -2 197 -7 194 -8 c 1 + 191 -7 190 0 188 4 c 1xd2 + 175 167 170 221 149 356 c 1 + 160 380 172 410 179 427 c 1xd4 + 179 439 166 454 150 454 c 24xb4 + 118 454 90 446 71 427 c 1 + 50 427 34 444 34 465 c 0 + 34 486 50 506 71 506 c 1xd4 + 90 487 118 475 150 475 c 8xb4 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 205 +Width: 413 +Flags: W +HStem: -8 21G<196 217> 133 79<51 115 298 362> 164 21<115 183 230 298> 427 79<51 115 298 362> 454 21<115 183 230 298> 627 20G<196 217> +VStem: 166 80<-4 93 546 642> 192 27<54 159 191 239 399 447 480 585> +LayerCount: 2 +Back +SplineSet +147.4609375 242.1875 m 2 + 150.715820312 242.1875 152.83203125 243.815429688 153.80859375 247.0703125 c 0 + 154.78515625 250.325195312 155.2734375 257.487304688 155.2734375 268.5546875 c 2 + 155.2734375 361.328125 l 2 + 155.2734375 367.1875 152.668945312 370.1171875 147.4609375 370.1171875 c 2 + 132.8125 370.1171875 l 2 + 121.745117188 370.1171875 111.002929688 369.873046875 100.5859375 369.384765625 c 0 + 90.1689453125 368.896484375 78.2880859375 368.1640625 64.94140625 367.1875 c 0 + 51.5947265625 366.2109375 40.0390625 365.559570312 30.2734375 365.234375 c 1 + 31.5751953125 376.953125 32.2265625 385.7421875 32.2265625 391.6015625 c 0 + 32.2265625 399.4140625 31.5751953125 410.481445312 30.2734375 424.8046875 c 1 + 40.0390625 424.479492188 51.5947265625 423.828125 64.94140625 422.8515625 c 0 + 78.2880859375 421.875 90.1689453125 421.142578125 100.5859375 420.654296875 c 0 + 111.002929688 420.166015625 121.745117188 419.921875 132.8125 419.921875 c 2 + 147.4609375 419.921875 l 2 + 149.4140625 419.921875 151.204101562 420.735351562 152.83203125 422.36328125 c 0 + 154.459960938 423.991210938 155.2734375 425.78125 155.2734375 427.734375 c 0 + 155.2734375 449.543945312 154.866210938 469.645507812 154.052734375 488.037109375 c 0 + 153.239257812 506.428710938 151.936523438 528.3203125 150.146484375 553.7109375 c 0 + 148.356445312 579.1015625 147.135742188 599.284179688 146.484375 614.2578125 c 1 + 162.109375 611.653320312 173.176757812 610.3515625 179.6875 610.3515625 c 0 + 186.848632812 610.3515625 198.2421875 611.653320312 213.8671875 614.2578125 c 1 + 213.215820312 599.284179688 211.995117188 579.1015625 210.205078125 553.7109375 c 0 + 208.415039062 528.3203125 207.112304688 506.428710938 206.298828125 488.037109375 c 0 + 205.485351562 469.645507812 205.078125 449.543945312 205.078125 427.734375 c 0 + 205.078125 425.78125 205.891601562 423.991210938 207.51953125 422.36328125 c 0 + 209.147460938 420.735351562 210.9375 419.921875 212.890625 419.921875 c 2 + 226.5625 419.921875 l 2 + 237.629882812 419.921875 248.372070312 420.166015625 258.7890625 420.654296875 c 0 + 269.206054688 421.142578125 281.331054688 421.875 295.166015625 422.8515625 c 0 + 309.000976562 423.828125 320.637695312 424.479492188 330.078125 424.8046875 c 1 + 328.776367188 410.481445312 328.125 399.4140625 328.125 391.6015625 c 0 + 328.125 385.7421875 328.776367188 376.953125 330.078125 365.234375 c 1 + 320.637695312 365.559570312 309.000976562 366.2109375 295.166015625 367.1875 c 0 + 281.331054688 368.1640625 269.206054688 368.896484375 258.7890625 369.384765625 c 0 + 248.372070312 369.873046875 237.629882812 370.1171875 226.5625 370.1171875 c 2 + 212.890625 370.1171875 l 2 + 207.682617188 370.1171875 205.078125 367.1875 205.078125 361.328125 c 2 + 205.078125 250 l 2 + 205.078125 244.791992188 207.682617188 242.1875 212.890625 242.1875 c 2 + 330.078125 247.0703125 l 1 + 328.776367188 232.747070312 328.125 221.6796875 328.125 213.8671875 c 0 + 328.125 207.356445312 328.776367188 198.2421875 330.078125 186.5234375 c 1 + 212.890625 192.3828125 l 1 + 208.659179688 191.40625 206.0546875 187.825195312 205.078125 181.640625 c 1 + 205.729492188 167.643554688 207.194335938 138.916015625 209.47265625 95.458984375 c 0 + 211.750976562 52.001953125 213.215820312 16.9267578125 213.8671875 -9.765625 c 1 + 204.752929688 -6.5107421875 193.359375 -4.8828125 179.6875 -4.8828125 c 0 + 167.317382812 -4.8828125 156.25 -6.5107421875 146.484375 -9.765625 c 1 + 147.135742188 16.9267578125 148.600585938 52.001953125 150.87890625 95.458984375 c 0 + 153.157226562 138.916015625 154.622070312 167.643554688 155.2734375 181.640625 c 0 + 155.2734375 184.245117188 154.541015625 186.686523438 153.076171875 188.96484375 c 0 + 151.611328125 191.243164062 149.739257812 192.3828125 147.4609375 192.3828125 c 2 + 30.2734375 186.5234375 l 1 + 31.5751953125 198.2421875 32.2265625 207.356445312 32.2265625 213.8671875 c 0 + 32.2265625 221.6796875 31.5751953125 232.747070312 30.2734375 247.0703125 c 1 + 147.4609375 242.1875 l 2 +EndSplineSet +Fore +SplineSet +251 282 m 1x95 + 239 254 229 229 222 212 c 1xd5 + 222 200 235 185 251 185 c 24xa5 + 283 185 311 193 330 212 c 1 + 351 212 367 195 367 174 c 0 + 367 153 351 133 330 133 c 1xc5 + 311 152 283 164 251 164 c 0 + 238 164 230 159 220 146 c 1xa5 + 220 114 227 47 246 28 c 1 + 246 7 228 -8 207 -8 c 0 + 185 -8 166 7 166 28 c 1xa6 + 185 47 192 114 192 146 c 1 + 182 159 176 164 162 164 c 16xa5 + 130 164 102 152 83 133 c 1 + 62 133 46 153 46 174 c 0 + 46 195 62 212 83 212 c 1xc5 + 102 193 130 185 162 185 c 24xa5 + 178 185 190 200 190 212 c 1 + 183 229 172 258 161 282 c 1 + 174 299 177 303 190 319 c 1 + 177 334 179 333 161 356 c 1 + 172 380 183 410 190 427 c 1xd5 + 190 439 178 454 162 454 c 24x8d + 130 454 102 446 83 427 c 1 + 62 427 46 444 46 465 c 0 + 46 486 62 506 83 506 c 1x95 + 102 487 130 475 162 475 c 8 + 176 475 182 480 192 493 c 1x8d + 192 525 185 591 166 610 c 1 + 166 631 185 646 207 646 c 0 + 228 646 246 631 246 610 c 1x8e + 227 591 220 525 220 493 c 1 + 230 480 238 475 251 475 c 0x8d + 283 475 311 487 330 506 c 1 + 351 506 367 486 367 465 c 0 + 367 444 351 427 330 427 c 1x95 + 311 446 283 454 251 454 c 24x8d + 235 454 222 439 222 427 c 1 + 229 410 239 384 251 356 c 1 + 234 335 234 334 222 319 c 1 + 232 306 235 302 251 282 c 1x95 +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 206 +Width: 368 +Flags: HW +HStem: 120 274<187 279> +VStem: 105 254 +LayerCount: 2 +Fore +SplineSet +105 257 m 0 + 120 332 190 395 260 395 c 0 + 330 395 374 332 359 257 c 0 + 344 182 276 120 206 120 c 0 + 136 120 90 182 105 257 c 0 +EndSplineSet +EndChar + +StartChar: onedotenleader +Encoding: 8228 8228 207 +Width: 649 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 571 -489 2 +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 208 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 850 -489 2 +Refer: 225 775 N 1 0 0 1 604 -489 2 +Refer: 225 775 N 1 0 0 1 357 -489 2 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 209 +Width: 973 +Flags: W +HStem: -7 24<445 513 771 838> 282 23<432 500 758 826> 317 24<163 230> 606 23<150 217> +VStem: 43 62<398 558> 269 64<389 557> 324 62<74 232> 550 65<68 233> 651 62<74 233> 877 64<65 233> +LayerCount: 2 +Fore +SplineSet +794 282 m 0xf9c0 + 736 282 713 218 713 160 c 0 + 713 93 755 18 804 18 c 0 + 861 18 877 84 877 141 c 0 + 877 206 846 282 794 282 c 0xf9c0 +798 306 m 0 + 883 306 941 233 941 148 c 0 + 941 70 888 -7 798 -7 c 0 + 717 -7 651 62 651 148 c 0 + 651 235 711 306 798 306 c 0 +186 606 m 0 + 128 606 104 542 104 484 c 0 + 104 417 146 342 195 342 c 0 + 252 342 269 408 269 465 c 0xfdc0 + 269 530 238 606 186 606 c 0 +189 630 m 0 + 274 630 333 558 333 473 c 0 + 333 395 279 317 189 317 c 0 + 108 317 43 387 43 473 c 0 + 43 560 102 630 189 630 c 0 +468 282 m 0 + 410 282 387 218 387 160 c 0xfbc0 + 387 93 429 18 478 18 c 0 + 535 18 550 84 550 141 c 0 + 550 206 520 282 468 282 c 0 +472 306 m 0 + 557 306 615 233 615 148 c 0 + 615 70 561 -7 471 -7 c 0 + 390 -7 324 62 324 148 c 0 + 324 235 385 306 472 306 c 0 +588 609 m 1 + 116 0 l 2 + 112 -5 96 -12 84 -12 c 0 + 70 -12 67 -3 66 -1 c 1 + 537 609 l 2 + 542 615 551 621 557 621 c 0 + 585 621 579 618 588 609 c 1 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 210 +Width: 156 +Flags: W +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> +LayerCount: 2 +Fore +SplineSet +108 683 m 0xa0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0 + 62 662 89 683 108 683 c 0xa0 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 211 +Width: 265 +Flags: W +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> 157 85<576 663> 170 72<576 673> +LayerCount: 2 +Fore +SplineSet +219 683 m 0x88 + 229 683 242 679 242 659 c 0x90 + 242 613 209 546 181 490 c 0 + 178 484 174 482 170 482 c 0x88 + 164 482 157 487 157 494 c 0x90 + 157 497 162 597 170 650 c 0 + 172 662 200 683 219 683 c 0x88 +108 683 m 0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0xa0 + 62 662 89 683 108 683 c 0 +EndSplineSet +EndChar + +StartChar: uni2038 +Encoding: 8248 8248 212 +Width: 347 +Flags: HW +HStem: -60 170 +VStem: 63 227 +LayerCount: 2 +Fore +SplineSet +274 -60 m 0 + 262 -60 215 -17 188 27 c 1 + 147 -17 79 -60 67 -60 c 0 + 60 -60 63 -36 63 -36 c 1 + 70 -25 136 16 191 101 c 0 + 195 108 193 110 200 110 c 0 + 220 110 210 94 242 32 c 0 + 255 9 289 -31 290 -35 c 1 + 289 -38 281 -60 274 -60 c 0 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 213 +Width: 301 +Flags: W +VStem: 29 231 +LayerCount: 2 +Fore +SplineSet +238 413 m 1 + 260 407 261 399 261 395 c 0 + 261 387 257 383 201 330 c 0 + 179 309 134 260 115 241 c 1 + 200 153 l 1 + 252 101 260 100 260 89 c 0 + 260 77 243 74 237 71 c 1 + 236 73 180 129 36 222 c 1 + 31 224 29 229 29 235 c 0 + 29 245 30 254 37 262 c 1 + 165 339 237 412 238 413 c 1 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 214 +Width: 300 +Flags: W +VStem: 43 230 +LayerCount: 2 +Fore +SplineSet +65 71 m 1 + 43 77 43 85 43 89 c 0 + 43 100 53 104 102 153 c 1 + 187 241 l 1 + 168 260 123 309 101 330 c 0 + 43 386 42 387 42 395 c 0 + 42 407 58 410 64 413 c 1 + 66 411 138 339 265 262 c 1 + 272 254 273 245 273 235 c 0 + 273 229 271 224 266 222 c 1 + 142 142 77 84 65 71 c 1 +EndSplineSet +EndChar + +StartChar: uni203E +Encoding: 8254 8254 215 +Width: 651 +Flags: HW +HStem: 716 72<84 575> +LayerCount: 2 +Fore +SplineSet +577 788 m 2 + 584 788 584 778 584 772 c 0 + 584 751 567 721 562 716 c 9 + 81 716 l 2 + 74 716 74 725 74 731 c 0 + 74 752 91 783 96 788 c 9 + 577 788 l 2 +EndSplineSet +EndChar + +StartChar: Euro +Encoding: 8364 8364 216 +Width: 598 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -7 43<293 448> 244 42<24 365> 343 42<39 380> 609 42<362 519> +VStem: 69 141<160 335> 585 33<469 532> +LayerCount: 2 +Fore +SplineSet +440 609 m 0 + 316 609 210 467 210 262 c 0 + 210 172 247 36 360 36 c 0 + 413 36 452 55 481 79 c 0 + 526 116 561 191 564 199 c 1 + 578 199 589 195 595 188 c 1 + 593 177 542 47 528 39 c 0 + 473 9 417 -7 333 -7 c 0 + 156 -7 69 139 69 270 c 0 + 69 514 279 651 440 651 c 0 + 500 651 579 635 631 623 c 1 + 631 612 620 494 618 482 c 0 + 617 476 608 469 597 469 c 3 + 592 469 588 469 585 473 c 1 + 583 511 555 609 440 609 c 0 +40 343 m 2 + 37 343 36 347 36 351 c 0 + 36 358 42 379 49 385 c 1 + 379 385 l 2 + 381 385 382 381 382 377 c 0 + 382 372 379 352 370 343 c 1 + 40 343 l 2 +26 244 m 2 + 23 244 22 248 22 252 c 0 + 22 259 27 280 34 286 c 1 + 364 286 l 2 + 366 286 367 282 367 278 c 0 + 367 273 364 253 355 244 c 1 + 26 244 l 2 +EndSplineSet +EndChar + +StartChar: minus +Encoding: 8722 8722 217 +Width: 517 +Flags: HW +HStem: 204 72<42 455> +LayerCount: 2 +Fore +SplineSet +29 214 m 1 + 29 214 46 276 55 276 c 2 + 470 276 l 2 + 473 276 476 277 475 270 c 0 + 473 262 463 227 455 210 c 0 + 452 204 447 204 447 204 c 1 + 33 204 l 1 + 33 204 27 204 29 214 c 1 +EndSplineSet +EndChar + +StartChar: uni2213 +Encoding: 8723 8723 218 +Width: 583 +Flags: W +HStem: 216 56<68 267 321 518> 510 56<65 516> +VStem: 267 55<14 216 271 469> +LayerCount: 2 +Fore +SplineSet +513 565 m 1 + 513 565 523 566 521 554 c 0 + 514 507 508 513 505 510 c 1 + 67 510 l 1 + 67 510 60 509 62 523 c 0 + 67 558 69 565 75 565 c 2 + 513 565 l 1 +321 213 m 2 + 321 25 l 1 + 321 25 321 16 277 10 c 0 + 274 10 273 9 271 9 c 0 + 264 9 267 13 267 17 c 2 + 267 211 l 2 + 267 213 266 216 261 216 c 2 + 66 216 l 1 + 66 216 61 216 61 226 c 0 + 61 230 61 243 68 266 c 0 + 70 272 75 271 75 271 c 1 + 262 271 l 2 + 265 271 267 274 267 276 c 2 + 267 462 l 1 + 267 462 265 467 271 469 c 0 + 294 476 308 477 312 477 c 0 + 322 477 321 471 321 471 c 1 + 321 275 l 2 + 321 272 322 271 325 271 c 2 + 521 271 l 2 + 525 271 528 273 528 266 c 0 + 528 257 525 243 519 222 c 0 + 517 216 512 216 512 216 c 1 + 325 216 l 2 + 322 216 321 215 321 213 c 2 +EndSplineSet +EndChar + +StartChar: radical +Encoding: 8730 8730 219 +Width: 570 +Flags: HW +LayerCount: 2 +Fore +SplineSet +14 146 m 1 + 3 153 -6 170 -4 181 c 0 + -1 194 11 200 22 207 c 0 + 56 229 164 304 179 316 c 0 + 188 323 203 324 204 316 c 1 + 207 285 207 273 212 248 c 2 + 253 46 l 1 + 269 88 529 772 529 772 c 1 + 580 766 l 1 + 580 766 280 -24 233 -149 c 1 + 216 -167 190 -176 184 -176 c 0 + 180 -176 177 -175 176 -171 c 2 + 95 191 l 1 + 14 146 l 1 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 220 +Width: 0 +VWidth: 998 +GlyphClass: 4 +Flags: HW +HStem: 479 164 +VStem: -364 216 +LayerCount: 2 +Fore +SplineSet +-231 643 m 0 + -228 643 -225 641 -221 633 c 0 + -190 572 -156 516 -148 501 c 1 + -150 491 -155 481 -160 479 c 1 + -177 493 -225 534 -246 557 c 1 + -276 534 -339 491 -360 479 c 1 + -364 481 -366 491 -364 501 c 1 + -353 512 -289 581 -244 633 c 0 + -238 639 -235 643 -231 643 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb +Encoding: 771 771 221 +Width: 0 +VWidth: 971 +GlyphClass: 4 +Flags: HW +HStem: 479 49<-222 -132> 521 49<-349 -256> +VStem: -387 294 +LayerCount: 2 +Fore +SplineSet +-287 569 m 0x60 + -264 569 -247 563 -230 554 c 0 + -209 543 -194 527 -165 527 c 0xa0 + -133 527 -107 561 -100 569 c 1x60 + -97 568 -92 566 -93 558 c 0 + -95 542 -105 526 -114 516 c 0 + -140 489 -165 479 -192 479 c 0xa0 + -215 479 -230 484 -248 494 c 0 + -268 505 -286 521 -315 521 c 0x60 + -347 521 -374 487 -381 479 c 1xa0 + -384 480 -388 483 -387 491 c 0 + -385 507 -375 522 -366 532 c 0 + -340 559 -314 569 -287 569 c 0x60 +EndSplineSet +EndChar + +StartChar: dotlessi +Encoding: 305 305 222 +Width: 302 +VWidth: 0 +Flags: HW +HStem: -8 84<104 203> 354 84<83 182> +VStem: 59 120<33 186> 108 119<245 396> +LayerCount: 2 +Fore +SplineSet +104 302 m 2xe0 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0 + 201 438 228 414 228 369 c 0xd0 + 228 355 221 321 219 311 c 0 + 183 129 l 2 + 182 125 179 102 179 97 c 0 + 179 88 182 76 192 76 c 0 + 213 76 259 130 262 136 c 1 + 269 136 275 115 275 109 c 1 + 258 78 173 -8 120 -8 c 0 + 88 -8 59 12 59 62 c 0 + 59 76 65 112 67 120 c 1 + 104 302 l 2xe0 +EndSplineSet +EndChar + +StartChar: uni0304 +Encoding: 772 772 223 +Width: 0 +VWidth: 945 +GlyphClass: 4 +Flags: HW +HStem: 479 42<-362 -130> +VStem: -364 236<479 521> +LayerCount: 2 +Fore +SplineSet +-139 479 m 1 + -361 479 l 1 + -361 479 -364 481 -364 487 c 0 + -364 494 -357 521 -352 521 c 2 + -133 521 l 2 + -131 521 -128 518 -128 514 c 0 + -128 509 -131 488 -139 479 c 1 +EndSplineSet +EndChar + +StartChar: uni0306 +Encoding: 774 774 224 +Width: 0 +VWidth: 970 +GlyphClass: 4 +Flags: HW +HStem: 479 55<-290 -189> +VStem: -328 22<560 594> -147 18<577 595> +LayerCount: 2 +Fore +SplineSet +-238 533 m 0 + -202 533 -165 552 -147 594 c 0 + -147 596 -146 597 -144 597 c 0 + -138 597 -129 589 -130 584 c 0 + -130 583 -132 578 -132 576 c 0 + -151 524 -200 479 -249 479 c 0 + -298 479 -331 521 -328 577 c 0 + -328 579 -327 583 -327 584 c 0 + -326 589 -315 597 -309 597 c 0 + -307 597 -306 596 -306 594 c 0 + -305 552 -268 533 -238 533 c 0 +EndSplineSet +EndChar + +StartChar: uni0307 +Encoding: 775 775 225 +Width: 0 +VWidth: 945 +GlyphClass: 4 +Flags: HW +HStem: 479 135<-281 -209> +VStem: -306 123<505 589> +LayerCount: 2 +Fore +SplineSet +-306 548 m 0 + -299 584 -265 613 -231 613 c 27 + -198 613 -176 584 -183 548 c 0 + -190 512 -222 479 -256 479 c 27 + -291 479 -313 512 -306 548 c 0 +EndSplineSet +EndChar + +StartChar: uni0308 +Encoding: 776 776 226 +Width: 0 +VWidth: 1024 +GlyphClass: 4 +Flags: HW +HStem: 479 136<-351 -277 -179 -106> +VStem: -377 126<505 588> -206 127<505 588> +LayerCount: 2 +Fore +SplineSet +-129 614 m 0 + -94 614 -72 584 -79 547 c 0 + -86 510 -121 479 -156 479 c 0 + -191 479 -213 510 -206 547 c 0 + -199 584 -164 614 -129 614 c 0 +-301 614 m 0 + -266 614 -244 584 -251 547 c 0 + -258 510 -292 479 -327 479 c 0 + -362 479 -384 510 -377 547 c 0 + -370 584 -336 614 -301 614 c 0 +EndSplineSet +EndChar + +StartChar: uni030A +Encoding: 778 778 227 +Width: 0 +VWidth: 980 +GlyphClass: 4 +Flags: HW +HStem: 479 44<-292 -215> 628 43<-280 -203> +VStem: -338 180 +LayerCount: 2 +Fore +SplineSet +-296 575 m 0 + -302 546 -285 522 -258 522 c 0 + -231 522 -205 546 -199 575 c 0 + -193 604 -210 628 -237 628 c 0 + -264 628 -290 604 -296 575 c 0 +-338 575 m 0 + -328 628 -278 671 -229 671 c 0 + -180 671 -148 628 -158 575 c 0 + -168 522 -218 479 -267 479 c 0 + -316 479 -348 522 -338 575 c 0 +EndSplineSet +EndChar + +StartChar: uni030C +Encoding: 780 780 228 +Width: 0 +VWidth: 990 +GlyphClass: 4 +Flags: HW +HStem: 479 164 +VStem: -340 216 +LayerCount: 2 +Fore +SplineSet +-257 479 m 0 + -260 479 -264 480 -268 488 c 0 + -299 549 -332 605 -340 620 c 1 + -338 630 -334 641 -329 643 c 1 + -312 629 -264 587 -243 564 c 1 + -213 587 -150 631 -129 643 c 1 + -125 641 -123 630 -125 620 c 1 + -136 609 -200 540 -245 488 c 0 + -251 482 -253 479 -257 479 c 0 +EndSplineSet +EndChar + +StartChar: uni0312 +Encoding: 786 786 229 +Width: 127 +GlyphClass: 4 +Flags: HW +VStem: 111 74<473 565> +LayerCount: 2 +Fore +SplineSet +218 620 m 1 + 222 620 234 613 234 610 c 1 + 227 608 186 577 186 553 c 0 + 186 532 211 527 211 496 c 0 + 211 470 179 456 150 455 c 0 + 138 455 125 457 116 462 c 1 + 112 469 111 475 111 483 c 0 + 111 530 176 607 218 620 c 1 +EndSplineSet +EndChar + +StartChar: uni0315 +Encoding: 789 789 230 +Width: 127 +GlyphClass: 4 +Flags: HW +HStem: 443 222 +VStem: 141 95<547 631> 161 74<526 649> +LayerCount: 2 +Fore +SplineSet +103 465 m 0xa0 + 103 471 161 507 161 546 c 0xa0 + 161 567 141 574 141 602 c 0xc0 + 141 660 195 665 232 665 c 1 + 234 659 235 650 235 639 c 0 + 235 626 234 611 231 596 c 0 + 219 534 162 466 122 443 c 1 + 120 443 l 2 + 114 443 103 458 103 465 c 0xa0 +EndSplineSet +EndChar + +StartChar: uni0326 +Encoding: 806 806 231 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -213 158<-277 -261> +VStem: -277 95<-160 -81> +LayerCount: 2 +Fore +SplineSet +-306 -99 m 0 + -306 -64 -238 -55 -194 -55 c 1 + -184 -66 -183 -80 -183 -101 c 0 + -183 -148 -267 -204 -310 -213 c 1 + -311 -213 -311 -213 -312 -213 c 0 + -319 -213 -333 -206 -333 -199 c 0 + -333 -196 -277 -171 -277 -147 c 0 + -277 -126 -306 -125 -306 -99 c 0 +EndSplineSet +EndChar + +StartChar: uni0327 +Encoding: 807 807 232 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -159 22<-286 -227> -63 35<-234 -218> +VStem: -215 50<-123 -64> +LayerCount: 2 +Fore +SplineSet +-240 -4 m 1 + -212 -4 l 9 + -234 -28 l 25 + -218 -28 l 2 + -194 -28 -165 -47 -165 -74 c 0 + -165 -123 -221 -159 -282 -159 c 3 + -295 -159 -318 -154 -324 -149 c 1 + -326 -147 -328 -144 -328 -141 c 0 + -328 -125 -320 -113 -310 -113 c 3 + -291 -113 -284 -137 -257 -137 c 3 + -233 -137 -215 -120 -215 -98 c 0 + -215 -76 -230 -63 -243 -63 c 0 + -254 -63 -260 -66 -271 -71 c 0 + -273 -71 -286 -65 -286 -60 c 0 + -286 -55 -266 -39 -240 -4 c 1 +EndSplineSet +EndChar + +StartChar: gravecomb.cap +Encoding: 65546 -1 233 +Width: 263 +GlyphClass: 4 +Flags: HW +HStem: 714 115 +VStem: 196 203 +LayerCount: 2 +Fore +SplineSet +390 714 m 1 + 375 716 196 759 196 798 c 0 + 196 821 228 829 250 829 c 0 + 264 829 286 826 295 821 c 0 + 336 797 393 735 398 727 c 1 + 398 723 394 717 390 714 c 1 +EndSplineSet +EndChar + +StartChar: acutecomb.cap +Encoding: 65547 -1 234 +Width: 219 +GlyphClass: 4 +Flags: HW +HStem: 714 115 +VStem: 153 203 +LayerCount: 2 +Fore +SplineSet +162 714 m 1 + 158 717 153 723 153 727 c 1 + 158 735 216 797 257 821 c 0 + 266 826 288 829 302 829 c 0 + 324 829 356 821 356 798 c 0 + 356 759 177 716 162 714 c 1 +EndSplineSet +EndChar + +StartChar: uni0302.cap +Encoding: 65548 -1 235 +Width: 344 +GlyphClass: 4 +Flags: HW +HStem: 688 137 +VStem: 178 253 +LayerCount: 2 +Fore +SplineSet +326 824 m 0 + 330 824 333 819 337 814 c 0 + 358 786 409 726 431 703 c 1 + 430 695 425 690 419 688 c 1 + 408 691 339 726 312 746 c 1 + 278 726 199 692 184 688 c 1 + 180 690 177 697 178 703 c 1 + 232 745 294 797 312 814 c 0 + 318 820 323 824 326 824 c 0 +EndSplineSet +EndChar + +StartChar: uni030A.cap +Encoding: 65549 -1 236 +Width: 279 +GlyphClass: 4 +Flags: HW +HStem: 645 44<252 329> 794 43<265 341> +VStem: 206 180 +LayerCount: 2 +Fore +SplineSet +248 741 m 0 + 242 712 259 688 286 688 c 0 + 313 688 339 712 345 741 c 0 + 351 770 334 794 307 794 c 0 + 280 794 254 770 248 741 c 0 +206 741 m 0 + 216 794 265 837 314 837 c 0 + 363 837 396 794 386 741 c 0 + 376 688 326 645 277 645 c 0 + 228 645 196 688 206 741 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb.cap +Encoding: 65550 -1 237 +Width: 365 +GlyphClass: 4 +Flags: HW +HStem: 711 49<347 454> 752 49<216 323> +VStem: 182 307 +LayerCount: 2 +Fore +SplineSet +279 801 m 0x60 + 303 801 320 798 341 785 c 0 + 362 772 383 760 414 760 c 0xa0 + 448 760 473 793 479 801 c 1x60 + 482 800 488 795 488 787 c 0 + 488 772 479 757 470 747 c 0 + 445 721 420 711 391 711 c 0xa0 + 367 711 350 714 329 727 c 0 + 308 740 287 752 256 752 c 0x60 + 222 752 196 719 190 711 c 1xa0 + 187 712 182 717 182 725 c 0 + 182 740 191 755 200 765 c 0 + 225 791 250 801 279 801 c 0x60 +EndSplineSet +EndChar + +StartChar: uni0304.cap +Encoding: 65551 -1 238 +Width: 343 +GlyphClass: 4 +Flags: HW +HStem: 544 42<164 410> +VStem: 161 251<544 586> +LayerCount: 2 +Fore +SplineSet +401 544 m 1 + 164 544 l 1 + 164 544 161 547 161 553 c 0 + 161 560 169 586 174 586 c 2 + 407 586 l 2 + 409 586 412 583 412 579 c 0 + 412 574 409 553 401 544 c 1 +EndSplineSet +EndChar + +StartChar: uni0306.cap +Encoding: 65552 -1 239 +Width: 225 +GlyphClass: 4 +Flags: HW +HStem: 688 54<216 319> +VStem: 180 22<767 804> 360 18<787 805> +LayerCount: 2 +Fore +SplineSet +271 742 m 0 + 304 742 342 762 360 804 c 0 + 360 806 362 807 364 807 c 0 + 370 807 379 799 378 794 c 0 + 378 793 376 788 376 786 c 0 + 357 734 308 688 259 688 c 0 + 210 688 177 731 180 787 c 0 + 180 789 181 793 181 794 c 0 + 182 799 193 807 199 807 c 0 + 201 807 202 806 202 804 c 0 + 203 762 230 742 271 742 c 0 +EndSplineSet +EndChar + +StartChar: uni0327.cap +Encoding: 65553 -1 240 +Width: 396 +GlyphClass: 4 +Flags: HW +HStem: -168 23<118 180> -67 38<172 189> +VStem: 192 54<-128 -69> +LayerCount: 2 +Fore +SplineSet +166 -4 m 1 + 196 -4 l 9 + 172 -29 l 25 + 189 -29 l 2 + 214 -29 246 -49 246 -78 c 0 + 246 -130 186 -168 122 -168 c 3 + 108 -168 83 -163 77 -158 c 1 + 75 -156 73 -151 73 -148 c 0 + 73 -131 82 -120 93 -120 c 3 + 113 -120 119 -145 148 -145 c 3 + 173 -145 192 -127 192 -104 c 0 + 192 -81 177 -67 163 -67 c 0 + 151 -67 145 -70 133 -75 c 0 + 131 -75 117 -67 117 -62 c 0 + 117 -57 138 -41 166 -4 c 1 +EndSplineSet +EndChar + +StartChar: uni0307.cap +Encoding: 65554 -1 241 +Width: 198 +GlyphClass: 4 +Flags: HW +HStem: 711 135<256 328> +VStem: 231 123<737 822> +LayerCount: 2 +Fore +SplineSet +231 780 m 0 + 238 816 272 846 306 846 c 27 + 339 846 361 816 354 780 c 0 + 347 744 315 711 281 711 c 27 + 246 711 224 744 231 780 c 0 +EndSplineSet +EndChar + +StartChar: uni0323.cap +Encoding: 65555 -1 242 +Width: 278 +GlyphClass: 4 +Flags: HW +HStem: -176 145<79 154> +VStem: 50 134<-147 -60> +LayerCount: 2 +Fore +SplineSet +50 -104 m 0 + 58 -64 94 -31 131 -31 c 0 + 168 -31 192 -64 184 -104 c 0 + 176 -144 140 -176 103 -176 c 0 + 66 -176 42 -144 50 -104 c 0 +EndSplineSet +EndChar + +StartChar: uni030B.cap +Encoding: 65556 -1 243 +Width: 421 +GlyphClass: 4 +Flags: HW +HStem: 714 115 +LayerCount: 2 +Fore +SplineSet +348 714 m 1 + 344 717 339 723 339 727 c 1 + 344 735 401 797 442 821 c 0 + 451 826 473 829 487 829 c 0 + 509 829 542 821 542 798 c 0 + 542 759 363 716 348 714 c 1 +162 714 m 1 + 158 717 153 723 153 727 c 1 + 158 735 216 797 257 821 c 0 + 266 826 288 829 302 829 c 0 + 324 829 356 821 356 798 c 0 + 356 759 177 716 162 714 c 1 +EndSplineSet +EndChar + +StartChar: uni0308.cap +Encoding: 65557 -1 244 +Width: 407 +GlyphClass: 4 +Flags: HW +HStem: 700 135<170 242 360 432> +VStem: 146 123<726 811> 335 123<726 811> +LayerCount: 2 +Back +SplineSet +332.96484375 744.140625 m 0 + 335.3984375 757.76953125 341.9375 769.314453125 352.58203125 778.776367188 c 0 + 363.2265625 788.23828125 374.916015625 792.96875 387.65234375 792.96875 c 0 + 400.31640625 792.96875 410.116210938 788.2578125 417.051757812 778.834960938 c 0 + 423.98828125 769.412109375 426.232421875 757.846679688 423.78515625 744.140625 c 0 + 421.3515625 730.51171875 414.8125 718.966796875 404.16796875 709.504882812 c 0 + 393.5234375 700.04296875 381.833984375 695.3125 369.09765625 695.3125 c 0 + 356.43359375 695.3125 346.633789062 700.0234375 339.698242188 709.446289062 c 0 + 332.76171875 718.869140625 330.517578125 730.434570312 332.96484375 744.140625 c 0 +168.90234375 744.140625 m 0 + 171.3359375 757.76953125 177.875 769.314453125 188.51953125 778.776367188 c 0 + 199.1640625 788.23828125 210.853515625 792.96875 223.58984375 792.96875 c 0 + 236.25390625 792.96875 246.053710938 788.2578125 252.989257812 778.834960938 c 0 + 259.92578125 769.412109375 262.169921875 757.846679688 259.72265625 744.140625 c 0 + 257.30078125 730.575195312 250.6171875 719.045898438 239.673828125 709.552734375 c 0 + 228.729492188 700.059570312 216.858398438 695.3125 204.05859375 695.3125 c 0 + 191.458007812 695.3125 181.833984375 700.005859375 175.184570312 709.392578125 c 0 + 168.536132812 718.779296875 166.44140625 730.361328125 168.90234375 744.140625 c 0 +EndSplineSet +Fore +SplineSet +335 770 m 0 + 342 806 375 835 409 835 c 27 + 442 835 465 806 458 770 c 0 + 451 734 419 700 385 700 c 27 + 350 700 328 734 335 770 c 0 +146 770 m 0 + 153 806 186 835 220 835 c 27 + 253 835 276 806 269 770 c 0 + 262 734 229 700 195 700 c 27 + 160 700 139 734 146 770 c 0 +EndSplineSet +EndChar + +StartChar: uni0308.narrow +Encoding: 65558 -1 245 +Width: 407 +GlyphClass: 4 +Flags: HW +HStem: 433 135<149 221 323 395> +VStem: 124 123<459 544> 298 123<459 544> +LayerCount: 2 +Fore +SplineSet +298 502 m 0 + 305 538 338 567 372 567 c 27 + 405 567 428 538 421 502 c 0 + 414 466 382 433 348 433 c 27 + 313 433 291 466 298 502 c 0 +124 502 m 0 + 131 538 164 567 198 567 c 27 + 231 567 254 538 247 502 c 0 + 240 466 208 433 174 433 c 27 + 139 433 117 466 124 502 c 0 +EndSplineSet +EndChar + +StartChar: uni030C.cap +Encoding: 65559 -1 246 +Width: 448 +GlyphClass: 4 +Flags: HW +HStem: 713 137 +VStem: 273 253 +LayerCount: 2 +Fore +SplineSet +378 713 m 0 + 374 713 371 718 367 723 c 0 + 346 751 295 811 273 834 c 1 + 274 842 279 848 285 850 c 1 + 296 847 365 811 392 791 c 1 + 426 811 505 846 520 850 c 1 + 524 848 527 840 526 834 c 1 + 472 792 410 740 392 723 c 0 + 386 717 381 713 378 713 c 0 +EndSplineSet +EndChar + +StartChar: Amacron +Encoding: 256 256 247 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 238 -1 N 1 0 0 1 117 170 2 +EndChar + +StartChar: amacron +Encoding: 257 257 248 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 559 35 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 249 +Width: 605 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 65 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 157 22 2 +EndChar + +StartChar: abreve +Encoding: 259 259 250 +Width: 477 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 97 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 563 19 2 +EndChar + +StartChar: Cacute +Encoding: 262 262 251 +Width: 630 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 260 -3 2 +EndChar + +StartChar: cacute +Encoding: 263 263 252 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 557 10 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 253 +Width: 630 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 135 25 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 254 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 519 19 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 255 +Width: 630 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 156 2 2 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 256 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 529 39 2 +EndChar + +StartChar: Ccaron +Encoding: 268 268 257 +Width: 630 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 67 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 62 -3 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 258 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 99 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 513 12 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 259 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 68 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 -4 -3 2 +EndChar + +StartChar: dcaron +Encoding: 271 271 260 +Width: 488 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 100 N 1 0 0 1 0 0 2 +Refer: 230 789 N 1 0 0 1 392 14 2 +EndChar + +StartChar: Emacron +Encoding: 274 274 261 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 238 -1 N 1 0 0 1 68 170 2 +EndChar + +StartChar: emacron +Encoding: 275 275 262 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 497 35 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 263 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 87 22 2 +EndChar + +StartChar: ebreve +Encoding: 277 277 264 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 515 19 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 265 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 80 2 2 +EndChar + +StartChar: edotaccent +Encoding: 279 279 266 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 510 53 2 +EndChar + +StartChar: Ecaron +Encoding: 282 282 267 +Width: 558 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 69 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 -20 -3 2 +EndChar + +StartChar: ecaron +Encoding: 283 283 268 +Width: 384 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 101 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 511 12 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 269 +Width: 662 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 142 22 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 270 +Width: 433 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 493 21 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 271 +Width: 662 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 178 22 2 +EndChar + +StartChar: gbreve +Encoding: 287 287 272 +Width: 433 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 481 21 2 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 273 +Width: 662 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 144 2 2 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 274 +Width: 433 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 490 28 2 +EndChar + +StartChar: uni0122 +Encoding: 290 290 275 +Width: 662 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 569 0 2 +EndChar + +StartChar: uni0123 +Encoding: 291 291 276 +Width: 433 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 229 786 N 1 0 0 1 86 45 2 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 277 +Width: 690 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 72 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 124 25 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 278 +Width: 492 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 -99 25 2 +EndChar + +StartChar: Itilde +Encoding: 296 296 279 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 237 -1 N 1 0 0 1 -76 0 2 +EndChar + +StartChar: itilde +Encoding: 297 297 280 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 221 771 N 1 0 0 1 436 20 2 +EndChar + +StartChar: Imacron +Encoding: 298 298 281 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 238 -1 N 1 0 0 1 -22 167 2 +EndChar + +StartChar: imacron +Encoding: 299 299 282 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 223 772 N 1 0 0 1 437 20 2 +EndChar + +StartChar: Ibreve +Encoding: 300 300 283 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 1 22 2 +EndChar + +StartChar: ibreve +Encoding: 301 301 284 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 8 0 2 +Refer: 224 774 N 1 0 0 1 432 20 2 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 285 +Width: 344 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 -21 2 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 286 +Width: 328 +Flags: HW +LayerCount: 2 +Fore +Refer: 42 74 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 -49 22 2 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 287 +Width: 279 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 363 567 N 1 0 0 1 -75 0 2 +Refer: 220 770 N 1 0 0 1 368 21 2 +EndChar + +StartChar: uni0136 +Encoding: 310 310 288 +Width: 671 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 75 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 564 0 2 +EndChar + +StartChar: uni0137 +Encoding: 311 311 289 +Width: 491 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 107 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 433 0 2 +EndChar + +StartChar: Lacute +Encoding: 313 313 290 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 29 -16 2 +EndChar + +StartChar: lacute +Encoding: 314 314 291 +Width: 276 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 1 -16 2 +EndChar + +StartChar: uni013B +Encoding: 315 315 292 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 471 0 2 +EndChar + +StartChar: uni013C +Encoding: 316 316 293 +Width: 276 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 332 0 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 294 +Width: 551 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 230 789 N 1 0 0 1 368 14 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 295 +Width: 272 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 230 789 N 1 0 0 1 164 14 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 296 +Width: 534 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 76 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 708 -225 2 +EndChar + +StartChar: ldot +Encoding: 320 320 297 +Width: 406 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 108 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 586 -244 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 298 +Width: 698 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 257 -3 2 +EndChar + +StartChar: nacute +Encoding: 324 324 299 +Width: 523 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 598 37 2 +EndChar + +StartChar: uni0145 +Encoding: 325 325 300 +Width: 698 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 539 0 2 +EndChar + +StartChar: uni0146 +Encoding: 326 326 301 +Width: 523 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 462 0 2 +EndChar + +StartChar: Ncaron +Encoding: 327 327 302 +Width: 698 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 78 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 54 -3 2 +EndChar + +StartChar: ncaron +Encoding: 328 328 303 +Width: 523 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 110 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 545 12 2 +EndChar + +StartChar: Omacron +Encoding: 332 332 304 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 238 -1 N 1 0 0 1 144 167 2 +EndChar + +StartChar: omacron +Encoding: 333 333 305 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 528 20 2 +EndChar + +StartChar: Obreve +Encoding: 334 334 306 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 167 22 2 +EndChar + +StartChar: obreve +Encoding: 335 335 307 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 111 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 527 20 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 308 +Width: 688 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 79 N 1 0 0 1 0 0 2 +Refer: 243 -1 N 1 0 0 1 147 -16 2 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 309 +Width: 444 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 504 10 2 +Refer: 191 769 N 1 0 0 1 652 10 2 +Refer: 79 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Racute +Encoding: 340 340 310 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 129 -16 2 +EndChar + +StartChar: racute +Encoding: 341 341 311 +Width: 421 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 583 37 2 +EndChar + +StartChar: uni0156 +Encoding: 342 342 312 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 499 0 2 +EndChar + +StartChar: uni0157 +Encoding: 343 343 313 +Width: 421 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 231 806 N 1 0 0 1 342 0 2 +EndChar + +StartChar: Rcaron +Encoding: 344 344 314 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 82 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 -30 -3 2 +EndChar + +StartChar: rcaron +Encoding: 345 345 315 +Width: 421 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 114 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 513 12 2 +EndChar + +StartChar: Sacute +Encoding: 346 346 316 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 159 0 2 +EndChar + +StartChar: sacute +Encoding: 347 347 317 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 520 37 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 318 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 33 25 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 319 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 481 21 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 320 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 8 -2 2 +EndChar + +StartChar: scedilla +Encoding: 351 351 321 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 232 807 N 1 0 0 1 360 -1 2 +EndChar + +StartChar: Scaron +Encoding: 352 352 322 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 -44 0 2 +EndChar + +StartChar: scaron +Encoding: 353 353 323 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 479 12 2 +EndChar + +StartChar: uni0162 +Encoding: 354 354 324 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 -1 0 2 +Refer: 240 -1 N 1 0 0 1 61 8 2 +EndChar + +StartChar: uni0163 +Encoding: 355 355 325 +Width: 320 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 232 807 N 1 0 0 1 340 4 2 +EndChar + +StartChar: Tcaron +Encoding: 356 356 326 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 0 6 2 +EndChar + +StartChar: tcaron +Encoding: 357 357 327 +Width: 298 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 230 789 N 1 0 0 1 208 14 2 +EndChar + +StartChar: Utilde +Encoding: 360 360 328 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 237 -1 N 1 0 0 1 107 0 2 +EndChar + +StartChar: utilde +Encoding: 361 361 329 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 530 20 2 +EndChar + +StartChar: Umacron +Encoding: 362 362 330 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 238 -1 N 1 0 0 1 151 167 2 +EndChar + +StartChar: umacron +Encoding: 363 363 331 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 539 20 2 +EndChar + +StartChar: Ubreve +Encoding: 364 364 332 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 239 -1 N 1 0 0 1 190 22 2 +EndChar + +StartChar: ubreve +Encoding: 365 365 333 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 532 20 2 +EndChar + +StartChar: Uring +Encoding: 366 366 334 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 236 -1 N 1 0 0 1 185 66 2 +EndChar + +StartChar: uring +Encoding: 367 367 335 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 85 117 N 1 0 0 1 0 0 2 +Refer: 227 778 N 1 0 0 1 517 18 2 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 336 +Width: 675 +Flags: HW +LayerCount: 2 +Fore +Refer: 53 85 N 1 0 0 1 0 0 2 +Refer: 243 -1 N 1 0 0 1 174 -16 2 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 337 +Width: 520 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 511 10 2 +Refer: 191 769 N 1 0 0 1 659 10 2 +Refer: 85 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 338 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 55 87 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 240 22 2 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 339 +Width: 708 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 87 119 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 676 21 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 340 +Width: 562 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 235 -1 N 1 0 0 1 90 22 2 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 341 +Width: 489 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 529 21 2 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 342 +Width: 562 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 89 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 101 11 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 343 +Width: 593 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 234 -1 N 1 0 0 1 187 -3 2 +EndChar + +StartChar: zacute +Encoding: 378 378 344 +Width: 430 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 191 769 N 1 0 0 1 560 38 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 345 +Width: 593 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 113 0 2 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 346 +Width: 430 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 523 21 2 +EndChar + +StartChar: Zcaron +Encoding: 381 381 347 +Width: 593 +Flags: HW +LayerCount: 2 +Fore +Refer: 58 90 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 24 -3 2 +EndChar + +StartChar: zcaron +Encoding: 382 382 348 +Width: 430 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 524 13 2 +EndChar + +StartChar: Aogonek +Encoding: 260 260 349 +Width: 605 +Flags: HW +HStem: -213 61<282 364> -4 36<-57 -2 88 141 521 568> 220 47<193 346> 627 20G<382 391> +VStem: 243 60<-169 -82> +LayerCount: 2 +Fore +SplineSet +445 4 m 0 + 383 4 302 -57 302 -119 c 0 + 302 -142 313 -152 337 -152 c 0 + 378 -152 403 -122 410 -117 c 1 + 417 -119 414 -139 412 -143 c 0 + 390 -181 342 -213 301 -213 c 0 + 263 -213 243 -182 243 -156 c 0 + 243 -92 285 -53 327 -7 c 0 + 354 22 381 40 381 79 c 0 + 381 88 356 215 356 215 c 1 + 356 215 354 219 351 219 c 0 + 317 221 286 220 264 220 c 0 + 227 220 201 220 169 219 c 0 + 166 219 163 216 162 214 c 1 + 162 214 129 159 113 132 c 0 + 99 108 81 72 80 65 c 0 + 75 40 137 32 144 32 c 1 + 148 25 141 0 137 -4 c 1 + 106 0 80 4 40 4 c 0 + -2 4 -27 0 -59 -4 c 1 + -62 0 -60 20 -54 31 c 1 + -43 31 3 46 15 62 c 0 + 36 89 43 104 60 131 c 2 + 347 609 l 2 + 355 622 377 646 387 646 c 0 + 395 646 404 643 405 640 c 1 + 495 145 l 2 + 501 115 503 95 507 74 c 0 + 515 34 564 32 571 32 c 1 + 574 23 569 0 565 -4 c 1 + 529 -2 485 4 445 4 c 0 +308 465 m 1 + 193 273 l 1 + 193 273 193 270 195 270 c 0 + 213 268 248 267 269 267 c 0 + 297 267 314 267 342 269 c 0 + 344 269 346 273 346 273 c 1 + 308 465 l 1 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 350 +Width: 477 +Flags: HW +HStem: -213 61<230 312> -7 86<67 186> 385 54<223 328> +VStem: 11 123<84 217> 190 60<-169 -88> +LayerCount: 2 +Fore +SplineSet +256 385 m 0 + 190 385 134 263 134 148 c 0 + 134 101 148 79 169 79 c 0 + 202 79 251 177 271 274 c 2 + 290 373 l 1 + 283 381 270 385 256 385 c 0 +447 109 m 1 + 438 92 409 60 376 33 c 0 + 316 -16 250 -65 250 -119 c 0 + 250 -142 261 -152 285 -152 c 0 + 326 -152 350 -122 357 -117 c 1 + 364 -119 362 -139 360 -143 c 0 + 338 -181 290 -213 249 -213 c 0 + 211 -213 190 -182 190 -156 c 0 + 190 -94 240 -51 281 -7 c 1 + 252 -3 231 18 231 57 c 0 + 231 61 232 68 233 75 c 0 + 234 83 236 90 237 94 c 1 + 216 58 154 -7 95 -7 c 0 + 40 -7 11 46 11 112 c 0 + 11 287 187 438 311 438 c 0 + 346 438 395 428 415 421 c 1 + 354 129 l 2 + 353 125 351 102 351 97 c 0 + 351 88 354 76 364 76 c 0 + 385 76 431 130 434 136 c 1 + 441 136 447 115 447 109 c 1 +EndSplineSet +EndChar + +StartChar: Eogonek +Encoding: 280 280 351 +Width: 559 +Flags: HW +HStem: -213 61<266 348> -3 36<-4 61> -1 42<204 345 364 395> 303 46<255 377> 605 36<116 167 305 475> +VStem: 227 60<-169 -87> 397 28<229 269> 434 28<390 425> 507 35<499 567> +LayerCount: 2 +Fore +SplineSet +227 -156 m 0xbf80 + 227 -98 277 -30 345 -1 c 1xbf80 + 280 -1 193 -2 121 -2 c 0 + 56 -2 4 -3 -8 -3 c 1 + -11 3 -7 26 -1 33 c 1xdf80 + 11 34 54 37 61 50 c 0 + 72 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 122 607 110 608 c 1 + 107 615 113 639 118 645 c 1 + 158 642 209 642 247 642 c 0 + 285 642 490 647 544 648 c 1 + 541 599 542 548 542 504 c 1 + 539 501 527 499 520 499 c 0 + 513 499 508 502 507 507 c 0 + 498 561 484 605 428 605 c 2 + 353 605 l 2 + 332 605 312 605 305 594 c 0 + 298 582 295 562 289 534 c 2 + 255 359 l 2 + 254 353 272 349 292 349 c 2 + 340 349 l 2 + 394 349 409 360 434 417 c 0 + 436 422 438 425 445 425 c 0 + 452 425 460 423 462 420 c 1 + 426 232 l 1 + 424 230 415 229 408 229 c 0 + 401 229 397 231 397 236 c 0 + 395 283 385 292 377 296 c 0 + 367 301 344 303 310 303 c 0 + 285 303 243 301 241 289 c 2 + 212 138 l 2 + 211 132 200 81 204 61 c 0 + 207 47 236 41 259 41 c 2 + 319 41 l 2 + 353 41 385 51 410 73 c 0 + 433 94 453 122 477 166 c 0 + 479 170 484 172 491 172 c 0 + 500 172 515 169 517 166 c 1 + 490 113 451 41 436 -2 c 1 + 367 -2 286 -67 286 -119 c 0 + 286 -142 297 -152 321 -152 c 0 + 362 -152 387 -122 394 -117 c 1 + 401 -119 399 -139 397 -143 c 0 + 375 -181 326 -213 285 -213 c 0 + 247 -213 227 -182 227 -156 c 0xbf80 +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 352 +Width: 384 +Flags: HW +HStem: -213 61<100 182> -6 21G<93 131> 184 37<142 182> 402 36<201 287> +VStem: 16 121<90 184> 61 60<-169 -85> 254 116<294 402> +LayerCount: 2 +Fore +SplineSet +142 221 m 1xf2 + 180 221 254 292 254 364 c 0 + 254 390 250 402 229 402 c 0 + 182 402 147 271 142 221 c 1xf2 +61 -156 m 0xf6 + 61 -99 107 -48 146 -4 c 1 + 139 -6 135 -6 128 -6 c 0 + 59 -6 16 46 16 137 c 0 + 16 282 150 438 262 438 c 0 + 312 438 370 417 370 349 c 0 + 370 248 200 184 139 184 c 1 + 138 181 137 164 137 159 c 0xfa + 137 123 147 75 196 75 c 0 + 240 75 292 136 295 139 c 1 + 304 139 310 115 310 109 c 1 + 304 99 279 76 248 52 c 0 + 183 1 120 -65 120 -119 c 0 + 120 -142 131 -152 155 -152 c 0 + 196 -152 221 -122 228 -117 c 1 + 235 -119 232 -139 230 -143 c 0 + 208 -181 160 -213 119 -213 c 0 + 81 -213 61 -182 61 -156 c 0xf6 +EndSplineSet +EndChar + +StartChar: Dcroat +Encoding: 272 272 353 +Width: 704 +Flags: HW +LayerCount: 2 +Fore +Refer: 142 208 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Iogonek +Encoding: 302 302 354 +Width: 344 +Flags: HW +HStem: -213 61<51 133> -4 36<-5 59 202 253> 610 36<115 166 308 373> +VStem: 12 60<-169 -86> +LayerCount: 2 +Fore +SplineSet +257 32 m 1 + 260 25 255 2 250 -4 c 1 + 241 -4 210 -3 187 -6 c 0 + 137 -12 71 -67 71 -119 c 0 + 71 -142 82 -152 106 -152 c 0 + 147 -152 172 -122 179 -117 c 1 + 186 -119 184 -139 182 -143 c 0 + 160 -181 111 -213 70 -213 c 0 + 32 -213 12 -182 12 -156 c 0 + 12 -80 90 -15 126 4 c 1 + 89 4 24 0 -9 -4 c 1 + -12 2 -7 25 -1 32 c 1 + 11 33 53 37 60 50 c 0 + 71 70 77 100 85 142 c 2 + 155 501 l 2 + 163 543 170 573 166 593 c 0 + 164 606 123 609 111 610 c 1 + 108 617 113 640 118 646 c 1 + 152 642 209 640 247 640 c 0 + 285 640 340 642 376 646 c 1 + 379 640 375 617 369 610 c 1 + 357 609 315 606 308 593 c 0 + 297 573 290 543 282 501 c 2 + 213 142 l 2 + 205 100 198 70 202 50 c 0 + 204 37 245 33 257 32 c 1 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 355 +Width: 303 +VWidth: 0 +Flags: HW +HStem: -213 61<60 142> 354 84<84 183> 527 144<160 239> +VStem: 21 60<-169 -89> 109 119<245 396> 133 133<554 645> +LayerCount: 2 +Fore +SplineSet +209 671 m 0xf4 + 242 671 266 644 266 610 c 0 + 266 567 230 527 189 527 c 0 + 156 527 133 555 133 589 c 0 + 133 632 168 671 209 671 c 0xf4 +276 109 m 1 + 266 90 229 54 196 26 c 0 + 141 -21 80 -68 80 -119 c 0 + 80 -142 91 -152 115 -152 c 0 + 156 -152 181 -122 188 -117 c 1 + 195 -119 192 -139 190 -143 c 0 + 168 -181 120 -213 79 -213 c 0 + 41 -213 21 -182 21 -156 c 0 + 21 -94 70 -51 111 -7 c 1 + 83 -3 60 17 60 62 c 0 + 60 76 66 112 68 120 c 2 + 104 302 l 2 + 105 306 109 329 109 334 c 0 + 109 343 105 354 95 354 c 0 + 74 354 28 301 25 295 c 1 + 18 295 12 315 12 321 c 1 + 29 352 110 438 163 438 c 0 + 202 438 229 414 229 369 c 0xf8 + 229 355 222 321 220 311 c 2 + 184 129 l 2 + 183 125 180 102 180 97 c 0 + 180 88 183 76 193 76 c 0 + 214 76 260 130 263 136 c 1 + 270 136 276 115 276 109 c 1 +EndSplineSet +EndChar + +StartChar: Uogonek +Encoding: 370 370 356 +Width: 675 +Flags: HW +HStem: -213 61<287 369> -9 70<263 370> 610 36<97 148 289 354 517 574 664 736> +VStem: 247 60<-169 -90> +LayerCount: 2 +Fore +SplineSet +307 -119 m 0 + 307 -142 318 -152 342 -152 c 0 + 383 -152 407 -122 414 -117 c 1 + 421 -119 419 -139 417 -143 c 0 + 395 -181 347 -213 306 -213 c 0 + 268 -213 247 -182 247 -156 c 0 + 247 -95 301 -47 341 -3 c 1 + 321 -7 302 -9 281 -9 c 0 + 205 -9 138 18 106 77 c 0 + 80 125 77 192 97 294 c 2 + 137 501 l 2 + 145 543 152 573 148 593 c 0 + 146 606 105 609 93 610 c 1 + 90 617 95 640 100 646 c 1 + 134 642 191 640 229 640 c 0 + 267 640 322 642 358 646 c 1 + 361 640 357 617 351 610 c 1 + 339 609 296 606 289 593 c 0 + 278 573 272 543 264 501 c 2 + 230 322 l 2 + 217 256 209 207 220 155 c 0 + 238 69 305 62 340 62 c 0 + 412 62 501 131 534 302 c 2 + 566 468 l 2 + 574 510 581 567 577 587 c 0 + 573 606 525 609 513 610 c 1 + 510 617 515 640 520 646 c 1 + 562 642 590 640 632 640 c 0 + 672 640 702 644 740 646 c 1 + 743 640 739 617 733 610 c 1 + 721 609 671 608 659 587 c 0 + 648 567 630 511 622 469 c 2 + 585 279 l 2 + 561 157 501 76 428 32 c 0 + 380 3 307 -68 307 -119 c 0 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 357 +Width: 521 +Flags: HW +HStem: -213 61<275 357> -8 107<98 210> 354 84<79 178> +VStem: 62 119<41 215> 104 119<242 396> 235 60<-169 -88> +LayerCount: 2 +Fore +SplineSet +235 -156 m 0xf4 + 235 -94 285 -51 326 -7 c 1 + 297 -3 275 19 275 58 c 0 + 275 65 278 89 282 110 c 0 + 286 131 291 151 294 162 c 1 + 257 83 165 -8 123 -8 c 3 + 73 -8 62 16 62 76 c 0xf4 + 62 107 75 174 80 199 c 8 + 88 239 94 262 100 302 c 18 + 101 306 104 329 104 334 c 0 + 104 343 100 354 90 354 c 0 + 69 354 24 301 21 295 c 1 + 14 295 7 315 7 321 c 1 + 24 352 105 438 158 438 c 0 + 197 438 224 414 224 369 c 0xec + 224 355 217 321 215 311 c 0 + 213 299 192 194 192 194 c 2 + 190 182 181 130 181 120 c 0 + 181 110 185 100 196 100 c 0 + 224 100 306 243 330 363 c 10 + 344 431 l 17 + 354 434 387 437 398 437 c 0 + 409 437 444 434 456 431 c 1 + 399 129 l 2 + 398 124 396 102 396 97 c 0 + 396 88 399 76 409 76 c 0 + 430 76 476 130 479 136 c 1 + 486 136 492 115 492 109 c 1 + 483 92 454 60 421 33 c 0 + 361 -16 295 -65 295 -119 c 0 + 295 -142 306 -152 330 -152 c 0 + 371 -152 395 -122 402 -117 c 1 + 409 -119 407 -139 405 -143 c 0 + 383 -181 335 -213 294 -213 c 0 + 256 -213 235 -182 235 -156 c 0xf4 +EndSplineSet +EndChar + +StartChar: dcroat +Encoding: 273 273 358 +Width: 468 +Flags: HW +HStem: -7 86<66 185 280 374> 385 54<255 303> 505 38<191 499> 617 28<274 331> 660 20<442 456> +VStem: 10 123<84 217> 333 126<544 664> +LayerCount: 2 +Fore +SplineSet +199 543 m 1 + 226 543 484 543 497 543 c 0 + 501 543 503 539 502 535 c 0 + 501 530 496 512 491 505 c 1 + 464 505 205 505 192 505 c 0 + 188 505 188 512 189 516 c 0 + 190 521 192 536 199 543 c 1 +EndSplineSet +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hbar +Encoding: 295 295 359 +Width: 492 +Flags: HW +HStem: -8 84<296 396> 331 107<264 370> 505 38<62 370> 617 28<69 126> 660 20<237 250> +VStem: 128 126<544 664> 251 120<33 187> 294 119<215 389> +LayerCount: 2 +Fore +SplineSet +70 543 m 1xf8 + 97 543 355 543 368 543 c 0 + 372 543 374 539 373 535 c 0 + 372 530 367 512 362 505 c 1 + 335 505 76 505 63 505 c 0 + 59 505 60 512 61 516 c 0 + 62 521 63 536 70 543 c 1xf8 +EndSplineSet +Refer: 72 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hbar +Encoding: 294 294 360 +Width: 690 +Flags: HW +HStem: -4 36<-5 60 202 253 341 406 548 599> 310 50<258 463> 466 38<96 681> 610 36<115 166 308 373 460 512 653 718> +LayerCount: 2 +Fore +SplineSet +104 504 m 1 + 128 504 670 504 682 504 c 0 + 685 504 685 500 684 496 c 0 + 683 491 679 474 674 466 c 1 + 650 466 108 466 96 466 c 0 + 93 466 93 473 94 477 c 0 + 95 482 97 496 104 504 c 1 +EndSplineSet +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: IJ +Encoding: 306 306 361 +Width: 575 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 73 N 1 0 0 1 0 0 2 +Refer: 42 74 N 1 0 0 1 246 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 362 +Width: 509 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 73 105 N 1 0 0 1 0 0 2 +Refer: 74 106 N 1 0 0 1 230 0 2 +EndChar + +StartChar: uni0237 +Encoding: 567 567 363 +Width: 279 +VWidth: 0 +Flags: HW +HStem: -213 21<-83 -77> 354 84<93 191> +VStem: 118 119<241 396> +LayerCount: 2 +Fore +SplineSet +113 302 m 2 + 114 306 118 329 118 334 c 0 + 118 343 114 354 104 354 c 0 + 83 354 37 301 34 295 c 1 + 27 295 21 315 21 321 c 1 + 38 352 119 438 172 438 c 0 + 211 438 237 414 237 369 c 0 + 237 355 231 321 229 311 c 0 + 229 311 206 190 191 117 c 0 + 175 35 146 -19 106 -73 c 0 + 64 -129 -50 -205 -77 -213 c 1 + -82 -213 -86 -200 -86 -191 c 1 + 17 -112 46 -48 74 98 c 0 + 113 302 l 2 +EndSplineSet +EndChar + +StartChar: Lslash +Encoding: 321 321 364 +Width: 535 +Flags: HW +HStem: -3 36<-3 62> -2 43<205 396> 420 20G<384 416> 610 36<116 167 309 374> +LayerCount: 2 +Fore +SplineSet +50 205 m 2x30 + 414 439 l 1 + 418 434 430 409 426 406 c 2 + 62 174 l 1 + 58 180 46 202 50 205 c 2x30 +EndSplineSet +Refer: 44 76 N 1 0 0 1 1 0 2 +EndChar + +StartChar: lslash +Encoding: 322 322 365 +Width: 278 +Flags: HW +HStem: -8 84<96 195> 617 28<92 149> 660 20<260 274> +VStem: 50 120<33 187> 151 126<546 664> +LayerCount: 2 +Fore +SplineSet +32 283 m 2xe0 + 261 429 l 1 + 264 424 274 403 269 400 c 2 + 39 254 l 1 + 35 260 27 280 32 283 c 2xe0 +EndSplineSet +Refer: 76 108 N 1 0 0 1 20 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 366 +Width: 522 +VWidth: 0 +Flags: HW +HStem: -4 84<307 424> 354 84<83 182> 365 73<320 427> +VStem: 108 119<288 396> 353 126<316 391> +LayerCount: 2 +Fore +SplineSet +104 302 m 2xb8 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0xd8 + 201 438 228 414 228 369 c 0 + 228 357 226 350 225 340 c 0 + 225 338 225 335 225 333 c 1 + 237 358 316 438 398 438 c 3 + 455 438 479 413 479 368 c 0 + 479 304 384 249 311 225 c 1 + 328 178 370 80 412 80 c 0 + 435 80 471 124 479 135 c 1 + 489 135 492 114 492 109 c 1 + 482 83 404 -4 345 -4 c 0 + 270 -4 219 134 198 203 c 1 + 183 130 158 0 158 0 c 17 + 148 -3 115 -6 104 -6 c 0 + 93 -6 58 -3 46 0 c 1 + 52 30 104 302 104 302 c 2xb8 +325 365 m 3xb8 + 267 365 206 265 206 242 c 1 + 267 242 353 281 353 334 c 3 + 353 344 347 365 325 365 c 3xb8 +EndSplineSet +EndChar + +StartChar: Eng +Encoding: 330 330 367 +Width: 697 +Flags: HW +HStem: -213 23<254 271> -4 36<-13 58 149 210> 4 28<-14 52> 610 37<111 162 523 587 667 746> 610 29<528 585 671 748> +LayerCount: 2 +Fore +SplineSet +467 67 m 1x90 + 220 507 l 1 + 152 153 l 2 + 145 118 141 73 143 59 c 0 + 146 40 206 33 213 33 c 1 + 217 23 211 2 208 -4 c 1xd0 + 172 -2 134 4 94 4 c 0xa0 + 52 4 24 -2 -18 -4 c 1 + -21 5 -12 32 -10 32 c 0 + 1 32 56 40 67 58 c 0 + 76 73 90 119 97 156 c 0 + 121 284 141 374 165 502 c 0 + 170 529 173 571 165 590 c 0 + 159 603 120 610 109 610 c 0 + 104 610 108 641 114 646 c 1 + 141 644 173 640 215 640 c 0xc8 + 247 640 286 642 316 646 c 1 + 336 570 446 391 529 242 c 1 + 532 249 536 268 539 282 c 2 + 574 465 l 2 + 581 502 592 575 588 590 c 0 + 584 608 530 611 519 611 c 0 + 517 611 520 638 526 647 c 1x90 + 567 645 593 640 635 640 c 0x88 + 675 640 715 645 752 647 c 1 + 753 641 750 620 742 610 c 1 + 735 610 675 609 663 588 c 0 + 656 574 636 503 629 468 c 2 + 565 136 l 2 + 521 -87 321 -195 263 -213 c 1 + 258 -210 253 -200 253 -195 c 0 + 253 -192 253 -190 254 -189 c 0 + 343 -141 427 -62 467 67 c 1x90 +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 368 +Width: 491 +VWidth: 0 +Flags: HW +HStem: -213 21<130 136> -6 21G<98 109> 331 107<295 401> 354 84<83 182> +VStem: 108 119<240 396> 325 119<215 389> +LayerCount: 2 +Fore +SplineSet +404 117 m 0xec + 388 35 360 -19 320 -73 c 0 + 278 -129 164 -205 137 -213 c 1 + 132 -213 127 -200 127 -191 c 1 + 230 -112 259 -48 287 98 c 0 + 313 236 l 2 + 315 248 325 301 325 311 c 0 + 325 321 321 331 310 331 c 0xec + 282 331 205 213 178 89 c 10 + 158 0 l 17 + 148 -3 115 -6 104 -6 c 0 + 93 -6 58 -3 46 0 c 1 + 104 302 l 2 + 105 306 108 329 108 334 c 0 + 108 343 104 354 94 354 c 0 + 73 354 27 301 24 295 c 1 + 17 295 11 315 11 321 c 1 + 28 352 109 438 162 438 c 0xdc + 201 438 228 414 228 369 c 0 + 228 355 221 322 219 311 c 0 + 216 297 214 289 209 268 c 1 + 238 334 325 438 374 438 c 3 + 429 438 444 410 444 354 c 0 + 444 321 430 253 425 228 c 2 + 404 117 l 0xec +EndSplineSet +EndChar + +StartChar: Tbar +Encoding: 358 358 369 +Width: 582 +Flags: HW +HStem: -4 36<114 179 320 371> 297 38<139 472> 599 43<157 293 420 547> +VStem: 578 35<472 559> +LayerCount: 2 +Fore +SplineSet +147 335 m 1 + 174 335 457 335 470 335 c 0 + 474 335 476 331 475 327 c 0 + 474 322 469 304 464 297 c 1 + 437 297 154 297 141 297 c 0 + 137 297 137 304 138 308 c 0 + 139 313 140 328 147 335 c 1 +EndSplineSet +Refer: 52 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tbar +Encoding: 359 359 370 +Width: 342 +Flags: HW +HStem: -8 84<117 216> 272 38<25 303> 369 45<66 129 252 340> +VStem: 72 120<33 186> +LayerCount: 2 +Fore +SplineSet +33 311 m 1 + 60 311 288 311 301 311 c 0 + 305 311 307 307 306 303 c 0 + 305 298 300 279 295 272 c 1 + 268 272 39 272 26 272 c 0 + 22 272 22 279 23 283 c 0 + 24 288 26 304 33 311 c 1 +EndSplineSet +Refer: 84 116 N 1 0 0 1 23 0 2 +EndChar + +StartChar: OE +Encoding: 338 338 371 +Width: 956 +Flags: HW +HStem: -10 42<253 419> -2 43<600 792> 303 46<651 773> 605 36<702 871> 609 42<344 496 738 871> +VStem: 50 141<146 385> 794 28<229 269> 830 28<390 425> 903 35<499 567> +LayerCount: 2 +Fore +SplineSet +411 609 m 3xaf80 + 276 609 190 399 190 238 c 0 + 190 126 226 32 316 32 c 0 + 426 32 469 79 480 136 c 0 + 480 136 523 352 544 461 c 0 + 552 502 544 546 514 575 c 0 + 486 602 443 609 411 609 c 3xaf80 +536 -2 m 0x7780 + 524 -2 469 -3 417 -6 c 0 + 381 -8 341 -10 290 -10 c 0 + 153 -10 50 112 50 255 c 0 + 50 498 223 651 433 651 c 0xaf80 + 530 651 554 642 622 642 c 0 + 660 642 886 647 940 648 c 1 + 939 631 939 614 939 596 c 0 + 939 564 938 532 938 504 c 1 + 935 501 923 499 916 499 c 0 + 909 499 904 502 903 507 c 0 + 894 561 880 605 824 605 c 2 + 749 605 l 0 + 728 605 708 605 701 594 c 0 + 694 582 692 562 686 534 c 2 + 651 359 l 2 + 650 353 668 349 688 349 c 2 + 736 349 l 2 + 790 349 805 360 830 417 c 0 + 832 422 835 425 842 425 c 0 + 849 425 856 423 858 420 c 1 + 822 232 l 1 + 820 230 812 229 805 229 c 0 + 798 229 794 231 794 236 c 0 + 792 283 781 292 773 296 c 0 + 763 301 740 303 706 303 c 0 + 681 303 640 301 638 289 c 2 + 608 138 l 2 + 607 132 597 81 601 61 c 0 + 604 47 632 41 655 41 c 0 + 716 41 l 2 + 750 41 782 51 807 73 c 0 + 830 94 849 122 873 166 c 0 + 875 170 881 172 888 172 c 0 + 897 172 911 169 913 166 c 1 + 886 113 847 41 832 -2 c 1 + 809 -2 659 -2 536 -2 c 0x7780 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 372 +Width: 639 +Flags: HW +HStem: -6 81<361 473> -6 39<146 211> 184 37<396 437> 402 36<221 277 455 542> +VStem: 15 122<54 239> 289 103<225 296> 509 116<294 402> +LayerCount: 2 +Fore +SplineSet +396 221 m 1x3e + 434 221 509 292 509 364 c 0 + 509 382 504 402 483 402 c 0 + 436 402 401 271 396 221 c 1x3e +256 399 m 0 + 183 399 137 229 137 122 c 0 + 137 99 137 33 170 33 c 0x7e + 243 33 289 204 289 305 c 0 + 289 337 289 399 256 399 c 0 +517 438 m 0 + 567 438 625 417 625 349 c 0 + 625 248 455 184 394 184 c 1 + 393 181 392 164 392 159 c 0 + 392 123 402 75 451 75 c 0 + 495 75 547 136 550 139 c 1 + 559 139 564 115 564 109 c 1 + 551 88 445 -6 383 -6 c 0xbe + 340 -6 307 14 288 51 c 1 + 246 16 198 -6 154 -6 c 0 + 73 -6 15 45 15 139 c 0 + 15 280 150 438 267 438 c 0 + 320 438 366 424 391 382 c 1 + 431 417 475 438 517 438 c 0 +EndSplineSet +EndChar + +StartChar: uni02BB +Encoding: 699 699 373 +Width: 181 +Flags: HW +LayerCount: 2 +Fore +Refer: 229 786 N 1 0 0 1 -82 0 2 +EndChar + +StartChar: uni02BC +Encoding: 700 700 374 +Width: 191 +Flags: HW +LayerCount: 2 +Fore +Refer: 230 789 N 1 0 0 1 -73 0 2 +EndChar + +StartChar: Gcaron +Encoding: 486 486 375 +Width: 662 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 71 N 1 0 0 1 0 0 2 +Refer: 246 -1 N 1 0 0 1 46 -3 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 376 +Width: 433 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 103 N 1 0 0 1 0 0 2 +Refer: 228 780 N 1 0 0 1 469 21 2 +EndChar + +StartChar: uni02BE +Encoding: 702 702 377 +Width: 182 +Flags: HW +HStem: 436 38<20 69> 647 37<60 95> +VStem: 15 148 +LayerCount: 2 +Fore +SplineSet +63 685 m 1 + 144 685 173 614 163 561 c 0 + 151 502 94 436 15 436 c 1 + 14 446 17 464 22 474 c 1 + 65 474 99 518 107 561 c 24 + 116 605 99 647 56 647 c 1 + 55 657 57 673 63 685 c 1 +EndSplineSet +EndChar + +StartChar: uni02BF +Encoding: 703 703 378 +Width: 182 +Flags: HW +HStem: 436 38<89 122> 647 37<115 163> +VStem: 20 148 +LayerCount: 2 +Fore +SplineSet +168 685 m 1 + 170 673 165 657 160 647 c 1 + 117 647 84 605 75 561 c 24 + 66 518 84 474 127 474 c 1 + 128 464 124 446 119 436 c 1 + 40 436 8 502 20 561 c 0 + 30 614 87 685 168 685 c 1 +EndSplineSet +EndChar + +StartChar: uni1E6E +Encoding: 7790 7790 379 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 468 -584 2 +EndChar + +StartChar: uni1E6F +Encoding: 7791 7791 380 +Width: 320 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 340 -587 2 +EndChar + +StartChar: uni1E28 +Encoding: 7720 7720 381 +Width: 690 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 240 -1 N 1 0 0 1 -60 8 2 +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E29 +Encoding: 7721 7721 382 +Width: 492 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 232 807 N 1 0 0 1 300 3 2 +EndChar + +StartChar: uni1E24 +Encoding: 7716 7716 383 +Width: 690 +Flags: HW +LayerCount: 2 +Fore +Refer: 242 -1 N 1 0 0 1 149 -27 2 +Refer: 40 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E25 +Encoding: 7717 7717 384 +Width: 492 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 416 -698 2 +EndChar + +StartChar: uni1E2A +Encoding: 7722 7722 385 +Width: 690 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 72 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 498 -659 2 +EndChar + +StartChar: uni1E2B +Encoding: 7723 7723 386 +Width: 492 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 224 774 N 1 0 0 1 402 -662 2 +EndChar + +StartChar: breve +Encoding: 728 728 387 +Width: 237 +Flags: HW +LayerCount: 2 +Fore +Refer: 224 774 N 1 0 0 1 348 29 2 +EndChar + +StartChar: uni1E96 +Encoding: 7830 7830 388 +Width: 492 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 104 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 431 -587 2 +EndChar + +StartChar: uni1E0E +Encoding: 7694 7694 389 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 68 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 464 -584 2 +EndChar + +StartChar: uni1E0F +Encoding: 7695 7695 390 +Width: 475 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 100 N 1 0 0 1 0 0 2 +Refer: 223 772 N 1 0 0 1 411 -587 2 +EndChar + +StartChar: uni1E62 +Encoding: 7778 7778 391 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 242 -1 N 1 0 0 1 52 -34 2 +Refer: 51 83 N 1 0 0 1 1 0 2 +EndChar + +StartChar: uni1E63 +Encoding: 7779 7779 392 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 115 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 363 -698 2 +EndChar + +StartChar: uni1E10 +Encoding: 7696 7696 393 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 68 N 1 0 0 1 0 0 2 +Refer: 240 -1 N 1 0 0 1 81 3 2 +EndChar + +StartChar: uni1E11 +Encoding: 7697 7697 394 +Width: 475 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 100 N 1 0 0 1 0 0 2 +Refer: 232 807 N 1 0 0 1 503 3 2 +EndChar + +StartChar: uni1E0C +Encoding: 7692 7692 395 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 68 N 1 0 0 1 0 0 2 +Refer: 242 -1 N 1 0 0 1 132 -27 2 +EndChar + +StartChar: uni1E0D +Encoding: 7693 7693 396 +Width: 475 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 100 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 406 -698 2 +EndChar + +StartChar: uni1E6C +Encoding: 7788 7788 397 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 242 -1 N 1 0 0 1 105 -27 2 +Refer: 52 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E6D +Encoding: 7789 7789 398 +Width: 320 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 321 -698 2 +EndChar + +StartChar: uni1E92 +Encoding: 7826 7826 399 +Width: 593 +Flags: HW +LayerCount: 2 +Fore +Refer: 242 -1 N 1 0 0 1 127 -24 2 +Refer: 58 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E93 +Encoding: 7827 7827 400 +Width: 430 +Flags: HW +LayerCount: 2 +Fore +Refer: 90 122 N 1 0 0 1 0 0 2 +Refer: 225 775 N 1 0 0 1 375 -692 2 +EndChar + +StartChar: uni1E97 +Encoding: 7831 7831 401 +Width: 320 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 116 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 439 110 2 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 402 +Width: 562 +Flags: HW +LayerCount: 2 +Fore +Refer: 233 -1 N 1 0 0 1 78 31 2 +Refer: 57 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 403 +Width: 489 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 121 N 1 0 0 1 0 0 2 +Refer: 190 768 N 1 0 0 1 471 1 2 +EndChar + +StartChar: uni201F +Encoding: 8223 8223 404 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +SplineSet +183 626 m 0 + 183 655 190 691 201 707 c 1 + 209 709 216 711 224 711 c 0 + 261 711 301 688 301 660 c 0 + 301 646 293 635 282 623 c 0 + 269 607 253 594 253 576 c 0 + 253 565 264 512 335 470 c 1 + 330 457 322 449 312 449 c 0 + 301 449 183 516 183 626 c 0 +18 626 m 0 + 18 655 25 691 36 707 c 1 + 44 709 51 711 59 711 c 0 + 96 711 136 688 136 660 c 0 + 136 646 128 635 117 623 c 0 + 104 607 88 594 88 576 c 0 + 88 565 99 512 170 470 c 1 + 165 457 157 449 147 449 c 0 + 136 449 18 516 18 626 c 0 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 405 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +SplineSet +19 628 m 0 + 19 657 26 693 37 709 c 1 + 45 711 52 713 60 713 c 0 + 97 713 137 690 137 662 c 0 + 137 648 129 637 118 625 c 0 + 105 609 89 596 89 578 c 0 + 89 567 100 514 171 472 c 1 + 166 459 158 451 148 451 c 0 + 137 451 19 518 19 628 c 0 +EndSplineSet +EndChar + +StartChar: f_f +Encoding: 65560 -1 406 +Width: 583 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> 369 45<50 104 226 378 499 600> 624 43<304 398> 634 45<549 625> +LayerCount: 2 +Fore +SplineSet +608 679 m 0x28 + 641 679 670 669 681 661 c 1 + 686 653 689 642 689 629 c 0 + 689 605 674 581 652 581 c 0 + 635 581 622 589 611 604 c 0 + 602 617 593 634 575 634 c 0 + 545 634 529 569 499 414 c 1 + 597 414 l 2 + 601 414 602 407 602 402 c 0 + 602 392 596 377 591 369 c 1 + 490 369 l 1 + 490 369 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xa8 + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x60 + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 378 369 l 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xa0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x60 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0xb0 + 428 667 476 641 493 615 c 1 + 534 656 578 679 608 679 c 0x28 +386 414 m 1 + 396 465 415 511 439 549 c 1 + 416 597 383 623 346 624 c 0x30 + 295 625 253 552 226 414 c 1 + 386 414 l 1 +EndSplineSet +LCarets2: 1 226 +EndChar + +StartChar: f_i +Encoding: 65561 -1 407 +Width: 564 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -8 84<366 465> 354 45<47 102 223 362> 624 43<302 389> +VStem: 320 120<33 185> +LayerCount: 2 +Fore +SplineSet +467 408 m 3 + 471 408 490 391 490 382 c 3 + 490 345 459 205 444 129 c 0 + 443 125 440 102 440 97 c 0 + 440 88 444 76 454 76 c 0 + 475 76 520 130 523 136 c 1 + 530 136 537 115 537 109 c 1 + 520 78 435 -8 382 -8 c 0 + 350 -8 320 12 320 62 c 0 + 320 76 327 112 329 120 c 1 + 359 272 l 1 + 363 298 381 360 322 358 c 2 + 214 354 l 1 + 214 354 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 102 354 l 1 + 38 354 l 2 + 37 354 36 354 36 356 c 0 + 36 366 61 398 83 398 c 2 + 109 398 l 1 + 135 558 243 666 372 667 c 0 + 434 667 482 638 493 630 c 1 + 498 622 502 611 502 598 c 0 + 502 574 495 546 474 540 c 0 + 449 532 420 548 409 563 c 0 + 386 597 395 624 346 624 c 0 + 291 624 247 540 223 398 c 1 + 324 400 376 408 467 408 c 3 +EndSplineSet +LCarets2: 1 224 +EndChar + +StartChar: f_f_i +Encoding: 65562 -1 408 +Width: 837 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<639 738> 354 45<47 102 223 375 496 636> 624 43<303 399 575 662> +VStem: 594 120<33 185> +LayerCount: 2 +Fore +SplineSet +740 408 m 0xbc + 744 408 764 391 764 382 c 0 + 764 345 733 205 718 129 c 0 + 717 125 714 102 714 97 c 0 + 714 88 718 76 728 76 c 0 + 749 76 794 130 797 136 c 1 + 804 136 811 115 811 109 c 1 + 794 78 708 -8 655 -8 c 0 + 623 -8 594 12 594 62 c 0 + 594 76 601 112 603 120 c 2 + 633 272 l 1 + 637 298 655 360 596 358 c 2 + 487 354 l 1 + 487 354 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xbc + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x7c + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 375 354 l 1 + 214 354 l 1 + 214 354 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xbc + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x7c + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 102 354 l 1 + 38 354 l 2 + 37 354 36 354 36 356 c 0 + 36 366 61 398 83 398 c 2 + 109 398 l 1 + 140 577 259 667 372 667 c 0 + 431 667 480 638 495 611 c 1 + 538 646 590 667 646 667 c 0 + 708 667 756 638 767 630 c 1 + 772 622 775 611 775 598 c 0 + 775 574 768 546 747 540 c 0 + 722 532 694 548 683 563 c 0 + 660 597 668 624 619 624 c 0 + 564 624 520 540 496 398 c 1 + 597 400 649 408 740 408 c 0xbc +383 398 m 1 + 393 456 412 508 439 549 c 1 + 416 597 383 623 346 624 c 0 + 295 625 250 546 223 398 c 1 + 383 398 l 1 +EndSplineSet +LCarets2: 2 220 497 +EndChar + +StartChar: f_l +Encoding: 65563 -1 409 +Width: 586 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -8 84<386 485> 369 45<50 104 226 326> 624 43<304 402> +VStem: 341 120<33 187> +LayerCount: 2 +Fore +SplineSet +435 560 m 1 + 417 601 381 624 346 624 c 0 + 295 625 253 552 226 414 c 1 + 323 414 l 2 + 327 414 328 407 328 402 c 0 + 328 392 322 377 317 369 c 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 397 667 421 662 442 653 c 1 + 502 662 564 679 581 685 c 1 + 586 682 587 672 587 666 c 0 + 587 658 560 611 555 588 c 2 + 465 129 l 2 + 464 123 461 102 461 97 c 0 + 461 88 465 76 475 76 c 0 + 496 76 541 130 544 136 c 1 + 551 136 558 115 558 109 c 1 + 541 78 455 -8 402 -8 c 0 + 370 -8 341 12 341 62 c 0 + 341 76 348 112 350 120 c 2 + 433 547 l 2 + 434 551 434 556 435 560 c 1 +EndSplineSet +LCarets2: 1 243 +EndChar + +StartChar: f_f_l +Encoding: 65564 -1 410 +Width: 860 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<660 759> 369 45<50 104 226 378 499 600> 624 43<304 399 575 676> +VStem: 614 120<33 187> +LayerCount: 2 +Fore +SplineSet +496 610 m 1xbc + 541 647 593 667 646 667 c 0 + 671 667 695 662 716 653 c 1 + 776 662 837 679 854 685 c 1 + 859 682 860 672 860 666 c 0 + 860 658 833 611 828 588 c 2 + 738 129 l 2 + 737 123 734 102 734 97 c 0 + 734 88 738 76 748 76 c 0 + 769 76 814 130 817 136 c 1 + 824 136 831 115 831 109 c 1 + 814 78 729 -8 676 -8 c 0 + 644 -8 614 12 614 62 c 0 + 614 76 621 112 623 120 c 2 + 706 547 l 2 + 707 551 707 556 708 560 c 1 + 690 601 654 624 619 624 c 0 + 568 625 526 552 499 414 c 1 + 597 414 l 2 + 601 414 602 407 602 402 c 0 + 602 392 596 377 591 369 c 1 + 490 369 l 1 + 490 369 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xbc + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x7c + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 378 369 l 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xbc + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x7c + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 431 667 482 637 496 610 c 1xbc +440 548 m 1 + 417 596 384 623 346 624 c 0 + 295 625 253 552 226 414 c 1 + 386 414 l 1 + 396 466 415 511 440 548 c 1 +EndSplineSet +LCarets2: 2 507 225 +EndChar + +StartChar: f_b +Encoding: 65565 -1 411 +Width: 770 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -6 44<433 533> 353 86<568 682> 369 45<50 104 226 326> 624 43<304 403> +VStem: 617 126<215 351> +LayerCount: 2 +Fore +SplineSet +502 328 m 1xdc + 529 370 607 438 654 438 c 0xec + 709 438 743 400 743 329 c 0 + 743 145 575 -6 464 -6 c 0 + 402 -6 351 37 351 104 c 0 + 351 117 353 144 356 158 c 2 + 433 547 l 2 + 434 551 435 555 436 559 c 1 + 419 601 381 624 346 624 c 0 + 295 625 253 552 226 414 c 1 + 323 414 l 2 + 327 414 328 407 328 402 c 0 + 328 392 322 377 317 369 c 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 397 667 421 662 442 653 c 1 + 495 662 557 675 581 685 c 1 + 586 682 587 672 587 666 c 0 + 587 658 560 611 555 588 c 2 + 502 328 l 1xdc +590 353 m 0 + 546 353 488 249 471 163 c 0 + 460 108 460 38 495 38 c 0 + 557 38 617 201 617 295 c 0 + 617 319 613 353 590 353 c 0 +EndSplineSet +LCarets2: 1 233 +EndChar + +StartChar: f_f_b +Encoding: 65566 -1 412 +Width: 1043 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -6 44<707 806> 353 86<841 955> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> +VStem: 891 126<215 351> +LayerCount: 2 +Fore +SplineSet +775 328 m 1xae + 802 370 881 438 928 438 c 0x36 + 983 438 1017 400 1017 329 c 0 + 1017 145 848 -6 737 -6 c 0 + 675 -6 624 37 624 104 c 0 + 624 117 627 144 630 158 c 2 + 706 547 l 2 + 707 551 708 555 709 559 c 1 + 692 601 654 624 619 624 c 0 + 568 625 526 552 499 414 c 1 + 597 414 l 2 + 601 414 602 407 602 402 c 0 + 602 392 596 377 591 369 c 1 + 490 369 l 1 + 490 369 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xae + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x66 + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 378 369 l 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xae + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x66 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 431 667 482 637 496 610 c 1 + 541 647 593 667 646 667 c 0 + 671 667 695 662 716 653 c 1 + 769 662 830 675 854 685 c 1 + 859 682 860 672 860 666 c 0 + 860 658 833 611 828 588 c 2 + 775 328 l 1xae +863 353 m 0 + 819 353 761 249 744 163 c 0 + 733 108 734 38 769 38 c 0 + 831 38 891 201 891 295 c 0 + 891 319 886 353 863 353 c 0 +440 548 m 1 + 417 596 384 623 346 624 c 0 + 295 625 253 552 226 414 c 1 + 386 414 l 1x2e + 396 466 415 511 440 548 c 1 +EndSplineSet +LCarets2: 2 501 224 +EndChar + +StartChar: f_k +Encoding: 65567 -1 413 +Width: 804 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -4 84<589 706> 365 73<602 685> 369 45<50 104 226 326> 624 43<304 403> +VStem: 635 126<316 391> +LayerCount: 2 +Fore +SplineSet +607 365 m 0xec + 549 365 488 265 488 242 c 1 + 549 242 635 281 635 334 c 0 + 635 344 629 365 607 365 c 0xec +681 438 m 0 + 738 438 761 413 761 368 c 0 + 761 304 666 249 593 225 c 1 + 610 178 652 80 694 80 c 0 + 717 80 753 124 761 135 c 1 + 771 135 774 114 774 109 c 1 + 764 83 686 -4 627 -4 c 0 + 552 -4 501 134 480 203 c 1 + 465 130 440 0 440 0 c 1 + 430 -3 397 -6 386 -6 c 0 + 375 -6 340 -3 328 0 c 1 + 334 30 432 541 433 547 c 2 + 434 551 435 555 436 559 c 1 + 419 601 381 624 346 624 c 0 + 295 625 253 552 226 414 c 1 + 323 414 l 2 + 327 414 328 407 328 402 c 0 + 328 392 322 377 317 369 c 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1xdc + 143 574 259 667 372 667 c 0 + 397 667 421 662 442 653 c 1 + 492 661 551 674 581 685 c 1 + 586 682 587 672 587 666 c 0 + 587 658 558 602 555 588 c 2 + 507 333 l 1 + 519 358 599 438 681 438 c 0 +EndSplineSet +LCarets2: 1 247 +EndChar + +StartChar: f_f_k +Encoding: 65568 -1 414 +Width: 1078 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -4 84<863 979> 365 73<876 959> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> +VStem: 908 126<316 391> +LayerCount: 2 +Fore +SplineSet +881 365 m 0x36 + 823 365 762 265 762 242 c 1 + 823 242 908 281 908 334 c 0 + 908 344 903 365 881 365 c 0x36 +954 438 m 0 + 1011 438 1034 413 1034 368 c 0 + 1034 304 939 249 866 225 c 1 + 883 178 926 80 968 80 c 0 + 991 80 1026 124 1034 135 c 1 + 1044 135 1048 114 1048 109 c 1 + 1038 83 959 -4 900 -4 c 0 + 825 -4 775 134 754 203 c 1 + 739 130 714 0 714 0 c 1 + 704 -3 670 -6 659 -6 c 0 + 648 -6 614 -3 602 0 c 1 + 608 30 705 541 706 547 c 0 + 707 551 708 555 709 559 c 1 + 692 601 654 624 619 624 c 0 + 568 625 526 552 499 414 c 1 + 597 414 l 2 + 601 414 602 407 602 402 c 0 + 602 392 596 377 591 369 c 1 + 490 369 l 1 + 490 369 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xae + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x66 + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 378 369 l 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xae + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x66 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1xae + 143 574 259 667 372 667 c 0 + 431 667 482 637 496 610 c 1 + 541 647 593 667 646 667 c 0 + 671 667 695 662 716 653 c 1 + 766 661 824 674 854 685 c 1 + 859 682 860 672 860 666 c 0 + 860 658 831 602 828 588 c 2 + 780 333 l 1 + 792 358 872 438 954 438 c 0 +440 548 m 1 + 417 596 384 623 346 624 c 0 + 295 625 253 552 226 414 c 1 + 386 414 l 1 + 396 466 415 511 440 548 c 1 +EndSplineSet +LCarets2: 2 227 519 +EndChar + +StartChar: f_h +Encoding: 65569 -1 415 +Width: 805 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -8 84<610 709> 331 107<578 684> 369 45<50 104 226 326> 624 43<304 403> +VStem: 564 120<33 187> 607 119<215 389> +LayerCount: 2 +Fore +SplineSet +555 588 m 2xda + 555 588 501 316 499 307 c 0 + 496 295 493 278 491 268 c 1 + 520 334 607 438 656 438 c 0 + 711 438 727 410 727 354 c 0xea + 727 321 712 253 707 228 c 2 + 688 129 l 2 + 687 125 685 102 685 97 c 0 + 685 88 688 76 698 76 c 0 + 719 76 765 130 768 136 c 1 + 775 136 781 115 781 109 c 1 + 764 78 679 -8 626 -8 c 0 + 594 -8 564 12 564 62 c 0xec + 564 76 571 112 573 120 c 2 + 596 236 l 2 + 599 248 607 301 607 311 c 0 + 607 321 603 331 592 331 c 0xea + 564 331 487 213 460 89 c 2 + 440 0 l 1 + 430 -3 397 -6 386 -6 c 0 + 375 -6 340 -3 328 0 c 1 + 334 30 432 541 433 547 c 0 + 434 551 435 555 436 559 c 1 + 419 601 381 624 346 624 c 0 + 295 625 253 552 226 414 c 1 + 323 414 l 2 + 327 414 328 407 328 402 c 0 + 328 392 322 377 317 369 c 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 397 667 421 662 442 653 c 1 + 495 662 556 675 581 685 c 1 + 586 682 587 672 587 666 c 0 + 587 658 558 602 555 588 c 2xda +EndSplineSet +LCarets2: 1 227 +EndChar + +StartChar: f_f_h +Encoding: 65570 -1 416 +Width: 1079 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4 200 277> -195 80<-132 -61 142 212> -8 84<883 982> 331 107<851 957> 369 45<50 104 226 378 499 600> 624 43<304 399 575 677> +VStem: 838 120<33 187> 881 119<215 389> +LayerCount: 2 +Fore +SplineSet +828 588 m 2xad + 828 588 774 316 772 307 c 0 + 769 295 767 278 765 268 c 1 + 794 334 881 438 930 438 c 0 + 985 438 1000 410 1000 354 c 0x35 + 1000 321 985 253 980 228 c 2 + 962 129 l 2 + 961 125 958 102 958 97 c 0 + 958 88 962 76 972 76 c 0 + 993 76 1038 130 1041 136 c 1 + 1048 136 1055 115 1055 109 c 1 + 1038 78 952 -8 899 -8 c 0 + 867 -8 838 12 838 62 c 0x36 + 838 76 845 112 847 120 c 2 + 869 236 l 2 + 872 248 881 301 881 311 c 0 + 881 321 876 331 865 331 c 0x35 + 837 331 760 213 733 89 c 2 + 714 0 l 1 + 704 -3 670 -6 659 -6 c 0 + 648 -6 614 -3 602 0 c 1 + 608 30 705 541 706 547 c 0 + 707 551 708 555 709 559 c 1 + 692 601 654 624 619 624 c 0 + 568 625 526 552 499 414 c 1 + 597 414 l 2 + 601 414 602 407 602 402 c 0 + 602 392 596 377 591 369 c 1 + 490 369 l 1 + 490 369 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xad + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x65 + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 378 369 l 1 + 217 369 l 1 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xad + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x65 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 104 369 l 1 + 41 369 l 2 + 40 369 39 370 39 372 c 0 + 39 382 64 414 86 414 c 2 + 112 414 l 1 + 143 574 259 667 372 667 c 0 + 431 667 482 637 496 610 c 1 + 541 647 593 667 646 667 c 0 + 671 667 695 662 716 653 c 1 + 769 662 829 675 854 685 c 1 + 859 682 860 672 860 666 c 0 + 860 658 831 602 828 588 c 2xad +440 548 m 1 + 417 596 384 623 346 624 c 0 + 295 625 253 552 226 414 c 1 + 386 414 l 1x2c + 396 466 415 511 440 548 c 1 +EndSplineSet +LCarets2: 2 229 508 +EndChar + +StartChar: f_j +Encoding: 65571 -1 417 +Width: 531 +VWidth: 0 +Flags: HW +HStem: -213 45<-73 4> -213 21<169 175> 354 45<47 102 223 362> 624 43<302 389> +LayerCount: 2 +Fore +SplineSet +326 98 m 0x70 + 359 272 l 2 + 363 298 381 360 322 358 c 2 + 214 354 l 1 + 214 354 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0xb0 + 15 -168 20 -102 50 53 c 1 + 102 354 l 1 + 38 354 l 2 + 37 354 36 354 36 356 c 0 + 36 366 61 398 83 398 c 2 + 109 398 l 1 + 135 558 243 666 372 667 c 0 + 434 667 482 638 493 630 c 1 + 498 622 502 611 502 598 c 0 + 502 574 495 546 474 540 c 0 + 449 532 420 548 409 563 c 0 + 386 597 395 624 346 624 c 0 + 291 624 247 540 223 398 c 1 + 324 400 376 408 467 408 c 3 + 471 408 493 391 492 382 c 0 + 477 290 471 258 443 117 c 0 + 427 35 398 -19 358 -73 c 0 + 316 -129 202 -205 175 -213 c 1 + 170 -213 166 -200 166 -191 c 1 + 269 -112 298 -48 326 98 c 0x70 +EndSplineSet +LCarets2: 1 226 +EndChar + +StartChar: f_f_j +Encoding: 65572 -1 418 +Width: 804 +VWidth: 0 +Flags: HW +HStem: -213 45<-72 4 201 277> -195 80<-132 -61 142 212> 354 45<47 102 223 375 496 636> 624 43<303 399 575 662> +LayerCount: 2 +Fore +SplineSet +600 98 m 2xb0 + 633 272 l 1 + 637 298 655 360 596 358 c 2 + 487 354 l 1 + 487 354 460 180 437 57 c 0 + 406 -103 295 -213 217 -213 c 0xb0 + 184 -213 156 -203 145 -195 c 1 + 140 -187 136 -176 136 -163 c 0 + 136 -139 151 -115 173 -115 c 0x70 + 190 -115 203 -124 214 -139 c 0 + 223 -152 232 -168 250 -168 c 0 + 288 -168 293 -102 323 53 c 1 + 375 354 l 1 + 214 354 l 1 + 214 354 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0xb0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0x70 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 102 354 l 1 + 38 354 l 2 + 37 354 36 354 36 356 c 0 + 36 366 61 398 83 398 c 2 + 109 398 l 1 + 140 577 259 667 372 667 c 0 + 431 667 480 638 495 611 c 1 + 538 646 590 667 646 667 c 0 + 708 667 756 638 767 630 c 1 + 772 622 775 611 775 598 c 0 + 775 574 768 546 747 540 c 0 + 722 532 694 548 683 563 c 0 + 660 597 668 624 619 624 c 0 + 564 624 520 540 496 398 c 1 + 597 400 649 408 740 408 c 0 + 744 408 767 391 766 382 c 0 + 751 290 745 258 717 117 c 0 + 701 35 672 -19 632 -73 c 0 + 590 -129 475 -205 448 -213 c 1 + 443 -213 439 -200 439 -191 c 1 + 542 -112 572 -48 600 98 c 2xb0 +383 398 m 1 + 393 456 412 508 439 549 c 1 + 416 597 383 623 346 624 c 0 + 295 625 250 546 223 398 c 1 + 383 398 l 1 +EndSplineSet +LCarets2: 2 227 488 +EndChar + +StartChar: zero.ltr.prop +Encoding: 65573 -1 419 +Width: 515 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 -1 N 1 0 0 1 10 0 2 +EndChar + +StartChar: one.ltr.prop +Encoding: 65574 -1 420 +Width: 342 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 -1 N 1 0 0 1 -100 0 2 +EndChar + +StartChar: two.ltr.prop +Encoding: 65575 -1 421 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 -1 N 1 0 0 1 -47 0 2 +EndChar + +StartChar: three.ltr.prop +Encoding: 65576 -1 422 +Width: 464 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 -1 N 1 0 0 1 -50 0 2 +EndChar + +StartChar: four.ltr.prop +Encoding: 65577 -1 423 +Width: 488 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 -1 N 1 0 0 1 -34 0 2 +EndChar + +StartChar: five.ltr.prop +Encoding: 65578 -1 424 +Width: 447 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 -1 N 1 0 0 1 -50 0 2 +EndChar + +StartChar: six.ltr.prop +Encoding: 65579 -1 425 +Width: 481 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 -1 N 1 0 0 1 -6 0 2 +EndChar + +StartChar: seven.ltr.prop +Encoding: 65580 -1 426 +Width: 424 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 -1 N 1 0 0 1 9 0 2 +EndChar + +StartChar: eight.ltr.prop +Encoding: 65581 -1 427 +Width: 495 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 -1 N 1 0 0 1 -15 0 2 +EndChar + +StartChar: nine.ltr.prop +Encoding: 65582 -1 428 +Width: 479 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 25 -1 N 1 0 0 1 -10 0 2 +EndChar + +StartChar: uni202F +Encoding: 8239 8239 429 +Width: 166 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: fraction +Encoding: 8260 8260 430 +AltUni2: 002215.ffffffff.0 +Width: 503 +Flags: W +HStem: -2 21G<42 57> +LayerCount: 2 +Fore +SplineSet +481 704 m 1 + 72 14 l 2 + 68 7 62 -2 53 -2 c 0 + 32 -2 22 10 22 10 c 1 + 432 700 l 2 + 435 706 441 714 447 714 c 0 + 463 714 477 707 481 704 c 1 +EndSplineSet +EndChar + +StartChar: i.TRK +Encoding: 65583 -1 431 +Width: 302 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 73 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: caron +Encoding: 711 711 432 +Width: 302 +Flags: HW +LayerCount: 2 +Fore +Refer: 228 780 N 1 0 0 1 400 -5 2 +EndChar + +StartChar: dotaccent +Encoding: 729 729 433 +Width: 162 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 325 0 2 +EndChar + +StartChar: ogonek +Encoding: 731 731 434 +Width: 238 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 436 808 N 1 0 0 1 266 0 2 +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 435 +Width: 355 +VWidth: 55 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 348 0 2 +Refer: 191 769 N 1 0 0 1 496 0 2 +EndChar + +StartChar: uni0328 +Encoding: 808 808 436 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -213 62<-214 -126> 21 14<-62 -51> +VStem: -245 198 +LayerCount: 2 +Fore +SplineSet +-95 35 m 3 + -79 35 -31 27 -47 21 c 0 + -97 2 -173 -47 -185 -109 c 0 + -188 -124 -187 -151 -156 -151 c 3 + -110 -151 -83 -118 -77 -118 c 3 + -76 -118 -73 -127 -75 -135 c 0 + -76 -140 -76 -148 -80 -152 c 0 + -105 -180 -148 -213 -189 -213 c 0 + -240 -213 -249 -163 -245 -137 c 0 + -232 -58 -121 35 -95 35 c 3 +EndSplineSet +EndChar + +StartChar: napostrophe +Encoding: 329 329 437 +Width: 487 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 230 789 N 1 0 0 1 -115 0 2 +Refer: 78 110 N 1 0 0 1 2 0 2 +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 438 +Width: 575 +Flags: HW +LayerCount: 2 +Fore +Refer: 241 -1 N 1 0 0 1 71 15 2 +Refer: 34 66 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 439 +Width: 454 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 460 250 2 +Refer: 66 98 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 440 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 241 -1 N 1 0 0 1 99 15 2 +Refer: 36 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 441 +Width: 475 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 649 250 2 +Refer: 68 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 442 +Width: 512 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 70 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 81 15 2 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 443 +Width: 310 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 581 250 2 +Refer: 70 102 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 444 +Width: 838 +Flags: HW +LayerCount: 2 +Fore +Refer: 45 77 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 242 15 2 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 445 +Width: 737 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 625 6 2 +Refer: 77 109 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 446 +Width: 543 +Flags: HW +LayerCount: 2 +Fore +Refer: 48 80 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 60 15 2 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 447 +Width: 484 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 531 8 2 +Refer: 80 112 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 448 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 83 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 50 16 2 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 449 +Width: 357 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 461 9 2 +Refer: 83 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 450 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 84 N 1 0 0 1 0 0 2 +Refer: 241 -1 N 1 0 0 1 105 29 2 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 451 +Width: 320 +Flags: HW +LayerCount: 2 +Fore +Refer: 225 775 N 1 0 0 1 458 106 2 +Refer: 84 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 452 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 233 -1 N 1 0 0 1 209 31 2 +Refer: 55 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 453 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 190 768 N 1 0 0 1 571 -26 2 +Refer: 87 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 454 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 234 -1 N 1 0 0 1 335 31 2 +Refer: 55 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wacute +Encoding: 7811 7811 455 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 191 769 N 1 0 0 1 658 6 2 +Refer: 87 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 456 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 55 87 N 1 0 0 1 0 0 2 +Refer: 244 -1 N 1 0 0 1 224 14 2 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 457 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 87 119 N 1 0 0 1 0 0 2 +Refer: 226 776 N 1 0 0 1 639 10 2 +EndChar + +StartChar: longs +Encoding: 383 383 458 +Width: 310 +Flags: HMW +HStem: -213 45<-73 4> 634 45<276 352> +LayerCount: 2 +Back +SplineSet +216.796875 369.140625 m 1 + 196.614257812 242.838867188 178.7109375 138.671875 163.0859375 56.640625 c 0 + 155.598632812 18.2294921875 143.473632812 -18.1474609375 126.708984375 -52.490234375 c 128 + 109.944335938 -86.8330078125 91.30859375 -115.478515625 70.80078125 -138.427734375 c 128 + 50.29296875 -161.376953125 28.80859375 -179.524414062 6.34765625 -192.87109375 c 128 + -16.11328125 -206.217773438 -37.109375 -212.890625 -56.640625 -212.890625 c 0 + -71.9404296875 -212.890625 -86.2626953125 -211.100585938 -99.609375 -207.51953125 c 128 + -112.956054688 -203.938476562 -122.721679688 -199.870117188 -128.90625 -195.3125 c 1 + -134.765625 -185.872070312 -137.6953125 -175.129882812 -137.6953125 -163.0859375 c 0 + -137.6953125 -150.390625 -134.196289062 -139.241210938 -127.197265625 -129.638671875 c 128 + -120.198242188 -120.036132812 -111.328125 -115.234375 -100.5859375 -115.234375 c 0 + -84.6357421875 -115.234375 -70.9638671875 -123.046875 -59.5703125 -138.671875 c 0 + -59.2451171875 -138.997070312 -58.2685546875 -140.380859375 -56.640625 -142.822265625 c 128 + -55.0126953125 -145.263671875 -53.955078125 -146.809570312 -53.466796875 -147.4609375 c 128 + -52.978515625 -148.112304688 -51.9208984375 -149.577148438 -50.29296875 -151.85546875 c 128 + -48.6650390625 -154.133789062 -47.4443359375 -155.598632812 -46.630859375 -156.25 c 128 + -45.8173828125 -156.901367188 -44.5966796875 -158.040039062 -42.96875 -159.66796875 c 128 + -41.3408203125 -161.295898438 -39.8759765625 -162.434570312 -38.57421875 -163.0859375 c 128 + -37.2724609375 -163.737304688 -35.8076171875 -164.55078125 -34.1796875 -165.52734375 c 128 + -32.5517578125 -166.50390625 -30.8427734375 -167.155273438 -29.052734375 -167.48046875 c 128 + -27.2626953125 -167.805664062 -25.390625 -167.96875 -23.4375 -167.96875 c 0 + -8.7890625 -167.96875 2.1162109375 -157.633789062 9.27734375 -136.962890625 c 128 + 16.4384765625 -116.291992188 25.66015625 -75.7119140625 36.94140625 -15.22265625 c 0 + 42.26171875 13.48046875 46.5498046875 36.1328125 49.8046875 52.734375 c 1 + 104.4921875 369.140625 l 1 + 41.015625 369.140625 l 2 + 39.7138671875 369.140625 39.0625 370.1171875 39.0625 372.0703125 c 0 + 39.0625 377.9296875 44.3525390625 386.393554688 54.931640625 397.4609375 c 128 + 65.5107421875 408.528320312 75.8466796875 414.0625 85.9375 414.0625 c 2 + 112.3046875 414.0625 l 1 + 119.791992188 452.1484375 132.649414062 488.28125 150.87890625 522.4609375 c 128 + 169.108398438 556.640625 189.127929688 584.797851562 210.9375 606.93359375 c 128 + 232.747070312 629.069335938 254.719726562 646.565429688 276.85546875 659.423828125 c 128 + 298.991210938 672.282226562 318.359375 678.7109375 334.9609375 678.7109375 c 0 + 350.260742188 678.7109375 364.583007812 676.920898438 377.9296875 673.33984375 c 128 + 391.276367188 669.758789062 401.041992188 665.690429688 407.2265625 661.1328125 c 1 + 413.0859375 651.692382812 416.015625 640.950195312 416.015625 628.90625 c 0 + 416.015625 616.2109375 412.516601562 605.061523438 405.517578125 595.458984375 c 128 + 398.518554688 585.856445312 389.6484375 581.0546875 378.90625 581.0546875 c 0 + 362.956054688 581.0546875 349.284179688 588.8671875 337.890625 604.4921875 c 0 + 337.565429688 604.817382812 336.588867188 606.201171875 334.9609375 608.642578125 c 128 + 333.333007812 611.083984375 332.275390625 612.629882812 331.787109375 613.28125 c 128 + 331.298828125 613.932617188 330.241210938 615.397460938 328.61328125 617.67578125 c 128 + 326.985351562 619.954101562 325.764648438 621.418945312 324.951171875 622.0703125 c 128 + 324.137695312 622.721679688 322.916992188 623.860351562 321.2890625 625.48828125 c 128 + 319.661132812 627.116210938 318.196289062 628.254882812 316.89453125 628.90625 c 128 + 315.592773438 629.557617188 314.127929688 630.37109375 312.5 631.34765625 c 128 + 310.872070312 632.32421875 309.163085938 632.975585938 307.373046875 633.30078125 c 128 + 305.583007812 633.625976562 303.7109375 633.7890625 301.7578125 633.7890625 c 0 + 285.481445312 633.7890625 271.484375 614.583007812 259.765625 576.171875 c 128 + 248.046875 537.760742188 233.723632812 468.75 216.796875 369.140625 c 1 +EndSplineSet +Fore +SplineSet +217 369 m 2 + 217 369 186 180 163 57 c 0 + 132 -103 21 -213 -57 -213 c 0 + -90 -213 -118 -203 -129 -195 c 1 + -134 -187 -138 -176 -138 -163 c 0 + -138 -139 -123 -115 -101 -115 c 0 + -84 -115 -71 -124 -60 -139 c 0 + -51 -152 -41 -168 -23 -168 c 0 + 15 -168 20 -102 50 53 c 1 + 71 173 112 414 112 414 c 2 + 140 575 270 679 335 679 c 0 + 368 679 396 669 407 661 c 1 + 412 653 416 642 416 629 c 0 + 416 605 401 581 379 581 c 0 + 362 581 349 589 338 604 c 0 + 329 617 320 634 302 634 c 0 + 268 634 249 557 217 369 c 2 +EndSplineSet +EndChar + +StartChar: uni2042 +Encoding: 8258 8258 459 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 10 42 N 1 0 0 1 189 0 2 +Refer: 10 42 N 1 0 0 1 -28 -393 2 +Refer: 10 42 N 1 0 0 1 407 -393 2 +EndChar + +StartChar: uni00AD +Encoding: 173 173 460 +Width: 0 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: zero +Encoding: 48 48 461 +Width: 532 +Flags: W +HStem: -3 36<218 310> 590 36<223 315> +VStem: 53 86<169 455> 393 86<168 460> +LayerCount: 2 +Fore +SplineSet +271 590 m 0 + 189 590 139 465 139 312 c 0 + 139 159 190 33 262 33 c 0 + 349 33 393 164 393 317 c 0 + 393 470 343 590 271 590 c 0 +266 626 m 0 + 403 626 479 482 479 312 c 0 + 479 142 401 -3 266 -3 c 0 + 133 -3 53 142 53 312 c 0 + 53 482 131 626 266 626 c 0 +EndSplineSet +EndChar + +StartChar: zero.rtl +Encoding: 65584 -1 462 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 461 48 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: one +Encoding: 49 49 463 +Width: 532 +Flags: W +HStem: -3 28<170 235 324 388> 607 20G<313 319> +VStem: 241 77<32 545> +LayerCount: 2 +Fore +SplineSet +241 113 m 2 + 241 508 l 2 + 241 536 235 545 221 545 c 0 + 206 545 168 531 152 525 c 1 + 147 529 143 535 143 542 c 0 + 143 544 142 547 145 548 c 0 + 225 584 311 627 314 627 c 2 + 316 627 l 2 + 322 627 325 616 326 611 c 1 + 326 611 318 577 318 517 c 2 + 318 113 l 2 + 318 84 318 57 323 41 c 0 + 326 30 374 25 386 25 c 1 + 390 20 391 2 386 -3 c 1 + 346 -1 315 2 277 2 c 0 + 239 2 213 -1 173 -3 c 1 + 168 2 169 20 173 25 c 1 + 185 25 232 30 235 41 c 0 + 240 57 241 84 241 113 c 2 +EndSplineSet +EndChar + +StartChar: one.rtl +Encoding: 65585 -1 464 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 463 49 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: two +Encoding: 50 50 465 +Width: 532 +Flags: W +HStem: 0 71<160 404> 563 63<182 302> +VStem: 80 19<486 492> 346 83<369 518> +LayerCount: 2 +Fore +SplineSet +467 146 m 1 + 447 98 420 18 414 0 c 9 + 414 0 83 0 76 0 c 1 + 72 2 66 10 66 14 c 1 + 148 105 242 216 299 299 c 0 + 339 358 346 397 346 445 c 0 + 346 512 300 563 238 563 c 0 + 160 563 111 499 99 479 c 1 + 91 479 80 491 80 495 c 1 + 87 519 157 627 260 627 c 0 + 354 627 429 547 429 464 c 0 + 429 408 407 358 373 316 c 0 + 304 231 204 120 160 71 c 9 + 354 71 l 2 + 393 71 415 95 436 146 c 0 + 438 151 441 152 447 152 c 0 + 451 152 463 149 467 146 c 1 +EndSplineSet +EndChar + +StartChar: two.rtl +Encoding: 65586 -1 466 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 465 50 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: three +Encoding: 51 51 467 +Width: 532 +Flags: W +HStem: -5 39<183 302> 311 29<176 224> 575 52<193 298> +VStem: 330 73<435 543> 365 84<122 262> +LayerCount: 2 +Fore +SplineSet +275 627 m 0xf0 + 325 627 403 582 403 502 c 0xf0 + 403 439 346 391 312 370 c 1 + 368 362 449 309 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 74 365 186 c 0xe8 + 365 265 304 323 240 323 c 0 + 219 323 194 314 182 311 c 1 + 178 316 176 322 176 330 c 0 + 176 334 176 337 178 340 c 1 + 256 358 330 400 330 484 c 0 + 330 536 290 575 234 575 c 0 + 172 575 134 518 125 511 c 1 + 119 511 113 523 113 532 c 1 + 143 577 199 627 275 627 c 0xf0 +EndSplineSet +EndChar + +StartChar: three.rtl +Encoding: 65587 -1 468 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 467 51 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: four +Encoding: 52 52 469 +Width: 532 +Flags: W +HStem: -6 21G<357 388> 170 56<115 334 411 480> 609 20G<393 401> +VStem: 334 77<-5 170 226 512> +LayerCount: 2 +Fore +SplineSet +396 629 m 0 + 406 629 411 619 411 611 c 2 + 411 226 l 25 + 469 226 l 18 + 475 226 482 207 482 186 c 0 + 482 177 481 173 479 170 c 1 + 411 170 l 25 + 411 -1 l 1 + 411 -1 407 -6 369 -6 c 0 + 346 -6 334 -5 334 2 c 2 + 334 170 l 25 + 59 170 l 1 + 52 174 49 182 49 188 c 1 + 367 604 l 2 + 373 612 388 629 396 629 c 0 +334 512 m 25 + 115 226 l 25 + 334 226 l 25 + 334 512 l 25 +EndSplineSet +EndChar + +StartChar: four.rtl +Encoding: 65588 -1 470 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 469 52 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: five +Encoding: 53 53 471 +Width: 532 +Flags: W +HStem: -5 39<183 302> 331 55<163 294> 543 77<193 391> 609 20G<320 413> +VStem: 365 84<124 260> +LayerCount: 2 +Fore +SplineSet +266 386 m 0xe8 + 381 386 449 296 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 73 365 186 c 0 + 365 247 322 331 209 331 c 3 + 188 331 143 324 127 316 c 1 + 123 316 119 323 119 330 c 1 + 140 439 165 560 176 620 c 1 + 320 620 l 2xe8 + 360 620 410 629 410 629 c 17xd8 + 416 625 422 623 422 618 c 0 + 422 612 411 570 393 549 c 1 + 366 546 330 543 279 543 c 2 + 279 543 210 543 197 543 c 1 + 185 484 174 422 162 367 c 1 + 189 378 240 386 266 386 c 0xe8 +EndSplineSet +EndChar + +StartChar: five.rtl +Encoding: 65589 -1 472 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 471 53 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: six +Encoding: 54 54 473 +Width: 532 +Flags: W +HStem: -6 32<225 318> 338 48<201 324> 604 28<401 434> +VStem: 71 84<117 306> 378 83<108 278> +LayerCount: 2 +Fore +SplineSet +159 299 m 1 + 156 278 155 255 155 232 c 0 + 155 144 193 26 271 26 c 0 + 333 26 378 92 378 180 c 0 + 378 263 343 338 255 338 c 0 + 227 338 191 334 159 299 c 1 +282 386 m 0 + 419 386 461 268 461 198 c 0 + 461 89 374 -6 263 -6 c 0 + 145 -6 71 110 71 215 c 0 + 71 315 103 407 165 474 c 0 + 234 550 345 611 427 632 c 1 + 436 632 438 610 438 604 c 1 + 356 578 211 515 167 342 c 1 + 201 370 249 386 282 386 c 0 +EndSplineSet +EndChar + +StartChar: six.rtl +Encoding: 65590 -1 474 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 473 54 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: seven +Encoding: 55 55 475 +Width: 532 +Flags: W +HStem: -5 21G<168 178> 547 71<115 410> +LayerCount: 2 +Fore +SplineSet +398 618 m 2 + 423 618 459 621 465 621 c 0 + 471 621 471 617 471 612 c 0 + 471 599 456 574 443 547 c 2 + 186 -2 l 1 + 184 -4 181 -5 176 -5 c 0 + 161 -5 133 4 133 13 c 1 + 234 165 410 547 410 547 c 9 + 162 547 l 2 + 123 547 107 524 92 472 c 0 + 91 467 86 466 80 466 c 0 + 76 466 65 469 61 472 c 1 + 78 525 95 587 102 618 c 9 + 398 618 l 2 +EndSplineSet +EndChar + +StartChar: seven.rtl +Encoding: 65591 -1 476 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 475 55 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: eight +Encoding: 56 56 477 +Width: 532 +Flags: W +HStem: -9 35<211 326> 594 34<221 314> +VStem: 82 77<75 220> 109 72<420 543> 361 70<414 549> 371 79<84 198> +LayerCount: 2 +Fore +SplineSet +266 26 m 0xe4 + 330 26 371 69 371 135 c 0 + 371 216 260 280 246 288 c 0 + 244 289 243 290 240 290 c 0 + 239 290 237 290 236 289 c 0 + 182 255 159 215 159 153 c 0 + 159 73 214 26 266 26 c 0xe4 +266 594 m 0 + 219 594 182 545 182 486 c 0 + 182 411 246 376 283 355 c 0 + 285 354 287 354 289 354 c 0 + 291 354 292 353 295 355 c 0 + 335 381 361 421 361 475 c 0xd8 + 361 532 325 594 266 594 c 0 +271 628 m 0 + 358 628 432 575 432 484 c 0xd8 + 432 408 367 364 322 336 c 1 + 318 335 319 332 322 330 c 0 + 381 297 450 233 450 163 c 0 + 450 65 362 -9 264 -9 c 0 + 157 -9 82 55 82 150 c 0xe4 + 82 236 171 287 209 311 c 0 + 212 313 211 315 209 316 c 0 + 168 340 109 397 109 469 c 0 + 109 552 185 628 271 628 c 0 +EndSplineSet +EndChar + +StartChar: eight.rtl +Encoding: 65592 -1 478 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 477 56 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: nine +Encoding: 57 57 479 +Width: 532 +Flags: W +HStem: -6 28<98 132> 240 48<208 331> 600 32<215 307> +VStem: 72 83<348 520> 377 84<320 509> +LayerCount: 2 +Fore +SplineSet +373 327 m 1 + 376 348 377 371 377 394 c 0 + 377 482 340 600 262 600 c 0 + 200 600 155 534 155 446 c 0 + 155 363 189 288 277 288 c 0 + 305 288 341 292 373 327 c 1 +94 22 m 1 + 176 48 321 111 365 284 c 1 + 331 256 283 240 250 240 c 0 + 113 240 72 358 72 428 c 0 + 72 537 159 632 270 632 c 0 + 388 632 461 516 461 411 c 0 + 461 311 429 219 367 152 c 0 + 298 76 187 15 105 -6 c 1 + 96 -6 94 16 94 22 c 1 +EndSplineSet +EndChar + +StartChar: nine.rtl +Encoding: 65593 -1 480 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 479 57 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: zero.prop +Encoding: 65594 -1 481 +Width: 533 +Flags: HW +LayerCount: 2 +Fore +Refer: 461 48 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zero.rtl.prop +Encoding: 65595 -1 482 +Width: 533 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 481 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: one.prop +Encoding: 65596 -1 483 +Width: 315 +Flags: HW +LayerCount: 2 +Fore +Refer: 463 49 N 1 0 0 1 -111 0 2 +EndChar + +StartChar: one.rtl.prop +Encoding: 65597 -1 484 +Width: 315 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 483 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: two.prop +Encoding: 65598 -1 485 +Width: 467 +Flags: HW +LayerCount: 2 +Fore +Refer: 465 50 N 1 0 0 1 -34 0 2 +EndChar + +StartChar: two.rtl.prop +Encoding: 65599 -1 486 +Width: 467 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 485 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: three.prop +Encoding: 65600 -1 487 +Width: 448 +Flags: HW +LayerCount: 2 +Fore +Refer: 467 51 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: three.rtl.prop +Encoding: 65601 -1 488 +Width: 448 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 487 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: four.prop +Encoding: 65602 -1 489 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 469 52 N 1 0 0 1 -39 0 2 +EndChar + +StartChar: four.rtl.prop +Encoding: 65603 -1 490 +Width: 481 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 489 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: five.prop +Encoding: 65604 -1 491 +Width: 442 +Flags: HW +LayerCount: 2 +Fore +Refer: 471 53 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: five.rtl.prop +Encoding: 65605 -1 492 +Width: 442 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 491 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: six.prop +Encoding: 65606 -1 493 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 473 54 N 1 0 0 1 -21 0 2 +EndChar + +StartChar: six.rtl.prop +Encoding: 65607 -1 494 +Width: 482 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 493 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: seven.prop +Encoding: 65608 -1 495 +Width: 441 +Flags: HW +LayerCount: 2 +Fore +Refer: 475 55 N 1 0 0 1 -37 0 2 +EndChar + +StartChar: seven.rtl.prop +Encoding: 65609 -1 496 +Width: 441 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 495 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: eight.prop +Encoding: 65610 -1 497 +Width: 484 +Flags: HW +LayerCount: 2 +Fore +Refer: 477 56 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: eight.rtl.prop +Encoding: 65611 -1 498 +Width: 484 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 497 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: nine.prop +Encoding: 65612 -1 499 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 479 57 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: nine.rtl.prop +Encoding: 65613 -1 500 +Width: 481 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 499 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: zero.small +Encoding: 65614 -1 501 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 0.6 0 0 0.6 19.1049 -40 2 +EndChar + +StartChar: one.small +Encoding: 65615 -1 502 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 0.6 0 0 0.6 14.9796 -40 2 +EndChar + +StartChar: two.small +Encoding: 65616 -1 503 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 466 -1 N 0.6 0 0 0.6 15.3691 -40 2 +EndChar + +StartChar: three.small +Encoding: 65617 -1 504 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 468 -1 N 0.6 0 0 0.6 15.4834 -40 2 +EndChar + +StartChar: four.small +Encoding: 65618 -1 505 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 470 -1 N 0.6 0 0 0.6 5.48926 -40 2 +EndChar + +StartChar: five.small +Encoding: 65619 -1 506 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 472 -1 N 0.6 0 0 0.6 2.5127 -40 2 +EndChar + +StartChar: six.small +Encoding: 65620 -1 507 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 474 -1 N 0.6 0 0 0.6 9.32284 -40 2 +EndChar + +StartChar: seven.small +Encoding: 65621 -1 508 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 476 -1 N 0.6 0 0 0.6 43.3359 -40 2 +EndChar + +StartChar: eight.small +Encoding: 65622 -1 509 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 478 -1 N 0.6 0 0 0.6 11.4954 -40 2 +EndChar + +StartChar: nine.small +Encoding: 65623 -1 510 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 480 -1 N 0.6 0 0 0.6 28.9767 -40 2 +EndChar + +StartChar: zero.medium +Encoding: 65624 -1 511 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 0.8 0 0 0.8 50.1404 50 2 +EndChar + +StartChar: one.medium +Encoding: 65625 -1 512 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 0.8 0 0 0.8 44.6393 50 2 +EndChar + +StartChar: two.medium +Encoding: 65626 -1 513 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 466 -1 N 0.8 0 0 0.8 45.8262 50 2 +EndChar + +StartChar: three.medium +Encoding: 65627 -1 514 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 468 -1 N 0.8 0 0 0.8 45.6445 50 2 +EndChar + +StartChar: four.medium +Encoding: 65628 -1 515 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 470 -1 N 0.8 0 0 0.8 32.3193 50 2 +EndChar + +StartChar: five.medium +Encoding: 65629 -1 516 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 472 -1 N 0.8 0 0 0.8 28.3496 50 2 +EndChar + +StartChar: six.medium +Encoding: 65630 -1 517 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 474 -1 N 0.8 0 0 0.8 37.0973 50 2 +EndChar + +StartChar: seven.medium +Encoding: 65631 -1 518 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 476 -1 N 0.8 0 0 0.8 82.7812 50 2 +EndChar + +StartChar: eight.medium +Encoding: 65632 -1 519 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 478 -1 N 0.8 0 0 0.8 39.6605 50 2 +EndChar + +StartChar: nine.medium +Encoding: 65633 -1 520 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 480 -1 N 0.8 0 0 0.8 63.3023 50 2 +EndChar + +StartChar: zero.numr +Encoding: 65634 -1 521 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 501 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: one.numr +Encoding: 65635 -1 522 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 502 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: two.numr +Encoding: 65636 -1 523 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 503 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: three.numr +Encoding: 65637 -1 524 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 504 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: four.numr +Encoding: 65638 -1 525 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 505 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: five.numr +Encoding: 65639 -1 526 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 506 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: six.numr +Encoding: 65640 -1 527 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 507 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: seven.numr +Encoding: 65641 -1 528 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 508 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: eight.numr +Encoding: 65642 -1 529 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 509 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: nine.numr +Encoding: 65643 -1 530 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 510 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: circumflex +Encoding: 710 710 531 +Width: 240 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 770 N 1 0 0 1 379 0 2 +EndChar + +StartChar: ring +Encoding: 730 730 532 +Width: 268 +Flags: HW +LayerCount: 2 +Fore +Refer: 227 778 N 1 0 0 1 384 4 2 +EndChar + +StartChar: tilde +Encoding: 732 732 533 +Width: 435 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 221 771 S 1 0 0 1 464 0 2 +EndChar + +StartChar: uni2074 +Encoding: 8308 8308 534 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 469 52 S 0.6 0 0 0.6 -12 510 2 +EndChar +EndChars +EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aacute -Encoding: 225 225 158 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 562 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" aacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aacute -Encoding: 193 193 126 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 191 17 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aacute.sc -Encoding: 65626 -1 481 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 444 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 542 37 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: abreve -Encoding: 259 259 276 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 519 6 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" abreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Abreve -Encoding: 258 258 301 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 625 232 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/abreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/abreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/abreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/abreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: abreve.sc -Encoding: 65659 -1 514 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 444 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 518 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: acircumflex -Encoding: 226 226 159 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 523 4 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" acircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Acircumflex -Encoding: 194 194 127 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 101 0 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: acircumflex.sc -Encoding: 65627 -1 482 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 516 29 2 -Refer: 444 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: acutecomb.cap -Encoding: 65551 -1 285 -Width: 219 -GlyphClass: 4 -Flags: W -HStem: 678 105 -VStem: 146 177 -LayerCount: 2 -Fore -SplineSet -152 678 m 0 - 151 678 146 685 146 688 c 0 - 146 695 226 762 250 778 c 0 - 253 780 269 783 276 783 c 0 - 304 783 323 773 323 762 c 0 - 323 738 167 678 152 678 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acutecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: acutecomb -Encoding: 769 769 230 -Width: 0 -VWidth: 944 -GlyphClass: 4 -Flags: W -HStem: 479 128 -VStem: -325 167 -LayerCount: 2 -Fore -SplineSet --317 479 m 0 - -320 479 -325 485 -325 488 c 0 - -325 496 -245 588 -232 597 c 0 - -222 604 -211 606 -196 606 c 0 - -183 606 -158 599 -158 577 c 0 - -158 558 -302 479 -317 479 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/acute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/acute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: acute -Encoding: 180 180 113 -Width: 196 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 230 769 N 1 0 0 1 335 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: adieresis -Encoding: 228 228 161 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 518 21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" adieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Adieresis -Encoding: 196 196 129 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 90 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/adieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/adieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/adieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/adieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: adieresis.sc -Encoding: 65629 -1 484 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 444 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 513 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aeacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aeacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aeacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aeacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aeacute.sc -Encoding: 65733 -1 588 -Width: 824 -Flags: HW -LayerCount: 2 -Fore -Refer: 486 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 877 13 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ae.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ae.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ae.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ae.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: ae -Encoding: 230 230 163 -Width: 545 -VWidth: 0 -Flags: W -HStem: -8 53<67 142 318 378> 194 30<299 351> 385 40<168 265 379 490> -VStem: 6 74<52 140> 65 72<297 347> 227 63<153 194> 451 72<308 380> -LayerCount: 2 -Fore -SplineSet -411 385 m 3xe6 - 349 385 308 295 299 225 c 1 - 337 225 451 274 451 346 c 3 - 451 370 431 385 411 385 c 3xe6 -212 105 m 2 - 227 196 l 1 - 184 188 153 177 131 166 c 0 - 89 144 80 120 80 99 c 0xf6 - 80 68 99 45 124 45 c 3 - 155 45 211 96 212 105 c 2 -245 425 m 3 - 285 425 311 391 315 357 c 1 - 347 394 405 425 457 425 c 0 - 523 425 523 375 523 361 c 3 - 523 275 366 204 294 194 c 1 - 293 188 290 167 290 154 c 0 - 290 92 311 52 358 52 c 3 - 399 52 454 115 458 119 c 1 - 461 119 469 108 470 100 c 1 - 435 50 370 -6 320 -6 c 3 - 280 -6 233 21 219 68 c 1 - 202 47 114 -8 88 -8 c 3 - 47 -8 6 17 6 78 c 0xf6 - 6 123 40 160 63 176 c 0 - 78 186 191 217 227 229 c 0 - 234 231 232 238 235 251 c 2 - 246 310 l 2 - 248 318 248 326 248 330 c 3 - 248 353 228 388 193 388 c 0 - 164 388 151 367 138 331 c 0 - 126 300 109 287 88 287 c 0 - 67 287 65 306 65 315 c 0xee - 65 328 71 340 76 348 c 1 - 104 372 182 425 245 425 c 3 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ae.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_A_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_A_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_A_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_A_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,66 +0,0 @@ -StartChar: AE -Encoding: 198 198 131 -Width: 766 -Flags: W -HStem: -3 26<-55 -4 85 130 266 312 438 605> 300 33<261 379 459 615> 615 33<491 691> 615 26<360 384 492 648> -VStem: 634 28<217 287> 729 18<518 648> -LayerCount: 2 -Fore -SplineSet -379 300 m 1xec - 237 300 l 1 - 119 128 l 2 - 85 79 75 60 75 49 c 0 - 75 33 121 23 131 23 c 0 - 132 23 131 2 128 -3 c 1 - 92 -1 76 2 36 2 c 0 - -6 2 -16 -1 -58 -3 c 1 - -59 -2 -59 23 -55 23 c 0 - -44 23 -6 31 8 44 c 0 - 36 69 61 100 85 136 c 2 - 386 572 l 2 - 388 576 391 581 391 587 c 0 - 391 598 382 610 361 610 c 1 - 357 613 358 635 361 641 c 1 - 457 642 l 2xdc - 542 642 647 648 746 648 c 1 - 747 599 754 560 758 516 c 1 - 755 513 747 511 740 511 c 0 - 733 511 729 513 729 518 c 0 - 718 596 683 615 635 615 c 2 - 557 615 l 2 - 546 615 497 614 493 604 c 0 - 486 588 482 560 479 534 c 2 - 459 339 l 2 - 458 334 477 333 497 333 c 2 - 545 333 l 2 - 632 333 630 339 653 403 c 0 - 655 408 661 410 668 410 c 0 - 675 410 680 408 682 405 c 1 - 662 221 l 1 - 660 219 653 217 646 217 c 0 - 639 217 635 220 634 225 c 0 - 626 281 622 287 615 293 c 0 - 605 300 554 301 520 301 c 0 - 495 301 455 301 454 292 c 2 - 436 106 l 2 - 435 91 430 44 435 39 c 0 - 446 29 460 29 498 29 c 2 - 541 29 l 2 - 591 29 628 39 657 60 c 0 - 682 78 705 106 726 158 c 0 - 728 162 732 164 739 164 c 0 - 748 164 760 161 762 158 c 1 - 739 105 704 39 693 -4 c 1 - 594 -4 505 0 385 0 c 0 - 337 0 264 -3 264 -3 c 1 - 262 2 265 28 270 30 c 1 - 281 30 330 36 341 49 c 0 - 357 68 359 87 362 121 c 2 - 379 300 l 1xec -382 333 m 1 - 401 537 l 1 - 261 333 l 1 - 382 333 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ae.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ae.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ae.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ae.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ae.sc -Encoding: 65631 -1 486 -Width: 824 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 408 0 2 -Refer: 444 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/a.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/a.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/a.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/a.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: a -Encoding: 97 97 64 -Width: 438 -Flags: W -HStem: -6 54<80 155 280 320> 386 39<217 315> -VStem: 19 72<64 217> -LayerCount: 2 -Fore -SplineSet -298 425 m 0 - 332 425 355 419 374 412 c 1 - 314 104 l 2 - 311 93 304 48 320 48 c 0 - 341 48 386 101 389 104 c 1 - 392 104 398 92 398 86 c 1 - 387 67 317 -6 271 -6 c 0 - 250 -6 237 16 237 45 c 0 - 237 53 240 76 244 97 c 0 - 247 115 248 120 249 127 c 1 - 229 92 162 -5 105 -5 c 0 - 52 -5 19 42 19 110 c 0 - 19 280 179 425 298 425 c 0 -253 386 m 0 - 178 386 91 259 91 147 c 0 - 91 86 107 52 141 52 c 0 - 190 52 258 174 277 268 c 2 - 298 371 l 1 - 289 381 266 386 253 386 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" a.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: A -Encoding: 65 65 32 -Width: 572 -Flags: W -HStem: -3 28<-51 2 77 131 329 382 489 537> 250 32<188 359> 628 20G<373 378> -LayerCount: 2 -Fore -SplineSet -333 25 m 1 - 368 25 389 36 389 56 c 0 - 389 66 389 85 386 104 c 2 - 364 250 l 1 - 170 250 l 1 - 137 190 109 139 100 122 c 0 - 82 88 72 64 72 49 c 0 - 72 28 125 25 132 25 c 1 - 134 22 131 3 128 -3 c 1 - 92 -1 82 2 42 2 c 0 - 0 2 -12 -1 -54 -3 c 1 - -56 0 -52 18 -48 25 c 1 - -37 25 -5 31 7 44 c 0 - 31 69 48 101 68 136 c 2 - 337 619 l 2 - 346 635 368 647 376 647 c 0 - 379 647 380 646 381 645 c 1 - 465 123 l 2 - 471 86 476 61 477 57 c 0 - 483 29 531 25 538 25 c 1 - 541 18 537 0 535 -3 c 1 - 499 -1 468 2 428 2 c 0 - 386 2 369 -1 327 -3 c 1 - 323 2 327 20 333 25 c 1 -188 282 m 1 - 359 282 l 1 - 321 522 l 1 - 188 282 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: agrave -Encoding: 224 224 157 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 512 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" agrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Agrave -Encoding: 192 192 125 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 70 16 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/agrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/agrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/agrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/agrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: agrave.sc -Encoding: 65625 -1 480 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 444 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 461 5 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: amacron -Encoding: 257 257 300 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 520 13 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" amacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Amacron -Encoding: 256 256 248 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 289 -1 N 1 0 0 1 102 176 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/amacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/amacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/amacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/amacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: amacron.sc -Encoding: 65658 -1 513 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 444 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 522 38 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ampersand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ampersand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ampersand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ampersand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: ampersand -Encoding: 38 38 5 -Width: 762 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -5 31<320 462> 482 41<316 431> -VStem: -7 49<97 176> 399 91<373 475> 421 36<127 203> 583 62<143 232> 720 41<425 519> -LayerCount: 2 -Fore -SplineSet -408 523 m 27xee - 453 523 490 486 490 441 c 27 - 490 293 242 236 181 222 c 0 - 113 207 42 191 42 150 c 3 - 42 132 54 127 62 120 c 0 - 71 112 80 104 80 88 c 3 - 80 60 60 46 37 46 c 27 - 27 46 20 47 13 51 c 1 - 0 62 -7 88 -7 104 c 0 - -7 165 31 212 100 232 c 0 - 176 253 399 306 399 425 c 3xf6 - 399 459 387 482 350 482 c 3 - 283 482 216 385 216 249 c 3 - 216 100 283 26 400 26 c 3 - 490 26 583 97 583 188 c 0 - 583 205 574 226 568 232 c 1 - 519 216 457 185 457 142 c 3 - 457 133 458 125 461 120 c 1 - 457 118 446 119 441 125 c 1 - 430 134 421 157 421 181 c 3 - 421 225 461 255 533 286 c 0 - 622 324 729 392 720 529 c 1 - 729 530 736 524 739 521 c 1 - 751 498 761 471 761 430 c 3 - 761 352 707 291 639 258 c 1 - 643 250 645 238 645 223 c 0 - 645 106 513 -5 369 -5 c 0 - 241 -5 136 55 136 219 c 3 - 136 362 249 523 408 523 c 27xee -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: aogonek -Encoding: 261 261 303 -Width: 438 -Flags: W -HStem: -225 58<189 263> -5 57<79 157> 386 39<217 315> -VStem: 19 72<64 217> 154 53<-189 -111> 237 73<21 161> -LayerCount: 2 -Fore -SplineSet -253 386 m 0 - 178 386 91 259 91 147 c 0 - 91 86 107 52 141 52 c 0 - 190 52 258 174 277 268 c 2 - 298 371 l 1 - 289 381 266 386 253 386 c 0 -398 86 m 1 - 392 75 363 45 337 24 c 0 - 301 -5 207 -86 207 -136 c 0 - 207 -151 213 -167 237 -167 c 0 - 283 -167 312 -130 318 -130 c 0 - 326 -130 315 -156 312 -159 c 0 - 287 -187 245 -225 204 -225 c 0 - 175 -225 154 -202 154 -176 c 0 - 154 -126 214 -50 260 -4 c 1 - 245 2 237 22 237 45 c 0 - 237 53 240 76 244 97 c 0 - 247 115 248 120 249 127 c 1 - 229 92 162 -5 105 -5 c 0 - 52 -5 19 42 19 110 c 0 - 19 280 179 425 298 425 c 0 - 332 425 355 419 374 412 c 1 - 314 104 l 2 - 313 100 311 77 311 72 c 0 - 311 63 310 48 320 48 c 0 - 341 48 386 101 389 104 c 1 - 392 104 398 92 398 86 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" aogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: Aogonek -Encoding: 260 260 302 -Width: 572 -Flags: W -HStem: -225 58<282 355> -3 28<-51 2 77 131 492 530> 250 32<188 359> 628 20G<373 378> -VStem: 247 53<-187 -110> -LayerCount: 2 -Fore -SplineSet -476 59 m 0 - 481 36 524 25 531 25 c 1 - 534 18 530 0 528 -3 c 1 - 492 -1 516 0 481 0 c 0 - 375 0 299 -102 299 -136 c 0 - 299 -151 306 -167 330 -167 c 0 - 376 -167 405 -130 411 -130 c 0 - 419 -130 408 -156 405 -159 c 0 - 380 -187 337 -225 296 -225 c 0 - 267 -225 247 -200 247 -174 c 0 - 247 -120 308 -55 352 -11 c 0 - 373 10 388 15 388 52 c 0 - 388 64 387 95 386 104 c 2 - 364 250 l 1 - 170 250 l 1 - 137 190 109 139 100 122 c 0 - 82 88 72 64 72 49 c 0 - 72 28 125 25 132 25 c 1 - 134 22 131 3 128 -3 c 1 - 92 -1 82 2 42 2 c 0 - 0 2 -12 -1 -54 -3 c 1 - -56 0 -52 18 -48 25 c 1 - -37 25 -5 31 7 44 c 0 - 31 69 48 101 68 136 c 2 - 337 619 l 2 - 346 635 368 647 376 647 c 0 - 379 647 380 646 381 645 c 1 - 465 123 l 2 - 467 112 472 79 476 59 c 0 -188 282 m 1 - 359 282 l 1 - 321 522 l 1 - 188 282 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: aogonek.sc -Encoding: 65660 -1 515 -Width: 427 -Flags: W -HStem: -218 58<201 281> -3 28<-35 10 63 102 198 250 329 371> 163 39<140 233> -LayerCount: 2 -Fore -SplineSet -141 202 m 0 - 156 201 172 200 186 200 c 0 - 204 200 215 201 233 203 c 0 - 234 203 234 205 234 205 c 1 - 215 343 l 1 - 140 204 l 1 - 140 204 140 202 141 202 c 0 -369 -3 m 1 - 364 -3 354 -2 354 -2 c 0 - 316 0 239 -75 230 -118 c 0 - 227 -133 229 -160 257 -160 c 0 - 300 -160 327 -123 332 -123 c 0 - 333 -123 336 -128 334 -136 c 0 - 333 -141 329 -149 326 -153 c 0 - 302 -181 263 -218 225 -218 c 0 - 178 -218 175 -169 180 -143 c 0 - 190 -91 269 -13 308 1 c 1 - 300 1 294 1 287 1 c 0 - 261 1 221 -1 195 -3 c 1 - 192 1 198 21 202 25 c 1 - 209 25 244 28 250 33 c 0 - 252 35 253 38 254 42 c 0 - 258 61 238 160 238 160 c 1 - 238 160 237 162 235 162 c 0 - 220 164 195 163 180 163 c 0 - 157 163 147 163 121 160 c 0 - 120 160 119 159 119 159 c 1 - 119 159 95 113 80 84 c 0 - 69 63 64 51 62 43 c 0 - 59 28 100 25 104 25 c 1 - 106 22 103 2 100 -3 c 1 - 78 -1 60 1 35 1 c 0 - 9 1 -14 -1 -40 -3 c 1 - -39 0 -35 19 -34 25 c 1 - -27 25 3 29 11 38 c 0 - 26 56 36 74 49 97 c 2 - 49 97 165 306 220 409 c 0 - 226 420 257 441 262 441 c 0 - 264 441 264 439 266 438 c 1 - 266 438 318 61 321 48 c 0 - 324 32 370 25 374 25 c 1 - 376 19 370 0 369 -3 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aringacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aringacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aringacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aringacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aringacute.sc -Encoding: 65732 -1 587 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 485 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 591 193 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aring -Encoding: 229 229 162 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 538 6 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" aring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aring -Encoding: 197 197 130 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 287 -1 N 1 0 0 1 111 153 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/aring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/aring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aring.sc -Encoding: 65630 -1 485 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 510 -28 2 -Refer: 444 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowdown -Encoding: 8595 8595 218 -Width: 305 -Flags: W -VStem: -10 317 -LayerCount: 2 -Fore -SplineSet -103 88 m 1 - 212 651 l 2 - 213 655 218 657 225 657 c 0 - 239 657 260 651 268 643 c 1 - 160 87 l 1 - 225 143 l 1 - 289 202 282 202 296 202 c 0 - 308 202 306 185 308 180 c 1 - 306 179 242 123 128 -21 c 0 - 125 -26 120 -28 114 -28 c 0 - 105 -28 97 -27 91 -20 c 1 - 44 108 -9 180 -10 181 c 1 - -4 195 3 203 11 203 c 0 - 22 203 16 201 66 135 c 1 - 103 88 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowleft -Encoding: 8592 8592 215 -Width: 656 -Flags: W -HStem: 211 61<116 638> -LayerCount: 2 -Fore -SplineSet -179 327 m 10 - 116 271 l 25 - 639 271 l 18 - 643 271 645 266 645 259 c 0 - 645 245 635 218 623 211 c 1 - 106 211 l 1 - 106 211 129 174 146 153 c 16 - 184 103 188 103 188 92 c 0 - 188 82 172 74 165 71 c 1 - 164 73 123 129 8 222 c 0 - 5 224 4 227 4 231 c 0 - 4 238 8 253 17 262 c 1 - 151 339 231 412 232 413 c 1 - 244 409 252 404 250 395 c 1 - 250 385 245 387 179 327 c 10 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowright -Encoding: 8594 8594 217 -Width: 660 -Flags: W -HStem: 212 61<13 536> -LayerCount: 2 -Fore -SplineSet -536 212 m 1 - 13 212 l 2 - 9 212 7 218 7 225 c 0 - 7 239 16 265 28 272 c 1 - 550 272 l 1 - 508 331 l 1 - 462 392 466 378 466 395 c 1 - 469 408 485 410 490 413 c 1 - 491 411 531 355 646 262 c 0 - 649 260 650 257 650 253 c 0 - 650 247 648 231 639 222 c 1 - 505 145 423 72 422 71 c 1 - 410 75 403 80 405 89 c 1 - 405 98 410 98 479 160 c 2 - 536 212 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowup.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowup.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/arrowup.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/arrowup.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowup -Encoding: 8593 8593 216 -Width: 307 -Flags: W -HStem: 428 21G<7 16 291 301> -VStem: 0 318 -LayerCount: 2 -Fore -SplineSet -148 543 m 1 - 84 487 l 1 - 19 428 20 428 13 428 c 0 - 1 428 2 445 0 450 c 1 - 2 451 66 507 180 651 c 0 - 183 656 187 658 193 658 c 0 - 202 658 211 657 217 650 c 1 - 264 522 317 450 318 449 c 1 - 312 435 305 427 297 427 c 0 - 285 427 290 430 242 493 c 2 - 205 542 l 1 - 97 -21 l 2 - 96 -24 91 -27 84 -27 c 0 - 69 -27 46 -21 40 -13 c 1 - 148 543 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/a.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/a.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/a.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/a.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: a.sc -Encoding: 65589 -1 444 -Width: 427 -Flags: W -HStem: -3 28<-36 12 65 104 200 250 328 371> 163 37<142 236> -LayerCount: 2 -Fore -SplineSet -369 -3 m 1 - 347 -1 312 1 287 1 c 0 - 261 1 223 -1 197 -3 c 1 - 194 1 199 21 203 25 c 1 - 210 25 244 28 250 33 c 0 - 252 35 253 38 254 42 c 0 - 258 61 239 160 239 160 c 1 - 239 160 238 162 236 162 c 0 - 221 164 196 163 181 163 c 0 - 158 163 149 163 123 160 c 0 - 122 160 121 159 121 159 c 1 - 121 159 96 113 81 84 c 16 - 70 63 66 51 64 43 c 0 - 61 28 102 25 106 25 c 1 - 108 22 105 2 102 -3 c 1 - 80 -1 62 1 37 1 c 0 - 11 1 -12 -1 -38 -3 c 1 - -41 0 -37 19 -33 25 c 1 - -26 25 5 29 13 38 c 0 - 28 56 38 74 51 97 c 2 - 51 97 167 306 222 409 c 0 - 228 420 259 441 264 441 c 0 - 266 441 266 439 268 438 c 1 - 268 438 318 61 321 48 c 0 - 324 32 370 25 374 25 c 1 - 376 19 370 0 369 -3 c 1 -143 202 m 0 - 158 201 174 200 188 200 c 0 - 206 200 216 201 234 203 c 0 - 235 203 236 205 236 205 c 1 - 217 343 l 1 - 142 204 l 1 - 142 204 142 202 143 202 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: asciicircum -Encoding: 94 94 61 -Width: 295 -Flags: W -HStem: 464 210 -VStem: 13 276 -LayerCount: 2 -Fore -SplineSet -13 487 m 1 - 22 502 102 552 170 661 c 0 - 176 671 175 674 182 674 c 0 - 203 674 191 654 231 574 c 0 - 246 545 288 493 289 488 c 1 - 287 480 279 464 272 464 c 0 - 252 464 186 551 168 583 c 1 - 120 527 32 464 21 464 c 0 - 13 464 13 479 13 487 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" asciicircum.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciicircum.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: asciicircum.sc -Encoding: 65618 -1 473 -Width: 514 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 61 94 N 1 0 0 1 151 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: asciitilde -Encoding: 126 126 93 -Width: 532 -Flags: W -HStem: 244 50<304 438> 296 50<115 246> -LayerCount: 2 -Fore -SplineSet -192 346 m 0 - 278 346 310 294 396 294 c 0 - 431 294 456 315 486 337 c 1 - 488 335 492 333 492 327 c 0 - 492 298 429 244 360 244 c 0 - 274 244 240 296 154 296 c 0 - 119 296 93 275 63 253 c 1 - 61 255 58 257 58 263 c 0 - 58 301 138 346 192 346 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" asciitilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asciitilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: asciitilde.sc -Encoding: 65622 -1 477 -Width: 421 -Flags: W -HStem: 160 41<209 316> 199 41<84 191> -VStem: 55 289 -LayerCount: 2 -Fore -SplineSet -256 160 m 0xa0 - 197 160 181 199 122 199 c 0 - 98 199 76 183 55 168 c 1 - 52 170 51 175 52 181 c 0 - 55 196 87 240 144 240 c 0x60 - 203 240 219 201 278 201 c 0 - 302 201 323 217 344 232 c 1 - 347 230 348 226 347 220 c 0 - 344 205 312 160 256 160 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asterisk.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asterisk.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/asterisk.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/asterisk.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: asterisk -Encoding: 42 42 9 -Width: 390 -Flags: W -HStem: 422 66<69 162> 455 47<240 262> 462 20<182 221> 629 20G<198 221> -VStem: 157 62<298 373> 221 163<400 460> 223 40<482 503> -LayerCount: 2 -Fore -SplineSet -250 502 m 0x5a - 274 502 320 618 370 618 c 0 - 384 618 393 609 393 595 c 0 - 393 539 263 510 263 479 c 0x5a - 263 453 384 462 384 409 c 0 - 384 390 368 374 348 374 c 0 - 306 374 273 455 249 455 c 0x5c - 227 455 238 389 220 333 c 0 - 211 304 194 291 180 291 c 0 - 167 291 157 301 157 318 c 0 - 157 357 221 428 221 453 c 0 - 221 458 219 462 212 462 c 0x3c - 191 462 129 422 92 422 c 0 - 75 422 62 429 62 445 c 0 - 62 458 69 488 122 488 c 0x9c - 150 488 178 481 198 481 c 0x3c - 219 481 223 491 223 498 c 0 - 223 521 173 566 173 608 c 0 - 173 632 189 648 206 648 c 0 - 236 648 238 605 238 566 c 0 - 238 560 236 502 250 502 c 0x5a -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/at.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/at.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/at.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/at.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: at -Encoding: 64 64 31 -Width: 741 -VWidth: 0 -Flags: W -HStem: -6 35<433 526> -5 57<227 306> 386 39<368 467> 529 34<310 498> -VStem: 28 37<45 259> 168 72<64 214> 641 41<167 382> -LayerCount: 2 -Fore -SplineSet -411 563 m 3xbe - 592 563 682 432 682 275 c 0 - 682 74 537 -6 457 -6 c 0xbe - 409 -6 389 28 389 57 c 0 - 389 65 390 75 394 96 c 0 - 398 115 397 120 398 127 c 1 - 377 89 311 -5 254 -5 c 3x7e - 200 -5 168 44 168 112 c 3 - 168 268 316 425 450 425 c 0 - 484 425 502 419 521 412 c 9 - 459 103 l 2 - 449 56 462 29 485 29 c 3 - 558 29 641 159 641 261 c 0 - 641 423 558 529 403 529 c 3 - 238 529 65 371 65 137 c 0 - 65 59 104 -16 156 -57 c 0 - 173 -71 192 -81 201 -85 c 1 - 195 -90 189 -92 170 -92 c 0 - 146 -92 111 -64 98 -48 c 0 - 46 14 28 75 28 138 c 0 - 28 384 208 563 411 563 c 3xbe -403 386 m 3 - 328 386 240 258 240 146 c 0 - 240 85 256 52 290 52 c 3x7e - 339 52 408 173 427 267 c 2 - 447 371 l 17 - 438 381 416 386 403 386 c 3 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" at.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: atilde -Encoding: 227 227 160 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 512 16 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" atilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Atilde -Encoding: 195 195 128 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 74 14 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/atilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/atilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/atilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/atilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: atilde.sc -Encoding: 65628 -1 483 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 505 41 2 -Refer: 444 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/at.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/at.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/at.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/at.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: at.sc -Encoding: 65588 -1 443 -Width: 574 -Flags: W -HStem: -43 33<163 291> 60 34<365 434> 66 48<184 258> 309 37<290 377> 438 35<244 411> -LayerCount: 2 -Fore -SplineSet -490 213 m 0xd8 - 514 338 455 438 333 438 c 0 - 205 438 103 343 79 218 c 0 - 53 80 114 -10 248 -10 c 0 - 267 -10 302 -3 312 3 c 1 - 313 -2 302 -19 299 -21 c 0 - 286 -32 265 -43 234 -43 c 0 - 86 -43 9 75 35 209 c 0 - 67 373 184 473 344 473 c 0 - 481 473 555 351 531 224 c 0 - 506 95 428 60 374 60 c 0xd8 - 326 60 310 111 316 142 c 0 - 316 144 313 142 312 141 c 0 - 296 120 243 66 209 66 c 0xb8 - 159 66 140 116 149 162 c 0 - 167 252 273 346 365 346 c 0 - 390 346 406 343 424 338 c 1 - 418 321 413 304 413 304 c 1 - 370 158 l 2 - 368 151 366 145 365 140 c 0 - 357 101 375 94 390 94 c 0 - 452 94 483 179 490 213 c 0xd8 -356 293 m 0 - 358 301 357 309 326 309 c 0 - 294 309 225 256 208 170 c 0 - 199 127 218 114 234 114 c 0xb8 - 270 114 324 183 328 199 c 1 - 353 286 l 1 - 353 286 355 289 356 293 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/backslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/backslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/backslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/backslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: backslash -Encoding: 92 92 59 -Width: 359 -Flags: W -VStem: 112 171 -LayerCount: 2 -Fore -SplineSet -283 -4 m 2 - 286 -20 268 -39 257 -39 c 0 - 253 -39 249 -39 245 -36 c 1 - 194 263 112 737 112 737 c 1 - 114 740 120 744 126 744 c 0 - 147 744 160 718 162 708 c 2 - 283 -4 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" backslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/backslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/backslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/backslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/backslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: backslash.sc -Encoding: 65616 -1 471 -Width: 286 -Flags: W -VStem: 70 125 -LayerCount: 2 -Fore -SplineSet -70 476 m 1 - 73 477 77 479 86 479 c 0 - 106 479 103 475 106 465 c 1 - 195 -26 l 1 - 195 -26 188 -52 176 -52 c 0 - 169 -52 168 -50 167 -45 c 2 - 70 476 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: bar -Encoding: 124 124 91 -Width: 202 -Flags: W -VStem: 0 223 -LayerCount: 2 -Fore -SplineSet -165 739 m 1 - 175 749 190 755 208 755 c 0 - 215 755 224 752 223 748 c 2 - 59 -104 l 1 - 52 -112 33 -120 14 -120 c 0 - 8 -120 -1 -117 0 -112 c 2 - 165 739 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" bar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: bar.sc -Encoding: 65620 -1 475 -Width: 211 -Flags: W -VStem: 23 147 -LayerCount: 2 -Fore -SplineSet -59 -71 m 2 - 58 -76 28 -83 26 -83 c 0 - 21 -83 22 -80 23 -77 c 2 - 137 503 l 1 - 137 503 137 507 141 508 c 0 - 154 511 164 513 167 513 c 0 - 174 513 171 509 171 509 c 1 - 59 -71 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: b -Encoding: 98 98 65 -Width: 418 -Flags: W -HStem: -6 32<125 196> 371 54<253 333> 616 21<75 130> 649 20G<196 209> -VStem: 134 79<534 651> 307 72<198 366> -LayerCount: 2 -Fore -SplineSet -269 371 m 0 - 227 371 136 259 115 152 c 0 - 99 73 114 26 160 26 c 0 - 242 26 307 216 307 295 c 0 - 307 331 303 371 269 371 c 0 -140 278 m 1 - 208 392 280 425 311 425 c 0 - 356 425 379 381 379 314 c 0 - 379 138 237 -6 133 -6 c 0 - 78 -6 42 36 42 108 c 0 - 42 118 46 142 48 154 c 2 - 125 546 l 2 - 129 564 134 587 134 598 c 0 - 134 617 90 616 74 616 c 1 - 71 620 74 633 78 637 c 1 - 132 642 186 661 207 669 c 1 - 212 666 213 656 213 650 c 0 - 213 642 205 601 200 577 c 2 - 140 278 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" b.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: B -Encoding: 66 66 33 -Width: 552 -Flags: W -HStem: -3 28<-3 66 160 299> 331 30<213 342> 615 28<118 176 247 375> -VStem: 399 93<130 290> 423 86<444 579> -LayerCount: 2 -Fore -SplineSet -213 361 m 1xe8 - 305 361 l 2 - 370 361 423 427 423 510 c 0 - 423 565 396 615 312 615 c 0 - 301 615 269 614 264 605 c 0 - 257 593 251 561 246 532 c 2 - 213 361 l 1xe8 -206 331 m 1 - 163 111 l 2 - 160 97 153 49 158 42 c 0 - 169 26 193 25 226 25 c 0 - 326 25 399 94 399 215 c 0xf0 - 399 244 402 331 262 331 c 2 - 206 331 l 1 -228 642 m 0 - 263 642 303 644 357 644 c 0 - 440 644 509 608 509 524 c 0xe8 - 509 426 431 378 392 357 c 1 - 436 353 492 301 492 221 c 0 - 492 88 370 -3 205 -3 c 0 - -4 -3 l 1 - -8 2 -4 20 1 25 c 1 - 12 25 62 30 67 41 c 0 - 75 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 177 588 176 603 c 0 - 176 615 128 618 117 618 c 1 - 114 623 116 641 122 646 c 1 - 159 644 193 642 228 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: braceleft -Encoding: 123 123 90 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -SplineSet -125 393 m 0 - 130 418 124 442 119 466 c 0 - 113 491 108 517 114 547 c 0 - 133 642 203 705 245 722 c 1 - 252 722 258 712 256 703 c 1 - 229 690 173 644 163 594 c 0 - 156 557 162 532 168 505 c 0 - 174 481 179 453 171 414 c 0 - 158 351 108 310 83 300 c 1 - 104 290 140 249 127 186 c 0 - 119 147 104 119 88 95 c 0 - 71 68 55 43 48 6 c 0 - 38 -44 77 -91 99 -104 c 1 - 97 -113 87 -122 80 -122 c 1 - 44 -105 -1 -42 18 53 c 0 - 24 83 38 109 54 134 c 0 - 69 158 84 182 89 207 c 0 - 99 259 70 279 37 289 c 1 - 36 291 36 296 37 300 c 0 - 38 304 38 309 40 311 c 1 - 77 321 115 341 125 393 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" braceleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceleft.sc -Encoding: 65619 -1 474 -Width: 224 -VWidth: 1019 -Flags: W -HStem: 201 15<38 59> 487 13<204 216> -VStem: 93 43<231 429> -LayerCount: 2 -Fore -SplineSet -41 216 m 1 - 71 223 103 236 110 272 c 0 - 113 290 107 306 101 323 c 0 - 95 341 89 358 93 379 c 0 - 106 444 167 488 206 500 c 1 - 213 500 218 493 217 487 c 1 - 193 478 143 446 136 412 c 0 - 131 387 139 370 145 351 c 0 - 151 334 158 315 153 288 c 0 - 144 244 98 216 75 209 c 1 - 96 202 130 175 121 131 c 0 - 116 105 102 85 89 68 c 0 - 76 49 63 32 58 7 c 0 - 51 -27 89 -58 110 -67 c 1 - 109 -73 100 -80 93 -80 c 1 - 59 -68 14 -26 27 39 c 0 - 31 60 44 77 57 95 c 0 - 70 112 82 128 85 146 c 0 - 92 181 65 194 38 201 c 1 - 36 204 38 213 41 216 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: braceright -Encoding: 125 125 92 -Width: 207 -Flags: HW -LayerCount: 2 -Fore -SplineSet -140 722 m 1 - 176 705 223 642 204 547 c 0 - 198 517 183 491 167 466 c 0 - 152 442 137 418 132 393 c 0 - 122 341 152 321 185 311 c 1 - 186 309 186 304 185 300 c 0 - 184 295 183 292 181 289 c 1 - 144 279 106 259 96 207 c 0 - 91 182 98 158 103 134 c 0 - 109 109 114 83 108 53 c 0 - 89 -42 18 -105 -24 -122 c 1 - -31 -122 -37 -113 -35 -104 c 1 - -8 -91 49 -44 59 6 c 0 - 66 43 59 68 53 95 c 0 - 47 119 42 147 50 186 c 0 - 63 249 113 290 138 300 c 1 - 117 310 81 351 94 414 c 0 - 102 453 117 481 133 505 c 0 - 150 532 166 557 173 594 c 0 - 183 644 144 690 122 703 c 1 - 124 712 133 722 140 722 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" braceright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/braceright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/braceright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceright.sc -Encoding: 65621 -1 476 -Width: 226 -VWidth: 1019 -Flags: W -HStem: -80 13<-5 6> 201 15<149 172> -VStem: 69 42<-10 187> -LayerCount: 2 -Fore -SplineSet -115 500 m 1 - 147 488 191 444 178 379 c 0 - 174 358 162 341 149 323 c 0 - 136 306 123 290 120 272 c 0 - 113 236 141 223 171 216 c 1 - 173 213 172 204 169 201 c 1 - 136 194 102 181 95 146 c 0 - 92 128 99 112 105 95 c 0 - 111 77 115 60 111 39 c 0 - 98 -26 39 -68 2 -80 c 1 - -3 -80 -7 -73 -6 -67 c 1 - 16 -58 62 -27 69 7 c 0 - 74 32 66 49 60 68 c 0 - 54 85 48 105 53 131 c 0 - 62 175 106 202 129 209 c 1 - 108 216 75 244 84 288 c 0 - 89 315 102 334 115 351 c 0 - 128 370 143 387 148 412 c 0 - 155 446 123 478 103 487 c 1 - 104 493 110 500 115 500 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: bracketleft -Encoding: 91 91 58 -Width: 253 -Flags: W -HStem: 679 44<204 308> -VStem: 7 324 -LayerCount: 2 -Fore -SplineSet -157 700 m 2 - 157 701 163 723 180 723 c 0 - 253 723 311 731 326 731 c 0 - 328 731 331 732 331 726 c 0 - 331 705 309 690 308 689 c 2 - 308 689 263 679 214 679 c 0 - 208 679 206 671 206 671 c 1 - 66 -48 l 1 - 66 -48 65 -55 71 -56 c 0 - 106 -60 149 -73 161 -80 c 0 - 163 -81 174 -92 174 -101 c 0 - 174 -112 167 -115 167 -115 c 1 - 167 -115 88 -100 14 -100 c 0 - 10 -100 6 -96 7 -89 c 0 - 60 182 157 700 157 700 c 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" bracketleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketleft.sc -Encoding: 65615 -1 470 -Width: 250 -VWidth: 1019 -Flags: W -HStem: -80 22<69 147> 480 22<192 256> -VStem: 26 229 -LayerCount: 2 -Fore -SplineSet -150 499 m 0 - 207 499 255 503 255 503 c 1 - 255 503 258 501 257 495 c 0 - 256 489 250 482 246 480 c 0 - 220 472 169 466 169 466 c 1 - 69 -47 l 1 - 69 -47 119 -52 142 -58 c 0 - 145 -60 148 -66 147 -72 c 0 - 146 -78 142 -80 142 -80 c 1 - 142 -80 94 -76 37 -76 c 0 - 24 -76 26 -62 26 -61 c 2 - 133 483 l 2 - 133 484 137 499 150 499 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: bracketright -Encoding: 93 93 60 -Width: 251 -Flags: W -HStem: -100 44<-36 68> 679 44<110 203> -VStem: -57 320 -LayerCount: 2 -Back -SplineSet -30.2734375 -111.328125 m 0 - 27.83984375 -109.697265625 26.623046875 -106.810546875 26.623046875 -102.668945312 c 0 - 26.623046875 -92.6806640625 33.0478515625 -82.5458984375 45.8984375 -72.265625 c 1 - 75.8466796875 -61.1982421875 107.096679688 -55.6640625 139.6484375 -55.6640625 c 0 - 141.276367188 -55.6640625 142.822265625 -55.0126953125 144.287109375 -53.7109375 c 0 - 145.751953125 -52.4091796875 146.809570312 -51.1064453125 147.4609375 -49.8046875 c 2 - 148.4375 -47.8515625 l 1025 -EndSplineSet -Fore -SplineSet -106 731 m 0 - 108 731 176 723 251 723 c 0 - 262 723 264 715 264 708 c 0 - 264 704 264 703 263 700 c 2 - 112 -77 l 2 - 112 -78 108 -100 91 -100 c 0 - 17 -100 -53 -111 -53 -111 c 1 - -53 -111 -57 -109 -57 -103 c 0 - -57 -88 -42 -77 -37 -72 c 1 - -15 -64 18 -56 57 -56 c 0 - 63 -56 65 -48 65 -48 c 1 - 205 671 l 1 - 205 671 206 679 200 679 c 0 - 151 679 110 689 110 689 c 1 - 108 691 99 696 99 711 c 0 - 99 720 101 731 106 731 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" bracketright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bracketright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bracketright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketright.sc -Encoding: 65617 -1 472 -Width: 252 -VWidth: 1019 -Flags: W -HStem: 480 22<88 143> -VStem: -21 229 -LayerCount: 2 -Fore -SplineSet -197 499 m 0 - 210 499 207 484 207 483 c 2 - 102 -61 l 2 - 102 -62 98 -76 85 -76 c 0 - 28 -76 -21 -80 -21 -80 c 1 - -21 -80 -23 -78 -22 -72 c 0 - -21 -66 -16 -60 -12 -58 c 0 - 13 -52 64 -47 64 -47 c 1 - 164 466 l 1 - 164 466 115 472 92 480 c 0 - 89 482 87 489 88 495 c 0 - 89 501 92 503 92 503 c 1 - 92 503 140 499 197 499 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/breve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/breve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/breve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/breve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: breve -Encoding: 728 728 255 -Width: 237 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 774 N 1 0 0 1 347 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/brokenbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/brokenbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/brokenbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/brokenbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: brokenbar -Encoding: 166 166 100 -Width: 206 -VWidth: 0 -Flags: W -VStem: 2 222 -LayerCount: 2 -Fore -SplineSet -166 736 m 1 - 176 746 191 752 209 752 c 27 - 216 752 225 749 224 745 c 2 - 156 391 l 1 - 149 383 131 374 112 374 c 27 - 106 374 97 377 98 382 c 2 - 166 736 l 1 -70 242 m 1 - 80 252 95 258 113 258 c 27 - 120 258 129 255 128 251 c 2 - 61 -104 l 1 - 54 -112 35 -120 16 -120 c 27 - 10 -120 1 -117 2 -112 c 2 - 70 242 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/b.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/b.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/b.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/b.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: b.sc -Encoding: 65590 -1 445 -Width: 436 -Flags: W -HStem: -3 30<4 51 128 232> 216 34<164 258> 407 30<85 122 182 272> -LayerCount: 2 -Fore -SplineSet -255 438 m 0 - 314 438 379 415 364 340 c 0 - 354 289 297 256 270 247 c 0 - 270 246 269 245 269 244 c 1 - 309 243 382 199 369 133 c 0 - 361 95 326 51 288 30 c 0 - 250 6 204 -2 154 -3 c 0 - 133 -3 25 -3 0 -3 c 1 - -2 3 3 21 6 25 c 1 - 13 25 48 28 51 35 c 0 - 56 46 60 63 64 83 c 2 - 117 354 l 2 - 121 374 123 390 123 401 c 0 - 123 408 89 412 82 412 c 1 - 81 418 84 436 87 440 c 1 - 112 438 141 436 165 436 c 0 - 189 436 218 438 255 438 c 0 -164 250 m 1 - 218 250 l 2 - 256 250 283 286 290 321 c 0 - 301 377 274 407 224 407 c 0 - 217 407 201 407 197 401 c 0 - 193 393 188 373 184 354 c 2 - 164 250 l 1 -157 216 m 1 - 130 81 l 2 - 128 72 123 43 127 39 c 0 - 134 29 150 27 171 27 c 0 - 214 27 265 41 280 117 c 0 - 289 164 282 216 193 216 c 2 - 157 216 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bullet.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bullet.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/bullet.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/bullet.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: bullet -Encoding: 8226 8226 192 -Width: 326 -Flags: W -HStem: 151 211<120 204> -VStem: 64 195 -LayerCount: 2 -Fore -SplineSet -64 257 m 0 - 75 315 129 362 183 362 c 0 - 237 362 271 315 260 257 c 0 - 249 199 196 151 142 151 c 0 - 88 151 53 199 64 257 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cacute -Encoding: 263 263 277 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 99 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 548 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" cacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cacute -Encoding: 262 262 304 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 251 17 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cacute.sc -Encoding: 65661 -1 516 -Width: 465 -Flags: HW -LayerCount: 2 -Fore -Refer: 446 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 583 37 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/caron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/caron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/caron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/caron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: caron -Encoding: 711 711 254 -Width: 239 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 358 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccaron -Encoding: 269 269 310 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 515 3 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ccaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccaron -Encoding: 268 268 309 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 299 -1 N 1 0 0 1 195 0 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccaron.sc -Encoding: 65664 -1 519 -Width: 465 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 577 28 2 -Refer: 446 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccedilla -Encoding: 231 231 164 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 364 5 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ccedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccedilla -Encoding: 199 199 132 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 67 N 1 0 0 1 0 0 3 -Refer: 291 -1 N 1 0 0 1 124 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccedilla.sc -Encoding: 65632 -1 487 -Width: 465 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 461 4 2 -Refer: 446 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccircumflex -Encoding: 265 265 306 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 506 4 2 -Refer: 66 99 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ccircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccircumflex -Encoding: 264 264 305 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 163 0 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ccircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccircumflex.sc -Encoding: 65662 -1 517 -Width: 465 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 568 29 2 -Refer: 446 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cdotaccent -Encoding: 267 267 308 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 66 99 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 513 55 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" cdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cdotaccent -Encoding: 266 266 307 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 186 17 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cdotaccent.sc -Encoding: 65663 -1 518 -Width: 465 -Flags: HW -LayerCount: 2 -Fore -Refer: 446 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 570 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cedilla -Encoding: 184 184 117 -Width: 157 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 324 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/cent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/cent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: cent -Encoding: 162 162 96 -Width: 349 -Flags: W -HStem: -6 58<116 186> 385 40<191 278> -VStem: 18 76<73 240> -LayerCount: 2 -Fore -SplineSet -248 463 m 17 - 255 463 279 462 278 455 c 9 - 106 -44 l 17 - 98 -44 75 -42 76 -35 c 9 - 248 463 l 17 -EndSplineSet -Refer: 66 99 N 1 0 0 1 -6 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/c.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/c.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/c.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/c.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: c -Encoding: 99 99 66 -Width: 350 -Flags: W -HStem: -6 58<122 192> 385 40<197 284> -VStem: 23 76<73 240> -LayerCount: 2 -Fore -SplineSet -269 425 m 0 - 300 425 316 411 329 400 c 1 - 332 396 338 385 338 374 c 0 - 338 352 327 330 305 330 c 0 - 291 330 277 338 270 350 c 0 - 260 366 247 385 219 385 c 0 - 165 385 100 289 100 158 c 0 - 100 124 105 52 167 52 c 0 - 211 52 265 116 268 119 c 1 - 271 119 279 106 279 100 c 1 - 268 81 194 -6 132 -6 c 0 - 63 -6 23 46 23 137 c 0 - 23 293 168 425 269 425 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" c.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: C -Encoding: 67 67 34 -Width: 629 -Flags: W -HStem: -8 28<278 423> 620 30<344 493> -VStem: 58 93<154 387> 571 30<478 548> -LayerCount: 2 -Fore -SplineSet -556 169 m 1 - 569 169 583 161 583 161 c 1 - 579 141 528 39 513 27 c 1 - 460 0 406 -8 322 -8 c 0 - 164 -8 58 114 58 259 c 0 - 58 505 251 654 454 650 c 0 - 511 649 563 637 611 625 c 1 - 609 590 605 509 602 482 c 0 - 602 479 598 478 594 478 c 1 - 588 478 579 478 571 482 c 1 - 576 560 508 620 426 620 c 0 - 274 620 149 487 150 275 c 0 - 150 159 204 21 350 21 c 0 - 450 21 514 89 556 169 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/circumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/circumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/circumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/circumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: circumflex -Encoding: 710 710 253 -Width: 240 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 379 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/colon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/colon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/colon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/colon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: colon -Encoding: 58 58 25 -Width: 230 -VWidth: 0 -Flags: W -HStem: -14 117<39 108> 311 117<101 171> -VStem: 19 110<7 83> 81 111<331 407> -LayerCount: 2 -Fore -SplineSet -81 358 m 0xd0 - 81 395 115 428 148 428 c 0 - 174 428 192 408 192 382 c 0 - 192 345 159 311 126 311 c 0 - 100 311 81 331 81 358 c 0xd0 -19 33 m 0xe0 - 19 70 52 104 85 104 c 0 - 111 104 129 83 129 57 c 0 - 129 20 95 -14 62 -14 c 0 - 36 -14 19 7 19 33 c 0xe0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" colon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/colon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/colon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/colon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/colon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: colon.sc -Encoding: 65582 -1 437 -Width: 246 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 25 58 N 1 0 0 1 8 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/comma.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/comma.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/comma.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/comma.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: comma -Encoding: 44 44 11 -Width: 195 -VWidth: 0 -Flags: W -HStem: -106 232 -VStem: 22 84<0 117> -LayerCount: 2 -Fore -SplineSet --27 -87 m 1 - -14 -81 39 -47 39 -2 c 0 - 39 46 22 45 22 77 c 0 - 22 107 48 126 76 126 c 0 - 88 126 100 121 104 116 c 1 - 106 111 106 96 106 93 c 0 - 106 50 95 13 71 -27 c 0 - 44 -72 4 -99 -14 -106 c 1 - -18 -106 -27 -95 -27 -87 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/copyright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/copyright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/copyright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/copyright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: copyright -Encoding: 169 169 103 -Width: 588 -Flags: W -HStem: 67 30<192 336> 190 31<261 366> 438 33<290 394> 570 30<280 427> -VStem: 56 29<208 366> 175 54<246 381> 413 21<385 414> 533 28<302 457> -LayerCount: 2 -Fore -SplineSet -334 472 m 0 - 361 472 404 466 432 453 c 1 - 433 451 434 448 434 445 c 16 - 435 431 435 405 435 396 c 0 - 435 385 422 385 419 385 c 0 - 417 385 414 386 413 387 c 1 - 413 400 403 438 339 438 c 0 - 285 438 229 381 229 308 c 0 - 229 249 269 222 305 222 c 0 - 379 222 386 260 394 272 c 1 - 394 272 395 273 397 273 c 27 - 403 273 411 270 411 270 c 1 - 410 267 388 212 381 209 c 0 - 350 196 319 190 281 190 c 0 - 218 190 175 237 175 300 c 0 - 175 385 248 472 334 472 c 0 -360 601 m 0 - 479 601 562 510 562 389 c 0 - 562 220 411 67 256 67 c 0 - 137 67 56 158 56 279 c 0 - 56 448 205 601 360 601 c 0 -354 570 m 0 - 218 570 85 435 85 285 c 0 - 85 179 158 98 263 98 c 0 - 399 98 533 233 533 382 c 0 - 533 489 459 570 354 570 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/c.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/c.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/c.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/c.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: c.sc -Encoding: 65591 -1 446 -Width: 465 -Flags: W -HStem: -5 32<172 298> 412 32<235 360> -VStem: 38 81<95 284> 393 26<318 374> -LayerCount: 2 -Fore -SplineSet -297 444 m 0 - 337 444 379 440 422 426 c 1 - 422 426 420 333 419 326 c 1 - 418 319 411 318 405 318 c 0 - 401 318 393 319 393 321 c 1 - 393 341 390 412 304 412 c 0 - 219 412 119 346 119 172 c 0 - 119 100 139 27 238 27 c 0 - 312 27 358 94 372 130 c 1 - 383 130 396 125 396 125 c 1 - 393 112 368 42 356 32 c 1 - 318 7 280 -5 224 -5 c 0 - 104 -5 38 92 38 186 c 0 - 38 340 178 444 297 444 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/currency.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/currency.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/currency.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/currency.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: currency -Encoding: 164 164 98 -Width: 492 -Flags: W -HStem: 117 31<190 276> 452 32<229 316> -VStem: 82 68<192 354> 354 67<247 408> -LayerCount: 2 -Fore -SplineSet -231 148 m 0 - 297 148 354 243 354 333 c 0 - 354 401 322 452 274 452 c 0 - 208 452 150 357 150 267 c 0 - 150 199 183 148 231 148 c 0 -383 444 m 1 - 447 498 l 2 - 448 499 450 499 451 499 c 3 - 461 499 475 476 477 455 c 1 - 411 400 l 1 - 418 381 422 361 422 339 c 0 - 422 276 390 222 367 194 c 1 - 405 138 l 2 - 405 137 406 137 406 136 c 3 - 406 126 378 104 357 98 c 1 - 321 151 l 1 - 290 130 254 117 218 117 c 0 - 179 117 145 132 122 156 c 1 - 64 107 l 2 - 63 106 62 106 61 106 c 3 - 51 106 37 129 35 150 c 1 - 94 200 l 1 - 86 219 82 240 82 262 c 0 - 82 323 112 379 143 413 c 1 - 106 468 l 2 - 106 469 105 469 105 470 c 3 - 105 480 133 502 154 508 c 1 - 190 454 l 1 - 220 474 255 484 289 484 c 0 - 328 484 360 469 383 444 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/daggerdbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/daggerdbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/daggerdbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/daggerdbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: daggerdbl -Encoding: 8225 8225 191 -Width: 368 -Flags: W -HStem: -8 21G<121 141> 133 79<24 77 249 308> 164 21<80 143 192 248> 427 79<82 140 312 366> 454 21<141 197 247 310> 627 20G<248 268> -LayerCount: 2 -Fore -SplineSet -229 282 m 1x94 - 212 254 198 229 188 212 c 1xd4 - 186 200 195 185 210 185 c 24xa4 - 240 185 268 193 289 212 c 1 - 309 212 320 195 316 174 c 0 - 312 153 293 133 273 133 c 1xc4 - 259 152 236 164 206 164 c 0 - 194 164 186 159 174 146 c 1 - 168 114 161 47 175 28 c 1 - 171 7 152 -8 132 -8 c 0 - 111 -8 96 7 100 28 c 1 - 121 47 142 114 148 146 c 1 - 141 159 136 164 123 164 c 16xa4 - 93 164 65 152 44 133 c 1 - 24 133 13 153 17 174 c 0 - 21 195 39 212 59 212 c 1xc4 - 73 193 97 185 127 185 c 24xa4 - 142 185 157 200 159 212 c 1 - 156 229 150 258 145 282 c 1 - 160 299 165 303 180 319 c 1 - 171 334 172 333 160 356 c 1 - 175 380 191 410 201 427 c 1xd4 - 203 439 195 454 180 454 c 24x8c - 150 454 121 446 100 427 c 1 - 80 427 70 444 74 465 c 0 - 78 486 96 506 116 506 c 1x94 - 130 487 153 475 183 475 c 8 - 196 475 204 480 216 493 c 1 - 222 525 228 591 214 610 c 1 - 218 631 238 646 259 646 c 0 - 279 646 292 631 288 610 c 1 - 267 591 247 525 241 493 c 1 - 248 480 254 475 266 475 c 0x8c - 296 475 325 487 346 506 c 1 - 366 506 377 486 373 465 c 0 - 369 444 351 427 331 427 c 1x94 - 317 446 293 454 263 454 c 24x8c - 248 454 231 439 229 427 c 1 - 232 410 237 384 243 356 c 1 - 223 335 223 334 209 319 c 1 - 216 306 218 302 229 282 c 1x94 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dagger.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dagger.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dagger.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dagger.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: dagger -Encoding: 8224 8224 190 -Width: 349 -Flags: W -HStem: -8 21G<121 124> 427 79<74 131 304 357> 454 21<133 188 238 301> 627 20G<234 254> -VStem: 119 11<-6 19> -LayerCount: 2 -Fore -SplineSet -175 475 m 8xb8 - 190 475 195 480 207 493 c 1 - 213 525 219 591 205 610 c 1 - 209 631 223 646 244 646 c 0 - 264 646 283 631 279 610 c 1 - 258 591 238 525 232 493 c 1 - 239 480 246 475 258 475 c 0xb8 - 288 475 316 487 337 506 c 1 - 357 506 363 489 363 470 c 0 - 363 449 342 427 322 427 c 1xd8 - 308 446 282 454 254 454 c 24xb8 - 237 454 223 439 221 427 c 1 - 224 410 228 384 234 356 c 1 - 188 221 174 167 130 4 c 1 - 127 -2 125 -7 122 -8 c 1 - 119 -7 120 0 119 4 c 1 - 139 167 145 221 151 356 c 1 - 166 380 182 410 192 427 c 1xd8 - 194 439 185 454 171 454 c 24xb8 - 139 454 113 446 92 427 c 1 - 72 427 64 439 64 460 c 0 - 64 481 87 506 107 506 c 1xd8 - 121 487 145 475 175 475 c 8xb8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: dcaron -Encoding: 271 271 312 -Width: 455 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 67 100 N 1 0 0 1 0 0 2 -Refer: 271 789 N 1 0 0 1 362 43 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" dcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Dcaron -Encoding: 270 270 311 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 35 68 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 105 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: dcaron.sc -Encoding: 65665 -1 520 -Width: 495 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 552 28 2 -Refer: 447 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: dcroat -Encoding: 273 273 408 -Width: 435 -Flags: W -HStem: -5 57<75 155 280 321> 386 39<218 284> 519 33<241 474> 616 21<281 336> 649 20<402 416> -VStem: 19 72<64 214> 237 73<21 159> 340 79<532 651> -LayerCount: 2 -Fore -SplineSet -250 552 m 1 - 274 552 462 552 474 552 c 0 - 477 552 478 548 477 544 c 0 - 476 539 471 527 466 519 c 1 - 442 519 253 519 241 519 c 0 - 238 519 238 525 239 529 c 0 - 240 534 243 544 250 552 c 1 -EndSplineSet -Refer: 67 100 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" dcroat.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: Dcroat -Encoding: 272 272 401 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 141 208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcroat.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcroat.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dcroat.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dcroat.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dcroat.sc -Encoding: 65666 -1 521 -Width: 495 -Flags: HW -LayerCount: 2 -Fore -Refer: 496 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/degree.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/degree.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/degree.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/degree.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: degree -Encoding: 176 176 109 -Width: 259 -VWidth: 0 -Flags: W -HStem: 427 36<133 210> 583 36<147 226> -VStem: 88 35<472 558> 235 35<490 573> -LayerCount: 2 -Fore -SplineSet -123 512 m 0 - 123 485 141 463 168 463 c 0 - 202 463 235 497 235 535 c 0 - 235 562 217 583 190 583 c 0 - 156 583 123 552 123 512 c 0 -88 505 m 0 - 88 568 145 619 197 619 c 0 - 240 619 271 586 271 542 c 0 - 271 481 215 427 161 427 c 0 - 118 427 88 461 88 505 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/d.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/d.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/d.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/d.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: d -Encoding: 100 100 67 -Width: 438 -Flags: W -HStem: -5 57<75 155 280 321> 386 39<218 284> 616 21<281 336> 649 20G<402 416> -VStem: 19 72<64 214> 237 73<21 159> 340 79<532 651> -LayerCount: 2 -Fore -SplineSet -289 333 m 2 - 293 355 281 386 255 386 c 0 - 176 386 91 258 91 146 c 0 - 91 92 105 52 141 52 c 0 - 191 52 258 175 277 270 c 1 - 289 333 l 2 -331 546 m 2 - 334 564 340 587 340 598 c 0 - 340 617 296 616 280 616 c 1 - 277 620 280 633 284 637 c 1 - 338 642 392 661 413 669 c 1 - 418 666 419 656 419 650 c 0 - 419 642 411 601 406 577 c 2 - 314 104 l 2 - 313 100 311 76 311 71 c 0 - 311 62 310 48 320 48 c 0 - 341 48 386 101 389 104 c 1 - 392 104 398 92 398 86 c 1 - 387 67 317 -6 271 -6 c 0 - 250 -6 237 16 237 45 c 0 - 237 53 240 76 244 97 c 0 - 248 116 248 120 249 127 c 1 - 234 98 163 -5 104 -5 c 0 - 43 -5 19 56 19 113 c 0 - 19 266 169 425 296 425 c 0 - 320 425 303 425 309 425 c 1 - 331 546 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" d.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: D -Encoding: 68 68 35 -Width: 667 -Flags: W -HStem: -3 28<-3 66 156 315> 616 25<118 176 264 414> -LayerCount: 2 -Fore -SplineSet -246 533 m 2 - 163 109 l 2 - 160 95 152 45 155 39 c 0 - 160 28 194 25 227 25 c 0 - 367 25 500 116 537 306 c 0 - 580 527 479 616 330 616 c 0 - 319 616 269 615 264 605 c 0 - 256 589 251 561 246 533 c 2 -360 643 m 0 - 570 643 665 507 630 326 c 0 - 598 160 488 -2 223 -3 c 1 - -4 -3 l 1 - -8 2 -4 20 1 25 c 1 - 12 25 62 30 67 41 c 0 - 75 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 178 587 176 603 c 0 - 175 614 128 618 117 618 c 1 - 114 623 116 641 122 646 c 1 - 159 644 193 642 228 642 c 0 - 263 642 320 643 360 643 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dieresis -Encoding: 168 168 102 -Width: 278 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 390 10 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/divide.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/divide.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/divide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/divide.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: divide -Encoding: 247 247 180 -Width: 495 -VWidth: 0 -Flags: W -HStem: 4 98<175 238> 219 46<34 454> 381 98<247 311> -VStem: 165 85<15 92> 237 86<392 469> -LayerCount: 2 -Fore -SplineSet -36 219 m 2xe0 - 33 219 32 224 32 229 c 0 - 32 240 37 257 42 265 c 1 - 453 265 l 2 - 455 265 456 262 456 257 c 0 - 456 244 450 229 444 219 c 1 - 36 219 l 2xe0 -287 479 m 27 - 308 479 323 460 323 439 c 27 - 323 409 301 381 271 381 c 27 - 250 381 237 403 237 424 c 27xe8 - 237 453 258 479 287 479 c 27 -215 102 m 27 - 236 102 250 83 250 62 c 27 - 250 32 228 4 198 4 c 27 - 177 4 165 26 165 47 c 27xf0 - 165 76 186 102 215 102 c 27 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" divide.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/divide.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/divide.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/divide.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/divide.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: divide.sc -Encoding: 65657 -1 512 -Width: 539 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 180 247 N 1 0 0 1 21 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dollar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dollar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dollar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dollar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: dollar -Encoding: 36 36 3 -Width: 424 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 33<138 242> 593 33<204 312> -VStem: 18 33<104 178> 82 73<418 525> 298 84<101 208> 360 29<462 556> -LayerCount: 2 -Fore -SplineSet -280 626 m 0xf8 - 335 626 363 614 409 603 c 1 - 406 571 395 496 389 468 c 0 - 388 461 382 461 379 461 c 0 - 375 461 366 462 360 468 c 1xf4 - 365 543 345 593 266 593 c 0 - 189 593 156 536 156 488 c 0 - 156 411 214 381 264 342 c 0 - 314 303 382 268 382 181 c 0 - 382 64 262 -8 168 -8 c 0 - 115 -8 68 14 30 32 c 1 - 18 83 16 162 18 173 c 1 - 21 177 35 178 42 178 c 0 - 47 178 49 177 51 173 c 1 - 51 121 86 25 182 25 c 0 - 237 25 298 63 298 138 c 0 - 298 206 256 232 209 270 c 0 - 152 315 82 350 82 447 c 0 - 82 555 193 626 280 626 c 0xf8 -117 -51 m 17 - 109 -51 86 -49 87 -42 c 9 - 334 667 l 17 - 341 667 365 667 364 660 c 9 - 117 -51 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotaccent -Encoding: 729 729 256 -Width: 130 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 775 N 1 0 0 1 312 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotbelowcomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotbelowcomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotbelowcomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotbelowcomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: dotbelowcomb -Encoding: 803 803 272 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -129 98<-285 -220> -VStem: -298 91<-116 -44> -LayerCount: 2 -Fore -SplineSet --298 -80 m 0 - -293 -53 -268 -31 -243 -31 c 0 - -218 -31 -202 -53 -207 -80 c 0 - -212 -107 -238 -129 -263 -129 c 0 - -288 -129 -303 -107 -298 -80 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: dotlessi -Encoding: 305 305 233 -Width: 255 -Flags: W -HStem: -6 54<75 137> 371 54<95 158> -VStem: 52 73<45 124> 112 73<295 374> -LayerCount: 2 -Fore -SplineSet -108 315 m 2xe0 - 109 321 112 342 112 347 c 0 - 112 356 113 371 103 371 c 0 - 82 371 37 317 34 314 c 1 - 31 314 24 327 24 333 c 1 - 35 352 101 425 147 425 c 0 - 168 425 186 403 186 374 c 0xd0 - 186 366 183 343 179 322 c 2 - 129 104 l 2 - 127 94 125 77 125 72 c 0 - 125 63 125 48 135 48 c 0 - 156 48 200 101 203 104 c 1 - 206 104 213 92 213 86 c 1 - 202 67 131 -6 85 -6 c 0 - 64 -6 52 16 52 45 c 0 - 52 53 55 76 59 97 c 2 - 108 315 l 2xe0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" dotlessi.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/dotlessi.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotlessi.sc -Encoding: 65683 -1 538 -Width: 263 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/d.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/d.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/d.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/d.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: d.sc -Encoding: 65592 -1 447 -Width: 495 -Flags: W -HStem: -3 30<3 52 127 240> 407 29<81 123 198 300> -LayerCount: 2 -Fore -SplineSet -185 353 m 2 - 132 83 l 0 - 130 74 125 40 127 36 c 0 - 130 29 150 27 171 27 c 0 - 252 27 334 83 358 208 c 0 - 386 354 322 407 239 407 c 0 - 232 407 201 407 198 400 c 0 - 193 389 189 372 185 353 c 2 -257 437 m 0 - 396 437 460 344 437 221 c 0 - 415 108 343 -3 164 -3 c 0 - 136 -3 24 -3 0 -3 c 1 - -1 0 1 17 5 25 c 1 - 12 25 49 28 52 35 c 0 - 57 46 61 63 65 83 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 87 408 80 408 c 1 - 76 414 79 431 85 438 c 1 - 122 436 156 437 180 437 c 0 - 204 437 229 437 257 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: eacute -Encoding: 233 233 166 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 537 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" eacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Eacute -Encoding: 201 201 134 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 135 17 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: eacute.sc -Encoding: 65634 -1 489 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 513 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ebreve -Encoding: 277 277 316 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 489 6 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ebreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ebreve -Encoding: 276 276 315 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 290 -1 N 1 0 0 1 123 198 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ebreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ebreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ebreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ebreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ebreve.sc -Encoding: 65668 -1 523 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 488 29 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecaron -Encoding: 283 283 322 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 509 3 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ecaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecaron -Encoding: 282 282 321 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 299 -1 N 1 0 0 1 99 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecaron.sc -Encoding: 65671 -1 526 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 512 26 2 -Refer: 448 -1 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecircumflex -Encoding: 234 234 167 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 499 4 2 -Refer: 68 101 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ecircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecircumflex -Encoding: 202 202 135 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 72 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ecircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecircumflex.sc -Encoding: 65635 -1 490 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 506 27 2 -Refer: 448 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edieresis -Encoding: 235 235 168 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 483 21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" edieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edieresis -Encoding: 203 203 136 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 297 -1 N 1 0 0 1 59 16 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edieresis.sc -Encoding: 65636 -1 491 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 501 33 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edotaccent -Encoding: 279 279 318 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 520 55 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" edotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edotaccent -Encoding: 278 278 317 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 89 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/edotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edotaccent.sc -Encoding: 65669 -1 524 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 508 29 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/e.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/e.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/e.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/e.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: e -Encoding: 101 101 68 -Width: 354 -Flags: W -HStem: -6 58<121 192> 188 24<103 144> 385 40<192 292> -VStem: 22 76<75 212 213 236> 260 72<306 380> -LayerCount: 2 -Fore -SplineSet -268 425 m 0 - 318 425 332 393 332 364 c 0 - 332 270 162 188 101 188 c 1 - 100 185 99 162 99 157 c 0 - 99 97 117 52 166 52 c 0 - 210 52 264 116 267 119 c 1 - 270 119 278 106 278 100 c 1 - 265 79 192 -6 130 -6 c 0 - 61 -6 22 45 22 136 c 0 - 22 281 156 425 268 425 c 0 -103 213 m 1 - 141 213 260 274 260 346 c 0 - 260 372 238 385 219 385 c 0 - 152 385 108 263 103 213 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" e.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: E -Encoding: 69 69 36 -Width: 541 -Flags: W -HStem: 0 29<-2 67 155 349> 309 32<210 361> 615 26<118 175 264 457> -VStem: 374 28<225 265> 493 28<511 577> -LayerCount: 2 -Back -SplineSet -407.2265625 615.234375 m 1 - 329.1015625 615.234375 l 2 - 289.713867188 615.234375 268.229492188 611.653320312 264.6484375 604.4921875 c 0 - 257.8125 590.8203125 251.301757812 567.3828125 245.1171875 534.1796875 c 1024 -EndSplineSet -Fore -SplineSet -228 642 m 0 - 313 642 422 648 521 648 c 1 - 518 599 521 560 521 516 c 1 - 518 513 511 511 504 511 c 0 - 497 511 493 513 493 518 c 0 - 488 596 455 615 407 615 c 2 - 329 615 l 2 - 318 615 270 614 265 604 c 0 - 257 588 250 560 245 534 c 2 - 209 347 l 2 - 208 342 227 341 247 341 c 2 - 295 341 l 2 - 382 341 380 347 408 411 c 0 - 410 416 417 418 424 418 c 0 - 431 418 436 416 438 413 c 1 - 402 229 l 1 - 400 227 394 225 387 225 c 0 - 380 225 375 227 374 232 c 0 - 371 288 368 295 361 301 c 0 - 352 308 301 309 267 309 c 0 - 242 309 201 309 199 300 c 2 - 161 106 l 2 - 158 91 149 44 154 39 c 0 - 164 29 179 29 217 29 c 2 - 260 29 l 2 - 310 29 350 39 381 60 c 0 - 407 78 433 106 457 158 c 0 - 459 162 465 164 472 164 c 0 - 481 164 491 161 493 158 c 1 - 466 105 427 39 412 -4 c 1 - 313 -4 225 0 104 0 c 0 - 61 0 30 -3 -5 -3 c 1 - -9 2 -5 20 0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 177 587 175 603 c 0 - 174 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 193 642 228 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: egrave -Encoding: 232 232 165 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 479 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" egrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Egrave -Encoding: 200 200 133 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 77 16 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/egrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/egrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/egrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/egrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: egrave.sc -Encoding: 65633 -1 488 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 488 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eight -Encoding: 56 56 23 -Width: 487 -Flags: W -HStem: -9 35<151 256> 594 34<262 348> -LayerCount: 2 -Fore -SplineSet -318 628 m 0 - 399 628 456 572 438 479 c 0 - 425 414 356 364 309 336 c 1 - 305 335 306 332 308 330 c 0 - 356 297 409 233 395 163 c 0 - 376 65 279 -9 188 -9 c 0 - 88 -9 31 55 50 150 c 0 - 67 236 158 287 198 311 c 0 - 201 313 202 315 200 316 c 0 - 167 340 123 397 137 469 c 0 - 154 552 238 628 318 628 c 0 -307 594 m 0 - 263 594 220 548 206 480 c 0 - 194 419 246 376 276 355 c 0 - 278 354 279 354 281 354 c 0 - 283 354 284 353 287 355 c 0 - 329 381 361 421 372 475 c 0 - 383 532 362 594 307 594 c 0 -196 26 m 0 - 256 26 302 69 315 135 c 0 - 331 216 240 280 229 288 c 0 - 227 289 227 290 224 290 c 0 - 223 290 221 290 220 289 c 0 - 163 255 134 215 122 153 c 0 - 106 73 148 26 196 26 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" eight.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" eight.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: eight.onum -Encoding: 65575 -1 426 -Width: 396 -Flags: W -HStem: -6 38<128 225> 573 38<193 279> -VStem: 28 70<59 201> 96 67<402 534> 159 96<298 334> 259 73<84 220> 306 64<415 547> -LayerCount: 2 -Fore -SplineSet -332 179 m 0xcc - 332 54 245 -6 156 -6 c 0 - 79 -6 28 51 28 128 c 0 - 28 208 109 280 158 305 c 0 - 160 306 159 307 159 308 c 0 - 159 309 159 310 159 311 c 0xec - 127 340 96 398 96 447 c 0 - 96 548 169 611 254 611 c 3 - 314 611 370 565 370 494 c 0xd2 - 370 410 306 356 258 324 c 0 - 256 323 255 322 255 321 c 0 - 255 320 255 319 256 318 c 0 - 294 280 332 234 332 179 c 0xcc -239 349 m 0 - 278 384 306 426 306 482 c 0 - 306 525 279 573 236 573 c 0 - 198 573 163 538 163 467 c 0xd2 - 163 423 200 376 226 347 c 0 - 228 345 229 345 231 345 c 0 - 234 345 236 347 239 349 c 0 -176 32 m 0 - 228 32 259 78 259 145 c 0 - 259 216 199 270 190 278 c 0 - 188 280 187 282 184 282 c 0 - 183 282 181 282 180 281 c 0 - 118 242 99 169 99 124 c 0xe4 - 99 67 134 32 176 32 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eight.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eight.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: eight.prop -Encoding: 65746 -1 854 -Width: 424 -Flags: HW -LayerCount: 2 -Fore -Refer: 23 56 N 1 0 0 1 -30 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ellipsis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ellipsis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ellipsis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ellipsis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: ellipsis -Encoding: 8230 8230 206 -Width: 664 -Flags: W -HStem: -14 113<27 94 259 326 488 556> -VStem: 9 105<6 81> 240 105<6 81> 470 106<7 82> -LayerCount: 2 -Fore -SplineSet -470 31 m 0 - 470 68 501 100 533 100 c 0 - 558 100 576 81 576 56 c 0 - 576 20 543 -14 511 -14 c 0 - 486 -14 470 6 470 31 c 0 -240 31 m 0 - 240 67 271 100 303 100 c 0 - 328 100 346 81 346 56 c 0 - 346 20 313 -14 281 -14 c 0 - 256 -14 240 6 240 31 c 0 -9 31 m 0 - 9 67 39 100 71 100 c 0 - 96 100 114 81 114 56 c 0 - 114 20 82 -14 50 -14 c 0 - 25 -14 9 6 9 31 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: emacron -Encoding: 275 275 314 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 484 13 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" emacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Emacron -Encoding: 274 274 313 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 289 -1 N 1 0 0 1 66 176 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: emacron.sc -Encoding: 65667 -1 522 -Width: 416 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 501 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emdash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emdash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/emdash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/emdash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: emdash -Encoding: 8212 8212 197 -Width: 781 -Flags: W -HStem: 195 61<58 709> -LayerCount: 2 -Fore -SplineSet -710 256 m 2 - 714 256 716 250 716 243 c 0 - 716 229 706 202 694 195 c 1 - 58 195 l 2 - 54 195 52 201 52 208 c 0 - 52 222 61 249 73 256 c 1 - 710 256 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/endash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/endash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/endash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/endash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: endash -Encoding: 8211 8211 196 -Width: 550 -Flags: W -HStem: 195 61<58 479> -LayerCount: 2 -Fore -SplineSet -479 256 m 2 - 483 256 485 250 485 243 c 0 - 485 229 476 202 464 195 c 1 - 58 195 l 2 - 54 195 52 201 52 208 c 0 - 52 222 61 249 73 256 c 1 - 479 256 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eng -Encoding: 331 331 415 -Width: 464 -Flags: W -HStem: -4 21G<68 82> 353 72<299 363> 371 54<93 155> -VStem: 109 73<244 397> 334 75<216 380> -LayerCount: 2 -Fore -SplineSet -352 44 m 2xd8 - 344 9 324 -65 282 -121 c 0 - 241 -175 180 -215 146 -229 c 1 - 142 -226 138 -217 138 -210 c 1 - 203 -173 253 -87 276 21 c 2 - 327 258 l 2 - 329 267 334 300 334 311 c 0 - 334 336 333 353 315 353 c 0xd8 - 279 353 158 241 135 119 c 0 - 126 72 120 47 110 0 c 1 - 96 -2 89 -4 75 -4 c 0 - 61 -4 55 -2 41 0 c 1 - 105 315 l 2 - 106 321 109 342 109 347 c 0 - 109 356 110 371 100 371 c 0 - 79 371 34 317 31 314 c 1 - 28 314 21 327 21 333 c 1 - 32 352 99 425 145 425 c 0xb8 - 166 425 183 403 183 374 c 0 - 183 366 180 343 175 322 c 2 - 157 240 l 1 - 170 264 284 425 349 425 c 0 - 394 425 409 400 409 360 c 0 - 409 330 403 287 396 254 c 2 - 352 44 l 2xd8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" eng.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Eng -Encoding: 330 330 412 -Width: 713 -Flags: W -HStem: -228 19<310 332> -3 28<-9 60 137 195> 619 28<112 174 553 610 686 756> -LayerCount: 2 -Fore -SplineSet -498 43 m 9 - 221 556 l 1 - 135 112 l 2 - 128 77 125 61 131 45 c 0 - 135 35 181 25 196 25 c 1 - 199 18 195 3 192 -3 c 1 - 156 -1 129 2 89 2 c 0 - 47 2 30 -1 -12 -3 c 1 - -14 2 -13 14 -6 25 c 1 - 5 25 59 33 68 45 c 0 - 79 60 84 74 91 111 c 2 - 173 535 l 2 - 180 572 182 587 177 602 c 0 - 173 614 121 621 110 621 c 1 - 107 632 111 644 115 649 c 1 - 156 647 179 645 209 645 c 0 - 236 645 265 645 278 646 c 1 - 309 568 469 313 540 162 c 1 - 612 532 l 2 - 619 567 622 584 616 600 c 0 - 612 610 566 619 551 619 c 1 - 548 626 552 641 555 647 c 1 - 591 645 618 643 658 643 c 0 - 700 643 716 645 758 647 c 1 - 760 642 760 630 753 619 c 1 - 742 619 687 612 678 600 c 0 - 667 585 663 570 656 533 c 2 - 575 113 l 2 - 525 -145 390 -228 312 -228 c 1 - 310 -225 309 -220 309 -215 c 0 - 309 -213 310 -209 310 -209 c 1 - 408 -179 470 -66 498 43 c 9 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eng.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eng.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eng.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eng.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: eng.sc -Encoding: 65696 -1 551 -Width: 518 -Flags: W -HStem: -151 41<192 271> -3 28<-0 51 101 143> 415 28<81 122 366 408 458 510> -LayerCount: 2 -Fore -SplineSet -335 31 m 1 - 158 361 l 1 - 104 83 l 2 - 99 60 97 49 101 38 c 0 - 103 31 137 25 146 25 c 1 - 148 19 144 2 141 -3 c 1 - 117 -1 94 1 67 1 c 0 - 39 1 23 -1 -5 -3 c 1 - -4 1 -1 15 1 25 c 1 - 8 25 46 30 52 38 c 0 - 59 48 60 58 65 82 c 2 - 119 357 l 2 - 124 381 125 391 122 401 c 0 - 119 409 84 415 77 415 c 1 - 79 425 81 439 82 443 c 1 - 110 441 129 438 150 438 c 0 - 169 438 190 439 199 440 c 1 - 218 387 314 225 363 135 c 1 - 406 355 l 2 - 411 378 412 389 408 400 c 0 - 406 407 372 413 363 413 c 1 - 361 419 365 436 368 441 c 1 - 392 439 413 438 440 438 c 0 - 468 438 486 439 514 441 c 1 - 513 437 511 423 509 413 c 1 - 502 413 463 408 457 400 c 0 - 450 390 448 380 443 355 c 2 - 389 74 l 2 - 363 -63 289 -151 199 -151 c 0 - 185 -151 169 -143 163 -136 c 1 - 161 -132 160 -124 161 -119 c 0 - 165 -97 179 -79 198 -79 c 0 - 208 -79 215 -88 222 -97 c 0 - 227 -104 234 -110 242 -110 c 0 - 259 -110 304 -83 335 31 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: eogonek -Encoding: 281 281 320 -Width: 354 -Flags: W -HStem: -225 58<54 127> -6 58<121 138> 188 24<103 144> 385 40<192 292> -VStem: 20 52<-166 -121> 22 76<75 212 213 236> 260 72<306 380> -LayerCount: 2 -Fore -SplineSet -103 213 m 1xf2 - 141 213 260 274 260 346 c 0 - 260 372 238 385 219 385 c 0 - 152 385 108 263 103 213 c 1xf2 -20 -176 m 0xfa - 19 -128 112 -29 138 -6 c 1 - 135 -6 133 -6 130 -6 c 0 - 61 -6 22 45 22 136 c 0xf6 - 22 281 156 425 268 425 c 0 - 318 425 332 393 332 364 c 0 - 332 270 162 188 101 188 c 1 - 100 185 99 162 99 157 c 0 - 99 97 117 52 166 52 c 0 - 210 52 264 116 267 119 c 1 - 270 119 278 106 278 100 c 1 - 273 91 259 74 238 53 c 0 - 184 0 71 -97 71 -136 c 0 - 71 -151 78 -167 102 -167 c 0 - 148 -167 177 -130 183 -130 c 0 - 191 -130 180 -156 177 -159 c 0 - 152 -187 109 -225 68 -225 c 0 - 39 -225 20 -202 20 -176 c 0xfa -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" eogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: Eogonek -Encoding: 280 280 319 -Width: 541 -Flags: W -HStem: -225 58<226 300> -3 32<-2 68 155 308> 309 32<210 361> 615 26<117 174 264 457> -VStem: 191 53<-189 -108> 374 28<225 265> 493 28<511 577> -LayerCount: 2 -Fore -SplineSet -412 -4 m 1 - 319 -4 244 -87 244 -136 c 0 - 244 -151 250 -167 274 -167 c 0 - 320 -167 349 -130 355 -130 c 0 - 363 -130 352 -156 349 -159 c 0 - 324 -187 282 -225 241 -225 c 0 - 212 -225 191 -202 191 -176 c 0 - 191 -124 253 -29 309 -3 c 1 - 248 -2 178 0 103 0 c 0 - 60 0 30 -3 -5 -3 c 1 - -9 2 -5 20 -0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 176 587 174 603 c 0 - 173 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 192 642 228 642 c 0 - 313 642 422 648 521 648 c 1 - 518 599 521 560 521 516 c 1 - 518 513 511 511 504 511 c 0 - 497 511 493 513 493 518 c 0 - 488 596 455 615 407 615 c 2 - 329 615 l 2 - 318 615 270 614 265 604 c 0 - 257 588 250 560 245 534 c 2 - 209 347 l 2 - 208 342 227 341 247 341 c 2 - 295 341 l 2 - 382 341 380 347 408 411 c 0 - 410 416 417 418 424 418 c 0 - 431 418 436 416 438 413 c 1 - 402 229 l 1 - 400 227 394 225 387 225 c 0 - 380 225 375 227 374 232 c 0 - 371 288 368 295 361 301 c 0 - 352 308 301 309 267 309 c 0 - 242 309 201 309 199 300 c 2 - 161 106 l 2 - 158 91 149 44 154 39 c 0 - 164 29 179 29 217 29 c 2 - 260 29 l 2 - 310 29 350 39 381 60 c 0 - 407 78 433 106 457 158 c 0 - 459 162 465 164 472 164 c 0 - 481 164 491 161 493 158 c 1 - 466 105 427 39 412 -4 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,60 +0,0 @@ -StartChar: eogonek.sc -Encoding: 65670 -1 525 -Width: 418 -Flags: W -HStem: -218 58<143 223> 0 32<4 53 126 243> 199 33<161 256> 404 31<195 333> 412 28<83 123> -VStem: 264 23<149 188> 288 23<254 284> 346 26<344 390> -LayerCount: 2 -Fore -SplineSet -165 436 m 0xf7 - 225 436 300 442 368 442 c 1 - 366 407 371 378 372 347 c 1 - 369 345 363 344 358 344 c 0 - 353 344 346 345 346 348 c 0 - 343 398 319 404 288 404 c 2 - 237 404 l 2xf7 - 230 404 198 403 195 397 c 0 - 190 387 186 370 183 353 c 2 - 160 236 l 2 - 159 233 172 232 185 232 c 2 - 216 232 l 2 - 272 232 269 236 288 279 c 0 - 289 282 295 284 300 284 c 0 - 305 284 310 282 312 279 c 1 - 287 151 l 1 - 285 150 279 149 274 149 c 0 - 269 149 265 151 264 154 c 1 - 262 188 260 190 256 194 c 0 - 251 198 216 199 194 199 c 0 - 178 199 153 199 152 193 c 2 - 130 80 l 2 - 128 71 123 41 126 38 c 0 - 133 32 142 32 167 32 c 2 - 198 32 l 2 - 227 32 255 36 275 47 c 0 - 297 59 312 82 327 108 c 0 - 328 110 333 111 337 111 c 0 - 343 111 351 110 352 108 c 1 - 333 72 306 25 296 -4 c 1 - 295 -4 294 -4 293 -4 c 0 - 253 -6 181 -76 173 -118 c 0 - 170 -133 170 -160 199 -160 c 0 - 242 -160 270 -123 275 -123 c 0 - 276 -123 279 -128 277 -136 c 0 - 276 -141 273 -149 270 -153 c 0 - 246 -181 205 -218 167 -218 c 0 - 119 -218 116 -169 121 -143 c 0 - 132 -90 206 -13 244 -3 c 1 - 194 -2 143 0 80 0 c 0 - 50 0 23 -3 -1 -3 c 1 - 0 1 3 21 4 25 c 1 - 11 25 50 29 53 36 c 0 - 58 47 60 64 64 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 86 412 79 412 c 1 - 80 416 84 436 85 440 c 1xef - 110 438 141 436 165 436 c 0xf7 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/equal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/equal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/equal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/equal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: equal -Encoding: 61 61 28 -Width: 546 -VWidth: 0 -Flags: W -HStem: 114 55<42 450> 253 55<70 477> -LayerCount: 2 -Fore -SplineSet -38 114 m 1 - 38 114 33 114 33 120 c 0 - 33 123 47 169 56 169 c 2 - 462 169 l 18 - 467 169 468 166 468 164 c 0 - 468 159 458 139 450 120 c 1 - 446 114 443 114 443 114 c 1 - 38 114 l 1 -65 253 m 1 - 65 253 62 253 62 259 c 0 - 62 260 74 308 83 308 c 2 - 488 308 l 2 - 493 308 494 305 494 303 c 0 - 494 298 486 278 478 259 c 0 - 475 253 470 253 470 253 c 1 - 65 253 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" equal.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/equal.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/equal.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/equal.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/equal.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: equal.sc -Encoding: 65585 -1 440 -Width: 433 -Flags: W -HStem: 142 49<53 346> 261 49<75 369> -VStem: 49 325 -LayerCount: 2 -Fore -SplineSet -352 187 m 0 - 350 179 347 166 339 146 c 0 - 337 141 334 142 334 142 c 1 - 49 142 l 1 - 49 142 44 141 46 150 c 0 - 47 154 51 166 60 187 c 0 - 62 192 64 190 64 190 c 1 - 349 190 l 2 - 352 190 353 193 352 187 c 0 -70 270 m 1 - 70 270 80 310 87 310 c 2 - 374 310 l 2 - 375 310 376 310 375 306 c 0 - 373 298 371 286 363 266 c 0 - 361 261 358 261 358 261 c 1 - 73 261 l 1 - 73 261 68 261 70 270 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/e.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/e.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/e.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/e.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: e.sc -Encoding: 65593 -1 448 -Width: 416 -Flags: W -HStem: 0 32<4 52 126 272> 199 33<160 253> 404 31<195 331> 412 28<81 123> -VStem: 261 23<149 187> 286 24<253 284> 344 25<344 389> -LayerCount: 2 -Fore -SplineSet -164 436 m 0xee - 224 436 299 442 366 442 c 1 - 364 407 369 378 370 347 c 1 - 367 345 361 344 356 344 c 0 - 351 344 344 345 344 348 c 0 - 341 398 317 404 286 404 c 2 - 236 404 l 0xee - 229 404 198 403 195 397 c 0 - 190 387 185 370 182 353 c 2 - 160 236 l 2 - 159 233 171 232 184 232 c 2 - 214 232 l 2 - 269 232 267 236 286 279 c 0 - 287 282 292 284 297 284 c 0 - 302 284 308 282 310 279 c 1 - 285 151 l 1 - 283 150 277 149 272 149 c 0 - 267 149 262 151 261 154 c 0 - 259 188 258 190 254 194 c 0 - 249 198 215 199 194 199 c 0 - 178 199 153 199 152 193 c 2 - 130 80 l 2 - 128 71 123 41 126 38 c 0 - 133 32 142 32 167 32 c 2 - 196 32 l 2 - 224 32 254 36 273 47 c 0 - 295 59 310 82 325 108 c 0 - 326 110 331 111 335 111 c 0 - 341 111 348 110 349 108 c 1 - 330 72 304 25 294 -4 c 1 - 226 -4 165 0 80 0 c 0 - 51 0 23 -3 -1 -3 c 1 - -3 2 0 19 4 25 c 1 - 11 25 49 29 52 36 c 0 - 57 47 60 64 64 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 86 412 79 412 c 1 - 78 420 80 435 85 440 c 1xde - 110 438 140 436 164 436 c 0xee -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,62 +0,0 @@ -StartChar: eth -Encoding: 240 240 173 -Width: 426 -VWidth: 0 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -5 31<141 212> 394 31<203 278> 656 16<135 152> -VStem: 38 76<48 240> 306 73<416 476> -LayerCount: 2 -Back -SplineSet -246.09375 393.5546875 m 0 - 226.5625 393.5546875 208.251953125 385.7421875 191.162109375 370.1171875 c 0 - 174.072265625 354.4921875 160.075195312 334.635742188 149.169921875 310.546875 c 0 - 138.264648438 286.458007812 129.719726562 260.661132812 123.53515625 233.154296875 c 0 - 117.350585938 205.647460938 114.2578125 179.362304688 114.2578125 154.296875 c 0 - 114.2578125 114.909179688 119.140625 83.740234375 128.90625 60.791015625 c 0 - 138.671875 37.841796875 152.34375 26.3671875 169.921875 26.3671875 c 0 - 189.127929688 26.3671875 207.112304688 34.2607421875 223.876953125 50.048828125 c 0 - 240.641601562 65.8369140625 254.231445312 85.8564453125 264.6484375 110.107421875 c 0 - 275.065429688 134.358398438 283.203125 160.237304688 289.0625 187.744140625 c 0 - 294.921875 215.250976562 297.8515625 241.536132812 297.8515625 266.6015625 c 0 - 297.8515625 306.640625 293.538085938 337.809570312 284.912109375 360.107421875 c 0 - 276.286132812 382.405273438 263.346679688 393.5546875 246.09375 393.5546875 c 0 -259.765625 424.8046875 m 0 - 297.526367188 424.8046875 326.008789062 411.865234375 345.21484375 385.986328125 c 0 - 364.420898438 360.107421875 374.0234375 325.1953125 374.0234375 281.25 c 0 - 374.0234375 247.721679688 367.594726562 213.623046875 354.736328125 178.955078125 c 0 - 341.877929688 144.287109375 325.276367188 113.525390625 304.931640625 86.669921875 c 0 - 284.586914062 59.814453125 260.7421875 37.841796875 233.3984375 20.751953125 c 0 - 206.0546875 3.662109375 178.7109375 -4.8828125 151.3671875 -4.8828125 c 0 - 113.606445312 -4.8828125 85.2861328125 7.4873046875 66.40625 32.2265625 c 0 - 47.5263671875 56.9658203125 38.0859375 91.1455078125 38.0859375 134.765625 c 0 - 38.0859375 168.293945312 44.43359375 202.555664062 57.12890625 237.548828125 c 0 - 69.82421875 272.541992188 86.3447265625 303.7109375 106.689453125 331.0546875 c 0 - 127.034179688 358.3984375 150.797851562 380.859375 177.978515625 398.4375 c 0 - 205.159179688 416.015625 232.421875 424.8046875 259.765625 424.8046875 c 0 -EndSplineSet -Fore -SplineSet -152 497 m 17 - 146 502 139 520 144 528 c 9 - 384 688 l 17 - 390 682 397 662 394 657 c 9 - 152 497 l 17 -253 425 m 0 - 274 425 294 423 306 416 c 1 - 308 494 249 627 132 656 c 1 - 133 663 138 672 145 672 c 1 - 302 646 379 497 379 345 c 0 - 379 131 259 -5 149 -5 c 0 - 62 -5 38 71 38 137 c 0 - 38 244 129 425 253 425 c 0 -245 394 m 0 - 182 394 114 285 114 154 c 0 - 114 109 122 26 171 26 c 0 - 233 26 298 132 298 267 c 0 - 298 293 297 332 295 345 c 0 - 291 371 267 394 245 394 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" eth.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: Eth -Encoding: 208 208 141 -Width: 667 -Flags: W -HStem: -3 28<-3 66 156 315> 306 35<70 402> 616 25<118 176 264 414> -LayerCount: 2 -Fore -SplineSet -78 341 m 1 - 105 341 387 341 400 341 c 0 - 404 341 406 337 405 333 c 0 - 404 328 400 313 395 306 c 1 - 368 306 85 306 72 306 c 0 - 68 306 68 312 69 316 c 0 - 70 321 71 334 78 341 c 1 -EndSplineSet -Refer: 35 68 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eth.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eth.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/eth.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/eth.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: eth.sc -Encoding: 65641 -1 496 -Width: 495 -Flags: W -HStem: -3 30<3 52 127 240> 208 26<56 279> 407 29<81 123 198 300> -LayerCount: 2 -Fore -SplineSet -275 208 m 1 - 253 208 65 208 54 208 c 1 - 51 208 54 227 61 234 c 1 - 83 234 270 234 281 234 c 1 - 284 234 280 215 275 208 c 1 -EndSplineSet -Refer: 447 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Euro.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Euro.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Euro.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Euro.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: Euro -Encoding: 8364 8364 214 -Width: 603 -Flags: W -HStem: -8 33<277 419> 236 38<30 371> 332 38<45 386> 586 33<340 475> -VStem: 79 89<148 325> 541 30<451 521> -LayerCount: 2 -Fore -SplineSet -412 586 m 0 - 284 586 166 464 167 262 c 0 - 167 151 225 26 348 26 c 0 - 395 26 433 46 463 73 c 0 - 493 100 514 132 527 160 c 1 - 538 160 551 153 551 153 c 1 - 548 134 502 37 489 26 c 1 - 442 0 396 -8 325 -8 c 0 - 192 -8 79 109 79 246 c 0 - 79 480 265 622 436 618 c 0 - 484 617 538 605 580 594 c 1 - 578 561 573 486 571 458 c 0 - 571 451 564 451 561 451 c 0 - 558 451 545 451 541 458 c 1 - 545 532 481 586 412 586 c 0 -46 332 m 2 - 43 332 42 336 42 340 c 0 - 42 347 48 364 55 370 c 1 - 385 370 l 2 - 387 370 388 366 388 362 c 0 - 388 357 385 341 376 332 c 1 - 46 332 l 2 -31 236 m 2 - 28 236 27 240 27 244 c 0 - 27 251 33 268 40 274 c 1 - 370 274 l 2 - 372 274 373 271 373 267 c 0 - 373 262 370 245 361 236 c 1 - 31 236 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: exclamdown -Encoding: 161 161 95 -Width: 198 -VWidth: 0 -Flags: W -HStem: 316 113<89 156> -VStem: -36 89<-247 -121> 69 105<334 410> -LayerCount: 2 -Fore -SplineSet -0 -263 m 19 - -24 -263 -36 -242 -36 -218 c 0 - -36 -194 -31 -188 80 250 c 0 - 83 262 90 274 96 271 c 0 - 109 264 112 261 112 251 c 1 - 112 251 54 -194 53 -201 c 0 - 47 -231 28 -263 0 -263 c 19 -69 360 m 0 - 69 396 101 430 133 430 c 0 - 158 430 175 409 175 384 c 0 - 175 347 143 316 111 316 c 0 - 86 316 69 335 69 360 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" exclamdown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclamdown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: exclamdown.sc -Encoding: 65623 -1 478 -Width: 225 -Flags: W -HStem: -9 21G<46 71> 328 99<103 168> -VStem: 29 77<-1 101> 90 91<341 414> -LayerCount: 2 -Fore -SplineSet -59 -9 m 0xe0 - 35 -9 25 10 29 30 c 0 - 32 48 59 117 102 279 c 0 - 105 292 109 294 127 300 c 0 - 133 303 135 294 134 286 c 0 - 113 94 112 62 106 30 c 0 - 102 10 84 -9 59 -9 c 0xe0 -181 377 m 0xd0 - 176 350 151 328 126 328 c 0 - 101 328 85 350 90 377 c 0 - 95 404 119 427 144 427 c 0 - 169 427 186 404 181 377 c 0xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclam.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclam.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclam.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclam.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: exclam -Encoding: 33 33 0 -Width: 228 -VWidth: 0 -Flags: W -HStem: -14 113<36 109> -VStem: 20 106<3 83> 130 88<481 600> -LayerCount: 2 -Fore -SplineSet -20 35 m 27 - 20 71 48 100 84 100 c 27 - 107 100 126 78 126 55 c 27 - 126 18 99 -14 62 -14 c 27 - 37 -14 20 10 20 35 c 27 -188 616 m 3 - 209 616 218 595 218 574 c 3 - 218 548 156 344 111 166 c 0 - 108 152 88 145 84 145 c 3 - 79 145 78 155 78 162 c 3 - 78 166 109 418 130 563 c 0 - 133 582 157 616 188 616 c 3 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" exclam.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclam.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclam.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/exclam.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/exclam.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: exclam.sc -Encoding: 65577 -1 432 -Width: 225 -Flags: W -HStem: -9 99<38 103> 407 20G<135 160> -VStem: 25 91<4 77> 100 77<317 419> -LayerCount: 2 -Fore -SplineSet -147 427 m 0xd0 - 171 427 181 408 177 388 c 0 - 174 370 146 301 103 139 c 0 - 100 126 97 124 79 118 c 0 - 73 115 71 124 72 132 c 0 - 93 324 94 356 100 388 c 0 - 104 408 122 427 147 427 c 0xd0 -25 41 m 0xe0 - 30 68 55 90 80 90 c 0 - 105 90 121 68 116 41 c 0 - 111 14 86 -9 61 -9 c 0 - 36 -9 20 14 25 41 c 0xe0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: f_b -Encoding: 65541 -1 239 -Width: 706 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 32<405 476> 353 45<46 102 185 301> 371 54<533 613> 646 37<275 381> 658 20G<498 505> -VStem: 587 72<198 366> -LayerCount: 2 -Fore -SplineSet -549 371 m 0xd2 - 507 371 417 259 396 152 c 0 - 380 73 394 26 440 26 c 0 - 522 26 587 216 587 295 c 0 - 587 331 583 371 549 371 c 0xd2 -405 546 m 2 - 406 551 410 571 410 575 c 0 - 410 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xea - 392 683 420 662 432 662 c 0 - 453 662 493 678 503 678 c 1xc6 - 508 678 508 666 508 662 c 9 - 508 662 491 630 480 577 c 2 - 420 278 l 1 - 488 392 560 425 591 425 c 0 - 636 425 659 381 659 314 c 0 - 659 138 517 -6 413 -6 c 0 - 358 -6 322 36 322 108 c 0 - 322 118 326 142 328 154 c 2 - 405 546 l 2 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f b -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,84 +0,0 @@ -StartChar: f_f_b -Encoding: 65542 -1 240 -Width: 961 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 32<659 730> 353 45<46 101 185 351 440 556> 371 54<787 867> 630 37<289 397> 646 37<529 636> 658 20G<753 760> -VStem: 841 72<198 366> -LayerCount: 2 -Fore -SplineSet -803 371 m 0x2880 - 761 371 670 259 649 152 c 0 - 633 73 648 26 694 26 c 0 - 776 26 841 216 841 295 c 0 - 841 331 837 371 803 371 c 0x2880 -665 575 m 0 - 664 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x7280 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb480 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x2280 - 647 683 675 662 687 662 c 0 - 708 662 748 678 758 678 c 1x2180 - 763 678 763 666 763 662 c 9 - 763 662 745 631 734 577 c 2 - 674 278 l 1 - 742 392 814 425 845 425 c 0 - 890 425 913 381 913 314 c 0 - 913 138 771 -6 667 -6 c 0 - 612 -6 576 36 576 108 c 0 - 576 118 580 142 582 154 c 2 - 659 546 l 2 - 660 551 664 571 665 575 c 0 -133 -173 m 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0 -342 630 m 0x3480 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x3480 -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f b -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ff2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ff2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ff2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ff2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: f.ff2 -Encoding: 65751 -1 871 -Width: 289 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet --178 -110 m 0 - -171 -125 -163 -138 -153 -146 c 0 - -140 -156 -124 -161 -103 -161 c 0 - -65 -161 -33 -144 -9 -110 c 128 - 15 -76 35 -19 52 59 c 1 - 102 346 l 2 - 103 351 102 353 99 353 c 2 - 22 353 l 25 - 22 397 l 25 - 108 397 l 2 - 111 397 113 400 114 406 c 0 - 120 435 127 466 138 498 c 0 - 149 531 159 555 168 570 c 0 - 196 620 231 653 272 669 c 0 - 296 678 318 683 337 683 c 0 - 379 683 405 671 417 649 c 1 - 417 607 405 586 382 586 c 0 - 375 586 368 589 361 595 c 128 - 354 601 349 609 344 616 c 128 - 339 623 334 630 327 636 c 128 - 320 642 314 646 307 646 c 0 - 294 646 280 640 268 630 c 128 - 256 620 246 606 237 588 c 0 - 228 569 219 551 213 534 c 0 - 202 504 192 461 181 403 c 0 - 180 399 181 397 184 397 c 2 - 296 397 l 2 - 299 397 301 394 301 386 c 0 - 301 375 297 364 290 353 c 1 - 176 353 l 2 - 173 353 171 350 170 345 c 2 - 128 104 l 1 - 119 58 106 16 89 -22 c 128 - 72 -60 54 -90 35 -114 c 128 - 16 -138 -4 -158 -25 -174 c 128 - -46 -190 -66 -202 -83 -209 c 128 - -100 -216 -116 -219 -130 -219 c 0 - -153 -219 -172 -213 -188 -203 c 0 - -204 -193 -215 -182 -223 -171 c 8 - -230 -160 -233 -151 -228 -145 c 18 - -202 -110 l 26 - -192 -97 -184 -97 -178 -110 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ -StartChar: f.ff -Encoding: 65750 -1 870 -Width: 251 -VWidth: 0 -Flags: HW -LayerCount: 2 -Back -SplineSet -73.73046875 -110.3515625 m 0 - 80.2412109375 -125.48828125 88.623046875 -137.20703125 98.876953125 -145.5078125 c 0 - 111.588867188 -155.924804688 128.434570312 -161.1328125 149.4140625 -161.1328125 c 0 - 187.5 -161.1328125 218.586914062 -144.124023438 242.67578125 -110.107421875 c 128 - 266.764648438 -76.0908203125 287.109375 -19.8564453125 303.7109375 58.59375 c 1 - 353.515625 345.703125 l 2 - 354.306640625 350.260742188 353.330078125 352.5390625 350.5859375 352.5390625 c 2 - 274.4140625 352.5390625 l 25 - 274.4140625 397.4609375 l 25 - 360.3515625 397.4609375 l 2 - 362.956054688 397.4609375 364.909179688 400.390625 366.2109375 406.25 c 0 - 371.745117188 435.546875 379.801757812 466.064453125 390.380859375 497.802734375 c 0 - 401.44140625 530.983398438 411.288085938 555.153320312 419.921875 570.3125 c 0 - 448.293945312 620.127929688 482.961914062 652.923828125 523.92578125 668.701171875 c 0 - 548.014648438 677.978515625 569.661132812 682.6171875 588.8671875 682.6171875 c 0 - 630.534179688 682.6171875 657.2265625 671.549804688 668.9453125 649.4140625 c 1 - 668.9453125 607.096679688 657.2265625 585.9375 633.7890625 585.9375 c 0 - 626.627929688 585.9375 619.709960938 589.030273438 613.037109375 595.21484375 c 128 - 606.364257812 601.399414062 600.749023438 608.235351562 596.19140625 615.72265625 c 128 - 591.633789062 623.209960938 586.018554688 630.045898438 579.345703125 636.23046875 c 128 - 572.672851562 642.415039062 565.754882812 645.5078125 558.59375 645.5078125 c 0 - 545.247070312 645.5078125 532.470703125 640.299804688 520.263671875 629.8828125 c 128 - 508.056640625 619.465820312 497.55859375 605.387695312 488.76953125 587.646484375 c 0 - 479.522460938 568.981445312 471.709960938 551.159179688 465.33203125 534.1796875 c 0 - 454.534179688 504.618164062 443.62890625 460.998046875 432.6171875 403.3203125 c 0 - 431.87109375 399.4140625 432.84765625 397.4609375 435.546875 397.4609375 c 2 - 547.8515625 397.4609375 l 2 - 551.106445312 397.4609375 552.734375 393.5546875 552.734375 385.7421875 c 0 - 552.734375 375 549.153320312 363.932617188 541.9921875 352.5390625 c 1 - 427.734375 352.5390625 l 2 - 424.734375 352.5390625 422.78125 349.934570312 421.875 344.7265625 c 2 - 379.8828125 103.515625 l 1 - 371.09375 57.9423828125 358.235351562 16.1943359375 341.30859375 -21.728515625 c 128 - 324.381835938 -59.6513671875 306.396484375 -90.4130859375 287.353515625 -114.013671875 c 128 - 268.310546875 -137.614257812 248.127929688 -157.633789062 226.806640625 -174.072265625 c 128 - 205.485351562 -190.510742188 186.116210938 -202.067382812 168.701171875 -208.740234375 c 128 - 151.286132812 -215.413085938 135.7421875 -218.75 122.0703125 -218.75 c 0 - 99.2841796875 -218.75 79.9150390625 -213.541992188 63.96484375 -203.125 c 0 - 47.943359375 -192.662109375 36.1181640625 -181.859375 28.486328125 -170.717773438 c 8 - 21.01171875 -159.802734375 19.572265625 -151.237304688 24.169921875 -145.01953125 c 18 - 49.8046875 -110.3515625 l 26 - 59.7666015625 -96.8779296875 67.7421875 -96.8779296875 73.73046875 -110.3515625 c 0 -EndSplineSet -Fore -SplineSet -456 570 m 0 - 434 544 422 546 421 575 c 0 - 420 589 412 602 394 614 c 0 - 379 624 362 630 342 630 c 0 - 307 630 276 613 247 578 c 0 - 218 543 197 484 183 403 c 0 - 182 399 184 397 187 397 c 2 - 297 397 l 25 - 297 353 l 25 - 178 353 l 2 - 175 353 173 350 172 345 c 2 - 118 42 l 0 - 91 -96 43 -181 -28 -213 c 0 - -49 -223 -71 -228 -91 -228 c 0 - -130 -228 -157 -214 -172 -187 c 1 - -172 -172 -169 -158 -162 -146 c 128 - -155 -134 -146 -128 -133 -128 c 0 - -122 -128 -112 -135 -105 -149 c 0 - -97 -165 -90 -176 -82 -182 c 0 - -76 -186 -70 -188 -62 -188 c 0 - -48 -188 -33 -177 -18 -156 c 0 - -2 -135 11 -110 21 -83 c 0 - 33 -53 44 -11 52 45 c 0 - 104 346 l 1 - 105 351 104 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 361 40 370 51 381 c 128 - 62 392 72 397 82 397 c 2 - 110 397 l 2 - 113 397 115 400 116 406 c 0 - 131 482 164 545 214 594 c 128 - 264 643 313 667 362 667 c 0 - 386 667 409 664 429 658 c 0 - 451 651 467 642 477 631 c 0 - 488 619 481 599 456 570 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ffi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ffi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.ffi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.ffi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,97 +0,0 @@ -StartChar: f.ffi -Encoding: 65754 -1 874 -Width: 237 -VWidth: 0 -Flags: HW -LayerCount: 2 -Back -SplineSet --178.22265625 -110.3515625 m 0 - -171.711914062 -125.48828125 -163.330078125 -137.20703125 -153.076171875 -145.5078125 c 0 - -140.364257812 -155.924804688 -123.518554688 -161.1328125 -102.5390625 -161.1328125 c 0 - -64.453125 -161.1328125 -33.3662109375 -144.124023438 -9.27734375 -110.107421875 c 128 - 14.8115234375 -76.0908203125 35.15625 -19.8564453125 51.7578125 58.59375 c 1 - 101.5625 345.703125 l 2 - 102.353515625 350.260742188 101.376953125 352.5390625 98.6328125 352.5390625 c 2 - 22.4609375 352.5390625 l 25 - 22.4609375 397.4609375 l 25 - 108.3984375 397.4609375 l 2 - 111.002929688 397.4609375 112.956054688 400.390625 114.2578125 406.25 c 0 - 119.791992188 435.546875 127.848632812 466.064453125 138.427734375 497.802734375 c 0 - 149.48828125 530.983398438 159.334960938 555.153320312 167.96875 570.3125 c 0 - 196.340820312 620.127929688 231.008789062 652.923828125 271.97265625 668.701171875 c 0 - 296.061523438 677.978515625 317.708007812 682.6171875 336.9140625 682.6171875 c 0 - 378.581054688 682.6171875 405.2734375 671.549804688 416.9921875 649.4140625 c 1 - 416.9921875 607.096679688 405.2734375 585.9375 381.8359375 585.9375 c 0 - 374.674804688 585.9375 367.756835938 589.030273438 361.083984375 595.21484375 c 128 - 354.411132812 601.399414062 348.795898438 608.235351562 344.23828125 615.72265625 c 128 - 339.680664062 623.209960938 334.065429688 630.045898438 327.392578125 636.23046875 c 128 - 320.719726562 642.415039062 313.801757812 645.5078125 306.640625 645.5078125 c 0 - 293.293945312 645.5078125 280.517578125 640.299804688 268.310546875 629.8828125 c 128 - 256.103515625 619.465820312 245.60546875 605.387695312 236.81640625 587.646484375 c 0 - 227.569335938 568.981445312 219.756835938 551.159179688 213.37890625 534.1796875 c 0 - 202.581054688 504.618164062 191.67578125 460.998046875 180.6640625 403.3203125 c 0 - 179.91796875 399.4140625 180.89453125 397.4609375 183.59375 397.4609375 c 2 - 295.8984375 397.4609375 l 2 - 299.153320312 397.4609375 300.78125 393.5546875 300.78125 385.7421875 c 0 - 300.78125 375 297.200195312 363.932617188 290.0390625 352.5390625 c 1 - 175.78125 352.5390625 l 2 - 172.78125 352.5390625 170.828125 349.934570312 169.921875 344.7265625 c 2 - 127.9296875 103.515625 l 1 - 119.140625 57.9423828125 106.282226562 16.1943359375 89.35546875 -21.728515625 c 128 - 72.4287109375 -59.6513671875 54.443359375 -90.4130859375 35.400390625 -114.013671875 c 128 - 16.357421875 -137.614257812 -3.8251953125 -157.633789062 -25.146484375 -174.072265625 c 128 - -46.4677734375 -190.510742188 -65.8369140625 -202.067382812 -83.251953125 -208.740234375 c 128 - -100.666992188 -215.413085938 -116.2109375 -218.75 -129.8828125 -218.75 c 0 - -152.668945312 -218.75 -172.038085938 -213.541992188 -187.98828125 -203.125 c 0 - -204.009765625 -192.662109375 -215.834960938 -181.859375 -223.466796875 -170.717773438 c 8 - -230.94140625 -159.802734375 -232.380859375 -151.237304688 -227.783203125 -145.01953125 c 18 - -202.1484375 -110.3515625 l 26 - -192.186523438 -96.8779296875 -184.2109375 -96.8779296875 -178.22265625 -110.3515625 c 0 -EndSplineSet -Fore -SplineSet -22 397 m 25 - 109 397 l 2 - 112 397 114 400 115 406 c 1 - 128 486 156 552 199 604 c 128 - 242 656 288 683 337 683 c 0 - 361 683 378 681 390 676 c 128 - 402 671 414 663 426 652 c 128 - 438 641 447 628 453 615 c 1 - 453 599 449 585 441 572 c 128 - 433 559 423 553 409 553 c 0 - 404 553 399 554 395 556 c 0 - 387 560 376 573 363 596 c 1 - 345 629 326 646 305 646 c 128 - 284 646 263 627 241 591 c 0 - 217 550 199 500 188 439 c 0 - 187 435 187 430 185 422 c 128 - 183 414 182 408 181 403 c 1 - 181 399 182 397 184 397 c 0 - 208 397 231 398 251 399 c 1 - 251 356 l 1 - 241 355 224 355 200 354 c 2 - 176 353 l 2 - 173 353 171 350 170 345 c 2 - 126 103 l 2 - 118 59 105 17 89 -22 c 0 - 74 -58 55 -89 35 -114 c 0 - 16 -138 -4 -158 -25 -174 c 128 - -46 -190 -66 -202 -83 -209 c 128 - -100 -216 -116 -219 -130 -219 c 0 - -153 -219 -172 -213 -188 -203 c 0 - -204 -193 -215 -182 -223 -171 c 0 - -230 -160 -233 -151 -228 -145 c 2 - -202 -110 l 2 - -192 -97 -184 -97 -178 -110 c 0 - -171 -125 -163 -138 -153 -146 c 0 - -140 -156 -124 -161 -103 -161 c 0 - -67 -161 -35 -144 -9 -110 c 0 - 18 -75 37 -23 49 46 c 2 - 102 346 l 1 - 102 351 101 353 99 353 c 2 - 22 353 l 25 - 22 397 l 25 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,68 +0,0 @@ -StartChar: f_f -Encoding: 65536 -1 234 -Width: 541 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 58<92 192> 353 45<46 101 185 351 435 551> 630 37<289 397> 646 37<519 615> -LayerCount: 2 -Fore -SplineSet -362 667 m 0xb0 - 415 667 456 651 470 638 c 1 - 493 660 550 683 589 683 c 0 - 642 683 661 664 669 649 c 1 - 669 618 662 586 634 586 c 0 - 602 586 591 646 559 646 c 0 - 474 646 437 427 433 403 c 0 - 433 401 l 0 - 433 399 434 397 436 397 c 2 - 548 397 l 2 - 552 397 553 391 553 386 c 27 - 553 372 547 361 542 353 c 1 - 428 353 l 2 - 425 353 423 353 422 345 c 2 - 380 104 l 0 - 333 -136 185 -219 122 -219 c 0x68 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb0 -149 -161 m 0 - 224 -161 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 107 -161 149 -161 c 0 -342 630 m 0x30 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x30 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,93 +0,0 @@ -StartChar: f_f_h -Encoding: 65546 -1 244 -Width: 989 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 54<818 881> 353 72<816 873> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<759 766> -VStem: 796 73<21 167> 844 75<217 379> -LayerCount: 2 -Fore -SplineSet -687 662 m 0x2240 - 708 662 754 678 764 678 c 1 - 769 678 769 666 769 662 c 9 - 769 662 749 631 738 577 c 2 - 688 322 l 1 - 671 232 l 1 - 684 256 801 425 865 425 c 0 - 903 425 919 397 919 360 c 0x3140 - 919 327 913 291 905 254 c 2 - 873 104 l 2 - 872 100 869 77 869 72 c 0 - 869 63 869 48 879 48 c 0 - 900 48 944 101 947 104 c 1 - 950 104 957 92 957 86 c 1 - 946 67 875 -6 829 -6 c 0 - 808 -6 796 16 796 45 c 0x3180 - 796 53 798 76 803 97 c 2 - 837 258 l 2 - 839 267 844 300 844 311 c 0 - 844 333 842 353 825 353 c 0x3140 - 790 353 672 230 650 116 c 0 - 644 86 636 45 626 0 c 1 - 616 -3 601 -4 591 -4 c 0 - 581 -4 570 -3 558 0 c 1 - 663 546 l 2 - 664 551 667 571 667 575 c 3 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x6a40 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xac40 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0 - 647 683 675 662 687 662 c 0x2240 -133 -173 m 0x68 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0x68 -342 630 m 0x2c - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x2c -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ -StartChar: f_f_i -Encoding: 65538 -1 236 -Width: 762 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 54<572 634> 353 45<46 101 185 351 435 599> 630 37<289 397> 646 37<520 598> -VStem: 549 73<21 162> -LayerCount: 2 -Fore -SplineSet -576 357 m 0x36 - 428 353 l 2 - 425 353 423 353 422 345 c 2 - 380 104 l 0 - 333 -136 185 -219 122 -219 c 0x76 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xba - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0 - 647 683 663 670 678 656 c 0 - 694 641 703 629 709 615 c 1 - 709 588 695 553 665 553 c 27 - 644 553 634 570 623 589 c 0 - 609 613 595 646 559 646 c 0 - 475 646 437 427 433 403 c 0 - 433 401 l 0 - 433 399 434 397 436 397 c 2 - 578 402 l 0 - 599 404 668 408 670 408 c 3 - 674 408 684 401 684 392 c 3 - 684 387 681 343 676 322 c 2 - 626 104 l 2 - 624 94 622 77 622 72 c 0 - 622 63 622 48 632 48 c 0 - 653 48 697 101 700 104 c 1 - 703 104 710 92 710 86 c 1 - 699 67 628 -6 582 -6 c 0 - 561 -6 549 16 549 45 c 0 - 549 53 551 76 556 97 c 2 - 599 286 l 2 - 600 293 602 308 602 313 c 0 - 602 334 595 357 576 357 c 0x36 -74 -113 m 0 - 78 -133 91 -173 133 -173 c 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 -342 630 m 0x3a - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x3a -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f i -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,142 +0,0 @@ -StartChar: f.fi -Encoding: 65752 -1 872 -Width: 239 -VWidth: 0 -Flags: HW -LayerCount: 2 -Back -SplineSet -420.8984375 322.265625 m 2 - 371.09375 103.515625 l 1 - 368.489257812 90.4951171875 367.1875 80.078125 367.1875 72.265625 c 0 - 367.1875 55.9892578125 370.442382812 47.8515625 376.953125 47.8515625 c 0 - 380.208007812 47.8515625 384.196289062 49.2353515625 388.916015625 52.001953125 c 128 - 393.635742188 54.7685546875 398.356445312 58.10546875 403.076171875 62.01171875 c 128 - 407.795898438 65.91796875 412.678710938 70.3125 417.724609375 75.1953125 c 128 - 422.770507812 80.078125 427.083007812 84.47265625 430.6640625 88.37890625 c 128 - 434.245117188 92.28515625 437.581054688 95.947265625 440.673828125 99.365234375 c 2 - 445.3125 104.4921875 l 1 - 446.940429688 104.4921875 448.974609375 102.131835938 451.416015625 97.412109375 c 128 - 453.857421875 92.6923828125 455.078125 88.8671875 455.078125 85.9375 c 1 - 446.940429688 72.265625 428.629882812 53.5478515625 400.146484375 29.78515625 c 128 - 371.663085938 6.0224609375 347.331054688 -5.859375 327.1484375 -5.859375 c 0 - 317.057617188 -5.859375 309.000976562 -1.1396484375 302.978515625 8.30078125 c 128 - 296.956054688 17.7412109375 293.9453125 29.9482421875 293.9453125 44.921875 c 0 - 293.9453125 60.2216796875 296.223632812 77.4736328125 300.78125 96.6796875 c 2 - 343.75 286.1328125 l 1 - 345.703125 299.8046875 346.6796875 308.918945312 346.6796875 313.4765625 c 0 - 346.6796875 325.520507812 344.563476562 335.856445312 340.33203125 344.482421875 c 128 - 336.100585938 353.108398438 329.752929688 357.421875 321.2890625 357.421875 c 0 - 304.6875 357.421875 284.423828125 357.014648438 260.498046875 356.201171875 c 128 - 236.572265625 355.387695312 216.796875 354.573242188 201.171875 353.759765625 c 2 - 177.734375 352.5390625 l 2 - 176.432617188 352.5390625 175.537109375 352.458007812 175.048828125 352.294921875 c 128 - 174.560546875 352.131835938 173.991210938 351.481445312 173.33984375 350.341796875 c 128 - 172.688476562 349.202148438 172.200195312 347.331054688 171.875 344.7265625 c 2 - 118.1640625 52.734375 l 1 - 110.026367188 6.5107421875 98.388671875 -34.7490234375 83.251953125 -71.044921875 c 128 - 68.115234375 -107.340820312 51.025390625 -136.555664062 31.982421875 -158.69140625 c 128 - 12.939453125 -180.827148438 -7.1611328125 -197.509765625 -28.3203125 -208.740234375 c 128 - -49.4794921875 -219.970703125 -70.9638671875 -225.5859375 -92.7734375 -225.5859375 c 0 - -115.234375 -225.5859375 -133.137695312 -221.435546875 -146.484375 -213.134765625 c 128 - -159.831054688 -204.833984375 -168.293945312 -195.637695312 -171.875 -185.546875 c 1 - -172.526367188 -170.573242188 -168.864257812 -157.2265625 -160.888671875 -145.5078125 c 128 - -152.913085938 -133.7890625 -143.229492188 -127.9296875 -131.8359375 -127.9296875 c 0 - -125.9765625 -127.9296875 -120.361328125 -131.022460938 -114.990234375 -137.20703125 c 128 - -109.619140625 -143.391601562 -104.98046875 -150.227539062 -101.07421875 -157.71484375 c 128 - -97.16796875 -165.202148438 -91.552734375 -172.038085938 -84.228515625 -178.22265625 c 128 - -76.904296875 -184.407226562 -68.6845703125 -187.5 -59.5703125 -187.5 c 0 - -46.875 -187.5 -34.423828125 -179.768554688 -22.216796875 -164.306640625 c 128 - -10.009765625 -148.844726562 0.5693359375 -129.638671875 9.521484375 -106.689453125 c 128 - 18.4736328125 -83.740234375 25.87890625 -61.8486328125 31.73828125 -41.015625 c 128 - 37.59765625 -20.1826171875 41.9921875 -1.6279296875 44.921875 14.6484375 c 2 - 103.515625 345.703125 l 1 - 103.515625 347.65625 l 2 - 103.515625 350.911132812 102.5390625 352.5390625 100.5859375 352.5390625 c 2 - 37.109375 352.5390625 l 2 - 35.8076171875 352.5390625 35.15625 353.515625 35.15625 355.46875 c 0 - 35.15625 361.328125 40.4462890625 369.791992188 51.025390625 380.859375 c 128 - 61.6044921875 391.926757812 71.9404296875 397.4609375 82.03125 397.4609375 c 2 - 110.3515625 397.4609375 l 2 - 112.956054688 397.4609375 114.909179688 400.390625 116.2109375 406.25 c 1 - 129.231445312 486.002929688 157.2265625 552.001953125 200.1953125 604.248046875 c 128 - 243.1640625 656.494140625 289.387695312 682.6171875 338.8671875 682.6171875 c 0 - 362.629882812 682.6171875 380.290039062 680.338867188 391.845703125 675.78125 c 128 - 403.401367188 671.223632812 413.737304688 664.713867188 422.8515625 656.25 c 0 - 438.151367188 641.926757812 448.567382812 628.254882812 454.1015625 615.234375 c 1 - 454.1015625 599.609375 450.276367188 585.286132812 442.626953125 572.265625 c 128 - 434.977539062 559.245117188 424.153320312 552.734375 410.15625 552.734375 c 0 - 404.948242188 552.734375 400.309570312 553.629882812 396.240234375 555.419921875 c 128 - 392.170898438 557.209960938 388.346679688 560.221679688 384.765625 564.453125 c 128 - 381.184570312 568.684570312 378.41796875 572.184570312 376.46484375 574.951171875 c 128 - 374.51171875 577.717773438 371.745117188 582.356445312 368.1640625 588.8671875 c 0 - 367.512695312 589.84375 366.129882812 592.28515625 364.013671875 596.19140625 c 128 - 361.897460938 600.09765625 360.432617188 602.783203125 359.619140625 604.248046875 c 128 - 358.805664062 605.712890625 357.258789062 608.235351562 354.98046875 611.81640625 c 128 - 352.702148438 615.397460938 350.993164062 617.919921875 349.853515625 619.384765625 c 128 - 348.713867188 620.849609375 346.923828125 623.127929688 344.482421875 626.220703125 c 128 - 342.041015625 629.313476562 339.924804688 631.510742188 338.134765625 632.8125 c 128 - 336.344726562 634.114257812 333.984375 635.7421875 331.0546875 637.6953125 c 128 - 328.125 639.6484375 325.358398438 641.11328125 322.75390625 642.08984375 c 128 - 320.149414062 643.06640625 317.219726562 643.879882812 313.96484375 644.53125 c 128 - 310.709960938 645.182617188 307.291992188 645.5078125 303.7109375 645.5078125 c 0 - 284.504882812 645.5078125 264.079101562 627.44140625 242.431640625 591.30859375 c 128 - 220.784179688 555.17578125 203.125 504.557617188 189.453125 439.453125 c 0 - 188.801757812 435.872070312 187.663085938 430.094726562 186.03515625 422.119140625 c 128 - 184.407226562 414.143554688 183.268554688 407.877929688 182.6171875 403.3203125 c 1 - 182.6171875 401.3671875 l 2 - 182.6171875 398.762695312 183.59375 397.4609375 185.546875 397.4609375 c 0 - 198.567382812 397.4609375 222.737304688 398.030273438 258.056640625 399.169921875 c 128 - 293.375976562 400.309570312 315.104492188 401.3671875 323.2421875 402.34375 c 0 - 364.2578125 406.25 394.856445312 408.203125 415.0390625 408.203125 c 0 - 417.317382812 408.203125 420.166015625 406.413085938 423.583984375 402.83203125 c 128 - 427.001953125 399.250976562 428.7109375 395.5078125 428.7109375 391.6015625 c 0 - 428.7109375 387.043945312 427.897460938 376.545898438 426.26953125 360.107421875 c 128 - 424.641601562 343.668945312 422.8515625 331.0546875 420.8984375 322.265625 c 2 -EndSplineSet -Fore -SplineSet -252 356 m 1 - 236 355 220 355 201 354 c 2 - 178 353 l 2 - 175 353 173 350 172 345 c 2 - 118 53 l 1 - 102 -40 73 -111 32 -159 c 0 - -6 -204 -48 -226 -93 -226 c 0 - -115 -226 -133 -221 -146 -213 c 128 - -159 -205 -168 -196 -172 -186 c 1 - -173 -171 -169 -158 -161 -146 c 128 - -153 -134 -145 -128 -136 -128 c 128 - -127 -128 -120 -131 -115 -137 c 128 - -110 -143 -105 -151 -101 -158 c 0 - -91 -178 -78 -188 -63 -188 c 128 - -48 -188 -34 -179 -22 -164 c 0 - -10 -148 1 -129 10 -106 c 0 - 27 -63 38 -23 45 15 c 2 - 104 346 l 1 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 354 35 358 c 128 - 35 362 40 370 51 381 c 128 - 62 392 72 397 82 397 c 2 - 110 397 l 2 - 113 397 115 400 116 406 c 1 - 129 486 157 552 200 604 c 128 - 243 656 290 683 339 683 c 0 - 363 683 380 681 392 676 c 128 - 404 671 415 663 427 652 c 128 - 439 641 448 628 454 615 c 1 - 454 599 451 585 443 572 c 128 - 435 559 424 553 410 553 c 0 - 405 553 400 554 396 556 c 0 - 388 560 377 573 364 596 c 0 - 346 629 327 646 306 646 c 128 - 285 646 264 627 242 591 c 128 - 220 555 203 504 189 439 c 0 - 188 435 188 430 186 422 c 128 - 184 414 184 408 183 403 c 1 - 183 399 184 397 186 397 c 0 - 210 397 232 398 252 399 c 1 - 252 356 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,80 +0,0 @@ -StartChar: f_f_j -Encoding: 65548 -1 246 -Width: 725 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> 353 45<46 101 185 351 435 599> 630 37<289 397> 646 37<520 598> -VStem: 602 82<257 399> -LayerCount: 2 -Fore -SplineSet -670 408 m 3x2c - 674 408 684 401 684 392 c 3 - 684 387 678 343 675 322 c 0 - 621 44 l 2 - 614 9 594 -65 552 -121 c 0 - 511 -175 450 -215 416 -229 c 1 - 412 -226 407 -217 407 -210 c 1 - 472 -173 525 -87 546 21 c 2 - 599 286 l 2 - 601 294 602 308 602 313 c 0 - 602 334 595 357 576 357 c 0 - 567 357 428 353 428 353 c 0 - 425 353 423 353 422 345 c 2 - 380 104 l 0 - 333 -136 185 -219 122 -219 c 0x6c - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb4 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0 - 647 683 663 670 678 656 c 0 - 694 641 703 629 709 615 c 1 - 709 588 695 553 665 553 c 27 - 644 553 634 570 623 589 c 0 - 609 613 595 646 559 646 c 0 - 475 646 437 427 433 403 c 0 - 433 401 l 0 - 433 399 434 397 436 397 c 0 - 461 397 560 400 578 402 c 0 - 599 404 668 408 670 408 c 3x2c -74 -113 m 0 - 78 -133 91 -173 133 -173 c 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 -342 630 m 0x34 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x34 -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f j -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,89 +0,0 @@ -StartChar: f_f_k -Encoding: 65544 -1 242 -Width: 980 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -4 54<822 880> 353 45<46 101 185 351 440 556> 379 46<784 872> 630 37<289 397> 646 37<529 637> 658 20G<758 765> -VStem: 850 76<293 378> -LayerCount: 2 -Fore -SplineSet -817 379 m 0x2880 - 760 379 682 285 670 225 c 1 - 735 225 850 265 850 346 c 0 - 850 364 844 379 817 379 c 0x2880 -687 662 m 0 - 708 662 753 678 763 678 c 1 - 768 678 768 666 768 662 c 9 - 768 662 749 631 738 577 c 2 - 688 314 l 1 - 693 318 769 425 853 425 c 0x2980 - 891 425 926 396 926 358 c 0 - 926 269 828 225 720 206 c 1 - 806 77 833 50 873 50 c 0 - 890 50 928 90 939 104 c 1 - 942 104 949 91 949 86 c 1 - 941 72 873 -4 830 -4 c 0 - 753 -4 704 117 662 187 c 1 - 626 0 l 1 - 615 -3 603 -5 592 -5 c 0 - 581 -5 569 -3 557 0 c 1 - 663 546 l 2 - 664 551 667 571 667 575 c 0 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x7280 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb480 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x2280 - 647 683 675 662 687 662 c 0 -133 -173 m 0x7080 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0x7080 -342 630 m 0x3480 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x3480 -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f k -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -StartChar: f_f_l -Encoding: 65540 -1 238 -Width: 772 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 54<591 653> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<758 765> -VStem: 568 73<21 172> -LayerCount: 2 -Fore -SplineSet -667 575 m 3x33 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x75 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb9 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x35 - 647 683 675 662 687 662 c 0 - 708 662 753 678 763 678 c 1 - 768 678 768 666 768 662 c 9 - 768 662 749 631 738 577 c 2 - 646 104 l 2 - 645 100 642 77 642 72 c 0 - 642 63 641 48 651 48 c 0 - 672 48 717 101 720 104 c 1 - 723 104 729 92 729 86 c 1 - 718 67 648 -6 602 -6 c 0 - 581 -6 568 16 568 45 c 0 - 568 53 571 76 575 97 c 2 - 663 546 l 2 - 664 550 667 571 667 575 c 3x33 -133 -173 m 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0 -342 630 m 0x39 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x39 -EndSplineSet -LCarets2: 2 0 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f l -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: f -Encoding: 102 102 69 -Width: 289 -Flags: W -HStem: -228 42<-83 -7> 367 36<44 120 198 300> 627 42<266 342> -LayerCount: 2 -Fore -SplineSet -328 669 m 0 - 356 669 374 658 381 645 c 1 - 381 642 381 639 381 636 c 0 - 379 614 371 590 352 590 c 0 - 335 590 325 600 314 612 c 0 - 307 619 300 627 286 627 c 0 - 248 627 228 558 198 403 c 1 - 296 403 l 2 - 300 403 301 397 301 392 c 0 - 301 382 297 375 292 367 c 1 - 191 367 l 1 - 191 367 157 165 134 42 c 0 - 103 -118 10 -228 -68 -228 c 0 - -96 -228 -114 -216 -121 -203 c 1 - -121 -198 -121 -193 -120 -188 c 0 - -117 -168 -109 -148 -92 -148 c 0 - -75 -148 -66 -159 -55 -171 c 0 - -48 -178 -40 -186 -26 -186 c 0 - 12 -186 32 -117 62 38 c 1 - 120 367 l 1 - 37 367 l 2 - 36 367 35 368 35 370 c 0 - 35 380 58 403 80 403 c 2 - 126 403 l 1 - 157 563 250 669 328 669 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" f.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: F -Encoding: 70 70 37 -Width: 496 -Flags: W -HStem: -3 28<-4 65 155 221> 309 32<210 361> 615 26<118 175 264 457> -VStem: 374 28<225 265> 493 28<511 577> -LayerCount: 2 -Fore -SplineSet -228 642 m 0 - 313 642 422 648 521 648 c 1 - 518 599 521 560 521 516 c 1 - 518 513 511 511 504 511 c 0 - 497 511 493 513 493 518 c 0 - 488 596 455 615 407 615 c 2 - 329 615 l 2 - 318 615 270 614 265 604 c 0 - 257 588 250 560 245 534 c 2 - 209 347 l 2 - 208 342 227 341 247 341 c 2 - 295 341 l 2 - 382 341 380 347 408 411 c 0 - 410 416 417 418 424 418 c 0 - 431 418 436 416 438 413 c 1 - 402 229 l 1 - 400 227 394 225 387 225 c 0 - 380 225 375 227 374 232 c 0 - 371 288 368 295 361 301 c 0 - 352 308 301 309 267 309 c 0 - 242 309 201 309 199 300 c 2 - 163 113 l 2 - 157 84 152 57 154 41 c 0 - 155 30 212 25 223 25 c 1 - 226 20 223 2 217 -3 c 1 - 180 -1 138 2 103 2 c 0 - 60 2 30 -3 -5 -3 c 1 - -9 2 -5 20 0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 177 587 175 603 c 0 - 174 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 193 642 228 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -StartChar: f_h -Encoding: 65545 -1 243 -Width: 734 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 54<563 626> 353 72<561 618> 353 45<46 102 185 301> 646 37<275 382> 658 20G<504 511> -VStem: 541 73<21 167> 589 75<217 379> -LayerCount: 2 -Fore -SplineSet -408 546 m 2xe5 - 409 551 412 571 412 575 c 3 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xd9 - 392 683 420 662 432 662 c 0 - 453 662 499 678 509 678 c 1 - 514 678 514 666 514 662 c 9 - 514 662 494 631 483 577 c 2 - 434 322 l 1 - 416 232 l 1 - 429 256 546 425 610 425 c 0 - 648 425 664 397 664 360 c 0xe5 - 664 327 658 291 650 254 c 2 - 618 104 l 2 - 617 100 614 77 614 72 c 0 - 614 63 614 48 624 48 c 0 - 645 48 689 101 692 104 c 1 - 695 104 702 92 702 86 c 1 - 691 67 620 -6 574 -6 c 0 - 553 -6 541 16 541 45 c 0xe6 - 541 53 543 76 548 97 c 2 - 582 258 l 2 - 584 267 589 300 589 311 c 0 - 589 333 587 353 570 353 c 0 - 535 353 418 230 396 116 c 0 - 390 86 381 45 371 0 c 1 - 361 -3 346 -4 336 -4 c 0 - 326 -4 315 -3 303 0 c 1 - 408 546 l 2xe5 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: f_i -Encoding: 65537 -1 235 -Width: 507 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 54<317 379> 353 45<46 102 185 344> 357 51<199 344> 646 37<271 344> -VStem: 294 73<21 162> -LayerCount: 2 -Fore -SplineSet -421 322 m 2xdc - 371 104 l 2 - 369 94 367 77 367 72 c 0 - 367 63 367 48 377 48 c 0 - 398 48 442 101 445 104 c 1 - 448 104 455 92 455 86 c 1 - 444 67 373 -6 327 -6 c 0 - 306 -6 294 16 294 45 c 0 - 294 53 296 76 301 97 c 2 - 344 286 l 2 - 345 293 347 308 347 313 c 0 - 347 334 340 357 321 357 c 8xdc - 265 357 178 353 178 353 c 2 - 175 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0 - 392 683 408 670 423 656 c 0 - 439 641 448 629 454 615 c 1 - 454 588 440 553 410 553 c 27 - 389 553 379 570 368 589 c 0 - 354 613 340 646 304 646 c 0 - 269 646 218 577 189 439 c 0 - 187 427 185 416 183 403 c 0 - 183 401 l 0 - 183 399 184 397 186 397 c 0xec - 209 397 305 400 323 402 c 0 - 344 404 413 408 415 408 c 3 - 419 408 429 401 429 392 c 3 - 429 387 426 343 421 322 c 2xdc -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f i -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/figuredash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/figuredash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/figuredash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/figuredash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: figuredash -Encoding: 8210 8210 195 -Width: 503 -Flags: W -HStem: 195 61<57 433> -LayerCount: 2 -Fore -SplineSet -434 256 m 2 - 438 256 439 250 439 243 c 0 - 439 229 430 202 418 195 c 1 - 57 195 l 2 - 53 195 51 201 51 208 c 0 - 51 222 60 249 72 256 c 1 - 434 256 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: five -Encoding: 53 53 20 -Width: 487 -Flags: W -HStem: -5 39<132 230> 324 62<174 288> 538 78<220 416> 609 20G<423 443> -VStem: 329 83<156 285> -LayerCount: 2 -Fore -SplineSet -412 241 m 0xe8 - 412 91 234 -5 147 -5 c 0 - 100 -5 67 4 45 20 c 1 - 41 25 36 36 36 47 c 0 - 36 76 56 104 77 104 c 0 - 109 104 114 75 128 58 c 0 - 145 37 166 34 190 34 c 0 - 246 34 329 104 329 214 c 0 - 329 249 316 324 211 324 c 3 - 191 324 157 318 138 312 c 1 - 135 314 128 320 124 325 c 1 - 168 454 197 575 212 616 c 1xe8 - 276 618 406 621 440 629 c 1xd8 - 446 626 450 620 450 616 c 0 - 450 599 428 562 418 548 c 1 - 374 538 242 541 227 538 c 1 - 223 531 193 420 174 368 c 1 - 194 376 245 386 269 386 c 0 - 367 386 412 306 412 241 c 0xe8 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" five.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" five.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: five.onum -Encoding: 65572 -1 423 -Width: 323 -Flags: W -HStem: -184 28<-59 3> 357 74<110 282> -VStem: 174 80<10 138> -LayerCount: 2 -Fore -SplineSet --58 -184 m 1 - -62 -184 -62 -155 -55 -155 c 1 - 11 -155 174 -72 174 67 c 0 - 174 148 119 178 40 202 c 0 - 34 204 32 210 34 218 c 0 - 35 222 75 343 105 422 c 24 - 107 427 111 432 115 432 c 0 - 179 432 269 431 303 439 c 1 - 305 436 306 432 306 425 c 0 - 306 400 298 380 286 363 c 1 - 193 356 136 358 125 357 c 0 - 118 357 116 354 115 350 c 2 - 86 264 l 2 - 85 261 86 257 90 256 c 0 - 152 244 254 184 254 100 c 0 - 254 -57 62 -184 -58 -184 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/five.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/five.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: five.prop -Encoding: 65743 -1 851 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 20 53 N 1 0 0 1 -47 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: f_j -Encoding: 65547 -1 245 -Width: 471 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> 353 45<46 102 185 344> 357 51<199 344> 646 37<271 344> -VStem: 347 82<257 399> -LayerCount: 2 -Fore -SplineSet -420 322 m 0xb8 - 366 44 l 2 - 359 9 339 -65 297 -121 c 0 - 256 -175 195 -215 161 -229 c 1 - 157 -226 152 -217 152 -210 c 1 - 217 -173 270 -87 291 21 c 2 - 344 286 l 2 - 346 294 347 308 347 313 c 0 - 347 334 340 357 321 357 c 8xb8 - 265 357 178 353 178 353 c 2 - 175 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0 - 392 683 408 670 423 656 c 0 - 439 641 448 629 454 615 c 1 - 454 588 440 553 410 553 c 27 - 389 553 379 570 368 589 c 0 - 354 613 340 646 304 646 c 0 - 266 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 184 397 186 397 c 0xd8 - 209 397 305 400 323 402 c 0 - 344 404 413 408 415 408 c 3 - 419 408 429 401 429 392 c 3 - 429 387 423 343 420 322 c 0xb8 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f j -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: f_k -Encoding: 65543 -1 241 -Width: 725 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -4 54<567 625> 353 45<46 102 185 301> 379 46<529 617> 646 37<275 382> 658 20G<503 510> -VStem: 595 76<293 378> -LayerCount: 2 -Fore -SplineSet -562 379 m 0xd2 - 505 379 427 285 415 225 c 1 - 480 225 595 265 595 346 c 0 - 595 364 589 379 562 379 c 0xd2 -408 546 m 2 - 409 551 412 571 412 575 c 0 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xea - 392 683 420 662 432 662 c 0 - 453 662 498 678 508 678 c 1xc6 - 513 678 513 666 513 662 c 9 - 513 662 494 631 483 577 c 2 - 433 314 l 1 - 438 318 514 425 598 425 c 0 - 636 425 671 396 671 358 c 0 - 671 269 573 225 465 206 c 1 - 551 77 578 50 618 50 c 0 - 635 50 674 90 685 104 c 1 - 688 104 694 91 694 86 c 1 - 686 72 618 -4 575 -4 c 0 - 498 -4 449 117 407 187 c 1 - 371 0 l 1 - 360 -3 348 -5 337 -5 c 0 - 326 -5 314 -3 302 0 c 1 - 408 546 l 2 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f k -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: f_l -Encoding: 65539 -1 237 -Width: 517 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 54<336 399> 353 45<46 102 185 301> 646 37<275 382> 658 20G<503 510> -VStem: 313 73<21 172> -LayerCount: 2 -Fore -SplineSet -483 577 m 2xec - 391 104 l 2 - 390 100 387 77 387 72 c 0 - 387 63 386 48 396 48 c 0 - 417 48 462 101 465 104 c 1 - 468 104 475 92 475 86 c 1 - 464 67 393 -6 347 -6 c 0 - 326 -6 313 16 313 45 c 0 - 313 53 316 76 320 97 c 2 - 408 546 l 2 - 409 550 412 571 412 575 c 3 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xf4 - 392 683 420 662 432 662 c 0 - 453 662 498 678 508 678 c 1 - 513 678 513 666 513 662 c 9 - 513 662 494 631 483 577 c 2xec -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f l -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/font.props fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/font.props 1970-01-01 00:00:00.000000000 +0000 @@ -1,462 +0,0 @@ -SplineFontDB: 3.0 -FontName: AmiriLatin-Italic -FullName: Amiri Latin Italic -FamilyName: Amiri Latin -Weight: Italic -Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. -Version: 0.8 -ItalicAngle: -11 -UnderlinePosition: -102 -UnderlineWidth: 51 -Ascent: 800 -Descent: 200 -InvalidEm: 0 -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -FSType: 0 -OS2Version: 0 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 1 -CreationTime: 1273443993 -PfmFamily: 17 -TTFWeight: 400 -TTFWidth: 5 -LineGap: 90 -VLineGap: 0 -OS2TypoAscent: 700 -OS2TypoAOffset: 0 -OS2TypoDescent: -300 -OS2TypoDOffset: 0 -OS2TypoLinegap: 90 -OS2WinAscent: 0 -OS2WinAOffset: 1 -OS2WinDescent: 0 -OS2WinDOffset: 1 -HheadAscent: 700 -HheadAOffset: 0 -HheadDescent: -300 -HheadDOffset: 0 -OS2SubXSize: 649 -OS2SubYSize: 699 -OS2SubXOff: 26 -OS2SubYOff: 140 -OS2SupXSize: 649 -OS2SupYSize: 699 -OS2SupXOff: -91 -OS2SupYOff: 479 -OS2StrikeYSize: 50 -OS2StrikeYPos: 259 -OS2Vendor: 'PfEd' -Lookup: 1 0 0 "'ccmp' Turkish i" { "'ccmp' Turkish i-1" } ['ccmp' ('latn' <'TRK ' > ) ] -Lookup: 1 0 0 "'onum' Oldstyle Figures in Latin lookup 5" { "'onum' Oldstyle Figures in Latin lookup 5-1" ("onum") } ['onum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 12" { "'pnum' Proportional Numbers lookup 12-1" ("prop") } ['pnum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'smcp' Lowercase to Small Capitals in Latin lookup 3" { "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ("sc") } ['smcp' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0" { "'liga' Standard Ligatures lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -MarkAttachClasses: 1 -DEI: 91125 -KernClass2: 26+ 35 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" - 128 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc aringacute.sc - 4 b.sc - 65 c.sc ccedilla.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc - 31 d.sc eth.sc dcaron.sc dcroat.sc - 142 e.sc ae.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc oe.sc uni01E3.sc aeacute.sc - 4 f.sc - 54 g.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc - 159 h.sc i.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc uni01D0.sc - 25 j.sc ij.sc jcircumflex.sc - 31 k.sc uni0137.sc kgreenlandic.sc - 53 l.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 136 o.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc omacron.sc obreve.sc ohungarumlaut.sc uni01D2.sc oslashacute.sc - 4 p.sc - 4 q.sc - 35 r.sc racute.sc uni0157.sc rcaron.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 4 x.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 8 thorn.sc - 20 quotedbl quotesingle - 10 parenright - 8 asterisk - 28 hyphen endash emdash uni2015 - 9 backslash - 12 bracketright - 10 registered - 7 uni02BC - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 19 j.sc jcircumflex.sc - 263 c.sc g.sc o.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 4 q.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 12 backslash.sc - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 13 parenright.sc - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 4 x.sc - 15 bracketright.sc - 49 comma period quotesinglbase quotedblbase ellipsis - 10 braceright - 9 ampersand - 5 slash - 9 period.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 8 slash.sc - 0 {} -17 {} -17 {} -18 {} -21 {} -55 {} -17 {} -32 {} -80 {} -20 {} -20 {} -18 {} -4 {} -14 {} -14 {} -20 {} -21 {} -32 {} -28 {} -24 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} -8 {} -4 {} 0 {} -10 {} -12 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -11 {} -26 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -32 {} -9 {} 0 {} -39 {} -24 {} 0 {} 0 {} -15 {} -14 {} 0 {} -5 {} 0 {} 0 {} 0 {} -4 {} -10 {} -10 {} -14 {} 0 {} -9 {} -15 {} -4 {} -4 {} -5 {} -18 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -16 {} -29 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} -34 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -4 {} -5 {} -5 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -12 {} -22 {} -19 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -9 {} -21 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -27 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -21 {} -16 {} -45 {} -51 {} -20 {} -33 {} 0 {} -18 {} -17 {} -25 {} -4 {} 0 {} -4 {} -27 {} -7 {} -31 {} -25 {} -21 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -10 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -32 {} -10 {} 0 {} -41 {} -23 {} 0 {} -77 {} -18 {} -17 {} 0 {} -5 {} 0 {} 0 {} -5 {} -4 {} -13 {} -12 {} -17 {} 0 {} -8 {} -15 {} -5 {} -4 {} -5 {} -18 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -16 {} 0 {} -5 {} 0 {} 0 {} -5 {} -4 {} 0 {} -11 {} -17 {} 0 {} -8 {} 0 {} -5 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -21 {} -14 {} -8 {} -47 {} -21 {} -17 {} 0 {} -14 {} -14 {} -12 {} -6 {} -9 {} -9 {} -11 {} -12 {} -17 {} -16 {} -14 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -8 {} -31 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -26 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -13 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -9 {} -19 {} -21 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -24 {} 13 {} -17 {} -15 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -15 {} -13 {} -4 {} -11 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 20 {} -27 {} -13 {} -18 {} 0 {} -62 {} 0 {} 0 {} -15 {} 0 {} -9 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -12 {} -11 {} -9 {} -4 {} 0 {} 0 {} 0 {} -21 {} 0 {} -21 {} -24 {} -19 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -11 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 5+ 8 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" - 12 parenleft.sc - 9 period.sc - 8 slash.sc - 14 bracketleft.sc - 12 backslash.sc - 19 j.sc jcircumflex.sc - 263 c.sc g.sc o.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 19 w.sc wcircumflex.sc - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 0 {} 13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -20 {} 0 {} -12 {} -11 {} -KernClass2: 5+ 33 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" - 9 parenleft - 5 seven - 4 nine - 11 bracketleft - 9 braceleft - 321 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 127 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 169 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 95 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni1E2D uni1E2F - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 328 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 127 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B - 79 v w wcircumflex uni1E7D uni1E7F wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 17 x uni1E8B uni1E8D - 46 y yacute ydieresis ycircumflex uni1E8F uni1E99 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 19 j.sc jcircumflex.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 263 c.sc g.sc o.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 49 comma period quotesinglbase quotedblbase ellipsis - 81 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 0 {} -24 {} -15 {} -11 {} -15 {} -10 {} -22 {} -24 {} -21 {} 15 {} -10 {} -17 {} -24 {} -18 {} -21 {} -18 {} -21 {} -10 {} -11 {} -15 {} -11 {} 73 {} -10 {} -28 {} -18 {} -24 {} -26 {} -26 {} -21 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} -20 {} -15 {} 0 {} -14 {} 0 {} -25 {} -25 {} -22 {} 0 {} 0 {} -15 {} -24 {} -22 {} -20 {} -13 {} -15 {} -14 {} 0 {} -22 {} -20 {} 47 {} -20 {} -25 {} -22 {} -21 {} -22 {} -21 {} -19 {} -20 {} 0 {} -17 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -KernClass2: 11+ 59 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 40 comma period quotesinglbase quotedblbase - 5 slash - 15 colon semicolon - 9 backslash - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 29 guillemotright guilsinglright - 9 ampersand - 49 comma period quotesinglbase quotedblbase ellipsis - 5 slash - 4 four - 3 six - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 1 q - 2 AE - 27 guillemotleft guilsinglleft - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 545 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E - 13 J Jcircumflex - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 84 f germandbls uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j - 21 j jcircumflex uni0237 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 19 j.sc jcircumflex.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 4 v.sc - 4 x.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 20 quotedbl quotesingle - 4 zero - 321 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 1 Q - 127 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A - 79 v w wcircumflex uni1E7D uni1E7F wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 77 y yacute ydieresis ycircumflex uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 328 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 17 p uni1E55 uni1E57 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 127 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B - 17 x uni1E8B uni1E8D - 263 c.sc g.sc o.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 2 ae - 4 q.sc - 0 {} -23 {} -89 {} -40 {} -36 {} -11 {} -45 {} -10 {} -19 {} -10 {} -58 {} -10 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -8 {} -12 {} 0 {} 0 {} 0 {} -18 {} 14 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -21 {} 0 {} -24 {} -16 {} -24 {} -9 {} -8 {} -10 {} -12 {} -57 {} -37 {} -29 {} -22 {} -55 {} -24 {} -15 {} -11 {} -8 {} -8 {} -12 {} -10 {} -14 {} -13 {} -19 {} -16 {} -29 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} 0 {} 0 {} 0 {} 0 {} -36 {} -58 {} -48 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -23 {} 0 {} 0 {} -89 {} -13 {} -22 {} -18 {} -23 {} -15 {} -23 {} -90 {} -95 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -44 {} -38 {} 0 {} 0 {} 0 {} -57 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -21 {} -31 {} -24 {} -22 {} 0 {} -23 {} -20 {} 0 {} 0 {} -25 {} 0 {} 0 {} -16 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -41 {} -34 {} -19 {} -40 {} -34 {} -33 {} -17 {} -22 {} -36 {} -33 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -27 {} -22 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -36 {} -32 {} 18 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -39 {} 0 {} -13 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} 0 {} 0 {} 0 {} -45 {} -20 {} -21 {} -20 {} -59 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -8 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} -95 {} 0 {} 0 {} 0 {} -50 {} -26 {} -21 {} -26 {} -62 {} -39 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 16 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -14 {} 0 {} -21 {} -8 {} -11 {} 0 {} 0 {} -13 {} -9 {} 0 {} -16 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} -26 {} -21 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} -21 {} 0 {} -17 {} 0 {} -17 {} -12 {} -12 {} -13 {} -15 {} -56 {} -40 {} -33 {} -21 {} -58 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 27+ 38 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 35 b uni1E03 uni1E05 uni1E07 f_b f_f_b - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 116 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe uni1E15 uni1E17 uni1E19 uni1E1B - 27 f longs uni1E1F f_f f.short - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 102 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi uni1E2D uni1E2F f_i f_f_i - 34 j ij jcircumflex uni0237 f_j f_f_j - 56 k uni0137 kgreenlandic uni1E31 uni1E33 uni1E35 f_k f_f_k - 72 l lacute uni013C lcaron lslash uni1E37 uni1E39 uni1E3B uni1E3D f_l f_f_l - 169 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E96 f_h f_f_h T_h - 214 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut ohorn uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 23 p thorn uni1E55 uni1E57 - 1 q - 55 r racute uni0157 rcaron uni1E59 uni1E5B uni1E5D uni1E5F - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 127 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 17 x uni1E8B uni1E8D - 46 y yacute ydieresis ycircumflex uni1E8F uni1E99 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 10 germandbls - 4 ldot - 3 eng - 10 parenright - 321 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 127 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A - 9 backslash - 12 bracketright - 20 quotedbl quotesingle - 8 asterisk - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 545 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E - 17 x uni1E8B uni1E8D - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 28 hyphen endash emdash uni2015 - 17 p uni1E55 uni1E57 - 49 comma period quotesinglbase quotedblbase ellipsis - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 328 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 1 q - 3 eth - 5 thorn - 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j - 46 y yacute ydieresis ycircumflex uni1E8F uni1E99 - 7 f.short - 10 registered - 13 J Jcircumflex - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 7 uni02BC - 21 j jcircumflex uni0237 - 9 ampersand - 5 slash - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 79 v w wcircumflex uni1E7D uni1E7F wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 0 {} -16 {} -6 {} -20 {} -33 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} -19 {} -33 {} -22 {} -13 {} -8 {} -14 {} -16 {} -7 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} -13 {} -21 {} -16 {} 0 {} 0 {} 0 {} -16 {} -11 {} 0 {} 0 {} -14 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -20 {} -29 {} -21 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 17 {} 0 {} -16 {} 5 {} 0 {} 0 {} 0 {} -21 {} 0 {} -8 {} -10 {} -8 {} -10 {} -6 {} -10 {} -5 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 78 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} -20 {} 18 {} 0 {} 0 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 38 {} 27 {} 64 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -8 {} -21 {} -19 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -8 {} -20 {} -14 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -9 {} -23 {} -40 {} -18 {} -15 {} -12 {} 0 {} 0 {} -4 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -7 {} -20 {} -35 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -57 {} -52 {} -42 {} -63 {} -65 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -21 {} -37 {} -23 {} 0 {} 0 {} -12 {} -15 {} -10 {} -14 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -20 {} -34 {} -23 {} 0 {} 0 {} -14 {} -16 {} -8 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -12 {} -20 {} -21 {} 0 {} 0 {} -36 {} -16 {} 0 {} 0 {} 0 {} -32 {} 0 {} -33 {} -11 {} -7 {} -12 {} -4 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -20 {} 0 {} 0 {} 0 {} -26 {} 0 {} -21 {} -30 {} -21 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -13 {} -22 {} -19 {} 0 {} 0 {} -9 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -6 {} -20 {} -32 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} -19 {} -29 {} -24 {} 0 {} 0 {} -27 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} -33 {} 0 {} -18 {} -29 {} -23 {} 0 {} 0 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -17 {} -20 {} -16 {} -22 {} -12 {} 0 {} 0 {} 0 {} -17 {} -18 {} 0 {} 0 {} -12 {} 0 {} 0 {} -9 {} -11 {} -9 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -30 {} 0 {} -23 {} -32 {} -21 {} 0 {} 0 {} -15 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -20 {} -25 {} -21 {} 0 {} 0 {} -9 {} -7 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -19 {} -19 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 26+ 71 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 25 B uni1E02 uni1E04 uni1E06 - 55 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron uni1E08 - 59 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 - 116 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE uni1E14 uni1E16 uni1E18 uni1E1A - 9 F uni1E1E - 47 G Gcircumflex Gbreve Gdotaccent uni0122 uni1E20 - 169 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1EC8 uni1ECA - 16 J IJ Jcircumflex - 33 K uni0136 uni1E30 uni1E32 uni1E34 - 67 L Lacute uni013B Lcaron Ldot Lslash uni1E36 uni1E38 uni1E3A uni1E3C - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 214 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut Ohorn uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 17 P uni1E54 uni1E56 - 1 Q - 55 R Racute uni0156 Rcaron uni1E58 uni1E5A uni1E5C uni1E5E - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 189 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 5 Thorn - 20 quotedbl quotesingle - 10 parenright - 8 asterisk - 28 hyphen endash emdash uni2015 - 5 slash - 13 J Jcircumflex - 321 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 1 Q - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 127 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 9 backslash - 12 bracketright - 25 b uni1E03 uni1E05 uni1E07 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 21 j jcircumflex uni0237 - 328 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 79 v w wcircumflex uni1E7D uni1E7F wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 77 y yacute ydieresis ycircumflex uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 10 registered - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 7 f.short - 263 c.sc g.sc o.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 4 q.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 545 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 17 X uni1E8A uni1E8C - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 17 x uni1E8B uni1E8D - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 2 AE - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 4 m.sc - 4 x.sc - 38 z.sc zacute.sc zdotaccent.sc zcaron.sc - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 17 p uni1E55 uni1E57 - 9 ampersand - 49 comma period quotesinglbase quotedblbase ellipsis - 177 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 1 q - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 19 j.sc jcircumflex.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 127 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B - 2 ae - 3 eth - 7 uni02BC - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 15 colon semicolon - 29 guillemotright guilsinglright - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 0 {} -43 {} -10 {} -37 {} -12 {} 5 {} -10 {} -23 {} -20 {} -54 {} -34 {} -59 {} -50 {} -58 {} -46 {} -11 {} -11 {} -6 {} -16 {} -10 {} -9 {} -6 {} -8 {} -22 {} -27 {} -31 {} -42 {} -38 {} -18 {} -7 {} -12 {} -12 {} -16 {} -17 {} -30 {} -26 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -8 {} -6 {} -19 {} -16 {} -24 {} -18 {} -19 {} -5 {} 0 {} -12 {} 0 {} -10 {} 0 {} -7 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -10 {} 0 {} -6 {} -6 {} -8 {} -13 {} -5 {} -5 {} -6 {} -26 {} -5 {} -21 {} -9 {} -9 {} -10 {} -5 {} -21 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} -5 {} 0 {} 0 {} -18 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -6 {} -7 {} -23 {} -18 {} -35 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -7 {} -8 {} -9 {} -31 {} 0 {} -14 {} 0 {} -20 {} -21 {} 0 {} -7 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -8 {} -8 {} 0 {} -6 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -12 {} 0 {} -10 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -6 {} -16 {} 0 {} -20 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} 0 {} -6 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} -20 {} -9 {} -17 {} -53 {} -49 {} -15 {} -8 {} -10 {} 0 {} -21 {} -11 {} -39 {} -24 {} -24 {} -24 {} -12 {} -11 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -19 {} -15 {} -25 {} -17 {} -15 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -13 {} -19 {} -6 {} -15 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} -12 {} -10 {} -15 {} -15 {} -10 {} -13 {} -9 {} -8 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -20 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -14 {} -14 {} -14 {} 0 {} -11 {} 0 {} -5 {} -5 {} -5 {} -8 {} -17 {} -121 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -13 {} -20 {} -7 {} -18 {} -14 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -14 {} -14 {} -9 {} -11 {} -7 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} -15 {} -6 {} -16 {} 0 {} -11 {} -11 {} 0 {} -10 {} 0 {} -19 {} 0 {} 0 {} -19 {} -19 {} -19 {} -11 {} -14 {} -10 {} -10 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} -46 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -21 {} -26 {} 0 {} -17 {} 0 {} -53 {} -43 {} 0 {} 0 {} 0 {} -34 {} 0 {} -35 {} -33 {} -26 {} -21 {} -51 {} -44 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -7 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -17 {} -71 {} 0 {} 0 {} -6 {} -6 {} 0 {} -62 {} -10 {} -64 {} -59 {} -64 {} -40 {} -12 {} 0 {} 0 {} -8 {} 0 {} -7 {} 0 {} 0 {} -21 {} -42 {} -28 {} -62 {} -64 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} -25 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} -17 {} -7 {} -14 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} -13 {} -11 {} -15 {} -15 {} -11 {} -14 {} -11 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -12 {} -12 {} -12 {} 0 {} -9 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -16 {} -22 {} -6 {} -19 {} -17 {} -11 {} 0 {} 0 {} 0 {} 0 {} -12 {} -10 {} -17 {} -16 {} -12 {} -15 {} -10 {} -9 {} -8 {} -7 {} 0 {} 0 {} 0 {} 0 {} -18 {} -9 {} -18 {} -6 {} -12 {} -14 {} 0 {} -13 {} 0 {} -20 {} 0 {} 0 {} -21 {} -21 {} -21 {} -14 {} -15 {} -13 {} -14 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -7 {} -27 {} -21 {} -39 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -6 {} -7 {} -7 {} -33 {} 0 {} -13 {} 0 {} -12 {} -15 {} 0 {} -8 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 10 {} -37 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -15 {} 0 {} -29 {} 0 {} -9 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -5 {} -7 {} -5 {} -22 {} -7 {} -6 {} -5 {} -53 {} -60 {} 0 {} 0 {} 0 {} 0 {} -11 {} -24 {} -64 {} -39 {} -40 {} -40 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -5 {} -6 {} -22 {} -17 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -7 {} -8 {} -8 {} -31 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -12 {} 0 {} 30 {} -6 {} -13 {} -13 {} -19 {} -18 {} -34 {} -26 {} -32 {} -27 {} 0 {} -7 {} -6 {} -11 {} -9 {} -8 {} -6 {} -6 {} -18 {} -25 {} -19 {} 0 {} 0 {} -30 {} -6 {} -12 {} -12 {} -12 {} -10 {} -14 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -5 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -7 {} -8 {} 0 {} -12 {} 0 {} 0 {} -12 {} 0 {} -11 {} 0 {} -7 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -11 {} 0 {} -8 {} -7 {} -9 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -81 {} -20 {} -76 {} -8 {} -79 {} -21 {} -68 {} -63 {} 0 {} 0 {} 0 {} -55 {} -9 {} -68 {} -68 {} -43 {} -43 {} -28 {} -27 {} -26 {} -48 {} 0 {} 0 {} 0 {} 0 {} -80 {} -80 {} -84 {} -58 {} -83 {} -45 {} -38 {} -47 {} 0 {} -73 {} -35 {} -40 {} -81 {} -76 {} -81 {} -43 {} -42 {} -44 {} -71 {} -70 {} -69 {} 0 {} 0 {} 0 {} 0 {} -27 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} -21 {} -11 {} -20 {} 0 {} -21 {} -13 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -14 {} -14 {} -7 {} -10 {} -5 {} 0 {} -5 {} -25 {} 0 {} 0 {} 0 {} 0 {} -21 {} -10 {} -21 {} -29 {} -35 {} -18 {} -7 {} -15 {} 0 {} -23 {} 0 {} -18 {} -22 {} -22 {} -22 {} -15 {} -15 {} -14 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 7 {} 0 {} 0 {} 5 {} 0 {} 0 {} -44 {} -40 {} 0 {} -16 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 33 {} -65 {} -21 {} -68 {} -6 {} -63 {} -41 {} -43 {} -35 {} -12 {} 0 {} 0 {} -43 {} -12 {} -58 {} -58 {} -29 {} -34 {} -19 {} -18 {} -18 {} -59 {} 0 {} 0 {} 0 {} 0 {} -70 {} -53 {} -65 {} -74 {} -85 {} -42 {} -32 {} -43 {} 0 {} -63 {} -45 {} -64 {} -67 {} -67 {} -67 {} -41 {} -39 {} -41 {} -60 {} -44 {} -41 {} 0 {} 0 {} 0 {} 28 {} -30 {} -31 {} 32 {} -8 {} 0 {} 0 {} 0 {} 0 {} -34 {} -34 {} 0 {} -15 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 28 {} -51 {} -20 {} -53 {} -7 {} -49 {} -33 {} -32 {} -22 {} -12 {} 0 {} 0 {} -35 {} -11 {} -44 {} -44 {} -22 {} -26 {} -14 {} -14 {} -14 {} -50 {} 0 {} 0 {} 0 {} 0 {} -52 {} -38 {} -48 {} -60 {} -59 {} -40 {} -22 {} -37 {} 0 {} -49 {} -36 {} -49 {} -53 {} -53 {} -53 {} -34 {} -34 {} -32 {} -45 {} -36 {} -34 {} 0 {} 0 {} 0 {} 22 {} -25 {} -26 {} 26 {} -8 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -27 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} -11 {} -16 {} -22 {} 0 {} -13 {} -6 {} -40 {} -35 {} 0 {} 0 {} 0 {} -24 {} 0 {} -29 {} -28 {} -25 {} -20 {} -31 {} -24 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -28 {} 0 {} -19 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 28 {} -74 {} -33 {} -71 {} -7 {} -73 {} -55 {} -62 {} -58 {} -11 {} 0 {} 0 {} -53 {} -17 {} -62 {} -62 {} -46 {} -47 {} -42 {} -40 {} -39 {} -51 {} 0 {} 0 {} 0 {} 0 {} -74 {} -68 {} -76 {} -53 {} -75 {} -50 {} -35 {} -49 {} 0 {} -66 {} -42 {} -35 {} -73 {} -70 {} -74 {} -48 {} -53 {} -44 {} -64 {} -63 {} -63 {} 0 {} 0 {} 0 {} 22 {} -29 {} -35 {} 26 {} -6 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -11 {} -11 {} 0 {} -11 {} -35 {} -42 {} -12 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -33 {} -7 {} -22 {} -18 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -15 {} -5 {} -29 {} -21 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -7 {} -8 {} -8 {} -62 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 6+ 20 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" - 9 ampersand - 2 at - 10 exclamdown - 10 registered - 12 questiondown - 7 uni02BC - 177 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 69 Y Yacute Ycircumflex Ydieresis uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 20 quotedbl quotesingle - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 189 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 17 X uni1E8A uni1E8C - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j - 77 y yacute ydieresis ycircumflex uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 19 j.sc jcircumflex.sc - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 0 {} -21 {} -16 {} -13 {} -25 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -28 {} -41 {} 0 {} 0 {} -42 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -10 {} -10 {} -17 {} -30 {} 0 {} 0 {} 0 {} -13 {} -11 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -40 {} -34 {} -48 {} 0 {} 0 {} -49 {} -18 {} 0 {} 0 {} 0 {} 0 {} 25 {} 9 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 137 {} 31 {} 54 {} 90 {} -LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "" "http://scripts.sil.org/OFL" -GaspTable: 1 65535 15 1 -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -BeginPrivate: 0 -EndPrivate -Grid --249.0234375 -196.77734375 m 25 - -249.0234375 887.20703125 l 1025 -106.4453125 86.9140625 m 1 - 218.75 664.0625 l 1 - 281.25 654.296875 l 1 - 168.9453125 78.125 l 1 - 106.4453125 86.9140625 l 1 --1000 398.4375 m 1 - 2000 398.4375 l 1025 -85.9375 616.2109375 m 25 - 375 616.2109375 l 1025 --74.21875 -227.5390625 m 25 - 457.03125 -227.5390625 l 1025 -27.34375 677.734375 m 25 - 529.296875 677.734375 l 1025 -27.34375 424.8046875 m 17 - 529.296875 424.8046875 l 1025 -EndSplineSet -EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: four -Encoding: 52 52 19 -Width: 487 -Flags: W -HStem: -6 21G<281 310> 170 56<102 293 378 438> 609 20G<437 445> -LayerCount: 2 -Fore -SplineSet -440 629 m 0 - 449 629 455 619 453 611 c 2 - 378 226 l 25 - 433 226 l 18 - 439 226 442 207 438 186 c 0 - 436 177 433 173 431 170 c 1 - 367 170 l 25 - 334 -1 l 1 - 334 -1 327 -6 292 -6 c 0 - 271 -6 259 -5 260 2 c 2 - 293 170 l 25 - 37 170 l 1 - 31 174 31 182 32 188 c 1 - 408 604 l 2 - 415 612 433 629 440 629 c 0 -359 512 m 25 - 102 226 l 25 - 304 226 l 25 - 359 512 l 25 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" four.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" four.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: four.onum -Encoding: 65571 -1 422 -Width: 401 -Flags: W -HStem: 6 59<41 189 271 336> -LayerCount: 2 -Fore -SplineSet -185 -184 m 0 - 162 -184 153 -179 155 -170 c 2 - 189 1 l 1 - 189 6 185 6 182 6 c 2 - -36 6 l 1 - -42 12 -45 26 -43 34 c 1 - 90 182 193 304 309 432 c 0 - 316 440 326 443 333 443 c 0 - 339 443 343 439 342 434 c 2 - 271 72 l 2 - 270 67 273 65 278 64 c 1 - 329 64 l 2 - 340 64 341 53 335 22 c 0 - 334 16 331 9 328 6 c 1 - 264 6 l 2 - 260 6 258 3 257 -2 c 2 - 223 -176 l 1 - 223 -176 216 -184 185 -184 c 0 -201 71 m 1 - 248 304 l 2 - 248 307 248 312 246 312 c 8 - 245 312 245 312 244 311 c 2 - 38 76 l 2 - 37 75 36 74 36 73 c 0 - 35 69 37 64 41 64 c 2 - 192 64 l 1 - 195 65 199 65 201 71 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/four.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/four.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: four.prop -Encoding: 65742 -1 850 -Width: 434 -Flags: HW -LayerCount: 2 -Fore -Refer: 19 52 N 1 0 0 1 -44 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/fraction.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: fraction -Encoding: 8260 8260 857 -Width: 503 -Flags: W -HStem: -2 21G<42 57> -LayerCount: 2 -Fore -SplineSet -481 704 m 1 - 72 14 l 2 - 68 7 62 -2 53 -2 c 0 - 32 -2 22 10 22 10 c 1 - 432 700 l 2 - 435 706 441 714 447 714 c 0 - 463 714 477 707 481 704 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: f.sc -Encoding: 65594 -1 449 -Width: 385 -Flags: W -HStem: -3 28<1 53 126 171> 198 33<161 253> 404 31<196 332> 412 28<83 124> -VStem: 261 24<147 186> 287 24<252 284> 344 26<344 390> -LayerCount: 2 -Fore -SplineSet -165 436 m 0xee - 225 436 300 442 367 442 c 1 - 365 407 370 378 371 347 c 1 - 368 345 362 344 357 344 c 0 - 352 344 344 345 344 348 c 0 - 341 398 319 404 288 404 c 2 - 237 404 l 0xee - 230 404 199 404 196 397 c 0 - 191 387 186 371 183 353 c 2 - 161 235 l 2 - 160 232 172 231 185 231 c 2 - 216 231 l 2 - 271 231 268 235 287 279 c 0 - 288 282 294 284 299 284 c 0 - 304 284 309 282 311 279 c 1 - 286 150 l 1 - 284 149 278 147 273 147 c 0 - 268 147 262 149 261 152 c 0 - 259 187 258 189 254 193 c 0 - 249 197 216 198 195 198 c 0 - 179 198 154 198 153 192 c 2 - 131 81 l 2 - 127 62 125 45 126 35 c 0 - 126 28 167 25 174 25 c 1 - 175 17 172 2 169 -3 c 1 - 143 -1 106 1 82 1 c 0 - 53 1 24 -3 -0 -3 c 1 - -2 3 0 21 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 61 64 65 84 c 2 - 117 354 l 2 - 121 374 124 390 124 401 c 0 - 124 408 87 412 80 412 c 1 - 79 418 82 435 86 440 c 1xde - 111 438 141 436 165 436 c 0xee -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.short.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.short.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/f.short.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/f.short.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: f.short -Encoding: 65566 -1 417 -Width: 270 -VWidth: 0 -Flags: W -HStem: -226 38<-65 -8> 353 45<46 102 185 279> 646 32<239 285> -LayerCount: 2 -Fore -SplineSet -280 678 m 0 - 323 678 350 662 362 649 c 1 - 366 628 355 586 327 586 c 0 - 293 586 295 646 259 646 c 0 - 227 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 184 397 186 397 c 2 - 275 397 l 2 - 279 397 280 391 280 386 c 27 - 280 372 275 361 270 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 24 -226 -61 -226 c 0 - -111 -226 -135 -203 -141 -186 c 1 - -142 -157 -124 -128 -101 -128 c 0 - -75 -128 -77 -188 -28 -188 c 0 - 7 -188 38 -21 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 140 531 176 678 280 678 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gbreve -Encoding: 287 287 326 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 103 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 472 7 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" gbreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gbreve -Encoding: 286 286 325 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 290 -1 N 1 0 0 1 234 198 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gbreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gbreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gbreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gbreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gbreve.sc -Encoding: 65673 -1 528 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 450 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 563 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gcaron -Encoding: 487 487 841 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 469 2 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcaron -Encoding: 486 486 840 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 38 71 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 178 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcircumflex -Encoding: 285 285 324 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 489 5 2 -Refer: 70 103 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" gcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcircumflex -Encoding: 284 284 323 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 179 0 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gcircumflex.sc -Encoding: 65672 -1 527 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 575 29 2 -Refer: 450 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gdotaccent -Encoding: 289 289 328 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 103 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 491 55 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" gdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gdotaccent -Encoding: 288 288 327 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 186 17 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gdotaccent.sc -Encoding: 65674 -1 529 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 450 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 573 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/germandbls.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/germandbls.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/germandbls.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/germandbls.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: germandbls -Encoding: 223 223 156 -Width: 488 -VWidth: 0 -Flags: W -HStem: -228 42<-83 -8> -4 29<290 359> 367 36<43 119> 627 42<266 344> -VStem: 246 56<300 370> 374 62<50 145 471 598> -LayerCount: 2 -Fore -SplineSet -199 403 m 0 - 173 260 156 165 133 42 c 0 - 102 -118 9 -228 -69 -228 c 0 - -97 -228 -115 -216 -122 -203 c 1 - -122 -198 -122 -193 -121 -187 c 0 - -118 -167 -110 -148 -93 -148 c 0 - -76 -148 -67 -159 -56 -171 c 0 - -49 -178 -41 -186 -27 -186 c 0 - 11 -186 31 -117 61 38 c 1 - 119 367 l 1 - 36 367 l 2 - 35 367 34 368 34 370 c 0 - 34 380 57 403 79 403 c 2 - 125 403 l 1 - 156 563 249 669 327 669 c 0 - 377 669 442 636 442 559 c 0 - 442 473 385 442 357 416 c 0 - 331 392 302 367 302 344 c 3 - 302 318 331 292 354 266 c 0 - 393 221 436 184 436 119 c 27 - 436 48 378 -4 301 -4 c 3 - 242 -4 217 17 203 31 c 1 - 201 37 197 49 198 57 c 0 - 200 84 216 97 237 97 c 3 - 265 97 274 25 322 25 c 0 - 361 25 374 55 374 86 c 0 - 374 128 326 182 301 211 c 0 - 273 243 246 271 246 316 c 0 - 246 360 270 371 324 425 c 0 - 351 452 375 483 375 534 c 0 - 375 594 333 627 293 627 c 0 - 250 627 228 559 199 403 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" germandbls.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/germandbls.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/germandbls.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/germandbls.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/germandbls.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: germandbls.sc -Encoding: 65656 -1 511 -Width: 629 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 462 -1 N 1 0 0 1 283 0 2 -Refer: 462 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/g.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/g.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/g.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/g.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: g -Encoding: 103 103 70 -Width: 402 -Flags: W -HStem: -228 34<71 221> 119 28<138 149> 397 28<168 235> -VStem: -47 72<-160 -75> 39 72<170 319> 52 86<44 81> 271 62<-147 -70 208 363> -LayerCount: 2 -Fore -SplineSet -271 -115 m 0xf2 - 271 -53 181 -24 124 -6 c 1 - 85 -23 25 -52 25 -107 c 0 - 25 -172 89 -193 165 -193 c 0 - 230 -193 271 -156 271 -115 c 0xf2 -207 397 m 0 - 145 397 111 308 111 241 c 0xfa - 111 193 131 147 172 147 c 0 - 235 147 267 226 267 287 c 0 - 267 335 245 397 207 397 c 0 -325 372 m 1 - 326 366 339 331 339 305 c 0 - 339 201 270 154 250 142 c 0 - 216 121 138 102 138 80 c 0 - 138 48 334 38 334 -76 c 0 - 334 -169 245 -228 105 -228 c 0 - 17 -228 -47 -193 -47 -132 c 0 - -47 -65 36 -20 94 6 c 1 - 76 18 l 2 - 64 26 52 35 52 53 c 0xf6 - 52 77 117 111 149 119 c 1 - 118 119 39 156 39 233 c 0 - 39 343 133 426 224 426 c 0 - 261 426 283 416 307 404 c 0 - 321 397 355 417 368 419 c 1 - 381 415 408 398 408 385 c 0 - 408 378 404 371 396 371 c 0 - 382 371 338 373 325 372 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" g.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_G.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_G.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_G.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_G.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: G -Encoding: 71 71 38 -Width: 680 -Flags: W -HStem: -8 28<276 418> 259 28<432 495 583 648> 620 30<344 493> -VStem: 58 93<156 387> 495 57<110 131> 571 30<478 549> -LayerCount: 2 -Fore -SplineSet -571 482 m 1 - 576 560 508 620 426 620 c 0 - 274 620 149 487 150 275 c 0 - 150 159 205 21 347 21 c 0 - 394 21 435 40 456 54 c 0 - 461 58 465 63 466 70 c 0 - 471 96 485 171 485 171 c 2 - 491 200 497 227 495 243 c 0 - 494 254 442 259 431 259 c 1 - 428 264 430 282 436 287 c 1 - 473 285 506 282 541 282 c 0 - 576 282 610 285 648 287 c 1 - 652 282 650 264 645 259 c 1 - 634 259 587 254 582 243 c 0 - 574 227 569 200 563 171 c 2 - 550 102 l 2 - 546 81 552 76 552 66 c 0 - 552 60 547 54 530 45 c 0 - 485 22 436 -8 316 -8 c 0 - 166 -8 58 114 58 259 c 0 - 58 505 251 654 454 650 c 0 - 511 649 563 637 611 625 c 1 - 609 590 604 511 602 482 c 0 - 602 479 598 478 594 478 c 1 - 588 478 579 478 571 482 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb.cap -Encoding: 65550 -1 284 -Width: 216 -GlyphClass: 4 -Flags: W -HStem: 678 105 -VStem: 160 177 -LayerCount: 2 -Fore -SplineSet -331 678 m 0 - 316 678 160 738 160 762 c 0 - 160 773 179 783 207 783 c 0 - 214 783 230 780 233 778 c 0 - 257 762 337 695 337 688 c 0 - 337 685 332 678 331 678 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/gravecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: gravecomb -Encoding: 768 768 229 -Width: 0 -VWidth: 944 -GlyphClass: 4 -Flags: W -HStem: 479 128 -VStem: -347 167 -LayerCount: 2 -Fore -SplineSet --188 479 m 0 - -203 479 -347 558 -347 577 c 0 - -347 599 -322 606 -309 606 c 0 - -294 606 -282 604 -272 597 c 0 - -259 588 -180 496 -180 488 c 0 - -180 485 -185 479 -188 479 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/grave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/grave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/grave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/grave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: grave -Encoding: 96 96 63 -Width: 196 -Flags: HW -LayerCount: 2 -Fore -Refer: 229 768 N 1 0 0 1 366 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greaterequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greaterequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greaterequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greaterequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: greaterequal -Encoding: 8805 8805 227 -Width: 455 -Flags: W -HStem: 6 55<18 374> -LayerCount: 2 -Fore -SplineSet -32 61 m 1 - 376 61 l 2 - 379 61 380 58 380 52 c 3 - 380 38 371 19 359 6 c 1 - 16 6 l 2 - 13 6 11 9 11 15 c 3 - 11 29 21 47 32 61 c 1 -40 86 m 17 - 34 94 27 122 27 131 c 0 - 27 135 29 137 33 139 c 2 - 366 303 l 1 - 102 464 l 1 - 102 488 117 518 123 518 c 0 - 125 518 127 518 129 517 c 2 - 429 334 l 2 - 436 330 440 323 440 314 c 0 - 440 312 439 283 417 272 c 2 - 40 86 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greater.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greater.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greater.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greater.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: greater -Encoding: 62 62 29 -Width: 437 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet -331 204 m 1 - 65 365 l 1 - 65 365 63 366 63 369 c 0 - 63 376 84 420 89 420 c 0 - 90 420 91 419 93 418 c 2 - 393 235 l 2 - 400 231 404 225 404 216 c 0 - 404 213 402 184 381 173 c 2 - 5 -13 l 2 - 3 -14 1 -15 -1 -15 c 0 - -6 -15 -7 4 -7 32 c 0 - -7 37 -2 40 -2 40 c 1 - 331 204 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" greater.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greater.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greater.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/greater.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/greater.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: greater.sc -Encoding: 65586 -1 441 -Width: 379 -VWidth: 0 -Flags: W -VStem: 22 320 -LayerCount: 2 -Fore -SplineSet -22 74 m 0 - 23 79 26 80 26 80 c 1 - 277 204 l 1 - 74 327 l 1 - 74 327 71 330 73 336 c 0 - 87 372 93 377 96 377 c 0 - 97 377 98 376 100 375 c 2 - 323 239 l 2 - 340 229 344 215 342 204 c 0 - 340 192 333 181 312 170 c 2 - 33 32 l 2 - 31 31 29 30 28 30 c 0 - 22 30 21 67 22 74 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/g.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/g.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/g.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/g.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: g.sc -Encoding: 65595 -1 450 -Width: 502 -Flags: W -HStem: -5 32<174 305> 171 28<295 333 405 452> 412 32<235 370> -VStem: 39 81<95 288> 333 51<47 160> 407 26<320 373> -LayerCount: 2 -Fore -SplineSet -328 117 m 2 - 332 136 334 151 333 161 c 0 - 333 168 299 171 292 171 c 1 - 291 180 295 194 298 199 c 1 - 324 197 352 195 376 195 c 0 - 400 195 429 197 455 199 c 1 - 455 194 452 175 449 171 c 1 - 442 171 408 167 405 160 c 0 - 400 149 398 134 394 114 c 2 - 394 114 387 78 386 71 c 0 - 383 57 385 51 384 44 c 0 - 383 40 381 38 369 32 c 0 - 339 16 309 -5 225 -5 c 0 - 99 -5 39 98 39 188 c 0 - 39 345 182 444 307 444 c 0 - 349 444 392 440 436 426 c 1 - 436 426 435 335 434 328 c 1 - 433 322 424 319 416 319 c 0 - 412 319 408 320 407 322 c 1 - 407 342 405 412 305 412 c 0 - 218 412 120 342 120 174 c 0 - 120 102 140 27 237 27 c 0 - 266 27 290 35 309 45 c 0 - 313 47 315 51 316 55 c 0 - 319 72 328 117 328 117 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guillemotleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guillemotleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guillemotleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guillemotleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: guillemotleft -Encoding: 171 171 105 -Width: 472 -VWidth: 0 -Flags: W -VStem: 26 87<215 261> 202 87<215 261> -LayerCount: 2 -Fore -SplineSet -391 89 m 1 - 386 80 376 74 370 71 c 1 - 341 109 271 178 212 223 c 0 - 206 227 202 230 202 236 c 0 - 202 247 210 256 217 260 c 0 - 325 322 367 359 436 413 c 1 - 440 412 451 407 453 398 c 1 - 448 386 289 243 289 243 c 1 - 289 243 391 97 391 89 c 1 -215 89 m 1 - 210 80 200 74 194 71 c 1 - 165 109 95 178 36 223 c 0 - 30 227 26 230 26 236 c 0 - 26 247 34 256 41 260 c 0 - 149 322 191 359 260 413 c 1 - 264 412 275 407 277 398 c 1 - 272 386 113 243 113 243 c 1 - 113 243 215 97 215 89 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guillemotright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guillemotright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guillemotright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guillemotright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: guillemotright -Encoding: 187 187 120 -Width: 473 -VWidth: 0 -Flags: W -VStem: 177 87<223 270> 353 87<223 270> -LayerCount: 2 -Fore -SplineSet -251 396 m 1 - 256 405 265 410 271 413 c 1 - 300 375 371 307 430 262 c 0 - 436 258 439 254 439 248 c 0 - 439 237 432 229 425 225 c 0 - 317 163 275 125 206 71 c 1 - 202 72 190 77 188 86 c 1 - 193 98 353 241 353 241 c 1 - 353 241 251 388 251 396 c 1 -75 396 m 1 - 80 405 90 410 96 413 c 1 - 125 375 195 307 254 262 c 0 - 260 258 264 254 264 248 c 0 - 264 237 256 229 249 225 c 0 - 141 163 99 125 30 71 c 1 - 26 72 15 77 13 86 c 1 - 18 98 177 241 177 241 c 1 - 177 241 75 388 75 396 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guilsinglleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guilsinglleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guilsinglleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guilsinglleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: guilsinglleft -Encoding: 8249 8249 211 -Width: 296 -VWidth: 0 -Flags: W -VStem: 26 87<215 261> -LayerCount: 2 -Fore -SplineSet -215 89 m 1 - 210 80 200 74 194 71 c 1 - 165 109 95 178 36 223 c 0 - 30 227 26 230 26 236 c 0 - 26 247 34 256 41 260 c 0 - 149 322 191 359 260 413 c 1 - 264 412 275 407 277 398 c 1 - 272 386 113 243 113 243 c 1 - 113 243 215 97 215 89 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guilsinglright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guilsinglright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/guilsinglright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/guilsinglright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: guilsinglright -Encoding: 8250 8250 212 -Width: 297 -VWidth: 0 -Flags: W -VStem: 177 87<223 270> -LayerCount: 2 -Fore -SplineSet -75 396 m 1 - 80 405 90 410 96 413 c 1 - 125 375 195 307 254 262 c 0 - 260 258 264 254 264 248 c 0 - 264 237 256 229 249 225 c 0 - 141 163 99 125 30 71 c 1 - 26 72 15 77 13 86 c 1 - 18 98 177 241 177 241 c 1 - 177 241 75 388 75 396 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: hbar -Encoding: 295 295 403 -Width: 458 -Flags: W -HStem: -6 54<282 345> 353 72<280 348> 519 33<78 311> 616 21<76 132> 649 20<198 211> -VStem: 136 79<535 651> 260 73<21 167> 308 75<217 379> -LayerCount: 2 -Fore -SplineSet -87 552 m 1xfc - 111 552 299 552 311 552 c 0 - 314 552 314 548 313 544 c 0 - 312 539 308 527 303 519 c 1 - 279 519 90 519 78 519 c 0 - 75 519 75 525 76 529 c 0 - 77 534 80 544 87 552 c 1xfc -EndSplineSet -Refer: 71 104 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" hbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: Hbar -Encoding: 294 294 402 -Width: 669 -Flags: W -HStem: -3 28<-3 66 155 213 361 430 520 577> 309 39<210 488> 461 33<104 652> 618 28<118 175 265 334 482 539 630 698> -LayerCount: 2 -Fore -SplineSet -113 494 m 1 - 137 494 640 494 652 494 c 0 - 655 494 656 490 655 486 c 0 - 654 481 650 469 645 461 c 1 - 621 461 116 461 104 461 c 0 - 101 461 102 468 103 472 c 0 - 104 477 106 486 113 494 c 1 -EndSplineSet -Refer: 39 72 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: hbar.sc -Encoding: 65677 -1 532 -Width: 509 -Flags: W -HStem: -3 28<3 53 126 166 249 299 372 413> 210 33<167 334> 313 26<81 491> 412 28<83 123 198 248 330 370 444 493> -LayerCount: 2 -Fore -SplineSet -489 313 m 1 - 469 313 88 313 78 313 c 1 - 75 313 78 333 84 340 c 1 - 104 340 484 340 494 340 c 1 - 497 340 493 320 489 313 c 1 -EndSplineSet -Refer: 451 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: hcircumflex -Encoding: 293 293 332 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 71 104 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 -88 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" hcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Hcircumflex -Encoding: 292 292 331 -Width: 669 -Flags: HW -LayerCount: 2 -Fore -Refer: 39 72 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 156 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hcircumflex.sc -Encoding: 65676 -1 531 -Width: 509 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 549 26 2 -Refer: 451 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: h -Encoding: 104 104 71 -Width: 458 -Flags: W -HStem: -6 54<282 345> 353 72<280 348> 616 21<76 132> 649 20G<198 211> -VStem: 136 79<535 651> 260 73<21 167> 308 75<217 379> -LayerCount: 2 -Fore -SplineSet -202 577 m 2xfa - 152 322 l 1 - 135 232 l 1 - 148 256 265 425 329 425 c 0 - 367 425 383 397 383 360 c 0xfa - 383 327 377 291 369 254 c 2 - 337 104 l 2 - 336 100 333 77 333 72 c 0 - 333 63 333 48 343 48 c 0 - 364 48 408 101 411 104 c 1 - 414 104 421 92 421 86 c 1 - 410 67 339 -6 293 -6 c 0 - 272 -6 260 16 260 45 c 0xfc - 260 53 262 76 267 97 c 2 - 301 258 l 2 - 303 267 308 300 308 311 c 0 - 308 333 306 353 289 353 c 0 - 254 353 136 230 114 116 c 0 - 108 86 100 45 90 0 c 1 - 80 -3 65 -4 55 -4 c 0 - 45 -4 33 -3 21 0 c 1 - 127 546 l 2 - 130 564 136 587 136 598 c 0 - 136 617 92 616 76 616 c 1 - 73 620 76 633 80 637 c 1 - 134 642 188 661 209 669 c 1 - 214 666 215 656 215 650 c 0 - 215 642 207 601 202 577 c 2xfa -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" h.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_H.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_H.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_H.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_H.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: H -Encoding: 72 72 39 -Width: 669 -Flags: W -HStem: -3 28<-4 65 154 212 360 429 519 576> 309 39<209 487> 618 28<117 174 264 333 481 538 629 697> -LayerCount: 2 -Fore -SplineSet -164 113 m 2 - 158 84 152 57 154 41 c 0 - 155 30 203 25 214 25 c 1 - 217 20 214 2 208 -3 c 1 - 171 -1 138 2 103 2 c 0 - 68 2 33 -1 -5 -3 c 1 - -9 2 -5 20 -0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 176 587 174 603 c 0 - 173 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 192 642 227 642 c 0 - 262 642 297 644 335 646 c 1 - 339 641 334 623 329 618 c 1 - 318 618 268 614 263 603 c 0 - 255 587 250 559 245 530 c 2 - 209 348 l 1 - 494 348 l 1 - 530 530 l 2 - 535 559 541 587 539 603 c 0 - 538 614 490 618 479 618 c 1 - 476 623 479 641 485 646 c 1 - 522 644 556 642 591 642 c 0 - 626 642 661 644 699 646 c 1 - 703 641 698 623 693 618 c 1 - 682 618 633 614 628 603 c 0 - 620 587 615 559 609 530 c 2 - 528 113 l 2 - 522 84 516 57 518 41 c 0 - 519 30 567 25 578 25 c 1 - 581 20 578 2 572 -3 c 1 - 535 -1 501 2 466 2 c 0 - 431 2 397 -1 359 -3 c 1 - 355 2 359 20 364 25 c 1 - 375 25 425 30 430 41 c 0 - 438 57 443 84 449 113 c 2 - 487 309 l 1 - 202 309 l 1 - 164 113 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: hookabovecomb.cap -Encoding: 65561 -1 295 -Width: 160 -GlyphClass: 4 -Flags: W -HStem: 470 61<140 172> 582 35<135 205> -VStem: 137 35<475 511> 207 46<535 579> -LayerCount: 2 -Fore -SplineSet -166 582 m 0 - 145 582 127 571 122 564 c 1 - 119 565 115 569 115 575 c 0 - 115 592 155 617 187 617 c 0 - 228 617 253 592 253 570 c 0 - 253 535 213 520 191 512 c 0 - 180 508 172 504 172 497 c 0 - 172 490 176 482 178 479 c 1 - 173 474 163 470 157 470 c 1 - 151 472 137 480 137 499 c 0 - 137 513 157 523 174 530 c 0 - 192 537 207 547 207 558 c 0 - 207 577 185 582 166 582 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hookabovecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: hookabovecomb -Encoding: 777 777 266 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 476 57<-301 -271> 593 34<-299 -238> -VStem: -303 31<480 515> -235 44<538 590> -LayerCount: 2 -Fore -SplineSet --271 593 m 0 - -290 593 -307 582 -311 576 c 1 - -314 577 -316 582 -316 587 c 0 - -316 603 -281 627 -253 627 c 0 - -217 627 -191 606 -191 576 c 0 - -191 538 -237 524 -258 515 c 0 - -270 510 -271 504 -271 498 c 0 - -271 492 -268 486 -266 483 c 1 - -270 479 -280 476 -285 476 c 1 - -290 478 -303 486 -303 503 c 0 - -303 520 -285 525 -270 532 c 0 - -250 541 -235 548 -235 565 c 0 - -235 583 -254 593 -271 593 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/h.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/h.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/h.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/h.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: h.sc -Encoding: 65596 -1 451 -Width: 509 -Flags: W -HStem: -3 28<3 53 126 166 249 299 372 413> 210 33<167 334> 412 28<83 123 198 248 330 370 444 493> -LayerCount: 2 -Fore -SplineSet -167 437 m 0 - 192 437 224 438 250 440 c 1 - 251 432 248 416 244 412 c 1 - 237 412 200 409 197 402 c 0 - 192 392 189 374 185 355 c 2 - 163 245 l 1 - 163 244 165 243 165 243 c 1 - 192 242 222 241 254 241 c 0 - 280 241 315 242 341 243 c 1 - 341 243 342 245 342 246 c 0 - 351 289 363 355 363 355 c 2 - 367 374 371 392 370 402 c 0 - 370 409 334 412 327 412 c 1 - 327 421 329 435 332 440 c 1 - 358 438 389 437 414 437 c 0 - 439 437 470 438 496 440 c 1 - 497 432 493 418 490 412 c 1 - 483 412 447 408 444 401 c 0 - 439 390 434 374 430 354 c 2 - 378 84 l 2 - 374 64 372 47 372 36 c 0 - 372 29 408 25 415 25 c 1 - 416 19 413 1 410 -3 c 1 - 384 -1 354 1 329 1 c 0 - 304 1 272 -1 246 -3 c 1 - 246 6 249 20 252 25 c 1 - 259 25 296 28 299 35 c 0 - 304 45 307 63 311 82 c 2 - 334 206 l 1 - 334 208 l 1 - 308 209 276 210 247 210 c 0 - 168 210 159 208 156 207 c 1 - 155 206 l 1 - 132 82 l 2 - 128 63 125 45 126 35 c 0 - 126 28 162 25 169 25 c 1 - 169 20 166 1 163 -3 c 1 - 137 -1 107 1 82 1 c 0 - 57 1 26 -1 0 -3 c 1 - -1 1 2 21 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 62 64 66 84 c 2 - 117 354 l 2 - 121 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 80 420 83 436 86 440 c 1 - 112 438 142 437 167 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hungarumlaut -Encoding: 733 733 260 -Width: 438 -VWidth: 55 -Flags: HW -LayerCount: 2 -Fore -Refer: 268 779 N 1 0 0 1 937 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hyphen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hyphen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/hyphen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/hyphen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: hyphen -Encoding: 45 45 12 -Width: 362 -VWidth: 0 -Flags: W -VStem: 52 248<205 255> -LayerCount: 2 -Fore -SplineSet -72 255 m 2 - 294 267 l 2 - 299 267 300 260 300 255 c 0 - 300 242 287 206 277 205 c 10 - 57 194 l 2 - 54 194 52 201 52 209 c 0 - 52 220 61 254 72 255 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: iacute -Encoding: 237 237 170 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 233 305 N 1 0 0 1 3 0 2 -Refer: 230 769 N 1 0 0 1 421 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" iacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Iacute -Encoding: 205 205 138 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 24 17 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: iacute.sc -Encoding: 65638 -1 493 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 447 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ibreve -Encoding: 301 301 338 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 233 305 N 1 0 0 1 3 0 2 -Refer: 263 774 N 1 0 0 1 406 6 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ibreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ibreve -Encoding: 300 300 337 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 3 -Refer: 290 -1 N 1 0 0 1 27 198 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ibreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ibreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ibreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ibreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ibreve.sc -Encoding: 65680 -1 535 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 426 28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: icircumflex -Encoding: 238 238 171 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 410 4 2 -Refer: 233 305 N 1 0 0 1 3 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" icircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Icircumflex -Encoding: 206 206 139 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 -27 0 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/icircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: icircumflex.sc -Encoding: 65639 -1 494 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 435 26 2 -Refer: 452 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: idieresis -Encoding: 239 239 172 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 233 305 N 1 0 0 1 3 0 3 -Refer: 298 -1 N 1 0 0 1 -68 29 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" idieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idieresis -Encoding: 207 207 140 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 499 245 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/idieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/idieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/idieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/idieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: idieresis.sc -Encoding: 65640 -1 495 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 426 32 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Idotaccent -Encoding: 304 304 341 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 -20 17 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" Idotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Idotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Idotaccent.sc -Encoding: 65682 -1 537 -Width: 263 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 437 30 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: i.fi -Encoding: 65753 -1 873 -Width: 268 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet --22 398 m 1 - 27 399 66 400 94 403 c 0 - 128 406 156 408 176 408 c 0 - 185 408 189 402 189 391 c 0 - 189 369 187 345 182 322 c 2 - 132 104 l 2 - 124 67 126 48 138 48 c 0 - 149 48 172 66 206 104 c 1 - 208 104 210 102 212 97 c 128 - 214 92 216 89 216 86 c 1 - 208 72 189 54 161 30 c 128 - 133 6 108 -6 88 -6 c 0 - 78 -6 70 -1 64 8 c 128 - 58 17 55 30 55 45 c 128 - 55 60 57 78 62 97 c 2 - 104 286 l 2 - 115 333 106 356 76 357 c 0 - 50 357 18 356 -22 354 c 1 - -22 398 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: i -Encoding: 105 105 72 -Width: 255 -Flags: W -HStem: -6 54<75 137> 371 54<95 158> 533 98<124 187> -VStem: 52 73<45 124> 112 73<295 374> 113 86<545 621> -LayerCount: 2 -Fore -SplineSet -108 315 m 2xf0 - 109 321 112 342 112 347 c 0 - 112 356 113 371 103 371 c 0 - 82 371 37 317 34 314 c 1 - 31 314 24 327 24 333 c 1 - 35 352 101 425 147 425 c 0 - 168 425 186 403 186 374 c 0xe8 - 186 366 183 343 179 322 c 2 - 129 104 l 2 - 127 94 125 77 125 72 c 0 - 125 63 125 48 135 48 c 0 - 156 48 200 101 203 104 c 1 - 206 104 213 92 213 86 c 1 - 202 67 131 -6 85 -6 c 0 - 64 -6 52 16 52 45 c 0 - 52 53 55 76 59 97 c 2 - 108 315 l 2xf0 -164 631 m 0 - 185 631 199 613 199 592 c 0 - 199 562 176 533 146 533 c 0 - 125 533 113 554 113 575 c 0xe4 - 113 604 135 631 164 631 c 0 -EndSplineSet -Substitution2: "'ccmp' Turkish i-1" i.TRK -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" i.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_I.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_I.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_I.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_I.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: I -Encoding: 73 73 40 -Width: 305 -Flags: W -HStem: -3 28<-4 65 154 212> 618 28<117 174 264 333> -LayerCount: 2 -Fore -SplineSet -227 642 m 0 - 262 642 297 644 335 646 c 1 - 339 641 334 623 329 618 c 1 - 318 618 268 614 263 603 c 0 - 255 587 251 559 245 530 c 2 - 164 113 l 2 - 158 84 152 57 154 41 c 0 - 155 30 203 25 214 25 c 1 - 217 20 214 2 208 -3 c 1 - 171 -1 138 2 103 2 c 0 - 68 2 33 -1 -5 -3 c 1 - -9 2 -5 20 -0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 176 587 174 603 c 0 - 173 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 192 642 227 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: igrave -Encoding: 236 236 169 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 233 305 N 1 0 0 1 3 0 2 -Refer: 229 768 N 1 0 0 1 375 -21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" igrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Igrave -Encoding: 204 204 137 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 -42 16 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/igrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/igrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/igrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/igrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: igrave.sc -Encoding: 65637 -1 492 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 439 2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ij.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ij.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ij.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ij.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: ij -Encoding: 307 307 410 -Width: 444 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 73 106 N 1 0 0 1 201 0 2 -Refer: 72 105 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ij.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_I_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_I_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_I_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_I_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: IJ -Encoding: 306 306 409 -Width: 548 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 2 -Refer: 41 74 N 1 0 0 1 257 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ij.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ij.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ij.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ij.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij.sc -Encoding: 65684 -1 539 -Width: 462 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 453 -1 N 1 0 0 1 209 0 2 -Refer: 452 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: imacron -Encoding: 299 299 336 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 233 305 N 1 0 0 1 3 0 2 -Refer: 261 772 N 1 0 0 1 409 13 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" imacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Imacron -Encoding: 298 298 335 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 3 -Refer: 289 -1 N 1 0 0 1 -52 176 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/imacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/imacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/imacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/imacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: imacron.sc -Encoding: 65679 -1 534 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 452 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 426 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/infinity.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/infinity.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/infinity.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/infinity.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: infinity -Encoding: 8734 8734 224 -Width: 801 -Flags: W -HStem: 42 56<126 235 512 620> 354 59<169 278 556 661> -VStem: 33 65<126 272> 688 67<182 325> -LayerCount: 2 -Fore -SplineSet -600 358 m 0 - 544 358 474 279 435 240 c 0 - 434 239 433 238 434 237 c 0 - 465 180 500 98 562 98 c 0 - 637 98 688 193 688 258 c 0 - 688 315 655 358 600 358 c 0 -229 354 m 0 - 160 354 99 272 99 194 c 0 - 99 138 132 95 186 95 c 0 - 246 95 306 168 354 213 c 0 - 355 214 355 214 354 215 c 0 - 332 253 292 354 229 354 c 0 -251 412 m 0 - 339 412 387 326 415 279 c 0 - 416 277 420 276 421 278 c 0 - 469 330 547 412 635 412 c 0 - 709 412 755 350 755 274 c 0 - 755 152 644 42 533 42 c 0 - 414 42 379 176 369 176 c 2 - 368 176 l 1 - 307 114 238 40 149 40 c 0 - 76 40 33 102 33 178 c 0 - 33 301 141 412 251 412 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: iogonek -Encoding: 303 303 340 -Width: 256 -Flags: W -HStem: -225 58<39 112> 371 54<95 158> 533 98<124 187> -VStem: 4 53<-189 -106> 112 73<295 374> 113 86<545 621> -LayerCount: 2 -Fore -SplineSet -164 631 m 0xf4 - 185 631 199 613 199 592 c 0 - 199 562 176 533 146 533 c 0 - 125 533 113 554 113 575 c 0 - 113 604 135 631 164 631 c 0xf4 -213 86 m 1 - 208 77 186 54 165 35 c 0 - 113 -12 57 -86 57 -136 c 0 - 57 -151 63 -167 87 -167 c 0 - 133 -167 162 -130 168 -130 c 0 - 176 -130 165 -156 162 -159 c 0 - 137 -187 95 -225 54 -225 c 0 - 25 -225 4 -202 4 -176 c 0 - 4 -127 60 -42 91 -6 c 1 - 89 -6 87 -6 85 -6 c 0 - 64 -6 52 16 52 45 c 0 - 52 53 55 76 59 97 c 2 - 108 315 l 2 - 109 321 112 342 112 347 c 0 - 112 356 113 371 103 371 c 0 - 82 371 37 317 34 314 c 1 - 31 314 24 327 24 333 c 1 - 35 352 101 425 147 425 c 0 - 168 425 186 403 186 374 c 0xf8 - 186 366 183 343 179 322 c 2 - 129 104 l 2 - 127 94 125 77 125 72 c 0 - 125 63 125 48 135 48 c 0 - 156 48 200 101 203 104 c 1 - 206 104 213 92 213 86 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" iogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: Iogonek -Encoding: 302 302 339 -Width: 305 -Flags: W -HStem: -225 58<21 94> -3 28<-5 64 155 209> 618 28<116 173 264 332> -VStem: -14 52<-189 -104> -LayerCount: 2 -Fore -SplineSet -213 25 m 1 - 215 21 209 1 207 -3 c 1 - 191 -3 176 -6 161 -10 c 0 - 91 -31 38 -95 38 -136 c 0 - 38 -151 44 -167 68 -167 c 0 - 114 -167 143 -130 149 -130 c 0 - 157 -130 147 -156 144 -159 c 0 - 119 -187 76 -225 35 -225 c 0 - 6 -225 -14 -202 -14 -176 c 0 - -14 -115 49 -24 105 2 c 1 - 70 2 32 -1 -6 -3 c 1 - -10 2 -6 20 -1 25 c 1 - 10 25 60 30 65 41 c 0 - 73 57 78 84 84 113 c 2 - 165 530 l 2 - 171 559 176 587 174 603 c 0 - 173 614 125 618 114 618 c 1 - 111 623 114 641 120 646 c 1 - 157 644 192 642 227 642 c 0 - 262 642 296 644 334 646 c 1 - 338 641 333 623 328 618 c 1 - 317 618 268 614 263 603 c 0 - 255 587 250 559 244 530 c 2 - 163 113 l 2 - 157 84 151 57 153 41 c 0 - 154 30 202 25 213 25 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/iogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/iogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: iogonek.sc -Encoding: 65681 -1 536 -Width: 264 -Flags: W -HStem: -218 58<1 81> -3 28<3 52 126 165> 412 28<83 123 197 245> -VStem: -22 271 -LayerCount: 2 -Fore -SplineSet -167 437 m 0 - 192 437 223 438 250 440 c 1 - 249 436 245 416 244 412 c 1 - 237 412 200 408 197 401 c 0 - 192 390 189 374 185 354 c 2 - 132 84 l 2 - 128 64 125 47 126 36 c 0 - 126 29 162 25 169 25 c 1 - 168 21 165 1 164 -3 c 1 - 152 -2 131 -1 119 0 c 1 - 85 -17 38 -75 30 -118 c 0 - 27 -133 27 -160 56 -160 c 0 - 100 -160 128 -123 133 -123 c 0 - 134 -123 137 -128 135 -136 c 0 - 134 -141 131 -149 128 -153 c 0 - 104 -181 64 -218 25 -218 c 0 - -23 -218 -27 -169 -22 -143 c 0 - -11 -90 48 -28 83 1 c 1 - 80 1 80 1 77 1 c 0 - 51 1 26 -1 -1 -3 c 1 - 0 1 4 21 5 25 c 1 - 12 25 49 29 52 36 c 0 - 57 47 61 64 65 84 c 2 - 117 354 l 2 - 121 374 125 390 124 401 c 0 - 124 408 87 412 80 412 c 1 - 81 416 84 436 85 440 c 1 - 111 438 142 437 167 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: i.sc -Encoding: 65597 -1 452 -Width: 263 -Flags: W -HStem: -3 28<3 53 125 165> 412 28<83 123 196 246> -VStem: 0 249 -LayerCount: 2 -Fore -SplineSet -166 437 m 0 - 191 437 223 438 249 440 c 1 - 250 435 246 416 243 412 c 1 - 236 412 199 408 196 401 c 0 - 191 390 189 374 185 354 c 2 - 132 84 l 2 - 128 64 124 47 125 36 c 0 - 125 29 161 25 168 25 c 1 - 169 16 165 2 162 -3 c 1 - 136 -1 107 1 82 1 c 0 - 57 1 26 -1 0 -3 c 1 - 1 4 2 17 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 60 64 64 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 80 418 82 435 86 440 c 1 - 112 438 141 437 166 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: itilde -Encoding: 297 297 334 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 410 16 2 -Refer: 233 305 N 1 0 0 1 6 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" itilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Itilde -Encoding: 296 296 333 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 3 -Refer: 288 -1 N 1 0 0 1 -81 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/itilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/itilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/itilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/itilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: itilde.sc -Encoding: 65678 -1 533 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 430 38 2 -Refer: 452 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: i.TRK -Encoding: 65748 -1 858 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 105 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" i.TRK.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/i._T_R_K.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: i.TRK.sc -Encoding: 65749 -1 859 -Width: 263 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 537 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: jcircumflex -Encoding: 309 309 278 -Width: 243 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 437 4 2 -Refer: 416 567 N 1 0 0 1 3 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" jcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Jcircumflex -Encoding: 308 308 342 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 41 74 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 -50 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/jcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: jcircumflex.sc -Encoding: 65685 -1 540 -Width: 253 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 426 26 2 -Refer: 453 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.fj.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.fj.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.fj.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.fj.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,55 +0,0 @@ -StartChar: j.fj -Encoding: 65763 -1 883 -Width: 232 -VWidth: 0 -Flags: HW -LayerCount: 2 -Back -SplineSet --21.97265625 397.94921875 m 1 - 27.5068359375 398.92578125 66.2431640625 400.715820312 94.23828125 403.3203125 c 0 - 128.41796875 406.575195312 155.598632812 408.203125 175.78125 408.203125 c 0 - 184.895507812 408.203125 189.453125 402.506835938 189.453125 391.11328125 c 0 - 189.453125 368.65234375 186.848632812 345.703125 181.640625 322.265625 c 2 - 131.8359375 103.515625 l 2 - 123.372070312 66.7314453125 125.325195312 48.1767578125 137.6953125 47.8515625 c 0 - 149.088867188 47.8515625 171.875 66.7314453125 206.0546875 104.4921875 c 1 - 207.682617188 104.4921875 209.716796875 102.131835938 212.158203125 97.412109375 c 128 - 214.599609375 92.6923828125 215.8203125 88.8671875 215.8203125 85.9375 c 1 - 207.682617188 72.265625 189.372070312 53.5478515625 160.888671875 29.78515625 c 128 - 132.405273438 6.0224609375 108.073242188 -5.859375 87.890625 -5.859375 c 0 - 77.7998046875 -5.859375 69.7431640625 -1.1396484375 63.720703125 8.30078125 c 128 - 57.6982421875 17.7412109375 54.6875 30.029296875 54.6875 45.166015625 c 128 - 54.6875 60.302734375 56.9658203125 77.4736328125 61.5234375 96.6796875 c 2 - 104.4921875 286.1328125 l 2 - 115.559570312 333.0078125 106.120117188 356.770507812 76.171875 357.421875 c 0 - 50.4560546875 357.421875 17.7412109375 356.4453125 -21.97265625 354.4921875 c 1 - -21.97265625 397.94921875 l 1 -EndSplineSet -Fore -SplineSet --22 398 m 1 - -11 398 3 398 19 399 c 0 - 54 400 76 401 84 402 c 0 - 125 406 156 408 176 408 c 0 - 178 408 181 407 184 403 c 128 - 187 399 189 396 189 392 c 0 - 189 387 187 363 181 322 c 1 - 127 44 l 2 - 122 21 115 -7 103 -38 c 0 - 92 -68 77 -96 58 -121 c 0 - 39 -146 16 -168 -10 -188 c 128 - -36 -208 -58 -221 -78 -229 c 1 - -80 -227 -82 -225 -84 -221 c 128 - -86 -217 -87 -213 -87 -210 c 1 - -54 -191 -25 -162 -1 -121 c 128 - 23 -80 41 -33 52 21 c 2 - 104 286 l 1 - 106 294 107 303 107 313 c 0 - 107 325 105 335 101 344 c 128 - 97 353 90 357 82 357 c 0 - 65 357 45 357 21 356 c 0 - 4 355 -9 356 -22 355 c 1 - -22 398 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: j -Encoding: 106 106 73 -Width: 243 -Flags: W -HStem: 371 54<101 164> 533 98<141 203> -VStem: 118 73<245 397> 130 86<545 621> -LayerCount: 2 -Fore -SplineSet -114 315 m 2xe0 - 115 321 118 342 118 347 c 0 - 118 356 118 371 108 371 c 0 - 87 371 43 317 40 314 c 1 - 37 314 30 327 30 333 c 1 - 41 352 107 425 153 425 c 0 - 174 425 191 403 191 374 c 0 - 191 366 189 343 185 322 c 2 - 131 44 l 2 - 124 9 104 -65 62 -121 c 0 - 21 -175 -40 -215 -74 -229 c 1 - -78 -226 -83 -217 -83 -210 c 1 - -18 -173 35 -87 56 21 c 2 - 114 315 l 2xe0 -181 631 m 0 - 202 631 216 613 216 592 c 0 - 216 562 193 533 163 533 c 0 - 142 533 130 554 130 575 c 0xd0 - 130 604 152 631 181 631 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" j.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: J -Encoding: 74 74 41 -Width: 305 -Flags: W -HStem: -228 19<-105 -83> 618 28<111 168 258 327> -LayerCount: 2 -Fore -SplineSet -160 530 m 2 - 165 559 171 587 169 603 c 0 - 168 614 120 618 109 618 c 1 - 106 623 109 641 115 646 c 1 - 152 644 186 642 221 642 c 0 - 256 642 291 644 329 646 c 1 - 333 641 328 623 323 618 c 1 - 312 618 262 614 257 603 c 0 - 249 587 244 559 239 530 c 2 - 160 113 l 2 - 111 -145 -25 -228 -103 -228 c 1 - -105 -225 -105 -220 -105 -215 c 0 - -105 -213 -104 -209 -104 -209 c 1 - 5 -175 48 -82 82 106 c 2 - 160 530 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/j.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/j.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: j.sc -Encoding: 65598 -1 453 -Width: 253 -Flags: W -HStem: -151 41<-72 3> 412 28<80 119 192 242> -LayerCount: 2 -Fore -SplineSet -162 437 m 0 - 187 437 220 438 246 440 c 1 - 246 432 243 417 240 412 c 1 - 233 412 195 408 192 401 c 0 - 187 390 184 373 180 353 c 2 - 125 74 l 2 - 99 -63 25 -151 -65 -151 c 0 - -79 -151 -95 -143 -101 -136 c 1 - -103 -132 -104 -124 -103 -119 c 0 - -99 -97 -85 -79 -66 -79 c 0 - -56 -79 -50 -88 -43 -97 c 0 - -38 -104 -30 -110 -22 -110 c 0 - -3 -110 30 -76 60 80 c 2 - 113 354 l 2 - 117 374 120 390 120 401 c 0 - 120 408 84 412 77 412 c 1 - 77 419 79 435 82 440 c 1 - 108 438 137 437 162 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: k -Encoding: 107 107 74 -Width: 449 -Flags: W -HStem: -4 54<287 345> 379 46<249 336> 616 21<77 133> 649 20G<199 212> -VStem: 137 79<535 651> 314 76<293 378> -LayerCount: 2 -Fore -SplineSet -317 425 m 0 - 355 425 391 396 391 358 c 0 - 391 269 293 225 185 206 c 1 - 271 77 298 50 338 50 c 0 - 355 50 393 90 404 104 c 1 - 407 104 414 91 414 86 c 1 - 406 72 338 -4 295 -4 c 0 - 218 -4 169 117 127 187 c 1 - 91 0 l 1 - 80 -3 68 -5 57 -5 c 0 - 46 -5 33 -3 21 0 c 1 - 128 546 l 2 - 132 564 137 587 137 598 c 0 - 137 617 93 616 77 616 c 1 - 74 620 77 633 81 637 c 1 - 135 642 189 661 210 669 c 1 - 215 666 216 656 216 650 c 0 - 216 642 208 601 203 577 c 2 - 152 314 l 1 - 157 318 233 425 317 425 c 0 -282 379 m 0 - 225 379 147 285 135 225 c 1 - 200 225 314 265 314 346 c 0 - 314 364 309 379 282 379 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" k.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: K -Encoding: 75 75 42 -Width: 599 -Flags: W -HStem: -3 28<-3 65 155 213 508 556> 618 28<118 175 264 333 445 486 581 647> -LayerCount: 2 -Fore -SplineSet -469 70 m 0 - 488 48 510 29 559 25 c 1 - 563 20 554 -1 553 -3 c 1 - 492 -3 443 1 426 8 c 0 - 414 13 394 23 373 50 c 0 - 358 71 294 171 216 297 c 0 - 215 300 213 300 209 300 c 0 - 206 300 202 299 200 298 c 1 - 164 113 l 2 - 158 84 153 57 155 41 c 0 - 156 30 203 25 214 25 c 1 - 217 20 215 2 209 -3 c 1 - 172 -1 138 2 103 2 c 0 - 68 2 34 -1 -4 -3 c 1 - -8 2 -4 20 1 25 c 1 - 12 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 177 587 175 603 c 0 - 174 614 127 618 116 618 c 1 - 113 623 116 641 122 646 c 1 - 159 644 193 642 228 642 c 0 - 263 642 297 644 335 646 c 1 - 339 641 335 623 330 618 c 1 - 319 618 268 614 263 603 c 0 - 255 587 251 559 245 530 c 2 - 207 332 l 1 - 228 345 283 390 328 429 c 0 - 414 504 414 502 469 562 c 0 - 476 570 486 583 488 593 c 0 - 493 617 450 617 442 617 c 1 - 440 623 443 637 448 646 c 1 - 481 644 517 641 550 641 c 0 - 590 641 613 644 650 646 c 1 - 651 640 647 617 642 617 c 0 - 633 616 584 617 546 581 c 0 - 450 489 390 439 295 357 c 0 - 288 351 290 347 293 342 c 0 - 359 233 413 141 469 70 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: kgreenlandic -Encoding: 312 312 411 -Width: 470 -Flags: W -HStem: -4 54<309 366> 371 54<92 154> 379 46<271 358> -VStem: 43 69<-4 36> 108 73<279 397> 336 76<293 378> -LayerCount: 2 -Fore -SplineSet -104 315 m 2xb4 - 105 321 108 342 108 347 c 0 - 108 356 109 371 99 371 c 0 - 78 371 33 317 30 314 c 1 - 27 314 21 327 21 333 c 1 - 32 352 98 425 144 425 c 0 - 165 425 182 403 182 374 c 0xcc - 182 366 178 343 175 322 c 2 - 174 314 l 1 - 179 318 255 425 339 425 c 0 - 377 425 412 396 412 358 c 0 - 412 269 314 225 206 206 c 1 - 292 77 319 50 359 50 c 0 - 376 50 415 90 426 104 c 1 - 429 104 436 91 436 86 c 1 - 428 72 359 -4 316 -4 c 0 - 239 -4 190 117 148 187 c 1 - 112 0 l 1 - 101 -3 89 -5 78 -5 c 0 - 67 -5 55 -3 43 0 c 1 - 104 315 l 2xb4 -304 379 m 0xa4 - 247 379 168 285 156 225 c 1 - 221 225 336 265 336 346 c 0 - 336 364 331 379 304 379 c 0xa4 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" kgreenlandic.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/kgreenlandic.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: kgreenlandic.sc -Encoding: 65687 -1 542 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 454 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/k.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/k.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/k.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/k.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: k.sc -Encoding: 65599 -1 454 -Width: 455 -Flags: W -HStem: -3 28<2 53 126 166 359 389> 412 28<83 124 197 247 307 339 398 448> -LayerCount: 2 -Fore -SplineSet -328 68 m 0 - 339 52 363 30 393 25 c 1 - 396 21 388 -1 387 -3 c 1 - 349 -3 311 1 300 6 c 0 - 292 9 278 17 265 36 c 0 - 256 50 212 105 164 191 c 0 - 164 193 160 193 157 193 c 0 - 155 193 154 193 153 192 c 1 - 132 84 l 2 - 128 64 126 47 126 36 c 0 - 126 29 162 25 169 25 c 1 - 172 19 166 0 163 -3 c 1 - 137 -1 107 1 82 1 c 0 - 57 1 26 -1 -0 -3 c 1 - -3 5 2 21 5 25 c 1 - 12 25 51 29 54 36 c 0 - 59 47 61 64 65 84 c 2 - 117 354 l 2 - 121 374 124 390 124 401 c 0 - 124 408 87 412 80 412 c 1 - 80 419 83 436 86 440 c 1 - 112 438 142 437 167 437 c 0 - 192 437 224 438 250 440 c 1 - 251 432 249 416 244 412 c 1 - 237 412 200 408 197 401 c 0 - 192 390 188 374 184 354 c 2 - 159 225 l 1 - 173 234 208 263 236 289 c 0 - 286 336 293 341 330 376 c 0 - 335 381 339 389 340 396 c 0 - 343 413 309 411 304 411 c 1 - 305 418 306 433 309 440 c 1 - 330 438 362 436 383 436 c 0 - 408 436 429 438 451 440 c 1 - 452 433 449 417 445 411 c 1 - 440 410 410 411 385 389 c 0 - 324 333 285 296 225 241 c 0 - 220 237 220 233 223 230 c 0 - 263 158 294 116 328 68 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lacute -Encoding: 314 314 345 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 108 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 9 17 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" lacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Lacute -Encoding: 313 313 344 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 76 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 44 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: lacute.sc -Encoding: 65688 -1 543 -Width: 386 -Flags: HW -LayerCount: 2 -Fore -Refer: 455 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 491 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: lcaron -Encoding: 318 318 349 -Width: 253 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 108 N 1 0 0 1 0 0 2 -Refer: 271 789 N 1 0 0 1 147 41 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" lcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Lcaron -Encoding: 317 317 348 -Width: 569 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 76 N 1 0 0 1 0 0 2 -Refer: 271 789 N 1 0 0 1 384 41 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lcaron.sc -Encoding: 65690 -1 545 -Width: 431 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 789 N 1 0 0 1 195 -170 2 -Refer: 455 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: ldot -Encoding: 320 320 280 -Width: 362 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 75 108 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 550 -235 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ldot.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ldot -Encoding: 319 319 350 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 43 76 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 645 -202 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ldot.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ldot.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ldot.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ldot.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ldot.sc -Encoding: 65691 -1 546 -Width: 412 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 455 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 587 -277 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lessequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lessequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lessequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lessequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: lessequal -Encoding: 8804 8804 226 -Width: 453 -Flags: W -HStem: 6 55<-12 343> -LayerCount: 2 -Fore -SplineSet -2 61 m 1 - 346 61 l 2 - 349 61 350 58 350 52 c 3 - 350 38 341 19 329 6 c 1 - -15 6 l 2 - -18 6 -20 9 -20 15 c 3 - -20 29 -9 47 2 61 c 1 -425 517 m 17 - 429 512 438 494 438 477 c 27 - 438 472 437 466 433 464 c 2 - 104 303 l 1 - 374 139 l 1 - 374 121 357 85 351 85 c 0 - 350 85 349 85 347 86 c 2 - 43 272 l 2 - 35 277 32 285 32 295 c 0 - 32 319 43 328 55 334 c 2 - 425 517 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/less.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/less.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/less.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/less.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: less -Encoding: 60 60 27 -Width: 436 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet -85 204 m 1 - 353 40 l 1 - 353 40 354 39 354 35 c 0 - 354 22 335 -14 330 -14 c 0 - 329 -14 328 -14 326 -13 c 2 - 21 173 l 2 - 15 177 12 186 12 198 c 0 - 12 212 17 226 34 235 c 2 - 406 418 l 2 - 408 419 409 419 410 419 c 0 - 413 419 417 399 417 385 c 0 - 417 382 416 367 412 365 c 2 - 85 204 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" less.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/less.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/less.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/less.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/less.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: less.sc -Encoding: 65584 -1 439 -Width: 379 -VWidth: 0 -Flags: W -VStem: 16 321 -LayerCount: 2 -Fore -SplineSet -287 74 m 0 - 286 67 269 30 263 30 c 0 - 262 30 261 31 259 32 c 2 - 34 170 l 2 - 16 181 14 192 16 204 c 0 - 18 215 28 229 49 239 c 2 - 325 375 l 2 - 327 376 329 377 330 377 c 0 - 333 377 339 372 338 336 c 0 - 338 330 333 327 333 327 c 1 - 82 204 l 1 - 285 80 l 1 - 285 80 288 79 287 74 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: l -Encoding: 108 108 75 -Width: 237 -Flags: W -HStem: -6 54<59 121> 616 21<80 135> 649 20G<202 215> -VStem: 36 73<21 172> 140 79<532 651> -LayerCount: 2 -Fore -SplineSet -131 546 m 2 - 135 564 140 587 140 598 c 0 - 140 617 96 616 80 616 c 1 - 77 620 80 633 84 637 c 1 - 138 642 192 661 213 669 c 1 - 218 666 219 656 219 650 c 0 - 219 642 211 601 206 577 c 2 - 113 104 l 2 - 112 100 109 77 109 72 c 0 - 109 63 109 48 119 48 c 0 - 140 48 185 101 188 104 c 1 - 191 104 197 92 197 86 c 1 - 186 67 115 -6 69 -6 c 0 - 48 -6 36 16 36 45 c 0 - 36 53 39 76 43 97 c 2 - 131 546 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" l.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_L.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_L.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_L.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_L.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: L -Encoding: 76 76 43 -Width: 517 -Flags: W -HStem: 0 29<-1 68 155 348> 618 28<118 176 265 333> -LayerCount: 2 -Fore -SplineSet -162 109 m 2 - 159 94 149 44 154 39 c 0 - 164 29 179 29 217 29 c 2 - 269 29 l 2 - 303 29 344 39 374 56 c 0 - 403 73 433 106 457 158 c 0 - 459 162 465 164 472 164 c 0 - 481 164 492 161 494 158 c 1 - 467 105 428 39 413 -4 c 1 - 314 -4 225 0 104 0 c 0 - 61 0 31 -3 -4 -3 c 1 - -8 2 -4 20 1 25 c 1 - 12 25 62 30 67 41 c 0 - 75 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 178 587 176 603 c 0 - 175 614 128 618 117 618 c 1 - 114 623 116 641 122 646 c 1 - 159 644 193 642 228 642 c 0 - 263 642 297 644 335 646 c 1 - 339 641 335 623 330 618 c 1 - 319 618 269 614 264 603 c 0 - 256 587 251 559 246 530 c 2 - 162 109 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/logicalnot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/logicalnot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/logicalnot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/logicalnot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: logicalnot -Encoding: 172 172 106 -Width: 527 -VWidth: 0 -Flags: W -HStem: 307 42<49 424> -LayerCount: 2 -Fore -SplineSet -68 349 m 2 - 481 349 l 1 - 436 112 l 1 - 433 109 415 101 401 101 c 27 - 395 101 387 102 388 108 c 2 - 424 307 l 9 - 51 307 l 1 - 51 307 48 314 48 320 c 0 - 48 337 59 349 68 349 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/longs.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/longs.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/longs.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/longs.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: longs -Encoding: 383 383 866 -Width: 289 -Flags: HMW -HStem: -228 42<-83 -7> 627 42<267 342> -LayerCount: 2 -Back -SplineSet -191.40625 367.1875 m 1 - 168.620117188 232.421875 149.4140625 124.0234375 133.7890625 41.9921875 c 1 - 118.489257812 -35.8076171875 91.064453125 -100.178710938 51.513671875 -151.123046875 c 128 - 11.962890625 -202.067382812 -27.9951171875 -227.5390625 -68.359375 -227.5390625 c 0 - -94.7265625 -227.5390625 -112.3046875 -219.401367188 -121.09375 -203.125 c 1 - -121.09375 -199.870117188 -120.768554688 -194.661132812 -120.1171875 -187.5 c 1 - -116.2109375 -161.458007812 -106.770507812 -148.4375 -91.796875 -148.4375 c 0 - -86.5888671875 -148.4375 -81.6240234375 -149.658203125 -76.904296875 -152.099609375 c 128 - -72.1845703125 -154.541015625 -68.5224609375 -156.982421875 -65.91796875 -159.423828125 c 128 - -63.3134765625 -161.865234375 -59.5703125 -165.690429688 -54.6875 -170.8984375 c 0 - -44.921875 -180.6640625 -35.4814453125 -185.546875 -26.3671875 -185.546875 c 0 - -8.1376953125 -185.546875 6.9990234375 -169.026367188 19.04296875 -135.986328125 c 128 - 31.0869140625 -102.946289062 45.2470703125 -44.921875 61.5234375 38.0859375 c 1 - 120.1171875 367.1875 l 1 - 125.9765625 403.3203125 l 1 - 141.276367188 480.793945312 168.620117188 544.43359375 208.0078125 594.23828125 c 128 - 247.395507812 644.04296875 287.434570312 668.9453125 328.125 668.9453125 c 0 - 354.4921875 668.9453125 372.0703125 660.807617188 380.859375 644.53125 c 1 - 380.859375 643.5546875 380.778320312 642.08984375 380.615234375 640.13671875 c 128 - 380.452148438 638.18359375 380.37109375 636.71875 380.37109375 635.7421875 c 0 - 379.39453125 623.046875 376.545898438 612.223632812 371.826171875 603.271484375 c 128 - 367.106445312 594.319335938 360.3515625 589.84375 351.5625 589.84375 c 0 - 346.354492188 589.84375 341.389648438 591.064453125 336.669921875 593.505859375 c 128 - 331.950195312 595.947265625 328.288085938 598.388671875 325.68359375 600.830078125 c 128 - 323.079101562 603.271484375 319.3359375 607.096679688 314.453125 612.3046875 c 0 - 304.6875 622.0703125 295.247070312 626.953125 286.1328125 626.953125 c 0 - 266.926757812 626.953125 250.081054688 604.817382812 235.595703125 560.546875 c 128 - 221.110351562 516.276367188 206.379882812 451.823242188 191.40625 367.1875 c 1 -EndSplineSet -Fore -SplineSet -126 403 m 2 - 154 564 250 669 328 669 c 0 - 356 669 374 658 381 645 c 1 - 381 642 381 639 381 636 c 0 - 379 614 371 590 352 590 c 0 - 335 590 325 600 314 612 c 0 - 307 619 300 627 286 627 c 0 - 244 627 217 514 191 367 c 2 - 191 367 157 165 134 42 c 0 - 103 -118 10 -228 -68 -228 c 0 - -96 -228 -114 -216 -121 -203 c 1 - -121 -198 -121 -193 -120 -188 c 0 - -117 -168 -109 -148 -92 -148 c 0 - -75 -148 -66 -159 -55 -171 c 0 - -48 -178 -40 -186 -26 -186 c 0 - 12 -186 32 -117 62 38 c 1 - 83 160 126 403 126 403 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/l.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/l.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/l.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/l.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: l.sc -Encoding: 65600 -1 455 -Width: 386 -Flags: W -HStem: 0 32<5 53 127 261> 412 28<83 123 197 246> -LayerCount: 2 -Fore -SplineSet -131 85 m 2 - 129 75 123 42 126 39 c 0 - 132 32 141 32 165 32 c 2 - 198 32 l 2 - 219 32 243 36 262 48 c 0 - 279 59 293 78 309 112 c 0 - 310 115 319 116 323 116 c 0 - 329 116 336 114 337 112 c 1 - 318 74 299 26 284 -4 c 1 - 219 -4 159 0 78 0 c 0 - 50 0 23 -3 0 -3 c 1 - -1 4 1 18 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 60 64 64 84 c 2 - 115 354 l 2 - 119 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 79 418 82 435 86 440 c 1 - 112 438 141 437 166 437 c 0 - 191 437 223 438 249 440 c 1 - 250 432 246 416 243 412 c 1 - 236 412 200 408 197 401 c 0 - 192 390 188 374 184 354 c 2 - 131 85 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: lslash -Encoding: 322 322 405 -Width: 239 -Flags: W -HStem: -6 54<59 121> 616 21<80 135> 649 20<202 215> -VStem: 36 73<21 172> 140 79<532 651> -LayerCount: 2 -Fore -SplineSet -41 281 m 2 - 234 413 l 1 - 237 408 247 390 242 387 c 2 - 48 254 l 1 - 44 260 36 278 41 281 c 2 -EndSplineSet -Refer: 75 108 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" lslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: Lslash -Encoding: 321 321 404 -Width: 516 -Flags: W -HStem: 0 29<-2 67 154 347> 618 28<117 175 264 332> -LayerCount: 2 -Fore -SplineSet -63 202 m 2 - 428 437 l 1 - 432 432 441 409 437 406 c 2 - 73 174 l 1 - 69 180 59 199 63 202 c 2 -EndSplineSet -Refer: 43 76 N 1 0 0 1 -1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/lslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/lslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: lslash.sc -Encoding: 65692 -1 547 -Width: 386 -VWidth: 0 -Flags: W -HStem: 0 32<5 53 127 261> 412 28<83 123 197 246> -LayerCount: 2 -Fore -SplineSet -300 309 m 1 - 303 305 313 285 309 283 c 9 - 38 117 l 1 - 34 122 25 139 29 141 c 9 - 300 309 l 1 -EndSplineSet -Refer: 455 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/macron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/macron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/macron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/macron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: macron -Encoding: 175 175 108 -Width: 256 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 772 N 1 0 0 1 381 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/m.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/m.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/m.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/m.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -StartChar: m -Encoding: 109 109 76 -Width: 697 -Flags: W -HStem: -6 54<541 581> 353 72<285 353 514 575> 371 54<93 137> -VStem: 109 73<256 397> 321 73<216 352> 498 73<21 167> 546 75<217 380> -LayerCount: 2 -Fore -SplineSet -505 97 m 2xdc - 539 258 l 2 - 541 267 546 300 546 311 c 0 - 546 336 545 353 527 353 c 0 - 488 353 376 228 357 129 c 2 - 333 0 l 1 - 319 -2 311 -3 297 -3 c 0 - 283 -3 276 -2 263 0 c 1 - 317 277 l 2 - 320 293 321 305 321 314 c 0 - 321 339 315 353 302 353 c 0xda - 258 353 155 213 135 119 c 2 - 110 0 l 1 - 99 -3 89 -4 75 -4 c 0 - 61 -4 53 -2 41 0 c 1 - 105 315 l 2 - 106 321 109 342 109 347 c 0 - 109 356 110 371 100 371 c 0 - 79 371 34 317 31 314 c 1 - 28 314 21 327 21 333 c 1 - 32 352 99 425 145 425 c 0xba - 166 425 183 403 183 374 c 0 - 183 366 179 343 175 322 c 0 - 168 287 163 266 155 231 c 1 - 190 293 278 425 329 425 c 0 - 386 425 395 375 395 332 c 0 - 395 309 387 262 381 245 c 1 - 416 307 510 425 561 425 c 0 - 606 425 621 400 621 360 c 0xda - 621 327 614 285 607 254 c 2 - 575 104 l 2 - 573 94 571 77 571 72 c 0 - 571 63 571 48 581 48 c 0 - 602 48 646 101 649 104 c 1 - 652 104 659 92 659 86 c 1 - 648 67 577 -6 531 -6 c 0 - 510 -6 498 16 498 45 c 0 - 498 53 501 76 505 97 c 2xdc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" m.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_M.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_M.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_M.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_M.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: M -Encoding: 77 77 44 -Width: 818 -Flags: W -HStem: -3 28<-20 54 117 181 517 581 676 734> 618 28<129 181 772 837> -LayerCount: 2 -Fore -SplineSet -388 48 m 2 - 383 39 355 0 344 -2 c 0 - 341 -3 339 -1 336 0 c 1 - 225 570 l 1 - 180 357 118 83 116 73 c 0 - 114 64 114 51 115 43 c 0 - 118 28 176 25 183 25 c 1 - 186 19 181 0 179 -3 c 1 - 143 -1 124 2 84 2 c 0 - 42 2 19 -1 -23 -3 c 1 - -24 -1 -22 17 -17 25 c 1 - -6 25 48 30 59 43 c 0 - 70 56 74 71 79 92 c 0 - 133 326 180 541 183 559 c 0 - 186 573 189 587 187 598 c 1 - 186 610 138 618 127 618 c 1 - 125 624 129 643 133 646 c 1 - 161 644 185 643 221 643 c 0 - 248 643 279 644 300 646 c 1 - 306 584 398 136 397 136 c 1 - 396 136 617 529 617 529 c 2 - 642 574 680 646 680 646 c 1 - 708 644 730 643 748 643 c 0 - 780 643 815 644 838 646 c 1 - 838 643 836 618 836 618 c 1 - 823 618 775 611 768 601 c 1 - 763 592 758 575 756 563 c 2 - 682 137 l 2 - 675 99 671 65 675 42 c 0 - 677 28 728 25 735 25 c 1 - 738 16 734 0 732 -3 c 1 - 696 -1 664 2 624 2 c 0 - 582 2 556 -1 514 -3 c 1 - 513 -1 515 17 520 25 c 1 - 531 25 568 29 581 36 c 0 - 588 40 594 63 597 77 c 0 - 600 91 644 367 674 553 c 17 - 661 532 388 48 388 48 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/minus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/minus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/minus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/minus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minus -Encoding: 8722 8722 220 -Width: 553 -Flags: W -HStem: 213 55<60 484> -LayerCount: 2 -Fore -SplineSet -52 223 m 1 - 52 223 65 268 74 268 c 2 - 489 268 l 2 - 492 268 494 268 494 263 c 0 - 494 259 485 237 477 219 c 0 - 474 213 470 213 470 213 c 1 - 56 213 l 1 - 56 213 50 213 52 223 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/minute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/minute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/minute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/minute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minute -Encoding: 8242 8242 208 -Width: 159 -Flags: W -HStem: 482 200 -VStem: 135 71<606 672> -LayerCount: 2 -Fore -SplineSet -187 683 m 0 - 195 683 206 680 206 666 c 0 - 206 627 139 528 114 490 c 0 - 110 484 107 482 103 482 c 0 - 97 482 93 487 94 494 c 0 - 95 497 117 597 135 650 c 0 - 139 662 169 683 187 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/m.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/m.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/m.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/m.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: m.sc -Encoding: 65601 -1 456 -Width: 606 -Flags: W -HStem: -3 28<-9 46 91 137 344 393 470 519> 412 28<92 131 531 583> -LayerCount: 2 -Fore -SplineSet -584 440 m 1 - 586 433 584 419 581 412 c 1 - 572 412 535 407 530 400 c 0 - 526 394 524 384 522 376 c 0 - 515 331 492 183 478 99 c 0 - 474 74 469 52 471 36 c 0 - 472 27 517 25 521 25 c 1 - 523 17 520 2 516 -3 c 1 - 491 -1 454 1 426 1 c 0 - 397 1 371 -1 341 -3 c 1 - 341 -1 342 17 347 25 c 1 - 355 25 385 27 394 32 c 0 - 399 35 402 51 404 60 c 0 - 406 69 409 88 411 98 c 0 - 427 191 436 260 453 364 c 0 - 454 367 453 377 449 377 c 0 - 448 377 448 375 446 372 c 0 - 375 234 324 142 256 17 c 0 - 253 11 243 0 233 -2 c 0 - 231 -2 230 -1 228 0 c 1 - 165 375 l 1 - 134 234 94 64 93 57 c 0 - 92 51 90 42 91 37 c 0 - 93 27 135 25 140 25 c 1 - 142 20 138 2 135 -3 c 1 - 111 -1 94 1 67 1 c 0 - 39 1 16 -1 -13 -3 c 1 - -13 -1 -10 17 -7 25 c 1 - 0 25 39 28 46 37 c 0 - 53 46 54 55 58 69 c 0 - 95 224 126 361 128 373 c 0 - 130 382 132 391 131 398 c 0 - 130 406 95 412 87 412 c 1 - 85 412 93 438 95 440 c 1 - 123 438 133 437 162 437 c 0 - 183 437 211 438 225 440 c 1 - 228 398 257 229 274 112 c 0 - 275 111 275 111 276 111 c 0 - 277 111 278 112 279 114 c 0 - 331 215 358 263 410 361 c 0 - 426 391 449 440 449 440 c 1 - 470 438 488 437 501 437 c 0 - 524 437 566 438 584 440 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/mu.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/mu.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/mu.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/mu.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: mu -Encoding: 181 181 114 -Width: 481 -Flags: W -HStem: -9 73<114 176 304 351> 407 20<125 134 332 341> -VStem: -11 53<-171 -15> -LayerCount: 2 -Fore -SplineSet -392 67 m 5 - 379 34 343 -4 312 -4 c 4 - 258 -4 262 75 267 137 c 5 - 224 62 177 -9 127 -9 c 4 - 85 -9 79 49 79 86 c 5 - 77 69 42 -34 42 -97 c 7 - 42 -131 60 -168 74 -189 c 5 - 72 -203 49 -216 31 -216 c 4 - 18 -216 -11 -206 -11 -143 c 4 - -11 -77 50 138 70 199 c 5 - 75 222 100 376 107 413 c 5 - 111 418 121 427 129 427 c 4 - 139 427 162 412 171 390 c 5 - 168 372 137 281 114 218 c 5 - 109 193 106 167 106 146 c 4 - 106 102 117 64 136 64 c 4 - 183 64 228 148 266 217 c 5 - 287 293 296 345 314 413 c 5 - 318 418 328 427 336 427 c 4 - 346 427 369 412 378 390 c 5 - 368 362 304 205 304 205 c 5 - 286 125 295 64 337 64 c 4 - 360 64 377 80 386 89 c 5 - 390 86 393 70 392 67 c 5 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/multiply.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/multiply.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/multiply.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/multiply.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: multiply -Encoding: 215 215 148 -Width: 401 -Flags: W -HStem: 208 60<184 202> -VStem: 166 60<221 253> -LayerCount: 2 -Fore -SplineSet -26 66 m 0 - 20 66 14 89 14 105 c 1 - 164 237 l 2 - 165 238 166 239 166 240 c 0 - 166 242 162 248 161 249 c 2 - 66 379 l 1 - 66 393 88 411 93 411 c 0 - 95 411 95 409 97 407 c 2 - 198 270 l 2 - 199 269 201 268 202 268 c 2 - 204 269 l 26 - 358 406 l 2 - 360 408 362 409 364 409 c 0 - 371 409 377 387 377 369 c 1 - 228 236 l 2 - 227 235 226 235 226 234 c 3 - 226 233 226 233 227 232 c 2 - 324 100 l 1 - 324 86 310 66 303 66 c 0 - 299 66 297 67 296 69 c 2 - 195 206 l 2 - 194 207 193 208 192 208 c 0 - 191 208 189 207 188 206 c 2 - 31 69 l 2 - 29 67 28 66 26 66 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" multiply.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/multiply.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/multiply.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/multiply.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/multiply.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: multiply.sc -Encoding: 65648 -1 503 -Width: 421 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 148 215 N 1 0 0 1 11 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: nacute -Encoding: 324 324 352 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 110 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 585 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" nacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Nacute -Encoding: 323 323 351 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 78 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 272 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: nacute.sc -Encoding: 65693 -1 548 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 457 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 615 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65755.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65755.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65755.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65755.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: NameMe.65755 -Encoding: 65755 -1 875 -Width: 517 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 54<336 399> 353 45<46 102 185 301> 646 37<275 382> 658 20G<503 510> -VStem: 313 73<21 172> -LayerCount: 2 -Fore -SplineSet -483 577 m 2xec - 391 104 l 2 - 390 100 387 77 387 72 c 0 - 387 63 386 48 396 48 c 0 - 417 48 462 101 465 104 c 1 - 468 104 475 92 475 86 c 1 - 464 67 393 -6 347 -6 c 0 - 326 -6 313 16 313 45 c 0 - 313 53 316 76 320 97 c 2 - 408 546 l 2 - 409 550 412 571 412 575 c 3 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xf4 - 392 683 420 662 432 662 c 0 - 453 662 498 678 508 678 c 1 - 513 678 513 666 513 662 c 9 - 513 662 494 631 483 577 c 2xec -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65756.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65756.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65756.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65756.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,79 +0,0 @@ -StartChar: NameMe.65756 -Encoding: 65756 -1 876 -Width: 772 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 54<591 653> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<758 765> -VStem: 568 73<21 172> -LayerCount: 2 -Fore -SplineSet -667 575 m 3x33 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x75 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb9 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x35 - 647 683 675 662 687 662 c 0 - 708 662 753 678 763 678 c 1 - 768 678 768 666 768 662 c 9 - 768 662 749 631 738 577 c 2 - 646 104 l 2 - 645 100 642 77 642 72 c 0 - 642 63 641 48 651 48 c 0 - 672 48 717 101 720 104 c 1 - 723 104 729 92 729 86 c 1 - 718 67 648 -6 602 -6 c 0 - 581 -6 568 16 568 45 c 0 - 568 53 571 76 575 97 c 2 - 663 546 l 2 - 664 550 667 571 667 575 c 3x33 -133 -173 m 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0 -342 630 m 0x39 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x39 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65757.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65757.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65757.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65757.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: NameMe.65757 -Encoding: 65757 -1 877 -Width: 706 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 32<405 476> 353 45<46 102 185 301> 371 54<533 613> 646 37<275 381> 658 20G<498 505> -VStem: 587 72<198 366> -LayerCount: 2 -Fore -SplineSet -549 371 m 0xd2 - 507 371 417 259 396 152 c 0 - 380 73 394 26 440 26 c 0 - 522 26 587 216 587 295 c 0 - 587 331 583 371 549 371 c 0xd2 -405 546 m 2 - 406 551 410 571 410 575 c 0 - 410 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xea - 392 683 420 662 432 662 c 0 - 453 662 493 678 503 678 c 1xc6 - 508 678 508 666 508 662 c 9 - 508 662 491 630 480 577 c 2 - 420 278 l 1 - 488 392 560 425 591 425 c 0 - 636 425 659 381 659 314 c 0 - 659 138 517 -6 413 -6 c 0 - 358 -6 322 36 322 108 c 0 - 322 118 326 142 328 154 c 2 - 405 546 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65758.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65758.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65758.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65758.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -StartChar: NameMe.65758 -Encoding: 65758 -1 878 -Width: 961 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 32<659 730> 353 45<46 101 185 351 440 556> 371 54<787 867> 630 37<289 397> 646 37<529 636> 658 20G<753 760> -VStem: 841 72<198 366> -LayerCount: 2 -Fore -SplineSet -803 371 m 0x2880 - 761 371 670 259 649 152 c 0 - 633 73 648 26 694 26 c 0 - 776 26 841 216 841 295 c 0 - 841 331 837 371 803 371 c 0x2880 -665 575 m 0 - 664 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x7280 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb480 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x2280 - 647 683 675 662 687 662 c 0 - 708 662 748 678 758 678 c 1x2180 - 763 678 763 666 763 662 c 9 - 763 662 745 631 734 577 c 2 - 674 278 l 1 - 742 392 814 425 845 425 c 0 - 890 425 913 381 913 314 c 0 - 913 138 771 -6 667 -6 c 0 - 612 -6 576 36 576 108 c 0 - 576 118 580 142 582 154 c 2 - 659 546 l 2 - 660 551 664 571 665 575 c 0 -133 -173 m 0 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0 -342 630 m 0x3480 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x3480 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65759.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65759.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65759.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65759.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: NameMe.65759 -Encoding: 65759 -1 879 -Width: 725 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -4 54<567 625> 353 45<46 102 185 301> 379 46<529 617> 646 37<275 382> 658 20G<503 510> -VStem: 595 76<293 378> -LayerCount: 2 -Fore -SplineSet -562 379 m 0xd2 - 505 379 427 285 415 225 c 1 - 480 225 595 265 595 346 c 0 - 595 364 589 379 562 379 c 0xd2 -408 546 m 2 - 409 551 412 571 412 575 c 0 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xea - 392 683 420 662 432 662 c 0 - 453 662 498 678 508 678 c 1xc6 - 513 678 513 666 513 662 c 9 - 513 662 494 631 483 577 c 2 - 433 314 l 1 - 438 318 514 425 598 425 c 0 - 636 425 671 396 671 358 c 0 - 671 269 573 225 465 206 c 1 - 551 77 578 50 618 50 c 0 - 635 50 674 90 685 104 c 1 - 688 104 694 91 694 86 c 1 - 686 72 618 -4 575 -4 c 0 - 498 -4 449 117 407 187 c 1 - 371 0 l 1 - 360 -3 348 -5 337 -5 c 0 - 326 -5 314 -3 302 0 c 1 - 408 546 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65760.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65760.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65760.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65760.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,87 +0,0 @@ -StartChar: NameMe.65760 -Encoding: 65760 -1 880 -Width: 980 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -4 54<822 880> 353 45<46 101 185 351 440 556> 379 46<784 872> 630 37<289 397> 646 37<529 637> 658 20G<758 765> -VStem: 850 76<293 378> -LayerCount: 2 -Fore -SplineSet -817 379 m 0x2880 - 760 379 682 285 670 225 c 1 - 735 225 850 265 850 346 c 0 - 850 364 844 379 817 379 c 0x2880 -687 662 m 0 - 708 662 753 678 763 678 c 1 - 768 678 768 666 768 662 c 9 - 768 662 749 631 738 577 c 2 - 688 314 l 1 - 693 318 769 425 853 425 c 0x2980 - 891 425 926 396 926 358 c 0 - 926 269 828 225 720 206 c 1 - 806 77 833 50 873 50 c 0 - 890 50 928 90 939 104 c 1 - 942 104 949 91 949 86 c 1 - 941 72 873 -4 830 -4 c 0 - 753 -4 704 117 662 187 c 1 - 626 0 l 1 - 615 -3 603 -5 592 -5 c 0 - 581 -5 569 -3 557 0 c 1 - 663 546 l 2 - 664 551 667 571 667 575 c 0 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x7280 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xb480 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0x2280 - 647 683 675 662 687 662 c 0 -133 -173 m 0x7080 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0x7080 -342 630 m 0x3480 - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x3480 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65761.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65761.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65761.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65761.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ -StartChar: NameMe.65761 -Encoding: 65761 -1 881 -Width: 734 -VWidth: 0 -Flags: W -HStem: -226 38<-118 -27> -6 54<563 626> 353 72<561 618> 353 45<46 102 185 301> 646 37<275 382> 658 20G<504 511> -VStem: 541 73<21 167> 589 75<217 379> -LayerCount: 2 -Fore -SplineSet -408 546 m 2xe5 - 409 551 412 571 412 575 c 3 - 412 617 367 646 321 646 c 0 - 257 646 210 565 183 403 c 0 - 183 401 l 0 - 183 399 185 397 186 397 c 2 - 298 397 l 2 - 302 397 303 391 303 386 c 27 - 303 372 297 361 292 353 c 1 - 178 353 l 2 - 176 353 173 353 172 345 c 2 - 118 53 l 2 - 85 -138 -8 -226 -93 -226 c 0 - -143 -226 -166 -203 -172 -186 c 1 - -173 -157 -155 -128 -132 -128 c 0 - -106 -128 -101 -188 -60 -188 c 0 - -6 -188 35 -41 45 15 c 2 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 142 568 241 683 339 683 c 0xd9 - 392 683 420 662 432 662 c 0 - 453 662 499 678 509 678 c 1 - 514 678 514 666 514 662 c 9 - 514 662 494 631 483 577 c 2 - 434 322 l 1 - 416 232 l 1 - 429 256 546 425 610 425 c 0 - 648 425 664 397 664 360 c 0xe5 - 664 327 658 291 650 254 c 2 - 618 104 l 2 - 617 100 614 77 614 72 c 0 - 614 63 614 48 624 48 c 0 - 645 48 689 101 692 104 c 1 - 695 104 702 92 702 86 c 1 - 691 67 620 -6 574 -6 c 0 - 553 -6 541 16 541 45 c 0xe6 - 541 53 543 76 548 97 c 2 - 582 258 l 2 - 584 267 589 300 589 311 c 0 - 589 333 587 353 570 353 c 0 - 535 353 418 230 396 116 c 0 - 390 86 381 45 371 0 c 1 - 361 -3 346 -4 336 -4 c 0 - 326 -4 315 -3 303 0 c 1 - 408 546 l 2xe5 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65762.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65762.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65762.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Name_Me.65762.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ -StartChar: NameMe.65762 -Encoding: 65762 -1 882 -Width: 989 -VWidth: 0 -Flags: W -HStem: -228 40<-94 -28> -219 46<90 189> -6 54<818 881> 353 72<816 873> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<759 766> -VStem: 796 73<21 167> 844 75<217 379> -LayerCount: 2 -Fore -SplineSet -687 662 m 0x2240 - 708 662 754 678 764 678 c 1 - 769 678 769 666 769 662 c 9 - 769 662 749 631 738 577 c 2 - 688 322 l 1 - 671 232 l 1 - 684 256 801 425 865 425 c 0 - 903 425 919 397 919 360 c 0x3140 - 919 327 913 291 905 254 c 2 - 873 104 l 2 - 872 100 869 77 869 72 c 0 - 869 63 869 48 879 48 c 0 - 900 48 944 101 947 104 c 1 - 950 104 957 92 957 86 c 1 - 946 67 875 -6 829 -6 c 0 - 808 -6 796 16 796 45 c 0x3180 - 796 53 798 76 803 97 c 2 - 837 258 l 2 - 839 267 844 300 844 311 c 0 - 844 333 842 353 825 353 c 0x3140 - 790 353 672 230 650 116 c 0 - 644 86 636 45 626 0 c 1 - 616 -3 601 -4 591 -4 c 0 - 581 -4 570 -3 558 0 c 1 - 663 546 l 2 - 664 551 667 571 667 575 c 3 - 667 617 622 646 576 646 c 0 - 512 646 465 565 438 403 c 0 - 438 401 l 0 - 438 399 439 397 440 397 c 2 - 553 397 l 2 - 557 397 558 391 558 386 c 27 - 558 372 552 361 547 353 c 1 - 433 353 l 2 - 431 353 429 353 427 345 c 2 - 380 104 l 2 - 334 -136 185 -219 122 -219 c 0x6a40 - 69 -219 38 -185 28 -171 c 1 - -6 -210 -52 -228 -91 -228 c 0 - -144 -228 -164 -202 -172 -187 c 1 - -172 -163 -161 -128 -133 -128 c 0 - -101 -128 -104 -188 -62 -188 c 0 - -18 -188 32 -72 43 -10 c 0 - 47 11 48 21 52 45 c 0 - 104 346 l 1 - 104 348 l 2 - 104 351 103 353 101 353 c 2 - 37 353 l 2 - 36 353 35 353 35 355 c 0 - 35 365 60 397 82 397 c 2 - 110 397 l 2 - 113 397 115 402 116 406 c 0 - 147 566 270 667 362 667 c 0xac40 - 415 667 456 651 470 638 c 1 - 493 660 556 683 594 683 c 0 - 647 683 675 662 687 662 c 0x2240 -133 -173 m 0x68 - 190 -173 271 -99 304 59 c 0 - 354 346 l 1 - 354 348 l 2 - 354 351 353 353 351 353 c 1 - 178 353 l 2 - 175 353 173 353 172 345 c 2 - 118 42 l 0 - 106 -19 95 -58 74 -101 c 0 - 73 -102 73 -103 73 -105 c 24 - 73 -108 74 -112 74 -113 c 0 - 78 -133 91 -173 133 -173 c 0x68 -342 630 m 0x2c - 267 630 210 547 189 443 c 0 - 185 422 187 427 183 403 c 0 - 183 401 l 0 - 183 399 184 397 187 397 c 2 - 360 397 l 2 - 363 397 365 402 366 406 c 0 - 378 467 402 538 420 570 c 0 - 421 571 421 573 421 575 c 24 - 421 578 420 582 420 583 c 0 - 416 603 384 630 342 630 c 0x2c -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/napostrophe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/napostrophe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/napostrophe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/napostrophe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: napostrophe -Encoding: 329 329 356 -Width: 487 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 110 N 1 0 0 1 2 0 2 -Refer: 271 789 N 1 0 0 1 -115 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ncaron -Encoding: 328 328 281 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 544 3 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ncaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ncaron -Encoding: 327 327 355 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 78 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 174 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ncaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ncaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ncaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ncaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ncaron.sc -Encoding: 65695 -1 550 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 567 25 2 -Refer: 457 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/n.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/n.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/n.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/n.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: n -Encoding: 110 110 77 -Width: 485 -Flags: W -HStem: -6 54<309 371> 353 72<299 363> 371 54<93 155> -VStem: 109 73<244 397> 286 73<21 167> 334 75<217 380> -LayerCount: 2 -Fore -SplineSet -175 322 m 2xb4 - 157 240 l 1 - 170 264 284 425 349 425 c 0 - 394 425 409 400 409 360 c 0xd4 - 409 330 403 287 396 254 c 2 - 363 104 l 2 - 361 94 359 77 359 72 c 0 - 359 63 359 48 369 48 c 0 - 390 48 435 101 438 104 c 1 - 441 104 447 92 447 86 c 1 - 436 67 365 -6 319 -6 c 0 - 298 -6 286 16 286 45 c 0xd8 - 286 53 289 76 293 97 c 2 - 327 258 l 2 - 329 267 334 300 334 311 c 0 - 334 336 333 353 315 353 c 0xd4 - 279 353 158 241 135 119 c 0 - 126 72 120 47 110 0 c 1 - 98 -3 89 -4 75 -4 c 0 - 61 -4 53 -3 41 0 c 1 - 105 315 l 2 - 106 321 109 342 109 347 c 0 - 109 356 110 371 100 371 c 0 - 79 371 34 317 31 314 c 1 - 28 314 21 327 21 333 c 1 - 32 352 99 425 145 425 c 0 - 166 425 183 403 183 374 c 0 - 183 366 180 343 175 322 c 2xb4 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" n.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_N.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_N.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_N.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_N.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: N -Encoding: 78 78 45 -Width: 714 -Flags: W -HStem: -3 28<-9 60 135 192> 618 28<112 175 551 611 684 754> -LayerCount: 2 -Fore -SplineSet -613 528 m 2 - 620 563 622 583 616 599 c 0 - 611 613 566 618 551 618 c 1 - 548 625 551 641 554 646 c 1 - 590 644 613 643 653 643 c 0 - 695 643 713 644 755 646 c 1 - 757 641 758 629 751 618 c 1 - 740 618 687 612 678 600 c 0 - 667 585 663 570 656 533 c 2 - 579 136 l 2 - 568 79 563 50 555 -1 c 1 - 552 -4 541 -5 538 -5 c 0 - 530 -5 519 4 512 18 c 2 - 219 556 l 1 - 133 112 l 2 - 126 77 123 61 129 45 c 0 - 133 35 179 25 194 25 c 1 - 197 18 193 3 190 -3 c 1 - 154 -1 129 2 89 2 c 0 - 47 2 30 -1 -12 -3 c 1 - -14 2 -13 14 -6 25 c 1 - 5 25 59 33 68 45 c 0 - 79 60 84 74 91 111 c 2 - 173 535 l 2 - 180 572 182 587 177 602 c 0 - 173 614 121 618 110 618 c 1 - 107 629 111 641 115 646 c 1 - 156 644 168 643 198 643 c 0 - 225 643 265 645 278 646 c 1 - 309 568 470 309 541 158 c 1 - 613 528 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: nine -Encoding: 57 57 24 -Width: 487 -VWidth: 0 -Flags: W -HStem: -6 21G<44 104> 251 46<190 270> 596 32<246 329> -VStem: 80 78<328 482> 365 80<337 553> -LayerCount: 2 -Fore -SplineSet -207 251 m 0 - 132 251 80 318 80 397 c 0 - 80 510 196 628 302 628 c 0 - 388 628 445 562 445 453 c 0 - 445 377 409 266 324 169 c 0 - 267 105 160 33 47 -6 c 1 - 41 -6 39 13 40 19 c 1 - 152 67 265 142 324 280 c 0 - 357 358 365 412 365 466 c 0 - 365 526 347 596 290 596 c 0 - 237 596 158 518 158 403 c 0 - 158 342 185 297 252 297 c 0 - 275 297 290 306 299 311 c 1 - 302 309 305 305 305 301 c 3 - 305 289 240 251 207 251 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" nine.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" nine.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: nine.onum -Encoding: 65576 -1 427 -Width: 393 -Flags: W -HStem: 22 32<132 188> 398 39<173 252> -VStem: 25 77<89 276> 285 76<149 362> -LayerCount: 2 -Fore -SplineSet -188 55 m 1 - 190 55 190 40 189 37 c 1 - 179 30 162 22 136 22 c 0 - 90 22 25 82 25 175 c 0 - 25 294 127 438 232 438 c 0 - 314 438 361 353 361 262 c 0 - 361 32 115 -134 -36 -202 c 1 - -44 -202 -49 -180 -48 -175 c 1 - 53 -126 285 14 285 254 c 0 - 285 316 268 398 215 398 c 0 - 162 398 102 304 102 176 c 0 - 102 60 147 55 188 55 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/nine.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/nine.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: nine.prop -Encoding: 65747 -1 855 -Width: 434 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 24 57 N 1 0 0 1 -21 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/notequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/notequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/notequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/notequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: notequal -Encoding: 8800 8800 225 -Width: 509 -Flags: W -HStem: 114 55<25 149 235 438> 253 55<59 248 335 465> -LayerCount: 2 -Fore -SplineSet -335 308 m 1 - 470 308 l 2 - 473 308 476 309 476 305 c 0 - 476 296 460 264 458 259 c 0 - 455 253 451 253 451 253 c 1 - 295 253 l 1 - 235 169 l 1 - 442 169 l 2 - 446 169 449 171 448 164 c 0 - 446 155 441 141 431 120 c 0 - 428 114 425 114 425 114 c 1 - 196 114 l 1 - 125 13 l 1 - 125 13 125 11 121 11 c 0 - 118 11 103 14 94 30 c 0 - 91 34 95 37 95 37 c 1 - 149 114 l 1 - 21 114 l 1 - 21 114 16 114 16 121 c 0 - 16 127 19 137 32 164 c 0 - 35 170 39 169 39 169 c 1 - 188 169 l 1 - 248 253 l 1 - 47 253 l 1 - 47 253 41 253 43 263 c 0 - 44 267 48 280 59 303 c 0 - 62 309 66 308 66 308 c 1 - 286 308 l 1 - 350 396 l 1 - 350 396 350 399 354 399 c 0 - 359 399 370 397 379 382 c 0 - 383 377 380 372 380 372 c 1 - 335 308 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/n.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/n.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/n.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/n.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: n.sc -Encoding: 65602 -1 457 -Width: 519 -Flags: W -HStem: -3 28<-1 51 101 143> 413 28<80 123 366 408 458 512> -LayerCount: 2 -Fore -SplineSet -150 438 m 0 - 169 438 190 439 199 440 c 1 - 218 387 314 225 363 135 c 1 - 406 355 l 2 - 411 378 412 389 408 400 c 0 - 406 407 372 413 363 413 c 1 - 361 419 365 436 368 441 c 1 - 392 439 413 438 440 438 c 0 - 468 438 487 439 515 441 c 1 - 516 433 513 421 509 413 c 1 - 502 413 464 408 458 400 c 0 - 451 390 449 380 444 355 c 2 - 393 91 l 2 - 385 53 381 33 376 -1 c 1 - 374 -4 365 -5 363 -5 c 0 - 358 -5 353 2 348 11 c 2 - 158 361 l 1 - 104 83 l 2 - 99 60 97 49 101 38 c 0 - 103 31 137 25 146 25 c 1 - 148 19 144 2 141 -3 c 1 - 117 -1 94 1 67 1 c 0 - 39 1 24 -1 -4 -3 c 1 - -4 -2 -4 15 1 25 c 1 - 8 25 46 30 52 38 c 0 - 59 48 60 58 65 82 c 2 - 119 357 l 2 - 124 381 126 391 123 401 c 0 - 120 409 84 415 77 415 c 1 - 77 425 79 439 82 443 c 1 - 110 441 129 438 150 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ntilde -Encoding: 241 241 174 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 514 16 2 -Refer: 77 110 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ntilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ntilde -Encoding: 209 209 142 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 78 N 1 0 0 1 0 0 3 -Refer: 288 -1 N 1 0 0 1 115 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ntilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ntilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ntilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ntilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ntilde.sc -Encoding: 65642 -1 497 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 564 38 2 -Refer: 457 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/numbersign.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/numbersign.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/numbersign.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/numbersign.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: numbersign -Encoding: 35 35 2 -Width: 436 -VWidth: 0 -Flags: W -HStem: 174 49<19 96 159 232 296 372> 312 49<66 142 205 278 342 418> -LayerCount: 2 -Fore -SplineSet -342 361 m 1 - 420 361 l 0 - 425 361 425 361 425 359 c 0 - 425 343 410 312 402 312 c 0 - 325 312 l 1 - 296 223 l 1 - 373 223 l 0 - 377 223 378 223 378 220 c 0 - 378 204 363 174 355 174 c 0 - 278 174 l 1 - 229 24 l 0 - 229 23 225 18 198 18 c 0 - 190 18 182 20 180 21 c 1 - 182 30 230 169 230 170 c 0 - 232 174 l 1 - 142 174 l 1 - 92 24 l 0 - 92 23 89 18 62 18 c 0 - 54 18 45 20 43 21 c 1 - 45 30 94 169 94 170 c 0 - 96 174 l 1 - 18 174 l 0 - 14 174 13 174 13 177 c 0 - 13 193 27 223 35 223 c 0 - 112 223 l 1 - 142 312 l 1 - 64 312 l 0 - 60 312 60 312 60 315 c 0 - 60 331 74 361 82 361 c 0 - 159 361 l 1 - 209 511 l 0 - 209 512 212 518 239 518 c 0 - 247 518 256 515 258 514 c 1 - 256 507 207 366 207 365 c 0 - 205 361 l 1 - 296 361 l 1 - 346 511 l 0 - 346 512 349 518 376 518 c 0 - 384 518 393 515 395 514 c 1 - 393 507 344 366 344 365 c 0 - 342 361 l 1 -278 312 m 1 - 188 312 l 1 - 159 223 l 1 - 249 223 l 1 - 278 312 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oacute -Encoding: 243 243 176 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 521 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" oacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oacute -Encoding: 211 211 144 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 198 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oacute.sc -Encoding: 65644 -1 499 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 584 37 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: obreve -Encoding: 335 335 283 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 497 6 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" obreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Obreve -Encoding: 334 334 282 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 290 -1 N 1 0 0 1 197 198 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/obreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/obreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/obreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/obreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: obreve.sc -Encoding: 65698 -1 553 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 527 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ocircumflex -Encoding: 244 244 177 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 503 4 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ocircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ocircumflex -Encoding: 212 212 145 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 132 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ocircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ocircumflex.sc -Encoding: 65645 -1 500 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 554 31 2 -Refer: 458 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: odieresis -Encoding: 246 246 179 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 507 21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" odieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Odieresis -Encoding: 214 214 147 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 118 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/odieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/odieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/odieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/odieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: odieresis.sc -Encoding: 65647 -1 502 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 548 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: oe -Encoding: 339 339 414 -Width: 599 -VWidth: 0 -Flags: W -HStem: -6 58<366 437> -5 31<126 197> 188 24<348 390> 385 40<437 538> 394 31<188 259> -VStem: 23 76<48 244> 283 61<138 188 213 280> 505 72<306 380> -LayerCount: 2 -Fore -SplineSet -348 213 m 1x37 - 392 215 505 276 505 346 c 0 - 505 372 483 385 464 385 c 0 - 404 385 357 283 348 213 c 1x37 -231 394 m 0x6f - 149 394 100 252 100 154 c 0 - 100 76 120 26 155 26 c 0 - 219 26 283 133 283 267 c 0 - 283 345 266 394 231 394 c 0x6f -513 425 m 0x37 - 563 425 577 393 577 364 c 0 - 577 270 407 188 346 188 c 1 - 345 185 344 162 344 157 c 0 - 344 97 362 52 411 52 c 0 - 455 52 509 116 512 119 c 1 - 515 119 523 106 523 100 c 1 - 510 79 437 -6 375 -6 c 0xb7 - 325 -6 291 21 276 70 c 1 - 236 25 187 -5 137 -5 c 0 - 59 -5 23 51 23 135 c 0 - 23 272 133 425 245 425 c 0x6f - 304 425 339 392 353 340 c 1 - 400 392 458 425 513 425 c 0x37 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" oe.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_O_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_O_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_O_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_O_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: OE -Encoding: 338 338 413 -Width: 865 -Flags: W -HStem: -11 28<254 386> 0 29<506 701> 309 32<561 712> 615 26<615 809> 621 29<331 477> -VStem: 56 92<149 399> 726 28<225 265> 845 28<511 577> -LayerCount: 2 -Fore -SplineSet -586 642 m 0x37 - 671 642 773 648 872 648 c 1 - 869 599 873 560 873 516 c 1 - 870 513 862 511 855 511 c 0 - 848 511 845 513 845 518 c 0 - 840 596 807 615 759 615 c 2 - 681 615 l 2 - 670 615 621 614 616 604 c 0 - 608 588 602 560 597 534 c 2 - 561 347 l 2 - 560 342 579 341 599 341 c 2 - 646 341 l 2 - 733 341 732 347 760 411 c 0 - 762 416 768 418 775 418 c 0 - 782 418 787 416 789 413 c 1 - 754 229 l 1 - 752 227 745 225 738 225 c 0 - 731 225 727 227 726 232 c 0 - 723 288 720 295 713 301 c 0 - 704 308 652 309 618 309 c 0 - 593 309 553 309 551 300 c 2 - 513 106 l 2 - 510 91 501 44 506 39 c 0 - 516 29 530 29 568 29 c 2 - 611 29 l 2 - 661 29 701 39 732 60 c 0 - 758 78 785 106 809 158 c 0 - 811 162 816 164 823 164 c 0 - 832 164 843 161 845 158 c 1 - 818 105 779 39 764 -4 c 1 - 665 -4 575 2 455 0 c 24x77 - 401 -1 350 -11 317 -11 c 3 - 138 -11 56 121 56 268 c 3 - 56 478 209 650 403 650 c 3xaf - 474 650 524 641 586 642 c 0x37 -518 544 m 2 - 530 606 449 621 395 621 c 3 - 248 621 147 434 147 266 c 3 - 147 107 207 18 317 18 c 3xaf - 389 18 414 50 419 61 c 0 - 427 77 431 84 437 113 c 2 - 518 544 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oe.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oe.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oe.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oe.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oe.sc -Encoding: 65700 -1 555 -Width: 855 -Flags: HW -LayerCount: 2 -Fore -Refer: 448 -1 N 1 0 0 1 439 0 2 -Refer: 458 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/o.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/o.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/o.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/o.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: o -Encoding: 111 111 78 -Width: 404 -Flags: W -HStem: -5 31<126 198> 394 31<188 260> -VStem: 23 76<48 244> 283 76<173 375> -LayerCount: 2 -Fore -SplineSet -231 394 m 0 - 149 394 100 252 100 154 c 0 - 100 76 120 26 155 26 c 0 - 236 26 283 169 283 267 c 0 - 283 345 266 394 231 394 c 0 -245 425 m 0 - 323 425 359 365 359 281 c 0 - 359 144 249 -5 137 -5 c 0 - 59 -5 23 51 23 135 c 0 - 23 272 133 425 245 425 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" o.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_O.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_O.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_O.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_O.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: O -Encoding: 79 79 46 -Width: 693 -Flags: W -HStem: -11 28<255 383> 620 29<332 462> -VStem: 60 92<146 395> 564 92<240 489> -LayerCount: 2 -Fore -SplineSet -396 620 m 0 - 273 620 151 467 151 262 c 0 - 151 150 186 18 320 18 c 0 - 469 18 564 209 564 384 c 0 - 564 478 534 620 396 620 c 0 -405 649 m 0 - 559 649 656 529 656 373 c 0 - 656 144 500 -11 312 -11 c 0 - 154 -11 60 113 60 267 c 0 - 60 492 227 649 405 649 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ogonek -Encoding: 731 731 258 -Width: 448 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 275 808 N 1 0 0 1 682 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ograve -Encoding: 242 242 175 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 485 -21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ograve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ograve -Encoding: 210 210 143 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 284 -1 N 1 0 0 1 116 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ograve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ograve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ograve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ograve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ograve.sc -Encoding: 65643 -1 498 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 539 5 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: ohorn -Encoding: 417 417 816 -Width: 404 -Flags: W -HStem: -5 31<126 198> 345 27<350 392> 394 31<188 260> -VStem: 23 76<48 244> 283 76<173 346> 395 66<381 468> -LayerCount: 2 -Fore -SplineSet -231 394 m 0 - 149 394 100 252 100 154 c 0 - 100 76 120 26 155 26 c 0 - 236 26 283 169 283 267 c 0 - 283 345 266 394 231 394 c 0 -365 372 m 0 - 382 372 395 379 395 397 c 0 - 395 410 389 424 389 434 c 0 - 389 454 406 470 427 470 c 0 - 439 470 448 467 457 462 c 1 - 459 456 461 446 461 438 c 0 - 461 386 416 345 367 345 c 0 - 361 345 355 346 350 347 c 1 - 356 328 359 305 359 281 c 0 - 359 144 249 -5 137 -5 c 0 - 59 -5 23 51 23 135 c 0 - 23 272 133 425 245 425 c 0 - 268 425 289 420 312 404 c 0 - 332 390 343 372 365 372 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: Ohorn -Encoding: 416 416 817 -Width: 693 -Flags: W -HStem: -11 28<255 383> 548 30<605 663> 620 29<332 464> -VStem: 60 92<146 395> 564 92<240 492> 671 63<598 671> -LayerCount: 2 -Fore -SplineSet -396 620 m 0 - 273 620 151 467 151 262 c 0 - 151 150 186 18 320 18 c 0 - 469 18 564 209 564 384 c 0 - 564 478 534 620 396 620 c 0 -630 578 m 0 - 651 578 671 591 671 612 c 0 - 671 621 664 629 662 633 c 0 - 659 640 655 643 655 654 c 0 - 655 678 684 691 703 691 c 0 - 712 691 720 690 725 688 c 1 - 732 676 734 666 734 654 c 0 - 734 593 662 548 618 548 c 0 - 614 548 610 548 605 549 c 1 - 638 502 656 441 656 373 c 0 - 656 144 500 -11 312 -11 c 0 - 154 -11 60 113 60 267 c 0 - 60 492 227 649 405 649 c 0 - 453 649 495 638 531 617 c 8 - 567 596 596 578 630 578 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ohungarumlaut -Encoding: 337 337 360 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 268 779 N 1 0 0 1 541 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ohungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ohungarumlaut -Encoding: 336 336 359 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 296 -1 N 1 0 0 1 163 23 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ohungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ohungarumlaut.sc -Encoding: 65699 -1 554 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 268 779 N 1 0 0 1 604 37 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: omacron -Encoding: 333 333 358 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 508 13 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" omacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Omacron -Encoding: 332 332 357 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 289 -1 N 1 0 0 1 131 176 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/omacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/omacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/omacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/omacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: omacron.sc -Encoding: 65697 -1 552 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 458 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 546 38 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onedotenleader.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onedotenleader.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onedotenleader.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onedotenleader.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: onedotenleader -Encoding: 8228 8228 205 -Width: 202 -Flags: W -HStem: -14 113<27 94> -VStem: 9 105<6 81> -LayerCount: 2 -Fore -SplineSet -9 31 m 0 - 9 67 39 100 71 100 c 0 - 96 100 114 81 114 56 c 0 - 114 20 82 -14 50 -14 c 0 - 25 -14 9 6 9 31 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: one -Encoding: 49 49 16 -Width: 487 -Flags: W -HStem: -3 28<110 175 273 323> 607 20G<368 374> -VStem: 108 271 -LayerCount: 2 -Fore -SplineSet -201 521 m 1 - 194 525 191 534 192 541 c 0 - 192 543 192 546 195 547 c 0 - 286 590 366 627 369 627 c 2 - 371 627 l 2 - 377 627 379 613 379 608 c 1 - 379 608 364 577 352 517 c 2 - 277 132 l 2 - 271 100 267 71 268 45 c 0 - 269 34 317 25 324 25 c 0 - 327 25 325 15 324 8 c 0 - 323 3 322 -1 321 -3 c 1 - 285 -1 250 2 214 2 c 0 - 178 2 145 -1 108 -3 c 1 - 104 2 109 25 114 25 c 0 - 125 25 177 34 182 45 c 0 - 191 65 193 82 197 101 c 2 - 266 452 l 2 - 278 511 283 541 264 541 c 0 - 257 541 219 530 201 521 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" one.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" one.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onehalf.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onehalf.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onehalf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onehalf.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: onehalf -Encoding: 189 189 122 -Width: 672 -VWidth: 0 -Flags: W -HStem: -6 21G<107 145> 2 53<419 577> 247 22<39 92 165 209> 341 43<470 546> 607 20G<532 568> -VStem: 558 76<235 328> -LayerCount: 2 -Fore -SplineSet -634 304 m 0x7c - 634 250 596 209 554 166 c 0 - 504 115 418 55 419 55 c 9 - 535 55 l 2 - 565 55 583 79 594 104 c 0 - 595 107 598 108 602 108 c 0 - 604 108 615 102 616 101 c 1 - 601 72 574 13 569 2 c 9 - 569 2 358 2 354 2 c 1 - 353 3 350 14 350 18 c 1 - 383 48 469 128 504 168 c 0 - 544 214 558 251 558 285 c 0 - 558 318 531 341 502 341 c 0 - 458 341 433 304 424 292 c 1 - 420 292 415 307 416 309 c 1 - 423 324 473 384 540 384 c 0 - 583 384 634 360 634 304 c 0x7c -89 543 m 1 - 86 546 84 553 84 557 c 0 - 84 558 85 561 87 562 c 0 - 143 588 224 633 226 633 c 2 - 227 633 l 2 - 231 633 232 625 232 622 c 1 - 232 622 222 601 215 565 c 2 - 170 334 l 2 - 166 314 163 297 164 281 c 0 - 165 274 206 269 210 269 c 0 - 212 269 213 260 212 256 c 0 - 211 253 210 248 209 247 c 1 - 187 248 134 250 112 250 c 0 - 90 250 62 248 39 247 c 1 - 37 250 39 269 42 269 c 0 - 49 269 90 274 93 281 c 0 - 98 293 100 303 102 315 c 2 - 138 500 l 2 - 145 536 149 557 140 557 c 0 - 126 557 97 546 89 543 c 1 -567 611 m 2 - 132 -6 l 1xbc - 132 -6 107 -7 107 4 c 0 - 107 6 108 8 109 10 c 26 - 546 627 l 1 - 546 627 568 627 568 616 c 0 - 568 614 568 612 567 611 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: one.onum -Encoding: 65568 -1 419 -Width: 270 -Flags: W -HStem: -3 26<-1 54 162 209> -VStem: -2 228 -LayerCount: 2 -Fore -SplineSet -51 367 m 24 - 115 394 183 419 218 433 c 1 - 220 433 226 417 226 411 c 0 - 226 407 207 367 199 326 c 2 - 158 111 l 2 - 156 96 152 70 152 51 c 0 - 152 30 201 23 208 23 c 0 - 211 23 210 17 209 11 c 0 - 208 6 207 0 205 -3 c 1 - 169 -1 134 2 100 2 c 0 - 63 2 36 -1 -2 -3 c 1 - -6 2 -1 23 4 23 c 0 - 15 23 58 32 65 45 c 0 - 75 63 82 85 85 101 c 2 - 125 302 l 2 - 126 310 130 333 130 345 c 0 - 130 352 128 356 120 356 c 3 - 107 356 64 341 56 337 c 1 - 52 337 46 353 46 359 c 0 - 46 364 47 365 51 367 c 24 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/one.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/one.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: one.prop -Encoding: 65739 -1 847 -Width: 277 -Flags: HW -LayerCount: 2 -Fore -Refer: 16 49 N 1 0 0 1 -115 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onequarter.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onequarter.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/onequarter.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/onequarter.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: onequarter -Encoding: 188 188 121 -Width: 622 -VWidth: 0 -Flags: W -HStem: -2 21G<106 144 462 479> 104 45<351 459 531 568> 247 22<38 91 164 208> 607 20G<531 567> -LayerCount: 2 -Fore -SplineSet -566 396 m 0 - 572 396 578 386 577 381 c 2 - 531 148 l 25 - 565 148 l 18 - 569 148 569 131 567 118 c 0 - 566 112 563 106 562 104 c 1 - 523 104 l 25 - 504 1 l 1 - 504 1 490 -2 469 -2 c 0 - 455 -2 438 -1 439 3 c 2 - 459 104 l 25 - 292 104 l 1 - 288 106 287 113 288 117 c 1 - 545 389 l 2 - 550 394 562 396 566 396 c 0 -501 307 m 25 - 351 148 l 25 - 468 148 l 25 - 501 307 l 25 -88 543 m 1 - 85 546 83 553 83 557 c 0 - 83 558 84 561 86 562 c 0 - 142 588 223 633 225 633 c 2 - 226 633 l 2 - 230 633 231 625 231 622 c 1 - 231 622 221 601 214 565 c 2 - 169 334 l 2 - 165 314 162 297 163 281 c 0 - 164 274 205 269 209 269 c 0 - 211 269 212 260 211 256 c 0 - 210 253 209 248 208 247 c 1 - 186 248 133 250 111 250 c 0 - 89 250 61 248 38 247 c 1 - 36 250 38 269 41 269 c 0 - 48 269 89 274 92 281 c 0 - 97 293 99 303 101 315 c 2 - 137 500 l 2 - 144 536 148 557 139 557 c 0 - 125 557 96 546 88 543 c 1 -566 611 m 2 - 131 -6 l 1 - 131 -6 106 -7 106 4 c 0 - 106 6 107 8 108 10 c 26 - 545 627 l 1 - 545 627 567 627 567 616 c 0 - 567 614 567 612 566 611 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ordfeminine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ordfeminine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ordfeminine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ordfeminine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: ordfeminine -Encoding: 170 170 104 -Width: 371 -VWidth: 0 -Flags: W -HStem: 243 40<122 168 259 293> 517 27<213 286> -VStem: 58 56<288 409> 226 57<262 368> -LayerCount: 2 -Fore -SplineSet -251 243 m 0 - 235 243 226 258 226 279 c 0 - 226 285 227 300 230 315 c 0 - 232 328 234 331 235 336 c 1 - 219 312 167 244 124 244 c 0 - 83 244 58 276 58 324 c 0 - 58 442 181 544 272 544 c 0 - 298 544 316 540 331 535 c 1 - 285 319 l 2 - 284 316 282 301 282 298 c 0 - 282 292 282 281 289 281 c 0 - 305 281 341 318 343 320 c 1 - 345 320 350 312 350 308 c 1 - 342 295 286 243 251 243 c 0 -238 517 m 0 - 180 517 113 429 113 351 c 0 - 113 309 125 283 151 283 c 0 - 189 283 242 370 257 435 c 2 - 272 507 l 1 - 265 514 248 517 238 517 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ordmasculine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ordmasculine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ordmasculine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ordmasculine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: ordmasculine -Encoding: 186 186 119 -Width: 331 -Flags: W -HStem: 241 21<142 196> 520 21<188 243> -VStem: 62 59<273 424> 261 59<355 513> -LayerCount: 2 -Fore -SplineSet -222 520 m 0 - 159 520 120 421 120 353 c 0 - 120 298 137 263 163 263 c 0 - 225 263 261 363 261 431 c 0 - 261 486 248 520 222 520 c 0 -231 541 m 0 - 292 541 319 499 319 440 c 0 - 319 344 234 241 148 241 c 0 - 87 241 62 280 62 339 c 0 - 62 435 145 541 231 541 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/o.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/o.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/o.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/o.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: o.sc -Encoding: 65603 -1 458 -Width: 520 -Flags: W -HStem: -9 31<177 276> 413 31<225 328> -VStem: 39 79<95 290> 386 78<146 338> -LayerCount: 2 -Fore -SplineSet -280 413 m 0 - 195 413 118 305 118 184 c 0 - 118 118 140 22 228 22 c 0 - 313 22 386 145 386 249 c 0 - 386 303 368 413 280 413 c 0 -39 187 m 0 - 39 337 166 444 277 444 c 0 - 388 444 464 353 464 241 c 0 - 464 95 335 -9 222 -9 c 0 - 111 -9 39 89 39 187 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslashacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslashacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslashacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslashacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oslashacute.sc -Encoding: 65734 -1 589 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 504 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 541 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: oslash -Encoding: 248 248 181 -Width: 404 -VWidth: 0 -Flags: W -HStem: -5 31<126 198> 0 21G<48 66> 394 31<188 260> -VStem: 23 76<48 244> 283 76<173 375> -LayerCount: 2 -Fore -SplineSet -51 0 m 17x78 - 45 3 28 14 32 20 c 9 - 333 409 l 17 - 339 406 356 397 352 391 c 9 - 51 0 l 17x78 -EndSplineSet -Refer: 78 111 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" oslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Oslash -Encoding: 216 216 149 -Width: 693 -Flags: W -HStem: -11 28<255 383> 620 29<332 462> 632 20G<582 602> -VStem: 60 92<146 395> 564 92<240 489> -LayerCount: 2 -Fore -SplineSet -115 -13 m 17xb8 - 107 -10 89 4 94 10 c 9 - 598 651 l 17 - 606 649 625 636 620 630 c 9 - 115 -13 l 17xb8 -EndSplineSet -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/oslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/oslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: oslash.sc -Encoding: 65649 -1 504 -Width: 520 -Flags: W -HStem: -9 31<177 276> 0 21G<104 122> 413 31<225 328> -VStem: 39 79<95 290> 386 78<146 338> -LayerCount: 2 -Fore -SplineSet -106 0 m 17x78 - 100 3 84 14 88 20 c 9 - 424 438 l 17 - 430 435 446 426 442 420 c 9 - 106 0 l 17x78 -EndSplineSet -Refer: 458 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: otilde -Encoding: 245 245 178 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 498 16 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" otilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Otilde -Encoding: 213 213 146 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 288 -1 N 1 0 0 1 100 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/otilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/otilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/otilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/otilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: otilde.sc -Encoding: 65646 -1 501 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 540 41 2 -Refer: 458 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/paragraph.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/paragraph.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/paragraph.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/paragraph.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: paragraph -Encoding: 182 182 115 -Width: 471 -Flags: W -HStem: -88 42<156 231> 607 36<250 397> 618 23<456 510> -VStem: 62 210<345 518> -LayerCount: 2 -Fore -SplineSet -292 644 m 0xd0 - 346 644 385 642 420 642 c 0 - 455 642 474 644 512 646 c 1 - 516 641 511 623 506 618 c 1xb0 - 495 618 457 614 452 603 c 0 - 444 587 438 559 433 530 c 0 - 402 348 395 305 372 182 c 0 - 341 22 248 -88 170 -88 c 0 - 142 -88 124 -76 117 -63 c 1 - 117 -58 117 -53 118 -48 c 0 - 121 -28 130 -9 147 -9 c 0 - 164 -9 173 -19 184 -31 c 0 - 191 -38 198 -46 212 -46 c 0 - 250 -46 270 23 300 178 c 1 - 367 524 l 2 - 373 553 378 586 376 598 c 0 - 374 607 365 607 358 607 c 0 - 315 607 272 504 272 429 c 0 - 272 363 289 333 307 318 c 1 - 309 317 316 311 316 309 c 0 - 316 284 254 267 224 267 c 0 - 105 267 62 361 62 430 c 0 - 62 571 209 644 292 644 c 0xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenleft -Encoding: 40 40 7 -Width: 253 -VWidth: 0 -Flags: W -VStem: 47 229 -LayerCount: 2 -Fore -SplineSet -270 730 m 1 - 275 728 277 722 277 718 c 1 - 216 649 84 408 105 160 c 0 - 117 22 148 -52 198 -106 c 1 - 198 -109 198 -116 193 -118 c 1 - 135 -97 62 4 47 173 c 0 - 22 463 192 660 270 730 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" parenleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenleft.sc -Encoding: 65578 -1 433 -Width: 240 -Flags: W -HStem: -96 20<126 131> -LayerCount: 2 -Fore -SplineSet -94 201 m 0 - 68 67 91 -37 134 -76 c 0 - 135 -77 134 -77 134 -79 c 0 - 133 -85 126 -97 124 -96 c 0 - 83 -83 10 32 42 200 c 0 - 75 369 194 486 240 499 c 0 - 242 500 244 488 243 482 c 0 - 243 480 243 480 242 479 c 0 - 183 440 120 336 94 201 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenright -Encoding: 41 41 8 -Width: 253 -VWidth: 0 -Flags: W -VStem: -5 229 -LayerCount: 2 -Fore -SplineSet -2 -118 m 1 - -3 -116 -6 -109 -5 -105 c 1 - 56 -36 188 204 167 452 c 0 - 155 590 124 665 74 719 c 1 - 74 722 74 728 79 730 c 1 - 137 709 210 608 225 439 c 0 - 250 149 80 -48 2 -118 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" parenright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/parenright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/parenright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: parenright.sc -Encoding: 65579 -1 434 -Width: 242 -Flags: W -HStem: 479 20<88 93> -LayerCount: 2 -Fore -SplineSet -125 201 m 0 - 151 336 128 440 85 479 c 0 - 84 480 85 480 85 482 c 0 - 86 488 93 500 95 499 c 0 - 136 486 210 369 177 200 c 0 - 145 32 26 -83 -20 -96 c 0 - -22 -97 -25 -85 -24 -79 c 0 - -24 -77 -23 -77 -22 -76 c 0 - 37 -37 99 67 125 201 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/partialdiff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/partialdiff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/partialdiff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/partialdiff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: partialdiff -Encoding: 8706 8706 228 -Width: 428 -Flags: W -HStem: 0 35<118 207> 322 36<162 266> 578 41<165 283> -VStem: 19 70<59 224> 338 60<334 518> -LayerCount: 2 -Fore -SplineSet -208 322 m 0 - 153 322 89 250 89 146 c 0 - 89 107 95 35 162 35 c 0 - 248 35 303 187 303 232 c 0 - 303 283 265 322 208 322 c 0 -338 420 m 0 - 338 474 320 578 218 578 c 0 - 185 578 151 564 117 539 c 1 - 116 542 110 547 112 555 c 0 - 115 568 168 619 249 619 c 0 - 345 619 397 524 397 404 c 0 - 397 279 345 0 132 0 c 0 - 57 0 19 58 19 129 c 0 - 19 222 89 358 228 358 c 0 - 275 358 318 331 322 331 c 0 - 335 331 338 400 338 420 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/percent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/percent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/percent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/percent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: percent -Encoding: 37 37 4 -Width: 615 -VWidth: 0 -Flags: W -HStem: -8 27<372 441> 293 26<409 477> 330 27<165 234> 628 20G<601 611> 631 26<202 270> -VStem: 72 62<381 546> 279 62<43 208> 297 63<441 609> 504 63<103 272> -LayerCount: 2 -Fore -SplineSet -447 293 m 3xe680 - 385 293 341 205 341 129 c 27 - 341 79 357 20 404 20 c 3 - 466 20 504 113 504 190 c 27 - 504 236 491 293 447 293 c 3xe680 -457 319 m 3 - 532 319 567 256 567 190 c 3 - 567 96 489 -8 393 -8 c 3 - 319 -8 279 54 279 120 c 3 - 279 216 357 319 457 319 c 3 -240 631 m 3xed80 - 178 631 134 543 134 467 c 27 - 134 417 150 357 197 357 c 3 - 259 357 297 451 297 528 c 27 - 297 574 284 631 240 631 c 3xed80 -250 657 m 3 - 325 657 360 594 360 528 c 3 - 360 434 282 330 186 330 c 3 - 112 330 72 392 72 458 c 3 - 72 554 150 657 250 657 c 3 -632 635 m 9 - 50 0 l 2 - 46 -4 31 -12 17 -12 c 27 - 10 -12 4 -9 2 -1 c 9 - 584 637 l 2 - 588 641 595 647 605 647 c 27xf480 - 617 647 628 645 632 635 c 9 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/periodcentered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/periodcentered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/periodcentered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/periodcentered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: periodcentered -Encoding: 183 183 116 -Width: 216 -VWidth: 0 -Flags: W -HStem: 200 114<73 140> -VStem: 53 107<220 295> -LayerCount: 2 -Fore -SplineSet -53 246 m 0 - 53 282 86 314 118 314 c 0 - 143 314 160 295 160 270 c 0 - 160 234 128 200 96 200 c 0 - 71 200 53 220 53 246 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/period.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/period.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/period.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/period.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: period -Encoding: 46 46 13 -Width: 203 -VWidth: 0 -Flags: W -HStem: -14 113<27 95> -VStem: 8 107<6 81> -LayerCount: 2 -Fore -SplineSet -8 32 m 0 - 8 68 41 100 73 100 c 0 - 98 100 115 81 115 56 c 0 - 115 20 83 -14 51 -14 c 0 - 26 -14 8 6 8 32 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" period.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/period.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/period.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/period.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/period.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: period.sc -Encoding: 65580 -1 435 -Width: 209 -Flags: W -HStem: -9 99<33 96> -VStem: 19 94<7 75> -LayerCount: 2 -Fore -SplineSet -19 28 m 0 - 19 63 48 90 76 90 c 0 - 97 90 112 74 112 53 c 0 - 112 19 81 -9 53 -9 c 0 - 32 -9 19 7 19 28 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/perthousand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/perthousand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/perthousand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/perthousand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -StartChar: perthousand -Encoding: 8240 8240 207 -Width: 919 -VWidth: 0 -Flags: W -HStem: -8 27<377 446 682 750> 293 26<414 482 718 787> 330 27<170 238> 628 20G<605 616> 631 26<207 275> -VStem: 77 62<381 546> 284 62<43 208> 302 63<441 609> 509 63<103 272> 589 62<43 208> 813 63<103 272> -LayerCount: 2 -Fore -SplineSet -757 293 m 3xe4e0 - 695 293 650 205 650 129 c 27 - 650 79 667 20 714 20 c 3 - 776 20 813 113 813 190 c 27 - 813 236 801 293 757 293 c 3xe4e0 -767 319 m 3 - 842 319 877 256 877 190 c 3 - 877 96 798 -8 702 -8 c 3 - 628 -8 589 54 589 120 c 3 - 589 216 667 319 767 319 c 3 -245 631 m 3xede0 - 183 631 139 543 139 467 c 27 - 139 417 155 357 202 357 c 3 - 264 357 302 451 302 528 c 27 - 302 574 289 631 245 631 c 3xede0 -255 657 m 3 - 330 657 365 594 365 528 c 3 - 365 434 286 330 190 330 c 3 - 116 330 77 392 77 458 c 3 - 77 554 155 657 255 657 c 3 -637 635 m 9 - 55 0 l 2 - 51 -4 35 -12 21 -12 c 27 - 14 -12 9 -9 7 -1 c 9 - 589 637 l 2 - 593 641 600 647 610 647 c 27xf4e0 - 622 647 633 645 637 635 c 9 -452 293 m 3 - 390 293 346 205 346 129 c 27xe6e0 - 346 79 362 20 409 20 c 3 - 471 20 509 113 509 190 c 27 - 509 236 496 293 452 293 c 3 -462 319 m 3 - 537 319 572 256 572 190 c 3 - 572 96 493 -8 397 -8 c 3 - 323 -8 284 54 284 120 c 3 - 284 216 362 319 462 319 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/p.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/p.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/p.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/p.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: p -Encoding: 112 112 79 -Width: 437 -Flags: W -HStem: -229 28<-53 -13> -221 26<86 132> -5 34<142 220> 371 54<252 345> -VStem: 325 72<194 360> -LayerCount: 2 -Fore -SplineSet -274 371 m 0x38 - 242 371 184 330 158 293 c 1 - 126 128 l 2 - 115 70 143 29 172 29 c 0 - 255 29 325 180 325 296 c 0 - 325 350 305 371 274 371 c 0x38 -313 425 m 0 - 375 425 398 375 398 307 c 0 - 398 156 271 -5 152 -5 c 0 - 135 -5 113 -2 107 8 c 1 - 74 -142 l 2 - 72 -151 72 -159 72 -169 c 0 - 72 -174 75 -188 85 -191 c 0 - 102 -195 128 -194 131 -194 c 0 - 135 -195 133 -220 128 -222 c 1 - 115 -222 105 -221 94 -221 c 0x78 - 44 -221 6 -222 -51 -229 c 1 - -56 -228 -55 -204 -50 -201 c 1xb8 - -32 -201 -19 -197 -10 -186 c 0 - -3 -177 0 -166 5 -144 c 2 - 82 244 l 1 - 35 197 l 1 - 31 202 30 212 30 217 c 0 - 30 221 32 223 33 224 c 2 - 90 285 l 1 - 116 423 l 1 - 127 426 142 427 153 427 c 0 - 164 427 174 425 184 420 c 1 - 180 401 169 345 168 338 c 1 - 194 362 263 425 313 425 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" p.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_P.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_P.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_P.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_P.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: P -Encoding: 80 80 47 -Width: 499 -Flags: W -HStem: -3 28<-4 65 154 212> 275 25<238 320> 615 28<117 175 247 371> -VStem: 423 87<404 571> -LayerCount: 2 -Fore -SplineSet -510 496 m 0 - 510 371 402 275 283 275 c 0 - 262 275 244 281 239 285 c 0 - 237 287 231 296 231 301 c 0 - 231 303 233 304 235 305 c 1 - 243 301 259 301 268 301 c 0 - 340 301 423 373 423 482 c 0 - 423 537 411 615 310 615 c 0 - 299 615 268 614 263 605 c 0 - 256 593 251 561 245 532 c 2 - 163 113 l 2 - 157 84 152 57 154 41 c 0 - 155 30 203 25 214 25 c 1 - 217 20 214 2 208 -3 c 1 - 171 -1 137 2 102 2 c 0 - 67 2 33 -1 -5 -3 c 1 - -9 2 -5 20 -0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 176 587 174 603 c 0 - 173 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 194 642 229 642 c 0 - 264 642 280 644 334 644 c 0 - 438 644 510 585 510 496 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/plus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/plus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/plus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/plus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: plus -Encoding: 43 43 10 -Width: 443 -Flags: W -HStem: 212 42<19 190 245 414> -LayerCount: 2 -Fore -SplineSet -22 212 m 2 - 19 212 18 215 18 220 c 0 - 18 233 20 241 30 254 c 1 - 198 254 l 1 - 230 425 l 2 - 233 438 267 440 271 440 c 0 - 279 440 280 437 279 433 c 2 - 245 254 l 1 - 412 254 l 2 - 414 254 415 251 415 246 c 0 - 415 233 414 224 403 212 c 1 - 237 212 l 1 - 203 38 l 2 - 201 28 185 22 169 22 c 0 - 159 22 155 26 155 30 c 2 - 190 212 l 1 - 22 212 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/plusminus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/plusminus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/plusminus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/plusminus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: plusminus -Encoding: 177 177 110 -Width: 477 -VWidth: 0 -Flags: W -HStem: 21 42<1 396> 299 42<55 226 280 450> -LayerCount: 2 -Fore -SplineSet -394 62 m 2 - 396 62 396 60 396 55 c 0 - 396 42 396 33 385 21 c 1 - 4 21 l 2 - 1 21 -1 23 -1 28 c 0 - -1 41 2 49 12 62 c 1 - 394 62 l 2 -58 299 m 2 - 55 299 54 302 54 307 c 0 - 54 320 56 328 66 341 c 1 - 233 341 l 1 - 267 512 l 2 - 270 525 303 527 307 527 c 0 - 315 527 316 524 315 520 c 2 - 280 341 l 1 - 447 341 l 2 - 449 341 451 338 451 333 c 0 - 451 320 450 311 439 299 c 1 - 272 299 l 1 - 239 125 l 2 - 237 115 220 109 204 109 c 0 - 194 109 191 113 191 117 c 2 - 226 299 l 1 - 58 299 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/proportional.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/proportional.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/proportional.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/proportional.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: proportional -Encoding: 8733 8733 223 -Width: 639 -Flags: W -HStem: 40 55<129 232 518 541> 354 59<169 278 555 609> -VStem: 33 65<126 271> -LayerCount: 2 -Fore -SplineSet -229 354 m 0 - 154 354 99 262 99 193 c 0 - 99 138 131 95 185 95 c 0 - 245 95 306 168 354 213 c 0 - 355 214 355 214 354 215 c 0 - 332 253 292 354 229 354 c 0 -606 409 m 1 - 608 405 610 396 610 392 c 0 - 610 379 610 358 601 358 c 0 - 545 358 474 279 435 240 c 0 - 434 239 433 238 434 237 c 0 - 465 180 500 98 562 98 c 0 - 580 98 546 46 534 42 c 1 - 415 42 379 176 369 176 c 2 - 368 176 l 1 - 307 114 239 40 149 40 c 0 - 76 40 33 102 33 178 c 0 - 33 301 141 412 251 412 c 0 - 339 412 387 326 415 279 c 0 - 416 277 419 276 420 278 c 0 - 463 324 530 394 606 409 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/p.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/p.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/p.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/p.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: p.sc -Encoding: 65604 -1 459 -Width: 395 -Flags: W -HStem: -3 28<3 53 126 167> 177 31<180 256> 407 30<83 123 184 279> -LayerCount: 2 -Fore -SplineSet -373 320 m 0 - 355 230 292 177 208 177 c 0 - 193 177 186 182 182 186 c 0 - 181 188 174 200 175 204 c 0 - 176 208 178 211 179 212 c 1 - 185 210 201 208 210 208 c 0 - 256 208 289 244 301 306 c 0 - 313 368 290 407 227 407 c 0 - 220 407 201 406 197 400 c 0 - 193 392 189 373 185 353 c 2 - 132 83 l 2 - 128 63 126 47 126 36 c 0 - 126 29 162 25 169 25 c 1 - 170 17 168 2 163 -3 c 1 - 137 -1 108 1 83 1 c 0 - 58 1 26 -1 0 -3 c 1 - 0 4 2 19 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 60 64 64 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 80 419 83 436 86 440 c 1 - 112 438 144 436 169 436 c 0 - 194 436 223 438 261 438 c 0 - 321 438 388 397 373 320 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: q -Encoding: 113 113 80 -Width: 416 -Flags: W -HStem: -222 19<288 313> -5 57<74 156> 386 39<217 313> -VStem: 19 72<64 214> -LayerCount: 2 -Fore -SplineSet -310 -223 m 1 - 296 -223 284 -222 271 -222 c 0 - 214 -222 160 -225 124 -229 c 1 - 122 -227 121 -203 127 -203 c 0 - 155 -200 188 -192 193 -167 c 2 - 248 127 l 1 - 228 92 161 -5 104 -5 c 0 - 43 -5 19 56 19 113 c 0 - 19 266 169 425 296 425 c 0 - 330 425 354 419 373 412 c 1 - 313 104 l 2 - 312 100 269 -146 269 -146 c 2 - 268 -154 267 -161 267 -167 c 0 - 267 -181 269 -196 312 -196 c 0 - 316 -196 315 -220 310 -223 c 1 -289 333 m 2 - 293 355 281 386 255 386 c 0 - 176 386 91 258 91 146 c 0 - 91 92 105 52 141 52 c 0 - 191 52 258 175 277 270 c 1 - 289 333 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" q.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: Q -Encoding: 81 81 48 -Width: 693 -Flags: W -HStem: -133 54<463 597> 620 29<332 462> -VStem: 60 92<147 395> 564 92<239 489> -LayerCount: 2 -Fore -SplineSet -405 649 m 0 - 559 649 656 529 656 373 c 0 - 656 172 534 28 377 -4 c 1 - 449 -46 472 -79 561 -79 c 0 - 597 -79 643 -68 650 -66 c 1 - 657 -66 669 -75 669 -79 c 1 - 613 -107 553 -133 497 -133 c 0 - 402 -133 334 -36 222 4 c 16 - 118 41 60 144 60 267 c 0 - 60 492 227 649 405 649 c 0 -396 620 m 0 - 273 620 151 467 151 262 c 0 - 151 150 186 18 320 18 c 0 - 469 18 564 209 564 384 c 0 - 564 478 534 620 396 620 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/q.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/q.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/q.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/q.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: q.sc -Encoding: 65605 -1 460 -Width: 520 -Flags: W -HStem: -91 48<317 412> 413 31<225 328> -VStem: 39 79<96 290> 386 78<147 338> -LayerCount: 2 -Fore -SplineSet -39 187 m 0 - 39 337 166 444 277 444 c 0 - 388 444 464 353 464 241 c 0 - 464 121 377 30 283 1 c 1 - 323 -23 337 -43 394 -43 c 0 - 419 -43 435 -36 440 -34 c 1 - 444 -34 450 -42 449 -47 c 1 - 409 -72 375 -91 337 -91 c 0 - 272 -91 213 -17 161 2 c 0 - 85 30 39 108 39 187 c 0 -280 413 m 0 - 195 413 118 305 118 184 c 0 - 118 118 140 22 228 22 c 0 - 313 22 386 145 386 249 c 0 - 386 303 368 413 280 413 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/questiondown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/questiondown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/questiondown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/questiondown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: questiondown -Encoding: 191 191 124 -Width: 302 -VWidth: 0 -Flags: W -HStem: -204 48<28 110> 312 113<162 230> -VStem: -32 50<-145 -44> 142 107<331 405> 155 68<107 187> -LayerCount: 2 -Fore -SplineSet -249 381 m 0xf0 - 249 344 218 312 186 312 c 0 - 161 312 142 332 142 357 c 0 - 142 393 176 426 208 426 c 0 - 233 426 249 406 249 381 c 0xf0 -117 220 m 1 - 117 224 122 232 127 235 c 1 - 150 235 224 191 224 136 c 3 - 224 95 201 73 176 55 c 0 - 130 24 106 8 62 -23 c 16 - 42 -37 18 -61 18 -98 c 3 - 18 -136 39 -156 68 -156 c 0 - 111 -156 111 -111 148 -111 c 0 - 176 -111 182 -144 182 -162 c 1 - 177 -177 135 -204 98 -204 c 0 - 25 -204 -32 -139 -32 -78 c 0 - -32 -37 -20 -6 11 23 c 0 - 34 44 72 64 123 99 c 0 - 147 116 155 131 155 157 c 27xe8 - 155 185 128 212 117 220 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" questiondown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/questiondown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/questiondown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/questiondown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/questiondown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: questiondown.sc -Encoding: 65624 -1 479 -Width: 281 -VWidth: 0 -Flags: W -HStem: -9 42<60 120> 332 99<142 205> -VStem: 13 44<36 99> 126 94<347 415> 163 51<209 273> -LayerCount: 2 -Fore -SplineSet -220 394 m 0xf0 - 220 359 190 332 162 332 c 0 - 141 332 126 348 126 369 c 0 - 126 403 158 431 186 431 c 0 - 207 431 220 415 220 394 c 0xf0 -134 289 m 1 - 134 293 138 299 142 301 c 1 - 159 301 214 269 214 229 c 3 - 214 188 194 174 180 165 c 0 - 148 144 92 109 92 109 c 2 - 77 99 57 86 57 66 c 3 - 57 49 70 33 93 33 c 0 - 125 33 114 75 152 75 c 0 - 180 75 183 39 180 23 c 1 - 171 7 140 -9 115 -9 c 0 - 53 -9 13 32 13 82 c 0 - 13 146 63 162 135 204 c 0 - 154 215 163 226 163 246 c 3xe8 - 163 267 142 283 134 289 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/question.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/question.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/question.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/question.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: question -Encoding: 63 63 30 -Width: 312 -VWidth: 0 -Flags: W -HStem: -14 113<58 126> 568 48<178 260> -VStem: 39 107<7 81> 64 68<225 306> 271 50<456 557> -LayerCount: 2 -Fore -SplineSet -39 31 m 0xe8 - 39 68 71 100 103 100 c 0 - 128 100 146 80 146 55 c 0 - 146 19 112 -14 80 -14 c 0 - 55 -14 39 6 39 31 c 0xe8 -171 192 m 1 - 171 188 166 180 161 177 c 1 - 138 177 64 221 64 276 c 3 - 64 317 87 339 112 357 c 0 - 158 388 182 405 226 436 c 16 - 246 450 271 473 271 510 c 3 - 271 548 249 568 220 568 c 0 - 177 568 177 523 140 523 c 0 - 112 523 106 556 106 574 c 1 - 111 589 153 616 190 616 c 0 - 263 616 320 551 320 490 c 0 - 320 449 309 418 277 389 c 0 - 253 367 216 348 165 313 c 0 - 141 296 133 281 133 255 c 27xd8 - 133 227 160 200 171 192 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" question.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/question.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/question.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/question.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/question.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: question.sc -Encoding: 65587 -1 442 -Width: 282 -VWidth: 0 -Flags: W -HStem: -9 99<57 120> 389 42<142 202> -VStem: 42 94<7 75> 48 51<149 213> 205 44<323 386> -LayerCount: 2 -Fore -SplineSet -42 28 m 0xe8 - 42 63 72 90 100 90 c 0 - 121 90 136 74 136 53 c 0 - 136 19 104 -9 76 -9 c 0 - 55 -9 42 7 42 28 c 0xe8 -128 133 m 1 - 128 129 124 123 120 121 c 1 - 103 121 48 152 48 192 c 3 - 48 233 68 248 82 257 c 0 - 114 278 170 312 170 312 c 2 - 185 322 205 335 205 355 c 3 - 205 372 192 389 169 389 c 0 - 137 389 147 347 109 347 c 0 - 81 347 79 382 82 398 c 1 - 91 414 121 431 146 431 c 0 - 208 431 249 390 249 340 c 0 - 249 276 199 260 127 218 c 0 - 108 207 99 196 99 176 c 3xd8 - 99 155 120 139 128 133 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblbase -Encoding: 8222 8222 204 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8221 N 1 0 0 1 -124 -568 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: quotedbl -Encoding: 34 34 1 -Width: 323 -VWidth: 0 -Flags: W -HStem: 424 258<135 141 281 288> -VStem: 105 93<544 658> 251 93<544 658> -LayerCount: 2 -Fore -SplineSet -316 682 m 27 - 343 682 355 676 344 618 c 0 - 333 563 305 503 286 438 c 0 - 283 428 273 424 266 424 c 0 - 259 424 250 429 251 437 c 0 - 260 525 251 576 251 621 c 1 - 254 639 281 682 316 682 c 27 -170 682 m 27 - 197 682 208 676 197 618 c 0 - 186 563 159 503 140 438 c 0 - 137 428 126 424 119 424 c 0 - 112 424 104 429 105 437 c 0 - 114 525 105 576 105 621 c 1 - 108 639 135 682 170 682 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: quotedblleft -Encoding: 8220 8220 202 -Width: 363 -Flags: HW -LayerCount: 2 -Fore -Refer: 199 8216 N 1 0 0 1 155 0 2 -Refer: 199 8216 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotedblright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotedblright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblright -Encoding: 8221 8221 203 -Width: 363 -Flags: HW -LayerCount: 2 -Fore -Refer: 202 8220 N -1 0 -0 -1 486 1160 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quoteleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quoteleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quoteleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quoteleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: quoteleft -Encoding: 8216 8216 199 -Width: 208 -Flags: HW -HStem: 449 263 -VStem: 86 102<466 560> -LayerCount: 2 -Fore -SplineSet -99 534 m 0 - 121 644 244 711 254 711 c 0 - 262 711 268 703 270 690 c 1 - 196 648 175 595 173 584 c 0 - 167 554 208 532 202 500 c 0 - 196 472 157 449 122 449 c 0 - 114 449 107 451 100 453 c 1 - 93 469 93 505 99 534 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotereversed.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotereversed.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotereversed.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotereversed.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotereversed -Encoding: 8219 8219 844 -Width: 188 -Flags: HW -LayerCount: 2 -Fore -Refer: 200 8217 N -1 0 0.5 1 -26 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quoteright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quoteright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quoteright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quoteright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quoteright -Encoding: 8217 8217 200 -Width: 197 -Flags: HW -LayerCount: 2 -Fore -Refer: 199 8216 N -1 -0 0 -1 332 1162 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotesinglbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotesinglbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotesinglbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotesinglbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotesinglbase -Encoding: 8218 8218 201 -Width: 191 -Flags: HW -LayerCount: 2 -Fore -Refer: 200 8217 N 1 0 0 1 -124 -568 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotesingle.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotesingle.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/quotesingle.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/quotesingle.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: quotesingle -Encoding: 39 39 6 -Width: 176 -VWidth: 0 -Flags: W -HStem: 424 258<135 141> -VStem: 105 93<544 658> -LayerCount: 2 -Fore -SplineSet -170 682 m 27 - 197 682 208 676 197 618 c 0 - 186 563 159 503 140 438 c 0 - 137 428 126 424 119 424 c 0 - 112 424 104 429 105 437 c 0 - 114 525 105 576 105 621 c 1 - 108 639 135 682 170 682 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: racute -Encoding: 341 341 362 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 81 114 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 539 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" racute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Racute -Encoding: 340 340 361 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 49 82 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 120 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/racute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/racute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/racute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/racute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: racute.sc -Encoding: 65701 -1 556 -Width: 437 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 564 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/radical.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/radical.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/radical.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/radical.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: radical -Encoding: 8730 8730 222 -Width: 451 -Flags: HW -LayerCount: 2 -Fore -SplineSet --19 164 m 1 - -30 170 -34 177 -34 181 c 0 - -34 189 -16 198 -10 201 c 0 - 26 221 108 272 123 284 c 0 - 132 291 145 291 146 283 c 0 - 147 251 155 221 156 216 c 2 - 215 -30 l 1 - 500 772 l 1 - 533 772 l 1 - 204 -149 l 1 - 187 -167 177 -169 171 -169 c 0 - 167 -169 162 -168 162 -164 c 2 - 75 215 l 1 - -19 164 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: rcaron -Encoding: 345 345 366 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 494 3 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" rcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Rcaron -Encoding: 344 344 365 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 49 82 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 57 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/rcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/rcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/rcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/rcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: rcaron.sc -Encoding: 65703 -1 558 -Width: 437 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 511 25 2 -Refer: 461 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/registered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/registered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/registered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/registered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: registered -Encoding: 174 174 107 -Width: 588 -Flags: W -HStem: 130 31<203 353> 266 13<182 208 267 286 420 437> 397 21<288 310> 517 24<291 366> 528 12<234 252> 633 31<290 439> -VStem: 373 45<428 514> -LayerCount: 2 -Fore -SplineSet -336 517 m 27xf6 - 308 517 304 513 303 507 c 26 - 289 434 l 2 - 289 432 288 431 288 430 c 3 - 288 419 310 418 325 418 c 27 - 355 418 373 449 373 479 c 3 - 373 506 357 517 336 517 c 27xf6 -346 541 m 27 - 383 541 418 521 418 481 c 3 - 418 444 395 421 362 404 c 16 - 361 403 361 402 361 401 c 2 - 361 400 l 1 - 363 388 377 353 392 325 c 0 - 406 298 416 279 438 279 c 1 - 438 275 437 271 436 269 c 1 - 432 267 425 266 418 266 c 3 - 360 266 349 287 310 389 c 0 - 307 396 301 397 293 397 c 0 - 284 397 282 396 281 390 c 26 - 264 303 l 1 - 264 292 l 2 - 264 289 265 285 267 284 c 0 - 273 281 282 278 286 278 c 0 - 287 278 287 276 287 275 c 27 - 287 271 286 270 285 266 c 25 - 266 267 255 268 236 268 c 27 - 215 268 203 267 182 266 c 25 - 182 269 181 270 181 273 c 27 - 181 275 183 276 184 278 c 17 - 220 283 212 288 220 322 c 25 - 252 487 l 26 - 254 498 256 505 256 516 c 0 - 256 525 241 528 235 528 c 3 - 234 528 233 529 233 530 c 27 - 233 534 235 536 236 540 c 25xee - 253 539 261 537 278 537 c 27 - 304 537 320 541 346 541 c 27 -372 664 m 0 - 509 664 598 544 570 397 c 0 - 542 250 406 130 269 130 c 0 - 132 130 45 250 73 397 c 0 - 101 544 235 664 372 664 c 0 -368 633 m 0 - 247 633 128 527 103 397 c 0 - 78 267 155 161 276 161 c 0 - 397 161 516 267 541 397 c 0 - 566 527 489 633 368 633 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/r.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/r.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/r.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/r.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: r -Encoding: 114 114 81 -Width: 347 -Flags: W -HStem: -3 21G<76 87> 356 68<260 332> 371 54<92 154> -VStem: 108 73<237 397> -LayerCount: 2 -Fore -SplineSet -300 425 m 0xd0 - 321 425 339 414 348 404 c 0 - 352 399 356 387 356 377 c 0 - 356 352 343 334 321 334 c 0 - 312 334 300 340 292 349 c 0 - 288 354 280 356 272 356 c 0xd0 - 237 356 156 221 137 119 c 2 - 115 0 l 1 - 104 -2 93 -3 82 -3 c 0 - 69 -3 58 -2 46 0 c 1 - 104 315 l 2 - 105 321 108 342 108 347 c 0 - 108 356 109 371 99 371 c 0 - 78 371 33 317 30 314 c 1 - 27 314 21 327 21 333 c 1 - 32 352 98 425 144 425 c 0xb0 - 165 425 182 403 182 374 c 0 - 182 366 178 343 174 322 c 0 - 168 290 164 272 157 240 c 1 - 184 305 254 425 300 425 c 0xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" r.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_R.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_R.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_R.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_R.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: R -Encoding: 82 82 49 -Width: 565 -Flags: W -HStem: -3 28<-4 65 154 212 494 542> 296 29<205 272> 615 28<117 175 248 374> -VStem: 425 87<428 575> -LayerCount: 2 -Fore -SplineSet -540 -3 m 1 - 460 -3 398 1 375 46 c 0 - 346 104 304 199 272 284 c 0 - 269 293 260 296 247 296 c 2 - 199 296 l 1 - 164 113 l 2 - 158 84 152 57 154 41 c 0 - 155 30 203 25 214 25 c 1 - 217 20 214 2 208 -3 c 1 - 171 -1 138 2 103 2 c 0 - 68 2 33 -1 -5 -3 c 1 - -9 2 -5 20 -0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 176 587 174 603 c 0 - 173 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 195 642 230 642 c 0 - 265 642 305 644 359 644 c 0 - 442 644 512 597 512 506 c 0 - 512 412 427 339 352 312 c 1 - 384 224 431 126 455 84 c 0 - 478 44 497 29 546 25 c 1 - 550 20 541 -1 540 -3 c 1 -205 325 m 1 - 254 325 l 2 - 331 325 425 381 425 500 c 0 - 425 540 412 615 311 615 c 0 - 300 615 268 614 263 605 c 0 - 256 593 251 561 245 532 c 2 - 205 325 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ring -Encoding: 730 730 257 -Width: 445 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 916 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/r.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/r.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/r.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/r.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: r.sc -Encoding: 65606 -1 461 -Width: 437 -Flags: W -HStem: -3 28<2 53 126 166 344 382> 195 28<159 191> 407 30<83 123 184 277> -LayerCount: 2 -Fore -SplineSet -169 436 m 0 - 194 436 223 438 261 438 c 0 - 330 438 380 390 365 315 c 0 - 353 253 304 223 252 206 c 1 - 278 149 295 119 325 62 c 0 - 339 38 360 26 384 22 c 1 - 387 18 380 -1 379 -3 c 1 - 339 -3 316 0 305 5 c 0 - 297 8 274 14 259 40 c 0 - 252 53 214 125 189 188 c 0 - 187 194 181 195 172 195 c 0 - 172 195 159 195 154 195 c 1 - 145 149 132 82 132 82 c 1 - 128 63 125 45 126 35 c 0 - 126 28 162 25 169 25 c 1 - 169 16 167 2 163 -3 c 1 - 137 -1 108 1 83 1 c 0 - 58 1 26 -1 0 -3 c 1 - -1 2 1 19 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 61 64 65 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 80 420 82 436 86 440 c 1 - 112 438 144 436 169 436 c 0 -159 224 m 1 - 159 224 179 224 191 224 c 16 - 240 224 281 262 291 311 c 0 - 302 367 290 407 227 407 c 0 - 220 407 202 407 198 401 c 0 - 194 393 189 373 185 354 c 2 - 159 224 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: sacute -Encoding: 347 347 368 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 115 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 497 15 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" sacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Sacute -Encoding: 346 346 367 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 83 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 150 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: sacute.sc -Encoding: 65704 -1 559 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 462 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 515 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scaron -Encoding: 353 353 373 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 476 6 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" scaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scaron -Encoding: 352 352 249 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 83 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 73 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scaron.sc -Encoding: 65707 -1 562 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 491 27 2 -Refer: 462 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scedilla -Encoding: 351 351 372 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 342 3 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" scedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scedilla -Encoding: 350 350 371 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 83 N 1 0 0 1 0 0 3 -Refer: 291 -1 N 1 0 0 1 -26 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scedilla.sc -Encoding: 65706 -1 561 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 346 0 2 -Refer: 462 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scircumflex -Encoding: 349 349 370 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 457 7 2 -Refer: 82 115 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" scircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scircumflex -Encoding: 348 348 369 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 50 83 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 50 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/scircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scircumflex.sc -Encoding: 65705 -1 560 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 480 28 2 -Refer: 462 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/second.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/second.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/second.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/second.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: second -Encoding: 8243 8243 209 -Width: 276 -Flags: W -HStem: 482 200 -VStem: 135 71<606 672> 254 69<604 672> -LayerCount: 2 -Fore -SplineSet -305 683 m 0 - 313 683 323 680 323 666 c 0 - 323 627 260 531 233 490 c 0 - 229 484 225 482 221 482 c 0 - 215 482 210 487 211 494 c 0 - 212 497 236 597 254 650 c 0 - 258 662 287 683 305 683 c 0 -187 683 m 0 - 195 683 206 680 206 666 c 0 - 206 627 139 528 114 490 c 0 - 110 484 107 482 103 482 c 0 - 97 482 93 487 94 494 c 0 - 95 497 117 597 135 650 c 0 - 139 662 169 683 187 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/section.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/section.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/section.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/section.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: section -Encoding: 167 167 101 -Width: 385 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -76 49<35 148> 589 49<246 359> -LayerCount: 2 -Fore -SplineSet -341 638 m 0 - 239 638 163 573 147 495 c 0 - 133 425 186 370 221 327 c 0 - 261 278 301 213 285 132 c 0 - 276 89 256 69 229 32 c 0 - 229 32 205 14 192 -3 c 24 - 184 -14 184 -22 180 -34 c 17 - 219 -9 328 103 342 175 c 0 - 359 259 314 327 276 374 c 0 - 242 416 188 491 197 536 c 0 - 204 573 252 589 280 589 c 0 - 294 589 301 585 308 581 c 0 - 316 576 322 569 338 569 c 0 - 353 569 375 590 378 604 c 0 - 379 610 381 620 378 630 c 1 - 366 636 354 638 341 638 c 0 -165 529 m 0 - 165 529 189 547 202 564 c 24 - 210 575 209 584 213 596 c 17 - 174 571 65 459 51 387 c 0 - 34 303 80 235 118 188 c 0 - 152 146 206 70 197 25 c 0 - 190 -12 141 -27 113 -27 c 0 - 99 -27 93 -24 86 -20 c 0 - 78 -15 71 -8 55 -8 c 0 - 40 -8 19 -29 16 -43 c 0 - 15 -49 13 -58 16 -68 c 1 - 28 -74 39 -76 52 -76 c 0 - 154 -76 231 -12 247 66 c 0 - 261 136 207 191 172 234 c 0 - 132 283 93 349 109 430 c 0 - 118 473 138 492 165 529 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/semicolon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/semicolon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/semicolon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/semicolon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: semicolon -Encoding: 59 59 26 -Width: 246 -VWidth: 0 -Flags: W -HStem: -106 232 311 117<117 187> -VStem: 33 84<0 117> 97 111<331 407> -LayerCount: 2 -Fore -SplineSet -97 358 m 0xd0 - 97 395 131 428 164 428 c 0 - 190 428 208 408 208 382 c 0 - 208 345 175 311 142 311 c 0 - 116 311 97 331 97 358 c 0xd0 -EndSplineSet -Refer: 11 44 N 1 0 0 1 11 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" semicolon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/semicolon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/semicolon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/semicolon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/semicolon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: semicolon.sc -Encoding: 65583 -1 438 -Width: 252 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 26 59 N 1 0 0 1 11 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: seven -Encoding: 55 55 22 -Width: 487 -Flags: W -HStem: -6 21G<58 67> 544 74<114 384> -LayerCount: 2 -Fore -SplineSet -27 14 m 1 - 156 176 384 544 384 544 c 1 - 157 544 l 2 - 121 544 95 500 77 469 c 0 - 76 467 73 466 70 466 c 0 - 63 466 55 468 50 471 c 1 - 66 508 104 584 114 618 c 9 - 394 618 l 2 - 417 618 449 621 455 621 c 0 - 461 621 460 617 459 612 c 0 - 456 599 438 574 420 547 c 2 - 74 -3 l 1 - 72 -5 69 -6 64 -6 c 0 - 50 -6 25 5 27 14 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" seven.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" seven.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: seven.onum -Encoding: 65574 -1 425 -Width: 367 -Flags: W -HStem: 353 72<70 325> -LayerCount: 2 -Fore -SplineSet -334 425 m 2 - 357 425 388 428 394 428 c 0 - 400 428 398 424 397 419 c 0 - 394 406 380 386 360 354 c 2 - 32 -186 l 1 - 29 -187 27 -187 25 -187 c 0 - 13 -187 9 -178 9 -172 c 0 - 9 -169 10 -161 13 -156 c 2 - 325 353 l 1 - 248 353 178 353 107 353 c 0 - 75 353 53 306 43 286 c 1 - 35 285 27 284 21 292 c 1 - 34 337 42 369 53 413 c 0 - 55 421 63 425 71 425 c 2 - 334 425 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/seven.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/seven.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: seven.prop -Encoding: 65745 -1 853 -Width: 401 -Flags: HW -LayerCount: 2 -Fore -Refer: 22 55 N 1 0 0 1 7 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/s.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/s.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/s.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/s.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: s -Encoding: 115 115 82 -Width: 314 -Flags: W -HStem: -6 31<92 167> 395 33<129 199> -VStem: 59 57<287 368> 180 60<47 137> -LayerCount: 2 -Fore -SplineSet -194 428 m 0 - 233 428 257 419 278 401 c 1 - 283 394 288 377 288 370 c 0 - 288 348 275 330 255 330 c 0 - 237 330 222 346 209 364 c 0 - 198 380 191 395 163 395 c 0 - 129 395 115 361 115 340 c 0 - 115 301 150 270 180 236 c 0 - 210 201 239 163 239 114 c 0 - 239 42 180 -6 98 -6 c 0 - 68 -6 37 2 12 23 c 1 - 9 28 2 43 2 53 c 0 - 2 81 18 98 38 98 c 0 - 58 98 65 75 80 54 c 0 - 91 39 106 25 132 25 c 0 - 171 25 180 61 180 82 c 0 - 180 116 154 143 129 172 c 0 - 95 210 59 249 59 305 c 0 - 59 360 112 428 194 428 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" s.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_S.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_S.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_S.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_S.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: S -Encoding: 83 83 50 -Width: 460 -Flags: W -HStem: -8 29<144 259> 620 30<237 348> -VStem: 33 34<106 185> 99 76<437 545> 324 87<105 217> 387 30<480 578> -LayerCount: 2 -Fore -SplineSet -304 650 m 0xf8 - 361 650 390 639 438 627 c 1 - 435 594 424 515 418 486 c 0 - 417 479 411 479 408 479 c 0 - 404 479 393 480 387 486 c 1xf4 - 392 564 367 620 297 620 c 0 - 217 620 176 558 176 508 c 0 - 176 428 236 396 288 355 c 0 - 340 314 411 279 411 188 c 0 - 411 67 294 -8 188 -8 c 0 - 133 -8 82 12 45 33 c 1 - 32 86 31 168 33 180 c 1 - 36 184 50 186 57 186 c 0 - 62 186 65 184 67 180 c 1 - 67 126 104 21 200 21 c 0 - 265 21 324 66 324 144 c 0 - 324 214 280 248 231 287 c 0 - 172 334 99 364 99 465 c 0 - 99 577 213 650 304 650 c 0xf8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: six -Encoding: 54 54 21 -Width: 487 -VWidth: 0 -Flags: W -HStem: -6 32<156 240> 325 46<215 296> 608 20G<382 441> -VStem: 40 80<69 285> 327 78<140 294> -LayerCount: 2 -Fore -SplineSet -278 371 m 0 - 353 371 405 304 405 225 c 0 - 405 112 290 -6 184 -6 c 0 - 98 -6 40 60 40 169 c 0 - 40 245 76 356 161 453 c 0 - 218 517 325 589 438 628 c 1 - 444 628 446 610 445 604 c 1 - 333 556 220 480 161 342 c 0 - 128 264 120 210 120 156 c 0 - 120 96 138 26 195 26 c 0 - 248 26 327 104 327 219 c 0 - 327 280 300 325 233 325 c 0 - 210 325 196 317 187 312 c 1 - 184 314 181 317 181 321 c 3 - 181 333 245 371 278 371 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" six.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" six.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: six.onum -Encoding: 65573 -1 424 -Width: 414 -Flags: W -HStem: -7 39<138 217> 376 32<202 258> -VStem: 28 76<69 282> 288 77<155 342> -LayerCount: 2 -Fore -SplineSet -202 376 m 1 - 200 376 200 391 201 394 c 1 - 211 401 228 408 254 408 c 0 - 300 408 365 349 365 256 c 0 - 365 137 263 -7 158 -7 c 0 - 76 -7 28 78 28 169 c 0 - 28 399 275 565 426 633 c 1 - 434 633 439 610 438 605 c 1 - 337 556 104 417 104 177 c 0 - 104 115 122 32 175 32 c 0 - 228 32 288 127 288 255 c 0 - 288 371 243 376 202 376 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/six.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/six.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: six.prop -Encoding: 65744 -1 852 -Width: 435 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 21 54 N 1 0 0 1 -11 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: slash -Encoding: 47 47 14 -Width: 373 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -SplineSet -440 737 m 1 - 26 -12 l 2 - 23 -17 2 -33 -20 -33 c 0 - -24 -33 -30 -29 -31 -27 c 9 - 384 722 l 2 - 389 730 411 743 429 743 c 0 - 435 743 438 740 440 737 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" slash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/slash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/slash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/slash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/slash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: slash.sc -Encoding: 65581 -1 436 -Width: 325 -Flags: HW -LayerCount: 2 -Fore -SplineSet -327 501 m 1 - 26 -8 l 2 - 24 -13 12 -23 -9 -23 c 0 - -18 -23 -19 -19 -19 -19 c 1 - 281 491 l 2 - 288 501 295 505 314 505 c 0 - 323 505 324 502 327 501 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/space.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/space.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/space.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/space.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -StartChar: space -Encoding: 32 32 189 -Width: 221 -VWidth: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/s.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/s.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/s.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/s.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: s.sc -Encoding: 65607 -1 462 -Width: 346 -Flags: W -HStem: -7 28<90 172> 410 33<161 244> -VStem: 21 27<73 125> 270 21<323 373> -LayerCount: 2 -Fore -SplineSet -210 443 m 0 - 246 443 263 435 298 422 c 1 - 301 387 293 346 290 328 c 0 - 289 323 284 323 282 323 c 0 - 280 323 269 323 270 330 c 0 - 273 362 248 410 207 410 c 0 - 166 410 141 380 135 349 c 0 - 125 296 168 267 199 240 c 0 - 230 213 285 175 272 111 c 0 - 257 35 183 -7 121 -7 c 0 - 81 -7 47 8 20 17 c 1 - 18 56 19 113 21 121 c 0 - 22 124 28 125 33 125 c 0 - 42 125 46 122 48 119 c 1 - 48 99 71 21 128 21 c 0 - 157 21 194 38 204 89 c 0 - 212 129 171 160 140 188 c 0 - 107 218 60 258 73 324 c 0 - 87 393 159 443 210 443 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sterling.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sterling.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/sterling.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/sterling.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: sterling -Encoding: 163 163 97 -Width: 436 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 67<214 311> 28 62<66 176> 273 38<59 294> 579 41<252 348> -LayerCount: 2 -Fore -SplineSet -65 312 m 1x30 - 91 312 291 312 304 312 c 1 - 308 312 299 280 287 273 c 1 - 261 273 62 273 49 273 c 1 - 44 286 55 302 65 312 c 1x30 -168 242 m 0 - 154 169 114 115 85 86 c 1 - 103 93 118 91 158 91 c 0x70 - 207 91 260 60 295 60 c 0 - 335 60 358 109 375 131 c 1 - 379 131 384 124 384 114 c 0 - 384 110 383 107 382 105 c 0 - 362 69 317 -8 253 -8 c 0xb0 - 194 -8 132 28 87 28 c 0x70 - 59 28 31 7 12 -9 c 1 - 0 -9 -3 4 -2 10 c 1 - 19 39 35 55 55 80 c 1 - 76 125 88 176 99 231 c 0 - 107 274 104 347 116 407 c 0 - 140 530 233 620 331 620 c 0 - 365 620 384 607 394 584 c 1 - 394 560 379 526 356 526 c 0 - 319 526 324 579 287 579 c 0 - 225 579 202 505 189 439 c 0 - 178 381 177 289 168 242 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/summation.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/summation.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/summation.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/summation.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: summation -Encoding: 8721 8721 219 -Width: 556 -Flags: W -HStem: 2 44<89 408> 2 28<-21 9> 612 30<99 123> -VStem: 508 28<511 573> -LayerCount: 2 -Fore -SplineSet -395 602 m 2x70 - 395 602 306 603 281 603 c 0 - 249 603 222 601 219 593 c 1 - 343 350 l 1 - 345 338 344 327 336 319 c 0 - 300 284 89 85 89 56 c 0 - 89 50 97 46 155 46 c 0xb0 - 186 46 222 47 252 47 c 0 - 286 47 373 49 402 64 c 0 - 422 74 449 106 473 158 c 0 - 475 162 479 164 486 164 c 0 - 495 164 507 161 509 158 c 1 - 482 105 443 39 428 -4 c 1 - 329 -4 170 2 87 2 c 0 - 26 2 -21 -3 -21 -3 c 1 - -22 -2 -22 1 -22 5 c 0 - -22 13 -19 30 -16 30 c 0 - -6 30 17 50 28 62 c 2 - 262 310 l 2 - 264 313 265 315 263 319 c 0 - 255 339 190 478 139 578 c 0 - 130 595 109 612 98 612 c 0 - 95 612 95 634 104 643 c 1 - 104 643 148 641 209 641 c 0 - 293 641 437 648 536 648 c 1 - 535 632 535 618 535 603 c 0 - 535 574 536 545 536 516 c 1 - 533 513 527 511 520 511 c 0 - 513 511 508 513 508 518 c 0 - 505 574 484 588 476 593 c 0 - 462 601 427 602 395 602 c 2x70 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: tbar -Encoding: 359 359 407 -Width: 278 -VWidth: 0 -Flags: W -HStem: -6 54<72 134> 269 39<44 276> 367 36<50 108 185 262> -VStem: 42 237 49 73<21 173> -LayerCount: 2 -Fore -SplineSet -53 308 m 1xf0 - 79 308 262 308 275 308 c 0 - 279 308 280 303 279 298 c 0 - 278 292 273 278 268 269 c 1 - 242 269 58 269 45 269 c 0 - 41 269 41 276 42 281 c 0 - 43 287 46 299 53 308 c 1xf0 -EndSplineSet -Refer: 83 116 N 1 0 0 1 1 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" tbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: Tbar -Encoding: 358 358 406 -Width: 574 -Flags: W -HStem: -3 28<132 200 290 348> 301 39<140 463> 605 34<155 316 395 548> -VStem: 573 31<483 573> -LayerCount: 2 -Fore -SplineSet -149 340 m 1 - 175 340 449 340 462 340 c 0 - 466 340 467 335 466 330 c 0 - 465 324 459 310 454 301 c 1 - 428 301 155 301 142 301 c 0 - 138 301 138 308 139 313 c 0 - 140 319 142 331 149 340 c 1 -EndSplineSet -Refer: 51 84 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: tbar.sc -Encoding: 65710 -1 565 -Width: 426 -VWidth: 0 -Flags: W -HStem: -3 28<85 135 207 247> 208 26<96 319> 407 32<107 209 276 373> -VStem: 386 27<320 391> -LayerCount: 2 -Fore -SplineSet -315 208 m 1 - 293 208 105 208 94 208 c 1 - 91 208 94 227 101 234 c 1 - 123 234 310 234 321 234 c 1 - 324 234 320 215 315 208 c 1 -EndSplineSet -Refer: 463 -1 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: tcaron -Encoding: 357 357 377 -Width: 268 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 116 N 1 0 0 1 0 0 2 -Refer: 271 789 N 1 0 0 1 176 41 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" tcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Tcaron -Encoding: 356 356 376 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 51 84 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 110 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: tcaron.sc -Encoding: 65709 -1 564 -Width: 426 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 524 26 2 -Refer: 463 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/t.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/t.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/t.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/t.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: t -Encoding: 116 116 83 -Width: 271 -Flags: W -HStem: -6 54<71 133> 367 36<49 107 184 261> -VStem: 48 73<21 173> -LayerCount: 2 -Fore -SplineSet -114 403 m 1 - 125 461 l 1 - 136 475 180 525 188 525 c 0 - 194 525 201 523 205 520 c 1 - 184 403 l 1 - 257 403 l 2 - 261 403 262 397 262 392 c 0 - 262 382 258 375 253 367 c 1 - 177 367 l 1 - 125 104 l 2 - 123 94 121 77 121 72 c 0 - 121 63 121 48 131 48 c 0 - 152 48 196 101 199 104 c 1 - 202 104 209 92 209 86 c 1 - 198 67 127 -6 81 -6 c 0 - 60 -6 48 16 48 45 c 0 - 48 53 51 76 55 97 c 2 - 107 367 l 1 - 42 367 l 2 - 41 367 40 368 40 370 c 0 - 40 380 63 403 85 403 c 2 - 114 403 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" t.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_T.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_T.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_T.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_T.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: T -Encoding: 84 84 51 -Width: 573 -Flags: W -HStem: -3 28<131 199 289 347> 605 34<154 315 394 547> -VStem: 572 31<483 573> -LayerCount: 2 -Fore -SplineSet -537 640 m 2 - 552 640 583 648 595 654 c 0 - 605 659 607 659 612 656 c 1 - 607 596 603 540 603 488 c 1 - 600 485 592 480 584 481 c 0 - 579 481 573 483 572 486 c 1 - 573 554 555 605 510 605 c 2 - 394 605 l 1 - 298 113 l 2 - 292 84 286 57 288 41 c 0 - 289 30 337 25 348 25 c 1 - 351 20 349 2 343 -3 c 1 - 306 -1 272 2 237 2 c 0 - 202 2 167 -1 129 -3 c 1 - 125 2 130 20 135 25 c 1 - 146 25 195 30 200 41 c 0 - 208 57 213 84 219 113 c 2 - 315 605 l 1 - 198 605 l 2 - 153 605 114 554 88 486 c 0 - 86 483 79 481 74 481 c 0 - 65 480 59 485 57 488 c 1 - 78 540 96 596 114 656 c 1 - 120 659 129 656 134 653 c 0 - 144 647 168 640 182 640 c 2 - 537 640 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_T_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_T_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_T_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_T_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,64 +0,0 @@ -StartChar: T_h -Encoding: 65549 -1 247 -Width: 959 -VWidth: 0 -Flags: W -HStem: -6 54<783 846> -3 26<128 187 298 343> 353 72<781 849> 601 44<126 303 394 615> 658 20G<722 730> -VStem: 58 29<509 538> 128 162<3 62> 761 73<21 167> 809 75<217 379> -LayerCount: 2 -Fore -SplineSet -623 518 m 2xbe80 - 624 524 625 526 625 530 c 0 - 625 599 615 601 500 601 c 0 - 442 601 401 596 396 586 c 0 - 383 559 377 527 369 488 c 2 - 301 136 l 2 - 294 102 290 76 290 48 c 0xbe80 - 290 29 343 23 343 23 c 2 - 344 23 345 22 345 20 c 0 - 345 14 341 1 339 -3 c 1 - 303 -1 277 2 237 2 c 0 - 195 2 172 -1 130 -3 c 1 - 129 -2 128 2 128 5 c 0 - 128 13 131 23 135 23 c 0 - 146 23 191 32 197 45 c 0 - 209 72 216 102 223 139 c 2 - 290 485 l 2 - 297 521 303 550 303 580 c 0 - 303 590 307 601 206 601 c 0 - 136 601 119 585 87 514 c 0 - 85 510 82 509 77 509 c 0 - 69 509 61 513 58 516 c 1 - 101 655 l 1 - 115 651 149 645 162 645 c 0 - 243 644 286 639 359 639 c 0 - 432 639 473 643 543 645 c 0 - 631 647 717 678 728 678 c 1 - 733 678 732 666 732 662 c 9 - 732 662 714 631 703 577 c 2 - 653 322 l 1 - 636 232 l 1 - 649 256 766 425 830 425 c 0 - 868 425 884 397 884 360 c 0x7e80 - 884 327 878 291 870 254 c 2 - 838 104 l 2 - 837 100 834 77 834 72 c 0 - 834 63 834 48 844 48 c 0 - 865 48 909 101 912 104 c 1 - 915 104 922 92 922 86 c 1 - 911 67 840 -6 794 -6 c 0 - 773 -6 761 16 761 45 c 0xbf - 761 53 763 76 768 97 c 2 - 802 258 l 2 - 804 267 809 300 809 311 c 0 - 809 333 807 353 790 353 c 0 - 755 353 637 230 615 116 c 0 - 609 86 601 45 591 0 c 1 - 581 -3 566 -4 556 -4 c 0 - 546 -4 534 -3 522 0 c 1 - 623 518 l 2xbe80 -EndSplineSet -LCarets2: 1 0 -Ligature2: "'liga' Standard Ligatures lookup 0-1" T h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: thorn -Encoding: 254 254 187 -Width: 438 -Flags: W -HStem: -229 28<-52 -12> -221 26<87 133> -5 34<143 221> 371 54<253 345> 617 21<90 146> 650 20G<212 225> -VStem: 150 79<530 652> 326 72<194 360> -LayerCount: 2 -Fore -SplineSet -216 578 m 2xbf - 213 559 170 345 169 338 c 1 - 195 362 264 425 314 425 c 0 - 376 425 399 375 399 307 c 0 - 399 156 272 -5 153 -5 c 0 - 136 -5 114 -2 108 8 c 1 - 75 -142 l 2 - 73 -151 73 -159 73 -169 c 0 - 73 -174 76 -188 86 -191 c 0 - 103 -195 129 -194 132 -194 c 0 - 136 -195 134 -220 129 -222 c 1 - 116 -222 106 -221 95 -221 c 0x7f - 45 -221 7 -222 -50 -229 c 1 - -55 -228 -54 -204 -49 -201 c 1 - -31 -201 -18 -197 -9 -186 c 0 - -2 -177 1 -166 6 -144 c 2 - 83 244 l 1 - 36 197 l 1 - 32 202 31 212 31 217 c 0 - 31 221 32 223 33 224 c 2 - 91 285 l 1 - 141 547 l 2 - 144 565 150 588 150 599 c 0 - 150 618 106 617 90 617 c 1 - 87 621 90 634 94 638 c 1 - 148 643 202 662 223 670 c 1 - 228 667 229 657 229 651 c 0 - 229 643 221 602 216 578 c 2xbf -275 371 m 0 - 243 371 185 330 159 293 c 1 - 127 128 l 2 - 116 70 144 29 173 29 c 0 - 256 29 326 180 326 296 c 0 - 326 350 306 371 275 371 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" thorn.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: Thorn -Encoding: 222 222 155 -Width: 458 -Flags: W -HStem: -3 28<-4 65 155 212> 131 25<210 292> 471 28<237 343> 618 28<117 174 265 333> -VStem: 396 87<259 426> -LayerCount: 2 -Fore -SplineSet -229 447 m 8 - 204 317 164 113 164 113 c 2 - 158 84 152 57 154 41 c 0 - 155 30 203 25 214 25 c 1 - 217 20 214 2 208 -3 c 1 - 171 -1 139 2 104 2 c 0 - 69 2 33 -1 -5 -3 c 1 - -9 2 -5 20 0 25 c 1 - 11 25 61 30 66 41 c 0 - 74 57 79 84 85 113 c 2 - 166 530 l 2 - 172 559 177 587 175 603 c 0 - 174 614 126 618 115 618 c 1 - 112 623 115 641 121 646 c 1 - 158 644 193 642 228 642 c 0 - 263 642 297 644 335 646 c 1 - 339 641 334 623 329 618 c 1 - 318 618 269 614 264 603 c 0 - 256 587 251 559 245 530 c 2 - 236 488 l 1 - 258 497 284 499 306 499 c 0 - 410 499 482 441 482 352 c 0 - 482 227 374 131 255 131 c 0 - 234 131 216 137 211 141 c 0 - 209 143 203 151 203 156 c 0 - 203 158 205 159 207 160 c 1 - 215 156 230 156 239 156 c 0 - 311 156 396 229 396 338 c 0 - 396 393 383 471 282 471 c 0 - 271 471 233 468 229 447 c 8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/thorn.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/thorn.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/thorn.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/thorn.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: thorn.sc -Encoding: 65655 -1 510 -Width: 396 -Flags: W -HStem: -3 28<4 53 126 165> 92 31<164 240> 326 30<187 264> 412 28<84 123 197 246> -LayerCount: 2 -Fore -SplineSet -187 354 m 1 - 197 355 208 356 246 356 c 0 - 306 356 373 315 357 237 c 0 - 339 146 275 92 191 92 c 0 - 176 92 169 97 165 101 c 0 - 164 103 157 115 158 119 c 0 - 159 123 161 126 162 127 c 1 - 168 125 184 123 193 123 c 0 - 239 123 272 160 285 223 c 0 - 298 286 274 326 211 326 c 0 - 204 326 185 325 181 319 c 0 - 177 311 172 291 168 271 c 0 - 133 84 l 2 - 129 63 126 47 126 36 c 0 - 126 29 162 25 169 25 c 1 - 168 21 164 1 163 -3 c 1 - 137 -1 108 1 83 1 c 0 - 58 1 26 -1 0 -3 c 1 - 1 1 4 21 5 25 c 1 - 12 25 50 29 53 36 c 0 - 58 47 60 64 64 84 c 2 - 116 354 l 2 - 120 374 123 390 123 401 c 0 - 123 408 87 412 80 412 c 1 - 81 416 85 436 86 440 c 1 - 112 438 144 436 168 437 c 0 - 193 437 224 438 250 440 c 1 - 249 436 245 416 244 412 c 1 - 237 412 200 408 197 401 c 0 - 192 390 188 361 187 354 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: three -Encoding: 51 51 18 -Width: 487 -Flags: W -HStem: -5 39<145 243> 310 30<186 238> 574 53<256 348> -VStem: 342 83<153 286> 366 71<455 557> -LayerCount: 2 -Fore -SplineSet -339 627 m 0xe8 - 385 627 438 593 438 521 c 0xe8 - 438 457 375 398 324 370 c 1 - 379 363 425 297 425 238 c 0 - 425 88 246 -5 160 -5 c 0 - 113 -5 80 4 58 20 c 1 - 54 25 49 36 49 47 c 0 - 49 76 69 104 90 104 c 0 - 122 104 127 75 141 58 c 0 - 158 37 179 34 203 34 c 0 - 259 34 342 104 342 214 c 0xf0 - 342 279 307 319 247 319 c 0 - 227 319 201 313 189 310 c 1 - 186 315 186 318 186 323 c 0 - 186 327 186 337 188 340 c 1 - 266 354 366 415 366 501 c 0 - 366 555 332 574 291 574 c 0 - 233 574 193 523 183 516 c 1 - 177 516 176 530 178 539 c 1 - 215 584 268 627 339 627 c 0xe8 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" three.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" three.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: three.onum -Encoding: 65570 -1 421 -Width: 347 -Flags: W -HStem: -186 49<-44 65> 123 35<59 104> 380 62<154 255> -VStem: 193 82<-5 112> 234 71<292 371> -LayerCount: 2 -Fore -SplineSet -186 189 m 1xe8 - 218 185 275 140 275 74 c 0 - 275 -68 76 -186 -26 -186 c 0 - -39 -186 -50 -184 -62 -178 c 1 - -63 -174 -64 -170 -64 -166 c 0 - -64 -137 -38 -117 -23 -117 c 0 - 5 -117 4 -137 34 -137 c 0 - 108 -137 193 -44 193 49 c 0xf0 - 193 94 168 134 127 134 c 0 - 100 134 75 128 60 123 c 1 - 48 125 58 152 62 158 c 1 - 131 179 234 249 234 328 c 0 - 234 360 214 380 184 380 c 0 - 133 380 92 340 76 326 c 1 - 69 326 62 340 66 347 c 1 - 106 399 171 441 237 441 c 0 - 273 441 306 410 306 361 c 0 - 306 291 227 210 186 189 c 1xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/three.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/three.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: three.prop -Encoding: 65741 -1 849 -Width: 407 -Flags: HW -LayerCount: 2 -Fore -Refer: 18 51 N 1 0 0 1 -65 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/threequarters.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/threequarters.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/threequarters.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/threequarters.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: threequarters -Encoding: 190 190 123 -Width: 635 -VWidth: 0 -Flags: W -HStem: -2 21G<106 145 477 494> 104 45<366 474 546 583> 241 30<97 174> 438 21<116 151> 594 39<151 215> 607 20G<531 567> -VStem: 213 69<322 428> 223 54<517 589> -LayerCount: 2 -Fore -SplineSet -581 396 m 0xf0 - 587 396 593 386 592 381 c 2 - 546 148 l 25 - 580 148 l 18 - 584 148 584 131 582 118 c 0 - 581 112 578 106 577 104 c 1 - 538 104 l 25 - 519 1 l 1 - 519 1 504 -2 483 -2 c 0 - 469 -2 453 -1 454 3 c 2 - 474 104 l 25 - 307 104 l 1 - 303 106 302 113 303 117 c 1 - 560 389 l 2 - 565 394 577 396 581 396 c 0xf0 -516 307 m 25 - 366 148 l 25 - 482 148 l 25 - 516 307 l 25 -211 633 m 0xf9 - 239 633 276 612 276 567 c 0xf9 - 276 527 233 492 202 474 c 1 - 245 471 282 429 282 393 c 0 - 282 289 163 241 109 241 c 0 - 80 241 51 246 37 256 c 1 - 35 259 31 266 31 273 c 0 - 31 292 48 314 62 314 c 0 - 82 314 87 298 96 287 c 0 - 107 274 123 271 139 271 c 0 - 173 271 213 309 213 377 c 0xfa - 213 418 188 441 151 441 c 0 - 139 441 127 440 120 438 c 1 - 118 441 116 441 116 444 c 0 - 116 446 116 456 117 458 c 1 - 166 467 223 501 223 547 c 0 - 223 570 208 594 183 594 c 0 - 147 594 124 558 118 554 c 1 - 114 554 109 564 110 570 c 1 - 136 607 167 633 211 633 c 0xf9 -566 611 m 2 - 131 -6 l 1 - 131 -6 106 -7 106 4 c 0 - 106 6 107 8 108 10 c 26 - 545 627 l 1xf4 - 545 627 567 627 567 616 c 0 - 567 614 567 612 566 611 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: tildecomb.cap -Encoding: 65554 -1 288 -Width: 277 -GlyphClass: 4 -Flags: W -HStem: 708 41<329 431> 745 41<202 304> -VStem: 169 294 -LayerCount: 2 -Fore -SplineSet -264 786 m 0x60 - 287 786 302 784 323 772 c 0 - 344 760 364 749 394 749 c 0xa0 - 427 749 451 779 457 786 c 1x60 - 460 785 463 783 463 776 c 0 - 463 762 454 749 445 740 c 0 - 421 717 397 708 369 708 c 0xa0 - 346 708 331 710 310 722 c 0 - 289 734 269 745 239 745 c 0x60 - 206 745 182 715 176 708 c 1xa0 - 173 709 169 711 169 718 c 0 - 169 732 179 745 188 754 c 0 - 212 777 236 786 264 786 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tildecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: tildecomb -Encoding: 771 771 232 -Width: 0 -VWidth: 917 -GlyphClass: 4 -Flags: W -HStem: 479 41<-231 -137> 514 41<-353 -255> -VStem: -387 284 -LayerCount: 2 -Fore -SplineSet --290 555 m 0x60 - -268 555 -251 550 -235 542 c 0 - -215 533 -200 520 -172 520 c 0xa0 - -141 520 -115 548 -108 555 c 1x60 - -105 554 -101 553 -102 546 c 0 - -104 532 -114 518 -123 510 c 0 - -148 487 -173 479 -199 479 c 0xa0 - -221 479 -236 484 -253 492 c 0 - -272 501 -290 514 -318 514 c 0x60 - -349 514 -375 486 -382 479 c 1xa0 - -385 480 -388 481 -387 488 c 0 - -385 502 -376 515 -367 523 c 0 - -342 546 -316 555 -290 555 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/tilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/tilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: tilde -Encoding: 732 732 259 -Width: 435 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 994 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/t.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/t.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/t.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/t.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: t.sc -Encoding: 65608 -1 463 -Width: 426 -Flags: W -HStem: -3 28<84 134 206 246> 407 32<106 208 275 372> -VStem: 385 27<320 391> -LayerCount: 2 -Fore -SplineSet -366 439 m 0 - 376 439 395 445 404 449 c 0 - 411 453 414 454 417 451 c 1 - 414 409 411 359 412 322 c 1 - 409 320 403 317 396 318 c 0 - 392 318 386 319 385 321 c 1 - 385 366 376 407 348 407 c 2 - 275 407 l 1 - 213 83 l 2 - 209 63 206 47 206 36 c 0 - 206 29 242 25 249 25 c 1 - 250 17 247 3 243 -3 c 1 - 217 -1 188 1 164 1 c 0 - 140 1 107 -1 81 -3 c 1 - 81 5 83 20 86 25 c 1 - 93 25 131 29 134 36 c 0 - 139 47 142 63 146 83 c 2 - 208 407 l 1 - 136 407 l 2 - 108 407 83 366 66 321 c 1 - 64 319 57 318 53 318 c 0 - 46 317 40 320 38 322 c 1 - 54 359 70 409 84 451 c 1 - 88 454 95 451 98 449 c 0 - 105 445 119 439 129 439 c 0 - 182 439 309 439 366 439 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: two -Encoding: 50 50 17 -Width: 487 -Flags: W -HStem: 0 71<127 358> 563 63<249 349> -VStem: 374 87<402 537> -LayerCount: 2 -Fore -SplineSet -461 500 m 0 - 461 411 415 349 346 279 c 0 - 264 195 125 71 127 71 c 9 - 293 71 l 2 - 346 71 377 103 396 144 c 0 - 398 149 402 152 408 152 c 0 - 412 152 424 148 425 146 c 1 - 400 98 358 18 350 0 c 9 - 350 0 39 0 32 0 c 1 - 30 2 26 9 26 15 c 1 - 80 64 219 207 277 272 c 0 - 343 347 374 409 374 475 c 0 - 374 530 342 563 294 563 c 0 - 222 563 163 499 148 479 c 1 - 141 479 134 491 135 495 c 1 - 146 519 231 627 326 627 c 0 - 397 627 461 576 461 500 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" two.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" two.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: two.onum -Encoding: 65569 -1 420 -Width: 382 -Flags: W -HStem: 0 65<96 275> 378 63<160 253> -VStem: 261 73<283 370> -LayerCount: 2 -Fore -SplineSet -96 76 m 0 - 93 73 92 65 97 65 c 2 - 224 65 l 2 - 265 65 278 86 301 125 c 0 - 303 129 308 130 314 130 c 0 - 318 130 323 128 325 125 c 1 - 306 75 295 51 277 -1 c 1 - 153 0 l 1 - 153 0 -9 0 -16 0 c 1 - -21 2 -21 10 -20 16 c 1 - 101 120 261 244 261 322 c 0 - 261 357 246 378 206 378 c 0 - 145 378 108 343 70 307 c 1 - 65 307 55 317 58 322 c 1 - 80 358 146 441 241 441 c 0 - 303 441 334 399 334 350 c 0 - 334 237 129 101 96 76 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/two.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/two.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: two.prop -Encoding: 65740 -1 848 -Width: 422 -Flags: HW -LayerCount: 2 -Fore -Refer: 17 50 N 1 0 0 1 -54 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uacute -Encoding: 250 250 183 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 536 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uacute -Encoding: 218 218 151 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 285 -1 N 1 0 0 1 248 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uacute.sc -Encoding: 65651 -1 506 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 595 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ubreve -Encoding: 365 365 383 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 499 6 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ubreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ubreve -Encoding: 364 364 382 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 290 -1 N 1 0 0 1 200 198 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ubreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ubreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ubreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ubreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ubreve.sc -Encoding: 65713 -1 568 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 263 774 N 1 0 0 1 535 28 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ucircumflex -Encoding: 251 251 184 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 518 4 2 -Refer: 84 117 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ucircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ucircumflex -Encoding: 219 219 152 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 286 -1 N 1 0 0 1 135 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ucircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ucircumflex.sc -Encoding: 65652 -1 507 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 561 26 2 -Refer: 464 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: udieresis -Encoding: 252 252 185 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 520 21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" udieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Udieresis -Encoding: 220 220 153 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 297 -1 N 1 0 0 1 137 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/udieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/udieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/udieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/udieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: udieresis.sc -Encoding: 65653 -1 508 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 551 32 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/u.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/u.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/u.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/u.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: u -Encoding: 117 117 84 -Width: 479 -Flags: W -HStem: -6 72<101 161> -6 54<301 363> 371 54<91 153> -VStem: 58 75<46 202> 107 73<252 397> 278 73<21 183> -LayerCount: 2 -Fore -SplineSet -285 97 m 0x74 - 291 130 296 149 303 182 c 1 - 278 127 170 -6 106 -6 c 0 - 68 -6 58 27 58 64 c 0xb4 - 58 91 65 137 71 165 c 2 - 104 315 l 2 - 105 321 107 342 107 347 c 0 - 107 356 108 371 98 371 c 0 - 77 371 32 317 29 314 c 1 - 26 314 20 327 20 333 c 1 - 31 352 97 425 143 425 c 0 - 164 425 181 403 181 374 c 0xac - 181 366 178 343 174 322 c 2 - 140 161 l 2 - 138 152 133 119 133 108 c 0 - 133 86 134 66 151 66 c 0xb4 - 186 66 302 190 326 312 c 0 - 334 352 340 378 348 419 c 1 - 358 422 368 423 378 423 c 0 - 388 423 404 422 416 419 c 1 - 355 104 l 2 - 353 94 352 77 352 72 c 0 - 352 63 351 48 361 48 c 0 - 382 48 427 101 430 104 c 1 - 433 104 439 92 439 86 c 1 - 428 67 358 -6 312 -6 c 0 - 291 -6 278 16 278 45 c 0 - 278 53 281 76 285 97 c 0x74 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" u.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_U.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_U.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_U.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_U.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: U -Encoding: 85 85 52 -Width: 645 -Flags: W -HStem: -4 57<225 388> 618 28<103 160 250 318 502 558 628 700> -LayerCount: 2 -Fore -SplineSet -213 642 m 0 - 248 642 282 644 320 646 c 1 - 324 641 319 623 314 618 c 1 - 303 618 254 614 249 603 c 0 - 241 587 236 559 230 530 c 2 - 183 289 l 2 - 168 213 170 155 189 117 c 0 - 210 74 248 53 306 53 c 0 - 400 53 472 100 507 268 c 0 - 559 532 l 2 - 566 567 568 584 562 600 c 0 - 558 610 516 619 501 619 c 1 - 498 626 502 641 505 647 c 1 - 541 645 563 643 603 643 c 0 - 645 643 660 645 702 647 c 1 - 704 642 704 630 697 619 c 1 - 686 619 631 612 622 600 c 0 - 611 585 608 570 601 533 c 2 - 549 270 l 2 - 511 75 418 -4 276 -4 c 0 - 207 -4 154 21 122 66 c 0 - 92 109 80 170 95 245 c 2 - 151 530 l 2 - 157 559 163 587 161 603 c 0 - 160 614 112 618 101 618 c 1 - 98 623 101 641 107 646 c 1 - 144 644 178 642 213 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ugrave -Encoding: 249 249 182 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 498 -21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ugrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ugrave -Encoding: 217 217 150 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 284 -1 N 1 0 0 1 135 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ugrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ugrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ugrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ugrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ugrave.sc -Encoding: 65650 -1 505 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 521 2 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: uhorn -Encoding: 432 432 819 -Width: 479 -Flags: W -HStem: -6 72<101 161> -6 54<301 363> 371 54<91 153> 399 25<410 446> -VStem: 58 75<46 202> 107 73<252 397> 278 73<21 182> 453 66<435 523> -LayerCount: 2 -Fore -SplineSet -412 425 m 0x9b - 429 425 453 434 453 452 c 0 - 453 465 447 478 447 488 c 0 - 447 508 464 524 485 524 c 0 - 497 524 507 522 516 517 c 1 - 518 511 520 501 520 493 c 0 - 520 441 475 399 426 399 c 0 - 417 399 411 397 410 390 c 0 - 389 280 355 104 355 104 c 2 - 353 94 352 77 352 72 c 0 - 352 63 351 48 361 48 c 0 - 382 48 427 101 430 104 c 1 - 433 104 439 92 439 86 c 1 - 428 67 358 -6 312 -6 c 0x5b - 291 -6 278 16 278 45 c 0 - 278 53 281 76 285 97 c 0 - 291 130 296 149 303 182 c 1 - 278 127 170 -6 106 -6 c 0 - 68 -6 58 27 58 64 c 0x8b - 58 91 65 137 71 165 c 2 - 104 315 l 2 - 105 321 107 342 107 347 c 0 - 107 356 108 371 98 371 c 0 - 77 371 32 317 29 314 c 1 - 26 314 20 327 20 333 c 1 - 31 352 97 425 143 425 c 0 - 164 425 181 403 181 374 c 0xa7 - 181 366 178 343 174 322 c 2 - 140 161 l 2 - 138 152 133 119 133 108 c 0 - 133 86 134 66 151 66 c 0 - 186 66 302 190 326 312 c 0 - 334 352 340 378 348 419 c 1 - 358 422 394 425 412 425 c 0x9b -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: Uhorn -Encoding: 431 431 818 -Width: 645 -Flags: W -HStem: -4 57<225 388> 618 28<103 160 250 318 502 558> -VStem: 690 63<657 726> -LayerCount: 2 -Fore -SplineSet -626 599 m 0 - 614 586 608 570 601 533 c 2 - 549 270 l 2 - 511 75 418 -4 276 -4 c 0 - 207 -4 154 21 122 66 c 0 - 92 109 80 170 95 245 c 2 - 151 530 l 2 - 157 559 163 587 161 603 c 0 - 160 614 112 618 101 618 c 1 - 98 623 101 641 107 646 c 1 - 144 644 178 642 213 642 c 0 - 248 642 282 644 320 646 c 1 - 324 641 319 623 314 618 c 1 - 303 618 254 614 249 603 c 0 - 241 587 236 559 230 530 c 2 - 183 289 l 2 - 168 213 170 155 189 117 c 0 - 210 74 248 53 306 53 c 0 - 400 53 472 100 507 268 c 0 - 559 532 l 2 - 566 567 568 584 562 600 c 0 - 558 610 516 619 501 619 c 1 - 498 626 502 641 505 647 c 1 - 541 645 563 643 603 643 c 0 - 639 643 690 647 690 668 c 0 - 690 677 684 684 682 688 c 0 - 679 695 675 699 675 710 c 0 - 675 734 704 747 723 747 c 0 - 732 747 739 745 744 743 c 1 - 751 731 754 722 754 710 c 0 - 754 659 698 621 656 612 c 0 - 647 610 632 606 626 599 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uhungarumlaut -Encoding: 369 369 387 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 268 779 N 1 0 0 1 542 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uhungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uhungarumlaut -Encoding: 368 368 386 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 296 -1 N 1 0 0 1 168 23 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uhungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uhungarumlaut.sc -Encoding: 65715 -1 570 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 268 779 N 1 0 0 1 594 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: umacron -Encoding: 363 363 381 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 84 117 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 516 13 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" umacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Umacron -Encoding: 362 362 380 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 289 -1 N 1 0 0 1 133 176 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/umacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/umacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/umacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/umacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: umacron.sc -Encoding: 65712 -1 567 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 552 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/underscore.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/underscore.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/underscore.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/underscore.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: underscore -Encoding: 95 95 62 -Width: 463 -Flags: W -HStem: -42 55<-29 385> -LayerCount: 2 -Fore -SplineSet --38 -36 m 0 - -38 -31 -23 13 -15 13 c 2 - 390 13 l 2 - 393 13 396 12 396 9 c 0 - 396 5 388 -15 378 -36 c 0 - 375 -42 372 -42 372 -42 c 1 - -33 -42 l 1 - -33 -42 -38 -42 -38 -36 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00A0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00A0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00A0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00A0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -StartChar: uni00A0 -Encoding: 160 160 94 -Width: 221 -VWidth: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00AD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00AD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00AD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00AD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni00AD -Encoding: 173 173 869 -Width: 361 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 193 8208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: uni00B2 -Encoding: 178 178 111 -Width: 336 -Flags: W -HStem: 249 53<114 271> 588 43<165 241> -VStem: 253 76<482 575> -LayerCount: 2 -Fore -SplineSet -329 551 m 0 - 329 497 291 456 249 413 c 0 - 199 362 113 302 114 302 c 9 - 229 302 l 2 - 259 302 277 326 288 351 c 0 - 289 354 293 355 297 355 c 0 - 299 355 310 349 311 348 c 1 - 296 319 269 260 264 249 c 9 - 264 249 53 249 49 249 c 1 - 48 250 45 261 45 265 c 1 - 78 295 163 375 198 415 c 0 - 238 461 253 498 253 532 c 0 - 253 565 225 588 196 588 c 0 - 152 588 128 551 119 539 c 1 - 115 539 109 554 110 556 c 1 - 117 571 167 631 234 631 c 0 - 277 631 329 607 329 551 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni00B3 -Encoding: 179 179 112 -Width: 308 -Flags: W -HStem: 241 30<109 186> 438 21<129 164> 594 39<164 228> -VStem: 226 69<322 428> 235 54<517 589> -LayerCount: 2 -Fore -SplineSet -224 633 m 0xe8 - 252 633 289 612 289 567 c 0xe8 - 289 527 246 492 215 474 c 1 - 258 471 295 429 295 393 c 0 - 295 289 176 241 122 241 c 0 - 93 241 64 246 50 256 c 1 - 48 259 44 266 44 273 c 0 - 44 292 61 314 75 314 c 0 - 95 314 99 298 108 287 c 0 - 119 274 135 271 151 271 c 0 - 185 271 226 309 226 377 c 0xf0 - 226 418 201 441 164 441 c 0 - 152 441 140 440 133 438 c 1 - 131 441 129 441 129 444 c 0 - 129 446 129 456 130 458 c 1 - 179 467 235 501 235 547 c 0 - 235 570 220 594 195 594 c 0 - 159 594 137 558 131 554 c 1 - 127 554 122 564 123 570 c 1 - 149 607 180 633 224 633 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni00B9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni00B9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni00B9 -Encoding: 185 185 118 -Width: 263 -Flags: W -HStem: 247 22<54 106 179 223> -VStem: 54 193 -LayerCount: 2 -Fore -SplineSet -103 543 m 1 - 100 546 98 553 98 557 c 0 - 98 558 99 561 101 562 c 0 - 157 588 239 633 241 633 c 2 - 242 633 l 2 - 246 633 247 625 247 622 c 1 - 247 622 237 601 230 565 c 2 - 185 334 l 2 - 181 314 178 297 179 281 c 0 - 180 274 221 269 225 269 c 0 - 227 269 227 260 226 256 c 0 - 225 253 224 248 223 247 c 1 - 201 248 149 250 127 250 c 0 - 105 250 77 248 54 247 c 1 - 52 250 54 269 57 269 c 0 - 64 269 104 274 107 281 c 0 - 112 293 115 303 117 315 c 2 - 153 500 l 2 - 160 536 164 557 155 557 c 0 - 141 557 111 546 103 543 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0122.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0122.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0122.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0122.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0122 -Encoding: 290 290 329 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 562 -39 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0123.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0123.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0123.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0123.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0123 -Encoding: 291 291 330 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 103 N 1 0 0 1 0 0 3 -Refer: 270 786 N 1 0 0 1 88 31 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0123.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0123.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0123.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0123.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0123.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0123.sc -Encoding: 65675 -1 530 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 474 -39 2 -Refer: 450 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0136.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0136.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0136.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0136.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0136 -Encoding: 310 310 343 -Width: 599 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 499 -39 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0137.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0137.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0137.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0137.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0137 -Encoding: 311 311 279 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 425 -41 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0137.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0137.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0137.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0137.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0137.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0137.sc -Encoding: 65686 -1 541 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 446 -50 2 -Refer: 454 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013B -Encoding: 315 315 346 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 443 -40 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni013C -Encoding: 316 316 347 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 320 -39 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni013C.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013C.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013C.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni013C.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni013C.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013C.sc -Encoding: 65689 -1 544 -Width: 386 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 428 -39 2 -Refer: 455 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0145.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0145.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0145.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0145.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0145 -Encoding: 325 325 353 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 536 -39 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0146.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0146.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0146.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0146.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0146 -Encoding: 326 326 354 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 448 -39 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0146.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0146.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0146.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0146.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0146.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0146.sc -Encoding: 65694 -1 549 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 478 -39 2 -Refer: 457 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0156.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0156.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0156.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0156.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0156 -Encoding: 342 342 363 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 493 -39 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0157.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0157.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0157.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0157.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0157 -Encoding: 343 343 364 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 332 -39 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0157.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0157.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0157.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0157.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0157.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0157.sc -Encoding: 65702 -1 557 -Width: 437 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 450 -39 2 -Refer: 461 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0162.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0162.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0162.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0162.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0162 -Encoding: 354 354 374 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 51 84 N 1 0 0 1 0 0 3 -Refer: 291 -1 N 1 0 0 1 30 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0163.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0163.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0163.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0163.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0163 -Encoding: 355 355 375 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 321 4 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0163.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0163.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0163.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0163.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0163.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0163.sc -Encoding: 65708 -1 563 -Width: 426 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 397 6 2 -Refer: 463 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01CE.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01CE.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01CE.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01CE.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CE.sc -Encoding: 65723 -1 578 -Width: 427 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 522 28 2 -Refer: 444 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D0.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D0.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D0.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D0.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D0.sc -Encoding: 65724 -1 579 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 430 25 2 -Refer: 452 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D2.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D2.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D2.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D2.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D2.sc -Encoding: 65725 -1 580 -Width: 520 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 567 28 2 -Refer: 458 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D4.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D4.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D4.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D4.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D4.sc -Encoding: 65726 -1 581 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 565 25 2 -Refer: 464 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D6.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D6.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D6.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D6.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D6.sc -Encoding: 65727 -1 582 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 508 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 582 192 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D8.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D8.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01D8.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01D8.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D8.sc -Encoding: 65728 -1 583 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 508 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 633 191 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01DA.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01DA.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01DA.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01DA.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DA.sc -Encoding: 65729 -1 584 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 587 183 2 -Refer: 508 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01DC.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01DC.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01DC.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01DC.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DC.sc -Encoding: 65730 -1 585 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 508 -1 N 1 0 0 1 0 0 2 -Refer: 229 768 N 1 0 0 1 550 159 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01E3.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01E3.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni01E3.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni01E3.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E3.sc -Encoding: 65731 -1 586 -Width: 824 -Flags: HW -LayerCount: 2 -Fore -Refer: 486 -1 N 1 0 0 1 0 0 2 -Refer: 261 772 N 1 0 0 1 717 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0218.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0218.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0218.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0218.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0218 -Encoding: 536 536 428 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 394 -39 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0219.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0219.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0219.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0219.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0219 -Encoding: 537 537 429 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 349 -39 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni0219.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0219.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0219.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0219.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0219.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0219.sc -Encoding: 65735 -1 590 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 372 -56 2 -Refer: 462 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021A -Encoding: 538 538 430 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 459 -39 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni021B -Encoding: 539 539 431 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 376 -39 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uni021B.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021B.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021B.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni021B.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni021B.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021B.sc -Encoding: 65736 -1 591 -Width: 426 -Flags: HW -LayerCount: 2 -Fore -Refer: 273 806 N 1 0 0 1 399 -50 2 -Refer: 463 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0233.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0233.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0233.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0233.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0233.sc -Encoding: 65737 -1 592 -Width: 389 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 -1 0 2 -Refer: 261 772 N 1 0 0 1 515 35 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0237.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0237.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0237.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0237.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: uni0237 -Encoding: 567 567 416 -Width: 243 -Flags: W -HStem: 371 54<101 164> -VStem: 118 73<245 397> -LayerCount: 2 -Fore -SplineSet -114 315 m 2 - 115 321 118 342 118 347 c 0 - 118 356 118 371 108 371 c 0 - 87 371 43 317 40 314 c 1 - 37 314 30 327 30 333 c 1 - 41 352 107 425 153 425 c 0 - 174 425 191 403 191 374 c 0 - 191 366 189 343 185 322 c 2 - 131 44 l 2 - 124 9 104 -65 62 -121 c 0 - 21 -175 -40 -215 -74 -229 c 1 - -78 -226 -83 -217 -83 -210 c 1 - -18 -173 35 -87 56 21 c 2 - 114 315 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni02BB -Encoding: 699 699 250 -Width: 175 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 270 786 N 1 0 0 1 -79 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni02BC -Encoding: 700 700 251 -Width: 169 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 271 789 N 1 0 0 1 -95 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni02BE -Encoding: 702 702 842 -Width: 190 -VWidth: 0 -Flags: W -HStem: 428 33<25 75> 648 33<66 108> -VStem: 20 155 -LayerCount: 2 -Fore -SplineSet -28 461 m 1 - 74 461 115 505 125 555 c 0 - 136 609 116 648 62 648 c 1 - 60 654 59 669 70 682 c 1 - 142 682 189 624 175 556 c 0 - 161 488 91 428 20 428 c 1 - 19 437 20 447 28 461 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02BF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02BF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni02BF -Encoding: 703 703 843 -Width: 190 -VWidth: 0 -Flags: W -HStem: 428 33<89 129> 648 33<117 173> -VStem: 20 153 -LayerCount: 2 -Fore -SplineSet -129 461 m 1 - 131 447 131 437 126 428 c 1 - 55 428 6 488 20 556 c 0 - 34 624 101 682 173 682 c 1 - 178 669 174 654 170 648 c 1 - 116 648 80 609 69 555 c 0 - 59 505 83 461 129 461 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02C0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02C0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni02C0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni02C0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni02C0 -Encoding: 704 704 252 -Width: 183 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 346 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0302.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0302.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0302.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0302.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0302.cap -Encoding: 65552 -1 286 -Width: 288 -GlyphClass: 4 -Flags: W -HStem: 694 122 -VStem: 169 229 -LayerCount: 2 -Fore -SplineSet -312 816 m 0 - 316 816 319 814 321 810 c 0 - 346 769 364 744 397 704 c 1 - 396 698 389 694 383 694 c 1 - 347 718 296 752 296 752 c 25 - 296 752 226 717 179 694 c 1 - 173 694 168 698 169 704 c 1 - 224 745 251 768 298 810 c 0 - 303 814 308 816 312 816 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0302.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0302.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0302.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0302.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0302 -Encoding: 770 770 231 -Width: 0 -VWidth: 937 -GlyphClass: 4 -Flags: W -HStem: 479 132 -VStem: -359 200 -LayerCount: 2 -Fore -SplineSet --234 610 m 0 - -230 610 -227 607 -225 603 c 0 - -201 557 -187 533 -159 489 c 1 - -160 483 -167 479 -172 479 c 1 - -202 502 -248 541 -248 541 c 25 - -248 541 -312 503 -350 479 c 1 - -355 479 -360 483 -359 489 c 1 - -313 533 -289 557 -246 603 c 0 - -242 607 -238 610 -234 610 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0304.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0304.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0304.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0304.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0304.cap -Encoding: 65555 -1 289 -Width: 343 -GlyphClass: 4 -Flags: W -HStem: 544 38<166 406> -VStem: 164 243<544 582> -LayerCount: 2 -Fore -SplineSet -397 544 m 1 - 167 544 l 1 - 167 544 164 547 164 553 c 0 - 164 560 171 582 176 582 c 2 - 403 582 l 2 - 405 582 407 579 407 575 c 0 - 407 570 405 553 397 544 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0304.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0304.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0304.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0304.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0304 -Encoding: 772 772 261 -Width: 0 -VWidth: 934 -GlyphClass: 4 -Flags: W -HStem: 479 38<-359 -145> -VStem: -361 218<479 517> -LayerCount: 2 -Fore -SplineSet --153 479 m 1 - -358 479 l 1 - -358 479 -361 481 -361 487 c 0 - -361 494 -354 517 -349 517 c 2 - -148 517 l 2 - -146 517 -144 514 -144 510 c 0 - -144 505 -145 488 -153 479 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0305.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0305.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0305.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0305.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0305.cap -Encoding: 65560 -1 294 -Width: 513 -GlyphClass: 4 -Flags: W -HStem: 722 62<136 666> -LayerCount: 2 -Fore -SplineSet -127 731 m 0 - 127 733 140 783 150 783 c 2 - 679 783 l 2 - 681 783 684 782 682 774 c 0 - 679 756 668 733 666 729 c 0 - 663 723 658 722 658 722 c 1 - 131 722 l 1 - 131 722 125 721 127 731 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0305.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0305.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0305.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0305.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0305 -Encoding: 773 773 262 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 722 62<135 665> -LayerCount: 2 -Fore -SplineSet -126 731 m 0 - 126 733 139 783 149 783 c 2 - 678 783 l 2 - 680 783 683 782 681 774 c 0 - 678 756 667 733 665 729 c 0 - 662 723 657 722 657 722 c 1 - 130 722 l 1 - 130 722 124 721 126 731 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0306.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0306.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0306.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0306.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0306.cap -Encoding: 65556 -1 290 -Width: 225 -GlyphClass: 4 -Flags: W -HStem: 513 47<165 273> -VStem: 130 22<585 616> 310 19<601 617> -LayerCount: 2 -Fore -SplineSet -220 560 m 0 - 258 560 294 580 310 616 c 0 - 310 618 312 618 314 618 c 0 - 320 618 329 611 328 607 c 0 - 328 606 326 603 326 601 c 0 - 309 556 260 513 211 513 c 0 - 162 513 129 553 130 602 c 0 - 130 604 130 606 130 607 c 0 - 131 611 142 618 148 618 c 0 - 150 618 152 618 152 616 c 0 - 154 580 182 560 220 560 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0306.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0306.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0306.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0306.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0306 -Encoding: 774 774 263 -Width: 0 -VWidth: 970 -GlyphClass: 4 -Flags: W -HStem: 479 45<-287 -188> -VStem: -327 22<555 591> -146 17<577 593> -LayerCount: 2 -Fore -SplineSet --129 586 m 1 - -129 583 -130 578 -131 576 c 0 - -150 524 -199 479 -248 479 c 0 - -297 479 -330 521 -327 577 c 0 - -327 579 -326 584 -326 585 c 1 - -323 590 -312 599 -305 594 c 1 - -304 552 -277 523 -239 523 c 0 - -201 523 -164 552 -146 594 c 1 - -142 598 -131 592 -129 586 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0307.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0307.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0307.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0307.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0307.cap -Encoding: 65558 -1 292 -Width: 234 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 264 775 N 1 0 0 1 519 216 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0307.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0307.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0307.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0307.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni0307 -Encoding: 775 775 264 -Width: 0 -VWidth: 995 -GlyphClass: 4 -Flags: W -HStem: 479 98<-278 -213> -VStem: -291 91<491 563> -LayerCount: 2 -Fore -SplineSet --291 527 m 0 - -286 554 -260 576 -235 576 c 0 - -210 576 -195 554 -200 527 c 0 - -205 500 -230 479 -255 479 c 0 - -280 479 -296 500 -291 527 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.cap -Encoding: 65563 -1 297 -Width: 304 -GlyphClass: 4 -Flags: W -HStem: 695 98<182 247 346 411> -VStem: 169 91<709 780> 333 91<708 780> -LayerCount: 2 -Fore -SplineSet -333 744 m 0 - 338 771 363 793 388 793 c 0 - 413 793 429 771 424 744 c 0 - 419 717 394 695 369 695 c 0 - 344 695 328 717 333 744 c 0 -169 744 m 0 - 174 771 199 793 224 793 c 0 - 249 793 265 771 260 744 c 0 - 255 717 229 695 204 695 c 0 - 179 695 164 717 169 744 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0308 -Encoding: 776 776 265 -Width: 0 -VWidth: 1018 -GlyphClass: 4 -Flags: W -HStem: 479 90<-362 -299 -196 -133> -VStem: -373 85<489 557> -207 85<489 556> -LayerCount: 2 -Fore -SplineSet --154 568 m 27 - -132 568 -117 546 -122 522 c 24 - -127 498 -151 479 -173 479 c 27 - -195 479 -212 499 -207 523 c 24 - -202 547 -176 568 -154 568 c 27 --321 568 m 27 - -299 568 -283 546 -288 522 c 24 - -293 498 -317 479 -339 479 c 27 - -361 479 -378 499 -373 523 c 24 - -368 547 -343 568 -321 568 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.narrow.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.narrow.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0308.narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0308.narrow.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0308.narrow -Encoding: 65564 -1 298 -Width: 262 -VWidth: 0 -GlyphClass: 4 -Flags: W -HStem: 466 98<141 204 271 334> -VStem: 131 86<477 554> 261 86<477 554> -LayerCount: 2 -Fore -SplineSet -311 563 m 27 - 332 563 347 545 347 524 c 27 - 347 494 324 466 294 466 c 27 - 273 466 261 488 261 509 c 27 - 261 538 282 563 311 563 c 27 -181 563 m 27 - 202 563 217 545 217 524 c 27 - 217 494 194 466 164 466 c 27 - 143 466 131 488 131 509 c 27 - 131 538 152 563 181 563 c 27 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030A.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030A.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030A.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030A.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A.cap -Encoding: 65553 -1 287 -Width: 375 -GlyphClass: 4 -Flags: W -HStem: 490 33<234 304> 632 33<248 320> -VStem: 196 160 -LayerCount: 2 -Fore -SplineSet -226 578 m 0 - 220 548 239 523 266 523 c 0 - 293 523 320 548 326 578 c 0 - 332 608 315 632 288 632 c 0 - 261 632 232 608 226 578 c 0 -196 578 m 0 - 206 626 251 665 295 665 c 0 - 339 665 366 626 356 578 c 0 - 346 530 305 490 261 490 c 0 - 217 490 186 530 196 578 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 267 -Width: 0 -VWidth: 988 -GlyphClass: 4 -Flags: W -HStem: 479 33<-286 -216> 620 33<-272 -200> -VStem: -323 159 -LayerCount: 2 -Fore -SplineSet --293 566 m 0 - -299 536 -281 512 -254 512 c 0 - -227 512 -199 536 -193 566 c 0 - -187 596 -205 620 -232 620 c 0 - -259 620 -287 596 -293 566 c 0 --323 566 m 0 - -313 614 -270 653 -226 653 c 0 - -182 653 -154 614 -164 566 c 0 - -174 518 -216 479 -260 479 c 0 - -304 479 -333 518 -323 566 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030B.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030B.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030B.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030B.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: uni030B.cap -Encoding: 65562 -1 296 -Width: 350 -GlyphClass: 4 -Flags: W -HStem: 678 105<293 305> -VStem: 146 318 -LayerCount: 2 -Fore -SplineSet -294 678 m 0 - 293 678 288 685 288 688 c 0 - 288 695 368 762 392 778 c 0 - 395 780 411 783 418 783 c 0 - 446 783 465 773 465 762 c 0 - 465 738 309 678 294 678 c 0 -152 678 m 0 - 151 678 146 685 146 688 c 0 - 146 695 226 762 250 778 c 0 - 253 780 269 783 276 783 c 0 - 304 783 323 773 323 762 c 0 - 323 738 167 678 152 678 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B -Encoding: 779 779 268 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 230 769 N 1 0 0 1 -46 0 2 -Refer: 230 769 N 1 0 0 1 77 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030C.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030C.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030C.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030C.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni030C.cap -Encoding: 65565 -1 299 -Width: 234 -GlyphClass: 4 -Flags: W -HStem: 694 122 -VStem: 169 229 -LayerCount: 2 -Fore -SplineSet -255 694 m 0 - 250 694 247 697 245 701 c 0 - 220 745 201 766 169 807 c 1 - 170 813 178 816 184 816 c 1 - 220 792 271 759 271 759 c 25 - 271 759 344 794 388 816 c 1 - 394 816 398 813 397 807 c 1 - 344 766 317 745 269 701 c 0 - 264 697 260 694 255 694 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni030C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni030C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni030C -Encoding: 780 780 269 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 481 132 -VStem: -339 200 -LayerCount: 2 -Fore -SplineSet --264 481 m 0 - -268 481 -270 485 -272 489 c 0 - -296 535 -311 559 -339 603 c 1 - -338 609 -331 613 -326 613 c 1 - -295 587 -250 551 -250 551 c 25 - -250 551 -185 589 -147 613 c 1 - -142 613 -138 609 -139 603 c 1 - -185 559 -209 535 -252 489 c 0 - -256 485 -260 481 -264 481 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0312.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0312.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0312.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0312.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0312 -Encoding: 786 786 270 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 447 176 -VStem: 108 97<467 531> -LayerCount: 2 -Fore -SplineSet -205 501 m 0 - 205 470 159 447 121 447 c 1 - 108 457 108 479 108 487 c 0 - 108 541 168 603 200 621 c 1 - 201 622 204 623 208 623 c 0 - 220 623 226 619 226 616 c 0 - 226 610 184 597 176 557 c 0 - 170 528 205 526 205 501 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0315.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0315.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0315.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0315.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0315 -Encoding: 789 789 271 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 454 183 -VStem: 169 66<534 619> -LayerCount: 2 -Fore -SplineSet -158 578 m 0 - 158 615 191 637 230 637 c 1 - 234 630 235 621 235 609 c 0 - 235 599 234 589 232 576 c 0 - 223 532 165 469 141 455 c 0 - 140 454 136 454 134 454 c 0 - 129 454 124 461 124 466 c 0 - 124 470 169 492 169 538 c 0 - 169 549 158 560 158 578 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0323.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0323.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0323.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0323.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0323.cap -Encoding: 65559 -1 293 -Width: 232 -GlyphClass: 4 -Flags: W -HStem: -133 98<80 145> -VStem: 67 91<-120 -48> -LayerCount: 2 -Fore -SplineSet -67 -84 m 0 - 72 -57 97 -35 122 -35 c 0 - 147 -35 163 -57 158 -84 c 0 - 153 -111 128 -133 103 -133 c 0 - 78 -133 62 -111 67 -84 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0324.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0324.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0324.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0324.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0324 -Encoding: 804 804 864 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 265 776 N 1 0 0 1 0 -638 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0325.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0325.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0325.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0325.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0325 -Encoding: 805 805 865 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 0 -716 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0326.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0326.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0326.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0326.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0326 -Encoding: 806 806 273 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -188 176 -VStem: -295 97<-96 -32> -LayerCount: 2 -Fore -SplineSet --295 -66 m 0 - -295 -35 -249 -13 -211 -13 c 1 - -198 -23 -198 -45 -198 -53 c 0 - -198 -107 -258 -169 -290 -187 c 1 - -291 -188 -294 -188 -298 -188 c 0 - -310 -188 -315 -185 -315 -182 c 0 - -315 -176 -274 -162 -266 -122 c 0 - -260 -93 -295 -91 -295 -66 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0327.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0327.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0327.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0327.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327.cap -Encoding: 65557 -1 291 -Width: 392 -GlyphClass: 4 -Flags: W -HStem: -170 27<122 191> -65 39<187 206> -20 20G<183 211> -VStem: 98 152 -LayerCount: 2 -Fore -SplineSet -187 -26 m 1 - 214 -26 l 2 - 242 -26 256 -53 250 -83 c 0 - 239 -137 188 -170 132 -170 c 0 - 119 -170 104 -165 98 -160 c 1 - 98 -154 97 -151 98 -144 c 0 - 100 -136 109 -128 116 -128 c 0 - 129 -128 135 -143 153 -143 c 0 - 183 -143 202 -124 206 -104 c 0 - 211 -77 195 -65 181 -65 c 0 - 169 -65 163 -68 151 -73 c 0 - 149 -73 140 -64 143 -59 c 0 - 157 -41 177 -17 189 0 c 1 - 211 0 l 1 - 187 -26 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0327.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0327.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0327.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0327.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327 -Encoding: 807 807 274 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -148 23<-296 -237> -60 33<-241 -224> -23 20G<-244 -220> -VStem: -316 129 -LayerCount: 2 -Fore -SplineSet --241 -26 m 1 - -218 -26 l 2 - -195 -26 -182 -49 -187 -74 c 0 - -196 -120 -240 -148 -287 -148 c 0 - -298 -148 -311 -144 -316 -140 c 1 - -316 -135 -317 -132 -316 -126 c 0 - -315 -119 -307 -112 -301 -112 c 0 - -290 -112 -285 -125 -270 -125 c 0 - -245 -125 -227 -110 -224 -93 c 0 - -219 -70 -234 -60 -246 -60 c 0 - -256 -60 -261 -62 -271 -66 c 0 - -273 -66 -281 -58 -278 -54 c 0 - -267 -39 -249 -18 -239 -4 c 1 - -220 -4 l 1 - -241 -26 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0328.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0328.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0328.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0328.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0328 -Encoding: 808 808 275 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -213 58<-221 -137> -LayerCount: 2 -Fore -SplineSet --71 41 m 3 - -55 41 -34 36 -47 24 c 0 - -72 3 -180 -51 -192 -113 c 0 - -195 -128 -193 -155 -162 -155 c 3 - -116 -155 -87 -118 -81 -118 c 3 - -80 -118 -77 -123 -79 -131 c 0 - -80 -136 -83 -143 -87 -147 c 0 - -112 -175 -155 -213 -196 -213 c 0 - -247 -213 -250 -164 -245 -138 c 0 - -232 -74 -97 41 -71 41 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni032D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni032D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni032D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni032D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni032D -Encoding: 813 813 860 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 0 -672 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni032E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni032E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni032E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni032E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni032E -Encoding: 814 814 863 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 263 774 N 1 0 0 1 0 -662 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0330.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0330.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0330.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0330.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0330 -Encoding: 816 816 861 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 0 -631 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0331.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0331.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni0331.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni0331.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0331 -Encoding: 817 817 862 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 261 772 N 1 0 0 1 0 -582 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E00.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E00.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E00.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E00.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E00 -Encoding: 7680 7680 595 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 865 805 N 1 0 0 1 454 0 2 -Refer: 32 65 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E01 -Encoding: 7681 7681 596 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 865 805 N 1 0 0 1 398 -3 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E02.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E02.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E02.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E02.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E02 -Encoding: 7682 7682 597 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 66 N 1 0 0 1 -1 0 3 -Refer: 292 -1 N 1 0 0 1 71 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E03.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E03.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E03.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E03.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E03 -Encoding: 7683 7683 598 -Width: 418 -Flags: HW -LayerCount: 2 -Fore -Refer: 65 98 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 460 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E04.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E04.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E04.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E04.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E04 -Encoding: 7684 7684 599 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 33 66 N 1 0 0 1 -1 0 3 -Refer: 293 -1 N 1 0 0 1 84 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E05.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E05.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E05.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E05.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E05 -Encoding: 7685 7685 600 -Width: 418 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 378 -34 2 -Refer: 65 98 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E06.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E06.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E06.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E06.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E06 -Encoding: 7686 7686 601 -Width: 552 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 437 3 2 -Refer: 33 66 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E07.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E07.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E07.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E07.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E07 -Encoding: 7687 7687 602 -Width: 418 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 375 0 2 -Refer: 65 98 N 1 0 0 1 -21 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E08.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E08.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E08.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E08.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E08 -Encoding: 7688 7688 603 -Width: 629 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 251 17 2 -Refer: 132 199 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E09.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E09.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E09.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E09.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E09 -Encoding: 7689 7689 604 -Width: 350 -Flags: HW -LayerCount: 2 -Fore -Refer: 230 769 N 1 0 0 1 548 12 2 -Refer: 164 231 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0A -Encoding: 7690 7690 605 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 35 68 N 1 0 0 1 -1 0 3 -Refer: 292 -1 N 1 0 0 1 99 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0B -Encoding: 7691 7691 606 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 67 100 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 649 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0C -Encoding: 7692 7692 607 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 35 68 N 1 0 0 1 -1 0 3 -Refer: 293 -1 N 1 0 0 1 132 -27 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0D -Encoding: 7693 7693 608 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 410 -34 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0E -Encoding: 7694 7694 609 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 463 3 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E0F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E0F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0F -Encoding: 7695 7695 610 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 410 0 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E10.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E10.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E10.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E10.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E10 -Encoding: 7696 7696 611 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 35 68 N 1 0 0 1 0 0 3 -Refer: 291 -1 N 1 0 0 1 22 3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E11.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E11.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E11.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E11.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E11 -Encoding: 7697 7697 612 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 495 3 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E12.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E12.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E12.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E12.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E12 -Encoding: 7698 7698 613 -Width: 667 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 475 0 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E13.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E13.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E13.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E13.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E13 -Encoding: 7699 7699 614 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 395 -3 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E14.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E14.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E14.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E14.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E14 -Encoding: 7700 7700 615 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 313 274 N 1 0 0 1 0 0 3 -Refer: 284 -1 N 1 0 0 1 115 110 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E15.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E15.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E15.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E15.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E15 -Encoding: 7701 7701 616 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 314 275 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 501 73 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E16.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E16.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E16.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E16.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E16 -Encoding: 7702 7702 617 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 313 274 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 139 110 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E17.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E17.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E17.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E17.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E17 -Encoding: 7703 7703 618 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 314 275 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 510 76 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E18.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E18.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E18.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E18.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E18 -Encoding: 7704 7704 619 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 455 -1 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E19.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E19.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E19.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E19.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E19 -Encoding: 7705 7705 620 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 364 -3 2 -Refer: 68 101 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1A -Encoding: 7706 7706 621 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 442 -1 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1B -Encoding: 7707 7707 622 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 347 -3 2 -Refer: 68 101 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1E -Encoding: 7710 7710 623 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 81 15 2 -Refer: 37 70 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E1F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E1F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1F -Encoding: 7711 7711 624 -Width: 289 -Flags: HW -LayerCount: 2 -Fore -Refer: 69 102 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 581 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E20.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E20.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E20.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E20.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E20 -Encoding: 7712 7712 625 -Width: 680 -Flags: HW -LayerCount: 2 -Fore -Refer: 289 -1 N 1 0 0 1 155 166 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E21.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E21.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E21.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E21.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E21 -Encoding: 7713 7713 626 -Width: 402 -Flags: HW -LayerCount: 2 -Fore -Refer: 70 103 N 1 0 0 1 0 0 3 -Refer: 261 772 N 1 0 0 1 483 7 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E22.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E22.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E22.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E22.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E22 -Encoding: 7714 7714 627 -Width: 669 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 165 15 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E23.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E23.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E23.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E23.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E23 -Encoding: 7715 7715 628 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 71 104 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 444 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E24.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E24.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E24.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E24.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E24 -Encoding: 7716 7716 629 -Width: 669 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 149 -27 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E25.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E25.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E25.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E25.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E25 -Encoding: 7717 7717 630 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 420 -34 2 -Refer: 71 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E26.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E26.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E26.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E26.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E26 -Encoding: 7718 7718 631 -Width: 669 -Flags: HW -LayerCount: 2 -Fore -Refer: 297 -1 N 1 0 0 1 136 14 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E27.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E27.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E27.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E27.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E27 -Encoding: 7719 7719 632 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 71 104 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 435 254 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E28.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E28.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E28.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E28.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E28 -Encoding: 7720 7720 633 -Width: 669 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 291 -1 N 1 0 0 1 -83 3 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E29.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E29.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E29.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E29.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E29 -Encoding: 7721 7721 634 -Width: 458 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 274 807 N 1 0 0 1 288 3 2 -Refer: 71 104 N 1 0 0 1 4 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2A -Encoding: 7722 7722 635 -Width: 669 -Flags: HW -LayerCount: 2 -Fore -Refer: 863 814 N 1 0 0 1 496 3 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2B -Encoding: 7723 7723 636 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 863 814 N 1 0 0 1 400 0 2 -Refer: 71 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2C -Encoding: 7724 7724 637 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 316 0 2 -Refer: 40 73 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2D -Encoding: 7725 7725 638 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 308 -3 2 -Refer: 72 105 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2E -Encoding: 7726 7726 639 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 140 207 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 81 160 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E2F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E2F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2F -Encoding: 7727 7727 640 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 172 239 N 1 0 0 1 -3 0 3 -Refer: 230 769 N 1 0 0 1 482 143 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E30.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E30.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E30.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E30.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E30 -Encoding: 7728 7728 641 -Width: 599 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 239 31 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E31.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E31.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E31.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E31.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E31 -Encoding: 7729 7729 642 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 74 107 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 506 256 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E32.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E32.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E32.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E32.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E32 -Encoding: 7730 7730 643 -Width: 599 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 141 -27 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E33.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E33.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E33.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E33.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E33 -Encoding: 7731 7731 644 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 400 -33 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E34.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E34.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E34.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E34.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E34 -Encoding: 7732 7732 645 -Width: 599 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 506 3 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E35.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E35.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E35.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E35.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E35 -Encoding: 7733 7733 646 -Width: 449 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 412 1 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E36.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E36.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E36.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E36.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E36 -Encoding: 7734 7734 647 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 102 -28 2 -Refer: 43 76 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E37.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E37.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E37.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E37.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E37 -Encoding: 7735 7735 648 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 299 -34 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E38.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E38.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E38.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E38.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E38 -Encoding: 7736 7736 649 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 289 -1 N 1 0 0 1 -30 165 2 -Refer: 647 7734 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E39.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E39.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E39.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E39.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E39 -Encoding: 7737 7737 650 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 648 7735 N 1 0 0 1 0 0 3 -Refer: 261 772 N 1 0 0 1 463 250 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3A -Encoding: 7738 7738 651 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 455 2 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3B -Encoding: 7739 7739 652 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 320 0 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3C -Encoding: 7740 7740 653 -Width: 517 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 451 -1 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3D -Encoding: 7741 7741 654 -Width: 237 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 296 -3 2 -Refer: 75 108 N 1 0 0 1 -20 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3E -Encoding: 7742 7742 655 -Width: 818 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 328 31 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E3F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E3F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3F -Encoding: 7743 7743 656 -Width: 697 -Flags: HW -LayerCount: 2 -Fore -Refer: 76 109 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 683 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E40.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E40.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E40.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E40.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E40 -Encoding: 7744 7744 657 -Width: 818 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 242 15 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E41.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E41.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E41.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E41.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E41 -Encoding: 7745 7745 658 -Width: 697 -Flags: HW -LayerCount: 2 -Fore -Refer: 76 109 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 625 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E42.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E42.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E42.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E42.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E42 -Encoding: 7746 7746 659 -Width: 818 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 228 -27 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E43.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E43.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E43.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E43.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E43 -Encoding: 7747 7747 660 -Width: 697 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 543 -34 2 -Refer: 76 109 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E44.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E44.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E44.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E44.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E44 -Encoding: 7748 7748 661 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 170 15 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E45.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E45.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E45.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E45.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E45 -Encoding: 7749 7749 662 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 77 110 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 525 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E46.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E46.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E46.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E46.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E46 -Encoding: 7750 7750 663 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 189 -29 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E47.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E47.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E47.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E47.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E47 -Encoding: 7751 7751 664 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 452 -34 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E48.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E48.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E48.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E48.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E48 -Encoding: 7752 7752 665 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 543 1 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E49.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E49.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E49.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E49.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E49 -Encoding: 7753 7753 666 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 446 0 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4A -Encoding: 7754 7754 667 -Width: 714 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 541 -2 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4B -Encoding: 7755 7755 668 -Width: 485 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 433 -3 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4C -Encoding: 7756 7756 669 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 146 213 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 221 151 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4D -Encoding: 7757 7757 670 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 178 245 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 546 122 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4E -Encoding: 7758 7758 671 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 146 213 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 151 142 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E4F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E4F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4F -Encoding: 7759 7759 672 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 178 245 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 540 138 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E50.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E50.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E50.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E50.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E50 -Encoding: 7760 7760 673 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 357 332 N 1 0 0 1 0 0 3 -Refer: 284 -1 N 1 0 0 1 184 110 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E51.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E51.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E51.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E51.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E51 -Encoding: 7761 7761 674 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 358 333 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 524 44 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E52.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E52.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E52.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E52.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E52 -Encoding: 7762 7762 675 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 357 332 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 204 110 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E53.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E53.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E53.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E53.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E53 -Encoding: 7763 7763 676 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 358 333 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 531 76 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E54.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E54.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E54.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E54.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E54 -Encoding: 7764 7764 677 -Width: 499 -Flags: HW -LayerCount: 2 -Fore -Refer: 47 80 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 119 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E55.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E55.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E55.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E55.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E55 -Encoding: 7765 7765 678 -Width: 437 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 112 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 559 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E56.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E56.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E56.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E56.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E56 -Encoding: 7766 7766 679 -Width: 499 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 60 15 2 -Refer: 47 80 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E57.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E57.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E57.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E57.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E57 -Encoding: 7767 7767 680 -Width: 437 -Flags: HW -LayerCount: 2 -Fore -Refer: 79 112 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 531 8 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E58.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E58.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E58.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E58.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E58 -Encoding: 7768 7768 681 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 67 15 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E59.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E59.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E59.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E59.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E59 -Encoding: 7769 7769 682 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 81 114 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 469 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5A -Encoding: 7770 7770 683 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 128 -27 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5B -Encoding: 7771 7771 684 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 312 -31 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5C -Encoding: 7772 7772 685 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 289 -1 N 1 0 0 1 55 165 2 -Refer: 683 7770 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5D -Encoding: 7773 7773 686 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 684 7771 N 1 0 0 1 0 0 3 -Refer: 261 772 N 1 0 0 1 490 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5E -Encoding: 7774 7774 687 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 498 3 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E5F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E5F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5F -Encoding: 7775 7775 688 -Width: 347 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 375 3 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E60.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E60.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E60.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E60.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E60 -Encoding: 7776 7776 689 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 50 16 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E61.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E61.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E61.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E61.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E61 -Encoding: 7777 7777 690 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 82 115 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 461 9 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E62.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E62.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E62.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E62.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E62 -Encoding: 7778 7778 691 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 52 -34 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E63.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E63.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E63.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E63.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E63 -Encoding: 7779 7779 692 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 328 -34 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E64.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E64.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E64.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E64.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E64 -Encoding: 7780 7780 693 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 367 346 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 30 75 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E65.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E65.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E65.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E65.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E65 -Encoding: 7781 7781 694 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 368 347 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 421 104 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E66.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E66.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E66.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E66.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E66 -Encoding: 7782 7782 695 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 249 352 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 102 142 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E67.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E67.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E67.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E67.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E67 -Encoding: 7783 7783 696 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 373 353 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 489 139 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E68.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E68.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E68.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E68.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E68 -Encoding: 7784 7784 697 -Width: 460 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 50 16 2 -Refer: 691 7778 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E69.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E69.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E69.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E69.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E69 -Encoding: 7785 7785 698 -Width: 314 -Flags: HW -LayerCount: 2 -Fore -Refer: 692 7779 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 461 9 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6A -Encoding: 7786 7786 699 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 105 29 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6B -Encoding: 7787 7787 700 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 116 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 458 106 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6C -Encoding: 7788 7788 701 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 105 -27 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6D -Encoding: 7789 7789 702 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 325 -34 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6E -Encoding: 7790 7790 703 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 467 3 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E6F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E6F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6F -Encoding: 7791 7791 704 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 339 0 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E70.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E70.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E70.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E70.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E70 -Encoding: 7792 7792 705 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 457 0 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E71.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E71.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E71.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E71.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E71 -Encoding: 7793 7793 706 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 322 -3 2 -Refer: 83 116 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E72.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E72.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E72.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E72.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E72 -Encoding: 7794 7794 707 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 864 804 N 1 0 0 1 515 2 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E73.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E73.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E73.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E73.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E73 -Encoding: 7795 7795 708 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 864 804 N 1 0 0 1 449 0 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E74.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E74.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E74.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E74.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E74 -Encoding: 7796 7796 709 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 486 -1 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E75.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E75.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E75.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E75.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E75 -Encoding: 7797 7797 710 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 861 816 N 1 0 0 1 432 -3 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E76.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E76.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E76.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E76.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E76 -Encoding: 7798 7798 711 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 511 -1 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E77.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E77.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E77.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E77.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E77 -Encoding: 7799 7799 712 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 860 813 N 1 0 0 1 433 -3 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E78.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E78.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E78.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E78.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E78 -Encoding: 7800 7800 713 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 378 360 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 210 150 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E79.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E79.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E79.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E79.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E79 -Encoding: 7801 7801 714 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 379 361 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 551 122 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7A -Encoding: 7802 7802 715 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 380 362 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 147 107 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7B -Encoding: 7803 7803 716 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 381 363 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 530 94 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7C -Encoding: 7804 7804 717 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 65 1 2 -Refer: 53 86 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7D -Encoding: 7805 7805 718 -Width: 428 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 491 6 2 -Refer: 85 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7E -Encoding: 7806 7806 719 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 91 -26 2 -Refer: 53 86 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E7F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E7F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7F -Encoding: 7807 7807 720 -Width: 428 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 362 -34 2 -Refer: 85 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E86.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E86.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E86.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E86.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E86 -Encoding: 7814 7814 727 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 237 15 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E87.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E87.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E87.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E87.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E87 -Encoding: 7815 7815 728 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 119 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 615 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E88.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E88.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E88.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E88.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E88 -Encoding: 7816 7816 729 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 1 0 3 -Refer: 293 -1 N 1 0 0 1 240 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E89.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E89.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E89.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E89.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E89 -Encoding: 7817 7817 730 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 490 -34 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8A -Encoding: 7818 7818 731 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 152 15 2 -Refer: 55 88 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8B -Encoding: 7819 7819 732 -Width: 470 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 120 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 535 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8C -Encoding: 7820 7820 733 -Width: 605 -Flags: HW -LayerCount: 2 -Fore -Refer: 297 -1 N 1 0 0 1 126 14 2 -Refer: 55 88 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8D -Encoding: 7821 7821 734 -Width: 470 -Flags: HW -LayerCount: 2 -Fore -Refer: 87 120 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 519 10 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8E -Encoding: 7822 7822 735 -Width: 542 -Flags: HW -LayerCount: 2 -Fore -Refer: 292 -1 N 1 0 0 1 114 15 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E8F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E8F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8F -Encoding: 7823 7823 736 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 121 N 1 0 0 1 0 0 3 -Refer: 264 775 N 1 0 0 1 508 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E90.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E90.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E90.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E90.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E90 -Encoding: 7824 7824 737 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 97 4 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E91.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E91.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E91.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E91.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E91 -Encoding: 7825 7825 738 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 482 3 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E92.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E92.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E92.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E92.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E92 -Encoding: 7826 7826 739 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 127 -24 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E93.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E93.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E93.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E93.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E93 -Encoding: 7827 7827 740 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 379 -28 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E94.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E94.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E94.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E94.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E94 -Encoding: 7828 7828 741 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 482 6 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E95.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E95.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E95.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E95.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E95 -Encoding: 7829 7829 742 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 376 6 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E96.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E96.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E96.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E96.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E96 -Encoding: 7830 7830 743 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 862 817 N 1 0 0 1 430 0 2 -Refer: 71 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E97.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E97.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E97.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E97.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E97 -Encoding: 7831 7831 744 -Width: 271 -Flags: HW -LayerCount: 2 -Fore -Refer: 83 116 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 439 110 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E98.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E98.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E98.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E98.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E98 -Encoding: 7832 7832 745 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 612 6 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E99.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E99.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1E99.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1E99.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E99 -Encoding: 7833 7833 746 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 504 6 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA0 -Encoding: 7840 7840 800 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 107 -27 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA1 -Encoding: 7841 7841 801 -Width: 438 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 419 -34 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA2 -Encoding: 7842 7842 747 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 219 210 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA3 -Encoding: 7843 7843 748 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 562 9 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA4 -Encoding: 7844 7844 749 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 0.786834 0 0 0.981481 350 80 2 -Refer: 286 -1 N 1 0 0 1 92 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA5 -Encoding: 7845 7845 750 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 515 4 2 -Refer: 230 769 N 0.876136 0 0 0.870229 627 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA6 -Encoding: 7846 7846 751 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 0.781309 0 0 0.981481 40 61 2 -Refer: 286 -1 N 1 0 0 1 92 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA7 -Encoding: 7847 7847 752 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 229 768 N 0.872402 0 0 0.870229 334 125 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 515 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA8 -Encoding: 7848 7848 867 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 0.944516 0 0 0.910829 350 281 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 92 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EA9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EA9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EA9 -Encoding: 7849 7849 753 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 659 44 2 -Refer: 231 770 N 1 0 0 1 515 4 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAA -Encoding: 7850 7850 754 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 0.97057 0 0 0.8375 104 219 2 -Refer: 286 -1 N 1 0 0 1 92 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAB -Encoding: 7851 7851 755 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 0.936452 0 0 0.884615 531 231 2 -Refer: 231 770 N 0.994497 0 0 0.896296 522 75 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAC -Encoding: 7852 7852 756 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 107 -27 2 -Refer: 127 194 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAD -Encoding: 7853 7853 757 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 407 -34 2 -Refer: 159 226 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAE -Encoding: 7854 7854 758 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 0.78453 0 0 0.981481 253 91 2 -Refer: 263 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EAF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EAF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EAF -Encoding: 7855 7855 759 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 230 769 N 0.876136 0 0 0.870229 525 157 2 -Refer: 263 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB0 -Encoding: 7856 7856 760 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 284 -1 N 0.783554 0 0 0.977177 187 94 2 -Refer: 263 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB1 -Encoding: 7857 7857 761 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 229 768 N 0.872402 0 0 0.870229 498 164 2 -Refer: 263 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB2 -Encoding: 7858 7858 762 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 295 -1 N 0.944516 0 0 0.910829 243 310 2 -Refer: 263 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB3 -Encoding: 7859 7859 763 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 3 -Refer: 266 777 N 1 0 0 1 555 78 2 -Refer: 263 774 N 0.962702 0 0 0.878918 507 67 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB4 -Encoding: 7860 7860 764 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 288 -1 N 0.969772 0 0 0.831689 108 222 2 -Refer: 263 774 N 1 0 0 0.878918 633 264 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EB5 -Encoding: 7861 7861 765 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 64 97 N 1 0 0 1 0 0 3 -Refer: 263 774 N 0.962702 0 0 0.878918 507 67 2 -Refer: 232 771 N 0.936452 0 0 0.884615 522 232 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB6 -Encoding: 7862 7862 766 -Width: 572 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 107 -27 2 -Refer: 301 258 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB7 -Encoding: 7863 7863 767 -Width: 438 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 407 -34 2 -Refer: 276 259 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB8 -Encoding: 7864 7864 768 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 113 -27 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EB9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EB9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB9 -Encoding: 7865 7865 769 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 3 -Refer: 272 803 N 1 0 0 1 360 -34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBA -Encoding: 7866 7866 770 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 188 239 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBB -Encoding: 7867 7867 771 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 539 9 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBC -Encoding: 7868 7868 772 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 33 1 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBD -Encoding: 7869 7869 773 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 506 6 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EBE -Encoding: 7870 7870 774 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 0.786834 0 0 0.981481 315 80 2 -Refer: 286 -1 N 1 0 0 1 57 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EBF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EBF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EBF -Encoding: 7871 7871 775 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 68 101 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 492 4 2 -Refer: 230 769 N 0.876136 0 0 0.870229 604 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC0 -Encoding: 7872 7872 776 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 0.781309 0 0 0.981481 4 61 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 57 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC1 -Encoding: 7873 7873 777 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 229 768 N 0.872402 0 0 0.870229 312 125 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 492 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC2 -Encoding: 7874 7874 778 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 295 -1 N 1 0 0 1 308 255 2 -Refer: 286 -1 N 1 0 0 1 57 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC3 -Encoding: 7875 7875 779 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 637 44 2 -Refer: 231 770 N 1 0 0 1 492 4 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC4 -Encoding: 7876 7876 780 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 288 -1 N 0.97057 0 0 0.8375 83 219 2 -Refer: 286 -1 N 1 0 0 1 72 -17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EC5 -Encoding: 7877 7877 781 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 0.936452 0 0 0.884615 507 231 2 -Refer: 231 770 N 0.994497 0 0 0.896296 498 75 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC6 -Encoding: 7878 7878 782 -Width: 541 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 113 -27 2 -Refer: 135 202 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC7 -Encoding: 7879 7879 783 -Width: 354 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 360 -34 2 -Refer: 167 234 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC8 -Encoding: 7880 7880 784 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 83 239 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EC9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EC9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC9 -Encoding: 7881 7881 785 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 445 9 2 -Refer: 233 305 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECA -Encoding: 7882 7882 786 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 -32 -27 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECB -Encoding: 7883 7883 787 -Width: 255 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 316 -34 2 -Refer: 72 105 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECC -Encoding: 7884 7884 788 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 178 -35 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECD -Encoding: 7885 7885 789 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 368 -33 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECE -Encoding: 7886 7886 790 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 260 239 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ECF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ECF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECF -Encoding: 7887 7887 791 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 542 9 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED0 -Encoding: 7888 7888 792 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 0.786834 0 0 0.981481 379 80 2 -Refer: 286 -1 N 1 0 0 1 121 -17 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED1 -Encoding: 7889 7889 793 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 498 4 2 -Refer: 230 769 N 0.876136 0 0 0.870229 610 157 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED2 -Encoding: 7890 7890 794 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 0.781309 0 0 0.981481 69 61 2 -Refer: 286 -1 N 1 0 0 1 121 -17 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED3 -Encoding: 7891 7891 795 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 78 111 N 1 0 0 1 0 0 3 -Refer: 231 770 N 1 0 0 1 498 4 2 -Refer: 229 768 N 0.872402 0 0 0.870229 317 125 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED4 -Encoding: 7892 7892 796 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 372 255 2 -Refer: 286 -1 N 1 0 0 1 121 -17 2 -Refer: 46 79 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED5 -Encoding: 7893 7893 797 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 643 44 2 -Refer: 231 770 N 1 0 0 1 498 4 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED6 -Encoding: 7894 7894 798 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 0.97057 0 0 0.8375 104 219 2 -Refer: 286 -1 N 1 0 0 1 92 -17 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED7 -Encoding: 7895 7895 799 -Width: 404 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 0.936452 0 0 0.884615 511 231 2 -Refer: 231 770 N 0.994497 0 0 0.896296 501 75 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED8 -Encoding: 7896 7896 802 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 286 -1 N 1 0 0 1 136 15 2 -Refer: 788 7884 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1ED9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1ED9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1ED9 -Encoding: 7897 7897 803 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 518 6 2 -Refer: 789 7885 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDA -Encoding: 7898 7898 820 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 198 17 2 -Refer: 817 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDB -Encoding: 7899 7899 821 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 816 417 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 521 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDC -Encoding: 7900 7900 822 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 116 16 2 -Refer: 817 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDD -Encoding: 7901 7901 823 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 816 417 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 485 -21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDE -Encoding: 7902 7902 824 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 260 239 2 -Refer: 817 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EDF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EDF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EDF -Encoding: 7903 7903 825 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 542 9 2 -Refer: 816 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE0 -Encoding: 7904 7904 826 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 100 14 2 -Refer: 817 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE1 -Encoding: 7905 7905 827 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 498 16 2 -Refer: 816 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE2 -Encoding: 7906 7906 828 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 178 -35 2 -Refer: 817 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE3 -Encoding: 7907 7907 829 -Width: 404 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 368 -33 2 -Refer: 816 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE4 -Encoding: 7908 7908 804 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 143 -28 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE5 -Encoding: 7909 7909 805 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 440 -34 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE6 -Encoding: 7910 7910 806 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 246 239 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE7 -Encoding: 7911 7911 807 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 543 9 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE8 -Encoding: 7912 7912 830 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 285 -1 N 1 0 0 1 248 17 2 -Refer: 818 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EE9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EE9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EE9 -Encoding: 7913 7913 831 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 819 432 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 536 12 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEA -Encoding: 7914 7914 832 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 135 16 2 -Refer: 818 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEB -Encoding: 7915 7915 833 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 819 432 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 498 -21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEC -Encoding: 7916 7916 834 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 246 239 2 -Refer: 818 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EED.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EED.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EED.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EED.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EED -Encoding: 7917 7917 835 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 543 9 2 -Refer: 819 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEE -Encoding: 7918 7918 836 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 102 14 2 -Refer: 818 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EEF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EEF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EEF -Encoding: 7919 7919 837 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 505 16 2 -Refer: 819 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF0 -Encoding: 7920 7920 838 -Width: 645 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 143 -28 2 -Refer: 818 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF1 -Encoding: 7921 7921 839 -Width: 479 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 440 -34 2 -Refer: 819 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF4 -Encoding: 7924 7924 810 -Width: 542 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 293 -1 N 1 0 0 1 90 -27 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF5 -Encoding: 7925 7925 811 -Width: 436 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 272 803 N 1 0 0 1 502 -66 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF6 -Encoding: 7926 7926 812 -Width: 542 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 295 -1 N 1 0 0 1 197 239 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF7 -Encoding: 7927 7927 813 -Width: 436 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 266 777 N 1 0 0 1 532 9 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF8 -Encoding: 7928 7928 814 -Width: 542 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 288 -1 N 1 0 0 1 41 1 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni1EF9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni1EF9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1EF9 -Encoding: 7929 7929 815 -Width: 436 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 493 6 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2010.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2010.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2010.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2010.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni2010 -Encoding: 8208 8208 193 -Width: 361 -VWidth: 0 -Flags: W -VStem: 51 248<205 255> -LayerCount: 2 -Fore -SplineSet -71 255 m 2 - 293 267 l 2 - 298 267 299 260 299 255 c 0 - 299 242 286 206 276 205 c 10 - 56 194 l 2 - 53 194 51 201 51 209 c 0 - 51 220 60 254 71 255 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2011.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2011.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2011.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2011.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni2011 -Encoding: 8209 8209 194 -Width: 361 -VWidth: 0 -Flags: W -VStem: 51 248<205 255> -LayerCount: 2 -Fore -SplineSet -71 255 m 2 - 293 267 l 2 - 298 267 299 260 299 255 c 0 - 299 242 286 206 276 205 c 10 - 56 194 l 2 - 53 194 51 201 51 209 c 0 - 51 220 60 254 71 255 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2015.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2015.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2015.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2015.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni2015 -Encoding: 8213 8213 198 -Width: 1044 -Flags: W -HStem: 195 61<58 973> -LayerCount: 2 -Fore -SplineSet -974 256 m 2 - 978 256 979 250 979 243 c 0 - 979 229 970 202 958 195 c 1 - 58 195 l 2 - 54 195 52 201 52 208 c 0 - 52 222 61 249 73 256 c 1 - 974 256 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni201F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni201F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni201F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni201F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni201F -Encoding: 8223 8223 845 -Width: 363 -Flags: HW -LayerCount: 2 -Fore -Refer: 203 8221 N -1 0 0.5 1 150 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni202F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni202F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni202F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni202F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,7 +0,0 @@ -StartChar: uni202F -Encoding: 8239 8239 856 -Width: 166 -VWidth: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2038.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2038.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2038.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2038.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2038 -Encoding: 8248 8248 210 -Width: 366 -Flags: W -HStem: -35 143 -VStem: 73 214 -LayerCount: 2 -Fore -SplineSet -273 -35 m 0 - 261 -35 216 11 191 46 c 1 - 155 10 91 -35 79 -35 c 0 - 74 -35 73 -27 73 -22 c 0 - 73 -7 135 17 190 98 c 1 - 194 106 196 107 201 107 c 0 - 219 107 207 93 240 40 c 0 - 252 20 286 -15 287 -18 c 1 - 286 -22 279 -35 273 -35 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni203E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni203E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni203E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni203E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni203E -Encoding: 8254 8254 213 -Width: 802 -Flags: W -HStem: 722 61<228 769> -LayerCount: 2 -Fore -SplineSet -770 782 m 2 - 774 782 775 777 775 770 c 0 - 775 756 766 729 754 722 c 1 - 228 722 l 2 - 224 722 222 727 222 734 c 0 - 222 748 231 775 243 782 c 1 - 770 782 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2042.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2042.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2042.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2042.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni2042 -Encoding: 8258 8258 868 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 9 42 N 1 0 0 1 419 -393 2 -Refer: 9 42 N 1 0 0 1 -17 -393 2 -Refer: 9 42 N 1 0 0 1 260 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2213.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2213.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2213.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2213.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: uni2213 -Encoding: 8723 8723 221 -Width: 521 -Flags: W -HStem: 216 56<52 226 292 469> 510 56<103 520> -LayerCount: 2 -Fore -SplineSet -523 565 m 1 - 523 565 529 566 529 559 c 0 - 529 558 529 556 528 554 c 0 - 512 507 508 513 505 510 c 1 - 99 510 l 1 - 99 510 91 509 96 523 c 0 - 108 558 110 565 116 565 c 2 - 523 565 l 1 -276 213 m 2 - 240 25 l 1 - 240 25 238 16 196 10 c 0 - 193 10 192 9 190 9 c 0 - 183 9 187 13 188 17 c 2 - 226 211 l 2 - 226 213 226 216 221 216 c 2 - 40 216 l 1 - 40 216 36 216 36 222 c 0 - 36 231 50 261 52 266 c 0 - 55 272 60 271 60 271 c 1 - 232 271 l 2 - 235 271 238 274 238 276 c 2 - 274 462 l 1 - 274 462 274 467 280 469 c 0 - 303 476 314 477 318 477 c 0 - 327 477 327 471 327 471 c 1 - 289 275 l 2 - 288 272 289 271 292 271 c 2 - 474 271 l 2 - 477 271 479 272 479 268 c 0 - 479 259 464 227 462 222 c 0 - 459 216 454 216 454 216 c 1 - 281 216 l 2 - 278 216 276 215 276 213 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2619.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2619.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2619.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2619.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: uni2619 -Encoding: 9753 9753 593 -Width: 819 -VWidth: 0 -Flags: W -HStem: 28 53<584 673> 122 41<729 762> 372 36<304 416> 481 8<597 608> -VStem: 28 24<171 235> 437 40<267 354> 550 25<230 292> 652 53<381 463> 700 29<166 230> -LayerCount: 2 -Fore -SplineSet -466 228 m 1xfe80 - 494 228 533 201 533 157 c 0 - 533 73 445 25 338 25 c 0 - 167 25 28 89 28 210 c 0 - 28 271 87 314 127 314 c 0 - 137 314 145 295 145 284 c 0 - 145 229 53 275 53 203 c 0 - 53 167 87 144 114 144 c 0 - 218 144 157 408 373 408 c 0 - 406 408 477 389 477 315 c 0 - 477 299 470 282 452 261 c 1 - 471 279 511 312 567 315 c 1 - 596 353 652 385 652 424 c 0 - 652 456 617 476 597 481 c 1 - 597 485 605 489 612 489 c 0 - 651 489 705 473 705 423 c 0xff - 705 371 633 350 596 314 c 1 - 676 306 729 251 729 177 c 0 - 729 172 729 168 729 163 c 1 - 729 163 l 0 - 743 163 771 137 771 130 c 0 - 771 126 758 122 749 122 c 0 - 740 122 732 123 723 124 c 1 - 710 72 679 28 626 28 c 0 - 590 28 557 53 557 89 c 0 - 557 103 567 116 571 121 c 1 - 581 107 595 81 624 81 c 0 - 658 81 679 103 691 131 c 1 - 619 152 550 207 550 271 c 0 - 550 279 551 285 554 292 c 1 - 514 282 483 246 466 228 c 1xfe80 -409 233 m 1 - 425 253 437 270 437 309 c 0 - 437 356 397 371 367 372 c 0 - 231 376 234 183 190 155 c 1 - 267 175 352 187 409 233 c 1 -699 166 m 1 - 699 170 700 173 700 177 c 0xfe80 - 700 242 645 292 581 295 c 1 - 577 288 575 280 575 271 c 0 - 575 210 647 177 699 166 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2767.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2767.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uni2767.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uni2767.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: uni2767 -Encoding: 10087 10087 594 -Width: 801 -VWidth: 0 -Flags: W -HStem: 28 53<115 204> 122 41<26 60> 372 36<372 484> 481 8<180 191> -VStem: 59 29<166 230> 83 53<381 463> 213 25<230 292> 312 40<267 354> 735 24<171 235> -LayerCount: 2 -Fore -SplineSet -322 228 m 1xf780 - 305 246 274 282 234 292 c 1 - 237 285 238 279 238 271 c 0 - 238 207 169 152 97 131 c 1 - 109 103 130 81 164 81 c 0 - 193 81 207 107 217 121 c 1 - 221 116 231 103 231 89 c 0 - 231 53 198 28 162 28 c 0 - 109 28 78 72 65 124 c 1 - 56 123 48 122 39 122 c 0 - 30 122 18 126 18 130 c 0 - 18 137 45 163 59 163 c 0 - 60 163 l 1 - 60 168 59 172 59 177 c 0xfb80 - 59 251 112 306 192 314 c 1 - 155 350 83 371 83 423 c 0 - 83 473 137 489 176 489 c 0 - 183 489 191 485 191 481 c 1 - 171 476 136 456 136 424 c 0 - 136 385 192 353 221 315 c 1 - 277 312 317 279 336 261 c 1 - 318 282 312 299 312 315 c 0 - 312 389 382 408 415 408 c 0 - 631 408 570 144 674 144 c 0 - 701 144 735 167 735 203 c 0 - 735 275 644 229 644 284 c 0 - 644 295 651 314 661 314 c 0 - 701 314 760 271 760 210 c 0 - 760 89 621 25 450 25 c 0 - 343 25 255 73 255 157 c 0 - 255 201 294 228 322 228 c 1xf780 -379 233 m 1 - 436 187 521 175 598 155 c 1 - 554 183 557 376 421 372 c 0 - 391 371 352 356 352 309 c 0 - 352 270 363 253 379 233 c 1 -89 166 m 1 - 141 177 213 210 213 271 c 0 - 213 280 211 288 207 295 c 1 - 143 292 88 242 88 177 c 0 - 88 173 89 170 89 166 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: uogonek -Encoding: 371 371 389 -Width: 478 -Flags: W -HStem: -225 58<229 303> -6 72<87 161> 371 54<91 153> -VStem: 58 75<46 202> 107 73<252 397> 194 53<-189 -111> -LayerCount: 2 -Fore -SplineSet -194 -176 m 0xf4 - 194 -126 254 -50 300 -4 c 1 - 285 2 277 22 277 45 c 0 - 278 53 281 76 285 97 c 0 - 291 130 296 149 303 182 c 1 - 278 127 170 -6 106 -6 c 0 - 68 -6 58 27 58 64 c 0xf4 - 58 91 65 137 71 165 c 2 - 104 315 l 2 - 105 321 107 342 107 347 c 0 - 107 356 108 371 98 371 c 0 - 77 371 32 317 29 314 c 1 - 26 314 20 327 20 333 c 1 - 31 352 97 425 143 425 c 0 - 164 425 181 403 181 374 c 0xec - 181 366 178 343 174 322 c 2 - 140 161 l 2 - 138 152 133 119 133 108 c 0 - 133 86 134 66 151 66 c 0 - 186 66 303 190 326 312 c 0 - 334 354 339 377 348 419 c 1 - 358 422 368 423 378 423 c 0 - 388 423 404 422 416 419 c 1 - 355 104 l 2 - 353 94 352 77 351 72 c 0 - 351 63 350 48 360 48 c 0 - 381 48 426 101 429 104 c 1 - 432 104 438 92 438 86 c 1 - 432 75 403 45 377 24 c 0 - 341 -5 247 -86 247 -136 c 0 - 247 -151 253 -167 277 -167 c 0 - 323 -167 352 -130 358 -130 c 0 - 366 -130 356 -156 353 -159 c 0 - 328 -187 285 -225 244 -225 c 0 - 215 -225 194 -202 194 -176 c 0xf4 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: Uogonek -Encoding: 370 370 388 -Width: 666 -Flags: W -HStem: -225 58<247 320> -4 57<226 368> 618 28<104 161 251 319 521 576 649 720> -VStem: 212 53<-184 -110> -LayerCount: 2 -Fore -SplineSet -264 -136 m 0 - 264 -151 271 -167 295 -167 c 0 - 341 -167 370 -130 376 -130 c 0 - 384 -130 373 -156 370 -159 c 0 - 345 -187 302 -225 261 -225 c 0 - 232 -225 212 -197 212 -171 c 0 - 212 -121 279 -40 332 0 c 1 - 314 -3 296 -4 277 -4 c 0 - 206 -4 150 23 119 72 c 0 - 92 115 82 174 96 245 c 2 - 152 530 l 2 - 158 559 164 587 162 603 c 0 - 161 614 113 618 102 618 c 1 - 99 623 102 641 108 646 c 1 - 145 644 179 642 214 642 c 0 - 249 642 283 644 321 646 c 1 - 325 641 320 623 315 618 c 1 - 304 618 255 614 250 603 c 0 - 242 587 237 559 231 530 c 2 - 184 289 l 2 - 169 214 172 158 189 119 c 0 - 209 74 248 53 307 53 c 0 - 401 53 490 100 525 268 c 1 - 577 532 l 2 - 584 567 587 584 581 600 c 0 - 577 610 534 619 519 619 c 1 - 516 626 520 641 523 647 c 1 - 559 645 583 643 623 643 c 0 - 665 643 680 645 722 647 c 1 - 724 642 724 630 717 619 c 1 - 706 619 651 612 642 600 c 0 - 631 585 628 570 621 533 c 2 - 569 270 l 2 - 547 158 500 85 438 42 c 0 - 357 -15 264 -89 264 -136 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: uogonek.sc -Encoding: 65716 -1 571 -Width: 492 -Flags: W -HStem: -218 58<138 217> -4 50<158 261> 412 28<70 109 181 228 351 388 440 486> -LayerCount: 2 -Fore -SplineSet -389 181 m 2 - 373 102 345 57 293 21 c 0 - 250 -9 176 -77 168 -118 c 0 - 165 -133 166 -160 194 -160 c 0 - 237 -160 263 -123 268 -123 c 0 - 269 -123 272 -128 270 -136 c 0 - 269 -141 266 -149 263 -153 c 0 - 239 -181 200 -218 162 -218 c 0 - 115 -218 111 -169 116 -143 c 0 - 126 -92 184 -34 234 0 c 1 - 220 -3 205 -4 190 -4 c 0 - 98 -4 47 70 65 164 c 2 - 102 353 l 2 - 106 373 109 390 109 401 c 0 - 109 408 73 412 66 412 c 1 - 67 416 70 436 71 440 c 1 - 97 438 126 437 151 437 c 0 - 176 437 206 438 232 440 c 1 - 231 436 227 416 226 412 c 1 - 219 412 183 409 180 402 c 0 - 175 392 173 374 169 354 c 2 - 138 200 l 2 - 118 99 148 46 217 46 c 0 - 276 46 333 78 354 187 c 2 - 387 356 l 2 - 392 379 392 390 388 400 c 0 - 386 407 356 413 347 413 c 1 - 348 419 351 436 352 441 c 1 - 376 439 396 437 423 437 c 0 - 451 437 463 439 491 441 c 1 - 490 437 487 423 485 413 c 1 - 478 413 445 407 439 399 c 0 - 432 389 429 380 424 355 c 2 - 389 181 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uring -Encoding: 367 367 385 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 515 6 2 -Refer: 84 117 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" uring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uring -Encoding: 366 366 384 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 287 -1 N 1 0 0 1 146 221 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/uring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/uring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uring.sc -Encoding: 65714 -1 569 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 267 778 N 1 0 0 1 564 28 2 -Refer: 464 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/u.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/u.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/u.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/u.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: u.sc -Encoding: 65609 -1 464 -Width: 492 -Flags: W -HStem: -4 50<166 293> 412 28<69 107 180 229 347 386 437 485> -LayerCount: 2 -Fore -SplineSet -387 181 m 2 - 362 49 299 -4 202 -4 c 0 - 111 -4 47 70 65 164 c 2 - 101 353 l 2 - 105 373 107 390 107 401 c 0 - 107 408 73 412 66 412 c 1 - 66 418 67 433 70 440 c 1 - 96 438 125 437 150 437 c 0 - 175 437 206 438 232 440 c 1 - 233 434 230 418 226 412 c 1 - 219 412 183 409 180 402 c 0 - 175 392 172 374 168 354 c 2 - 138 200 l 2 - 119 103 160 46 227 46 c 0 - 286 46 331 78 352 187 c 2 - 384 356 l 2 - 389 379 390 390 386 400 c 0 - 384 407 354 413 345 413 c 1 - 344 421 347 436 350 441 c 1 - 374 439 393 437 420 437 c 0 - 448 437 460 439 488 441 c 1 - 489 434 486 422 482 413 c 1 - 475 413 443 407 437 399 c 0 - 430 389 426 380 421 355 c 2 - 387 181 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: utilde -Encoding: 361 361 379 -Width: 479 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 505 16 2 -Refer: 84 117 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" utilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Utilde -Encoding: 360 360 378 -Width: 645 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 -1 0 3 -Refer: 288 -1 N 1 0 0 1 102 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/utilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/utilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/utilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/utilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: utilde.sc -Encoding: 65711 -1 566 -Width: 492 -Flags: HW -LayerCount: 2 -Fore -Refer: 232 771 N 1 0 0 1 548 38 2 -Refer: 464 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/v.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/v.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/v.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/v.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: v -Encoding: 118 118 85 -Width: 428 -Flags: W -HStem: -6 21G<109 146> 371 54<88 150> -VStem: 104 73<64 371> 331 74<268 398> -LayerCount: 2 -Fore -SplineSet -182 63 m 1 - 251 123 277 160 307 221 c 0 - 325 256 331 303 331 325 c 0 - 331 346 323 370 306 387 c 1 - 312 404 329 425 352 425 c 0 - 389 425 405 392 405 347 c 0 - 405 224 179 -6 112 -6 c 1 - 105 2 104 116 104 145 c 2 - 104 347 l 2 - 104 356 105 371 95 371 c 0 - 74 371 29 317 26 314 c 1 - 23 314 17 327 17 333 c 1 - 28 352 94 425 140 425 c 0 - 161 425 178 401 178 372 c 2 - 178 320 l 1 - 178 172 l 2 - 178 130 179 84 182 63 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" v.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_V.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_V.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_V.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_V.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: V -Encoding: 86 86 53 -Width: 582 -Flags: W -HStem: -2 21G<220 228> 618 28<64 108 230 282 475 517 610 661> -LayerCount: 2 -Fore -SplineSet -171 642 m 0 - 211 642 248 644 285 646 c 1 - 286 640 282 619 278 618 c 1 - 271 618 222 613 217 586 c 0 - 215 576 215 552 220 517 c 0 - 232 430 278 128 279 125 c 1 - 283 130 499 512 499 512 c 2 - 512 534 523 562 526 580 c 0 - 532 611 485 618 474 618 c 1 - 470 620 473 641 479 646 c 1 - 512 644 542 642 575 642 c 0 - 617 642 627 644 664 646 c 1 - 666 641 661 618 658 618 c 0 - 651 618 614 613 594 593 c 0 - 580 579 551 531 530 494 c 2 - 263 31 l 2 - 248 5 234 -2 222 -2 c 0 - 218 -2 217 10 216 14 c 0 - 188 188 170 314 139 502 c 0 - 133 540 127 571 116 596 c 0 - 109 612 72 618 61 618 c 0 - 59 618 65 644 67 646 c 1 - 108 644 129 642 171 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/v.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/v.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/v.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/v.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: v.sc -Encoding: 65610 -1 465 -Width: 404 -Flags: W -HStem: -2 21G<137 143> 412 28<43 77 156 201 295 326 380 424> -LayerCount: 2 -Fore -SplineSet -114 437 m 0 - 139 437 181 438 203 440 c 1 - 204 435 201 413 197 412 c 1 - 193 412 156 410 152 391 c 0 - 148 370 168 255 185 120 c 0 - 185 113 188 118 190 122 c 0 - 244 220 263 256 309 342 c 16 - 317 357 326 375 328 387 c 0 - 332 408 298 412 291 412 c 1 - 290 420 295 435 297 440 c 1 - 318 438 345 437 366 437 c 0 - 392 437 405 438 427 440 c 1 - 429 436 423 412 420 412 c 1 - 416 412 390 409 377 396 c 0 - 368 387 350 354 336 329 c 0 - 271 208 233 143 165 21 c 0 - 156 3 147 -2 139 -2 c 0 - 136 -2 136 6 136 9 c 0 - 120 126 111 208 92 334 c 0 - 89 359 84 380 77 397 c 0 - 73 408 47 412 40 412 c 1 - 40 419 43 434 46 440 c 1 - 71 438 88 437 114 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wacute -Encoding: 7811 7811 724 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 119 N 1 0 0 1 0 0 3 -Refer: 230 769 N 1 0 0 1 658 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wacute -Encoding: 7810 7810 723 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 335 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: wcircumflex -Encoding: 373 373 391 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 631 4 2 -Refer: 86 119 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" wcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wcircumflex -Encoding: 372 372 390 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 246 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wcircumflex.sc -Encoding: 65717 -1 572 -Width: 565 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 600 26 2 -Refer: 466 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wdieresis -Encoding: 7813 7813 726 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 119 N 1 0 0 1 0 0 3 -Refer: 265 776 N 1 0 0 1 609 10 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wdieresis -Encoding: 7812 7812 725 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 224 14 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/w.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/w.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/w.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/w.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: w -Encoding: 119 119 86 -Width: 614 -Flags: W -HStem: -6 21G<109 133 328 365> 371 54<88 150> -VStem: 104 73<89 371> 312 70<75 209> 515 74<260 398> -LayerCount: 2 -Fore -SplineSet -376 366 m 1 - 377 326 379 241 382 179 c 0 - 384 137 386 90 396 74 c 1 - 448 119 479 162 501 224 c 0 - 515 261 515 303 515 325 c 0 - 515 346 506 370 489 387 c 1 - 495 404 512 425 535 425 c 0 - 572 425 589 392 589 347 c 0 - 589 224 398 -6 331 -6 c 1 - 324 2 313 117 312 146 c 0 - 311 171 310 209 310 209 c 1 - 245 115 153 -6 112 -6 c 1 - 105 2 104 116 104 145 c 2 - 104 347 l 2 - 104 356 105 371 95 371 c 0 - 74 371 29 317 26 314 c 1 - 23 314 17 327 17 333 c 1 - 28 352 94 425 140 425 c 0 - 161 425 178 401 178 372 c 2 - 178 320 l 1 - 178 172 l 2 - 178 130 179 109 182 88 c 1 - 226 135 274 218 292 249 c 0 - 315 292 325 318 334 339 c 1 - 342 349 363 363 376 366 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" w.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_W.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_W.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_W.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_W.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,112 +0,0 @@ -StartChar: W -Encoding: 87 87 54 -Width: 821 -Flags: W -HStem: -2 21G<182 190 510 518> 618 28<67 108 223 275 707 750 847 895> -LayerCount: 2 -Back -SplineSet -246.486328125 159.1796875 m 9 - 462.306640625 614.2578125 l 2 - 466.436523438 622.9765625 472.643554688 630.52734375 480.927734375 636.91015625 c 0 - 489.211914062 643.29296875 496.025390625 646.484375 501.369140625 646.484375 c 0 - 503.135742188 646.484375 504.432617188 645.521484375 505.2578125 643.595703125 c 0 - 506.083007812 641.668945312 507.391601562 637.423828125 509.181640625 630.859375 c 1 - 514.149414062 576.211914062 532.37890625 418.333984375 563.869140625 157.2265625 c 1 - 563.869140625 152.359375 565.91796875 151.483398438 570.016601562 154.596679688 c 0 - 571.7265625 155.895507812 572.931640625 157.422851562 573.634765625 159.1796875 c 2 - 732.814453125 511.71875 l 1 - 747.282226562 546.44140625 755.419921875 569.227539062 757.228515625 580.078125 c 0 - 758.584960938 587.315429688 757.137695312 593.645507812 752.885742188 599.068359375 c 0 - 748.633789062 604.4921875 742.96875 608.463867188 735.890625 610.983398438 c 0 - 728.8125 613.50390625 722.40234375 615.330078125 716.661132812 616.463867188 c 0 - 710.919921875 617.59765625 706.213867188 618.1640625 702.541015625 618.1640625 c 1 - 700.526367188 619.08984375 700.282226562 623.443359375 701.80859375 631.225585938 c 0 - 703.333984375 639.0078125 705.53125 644.09375 708.400390625 646.484375 c 1 - 763.739257812 643.229492188 795.965820312 641.6015625 805.080078125 641.6015625 c 0 - 817.491210938 641.6015625 828.184570312 641.849609375 837.16015625 642.346679688 c 0 - 846.135742188 642.84375 855.782226562 643.540039062 866.098632812 644.436523438 c 0 - 876.416015625 645.333984375 886.024414062 646.015625 894.923828125 646.484375 c 1 - 895.888671875 644.071289062 895.361328125 638.748046875 893.341796875 630.514648438 c 0 - 891.322265625 622.28125 889.571289062 618.1640625 888.087890625 618.1640625 c 0 - 883.037109375 618.1640625 873.548828125 615.750976562 859.623046875 610.924804688 c 0 - 845.697265625 606.099609375 834.026367188 600.048828125 824.611328125 592.7734375 c 0 - 811.388671875 582.1953125 795.763671875 557.456054688 777.736328125 518.5546875 c 2 - 550.197265625 31.25 l 2 - 546.422851562 22.7568359375 540.169921875 15.099609375 531.438476562 8.2783203125 c 0 - 522.70703125 1.45703125 515.288085938 -1.953125 509.181640625 -1.953125 c 0 - 507.4609375 -1.953125 506.053710938 -0.041015625 504.9609375 3.7841796875 c 0 - 503.868164062 7.609375 503.322265625 10.9052734375 503.322265625 13.671875 c 0 - 495.040039062 84.443359375 484.340820312 171.674804688 471.224609375 275.368164062 c 0 - 458.107421875 379.061523438 449.275390625 449.381835938 444.728515625 486.328125 c 0 - 444.728515625 487.84765625 444.118164062 488.7421875 442.897460938 489.013671875 c 0 - 441.676757812 489.28515625 440.333984375 488.71484375 438.869140625 487.3046875 c 1 - 221.095703125 31.25 l 2 - 217.294921875 22.6982421875 211.18359375 15.0263671875 202.76171875 8.234375 c 0 - 194.33984375 1.4423828125 187.104492188 -1.953125 181.056640625 -1.953125 c 0 - 179.3125 -1.953125 177.737304688 0.0166015625 176.331054688 3.955078125 c 0 - 174.923828125 7.8935546875 174.220703125 11.1328125 174.220703125 13.671875 c 2 - 127.345703125 519.53125 l 2 - 127.133789062 522.359375 126.806640625 526.91796875 126.366210938 533.20703125 c 0 - 125.924804688 539.497070312 125.611328125 543.799804688 125.423828125 546.115234375 c 0 - 125.237304688 548.431640625 124.904296875 552.017578125 124.423828125 556.874023438 c 0 - 123.944335938 561.73046875 123.489257812 565.223632812 123.05859375 567.35546875 c 0 - 122.62890625 569.487304688 122.024414062 572.356445312 121.24609375 575.962890625 c 0 - 120.46875 579.568359375 119.61328125 582.4375 118.6796875 584.567382812 c 0 - 117.74609375 586.698242188 116.612304688 589.033203125 115.276367188 591.572265625 c 0 - 113.94140625 594.111328125 112.4296875 596.46484375 110.744140625 598.6328125 c 0 - 106.366210938 604.32421875 98.6796875 609.001953125 87.685546875 612.666992188 c 0 - 76.69140625 616.33203125 67.775390625 618.1640625 60.939453125 618.1640625 c 0 - 60.3310546875 618.1640625 60.3876953125 620.385742188 61.109375 624.828125 c 0 - 61.83203125 629.271484375 62.8037109375 633.834960938 64.025390625 638.517578125 c 0 - 65.2470703125 643.201171875 66.171875 645.856445312 66.798828125 646.484375 c 1 - 75.5849609375 646.06640625 87.3359375 645.389648438 102.052734375 644.456054688 c 0 - 116.76953125 643.521484375 129.833984375 642.8125 141.245117188 642.328125 c 0 - 152.657226562 641.84375 164.625 641.6015625 177.150390625 641.6015625 c 0 - 189.075195312 641.6015625 200.129882812 641.844726562 210.313476562 642.33203125 c 0 - 220.49609375 642.819335938 231.916015625 643.525390625 244.573242188 644.452148438 c 0 - 257.23046875 645.377929688 267.633789062 646.055664062 275.783203125 646.484375 c 1 - 276.310546875 643.3203125 275.602539062 637.924804688 273.658203125 630.296875 c 0 - 271.713867188 622.669921875 269.818359375 618.625976562 267.970703125 618.1640625 c 1 - 265.233398438 618.1640625 261.25390625 617.723632812 256.032226562 616.842773438 c 0 - 250.810546875 615.961914062 244.548828125 614.493164062 237.245117188 612.435546875 c 0 - 229.942382812 610.37890625 223.427734375 607.026367188 217.702148438 602.376953125 c 0 - 211.9765625 597.728515625 208.55078125 592.248046875 207.423828125 585.9375 c 0 - 205.10546875 573.189453125 213.140625 451.951171875 231.52734375 222.22265625 c 0 - 233.844726562 193.27734375 235.575195312 171.612304688 236.720703125 157.2265625 c 1024 -EndSplineSet -Fore -SplineSet -168 642 m 0 - 208 642 242 644 279 646 c 1 - 280 640 275 619 271 618 c 1 - 264 618 215 613 210 586 c 0 - 209 580 209 561 211 532 c 0 - 216 449 229 286 241 141 c 1 - 465 614 l 2 - 474 633 494 646 504 646 c 0 - 508 646 509 642 512 631 c 1 - 514 610 546 335 569 141 c 1 - 737 512 l 2 - 747 535 757 562 760 580 c 0 - 766 611 716 618 705 618 c 1 - 701 620 705 641 711 646 c 1 - 744 644 775 642 808 642 c 0 - 850 642 861 644 898 646 c 1 - 900 641 894 618 891 618 c 0 - 884 618 849 610 828 593 c 0 - 813 581 800 559 781 519 c 2 - 553 31 l 2 - 545 13 524 -2 512 -2 c 0 - 508 -2 506 10 506 14 c 0 - 485 197 469 309 446 499 c 1 - 224 31 l 2 - 216 13 196 -2 184 -2 c 0 - 180 -2 177 10 177 14 c 2 - 130 520 l 2 - 127 559 128 581 114 599 c 0 - 104 612 75 618 64 618 c 0 - 62 618 68 644 70 646 c 1 - 111 644 126 642 168 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wgrave -Encoding: 7809 7809 722 -Width: 614 -Flags: HW -LayerCount: 2 -Fore -Refer: 86 119 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 571 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wgrave -Encoding: 7808 7808 721 -Width: 821 -Flags: HW -LayerCount: 2 -Fore -Refer: 54 87 N 1 0 0 1 0 0 3 -Refer: 284 -1 N 1 0 0 1 209 31 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/w.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/w.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/w.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/w.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: w.sc -Encoding: 65611 -1 466 -Width: 565 -Flags: W -HStem: -2 21G<120 126 331 337> 412 28<43 79 158 203 451 483 542 579> -LayerCount: 2 -Fore -SplineSet -122 437 m 0 - 148 437 183 438 206 440 c 1 - 207 435 203 413 199 412 c 1 - 194 412 158 410 154 391 c 1 - 151 376 162 251 173 134 c 1 - 172 127 175 131 177 135 c 0 - 224 235 254 297 306 410 c 0 - 313 426 325 439 333 439 c 0 - 336 439 342 438 343 428 c 1 - 346 413 363 260 378 135 c 1 - 379 135 382 135 383 135 c 0 - 425 233 433 254 472 346 c 0 - 479 362 482 376 484 388 c 0 - 488 409 455 412 448 412 c 1 - 446 419 450 434 454 440 c 1 - 475 438 504 437 525 437 c 0 - 551 437 559 438 582 440 c 1 - 584 436 578 412 575 412 c 1 - 571 412 552 408 542 402 c 0 - 531 395 514 374 503 348 c 0 - 451 223 420 149 368 32 c 0 - 361 16 341 -2 333 -2 c 0 - 330 -2 327 7 327 10 c 0 - 312 129 308 175 292 305 c 1 - 292 305 290 305 289 305 c 1 - 234 190 205 133 155 29 c 0 - 147 13 130 -2 122 -2 c 0 - 119 -2 119 6 119 9 c 0 - 108 130 100 217 89 346 c 0 - 87 372 88 387 79 399 c 0 - 72 408 48 412 40 412 c 1 - 37 419 43 435 46 440 c 1 - 72 438 96 437 122 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/x.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/x.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/x.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/x.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: x -Encoding: 120 120 87 -Width: 470 -Flags: W -HStem: -5 88<26 81> -4 55<269 334> 337 88<360 414> 371 54<119 184> -LayerCount: 2 -Fore -SplineSet -288 87 m 2x20 - 292 67 301 51 322 51 c 0 - 339 51 383 90 394 104 c 1 - 397 104 403 91 403 86 c 1 - 395 72 327 -4 284 -4 c 0x60 - 254 -4 228 28 217 80 c 2 - 200 164 l 1 - 152 69 125 -5 71 -5 c 0 - 57 -5 41 -3 25 7 c 1 - 19 15 15 25 15 40 c 0 - 15 63 29 83 51 83 c 0 - 71 83 75 57 96 55 c 0 - 111 54 118 65 125 77 c 0 - 151 121 168 153 192 200 c 1 - 165 334 l 2 - 161 355 152 371 134 371 c 0 - 114 371 71 330 60 316 c 1 - 57 316 50 330 50 335 c 1 - 58 349 126 425 169 425 c 0x90 - 199 425 226 394 236 341 c 2 - 250 274 l 1 - 293 360 319 425 369 425 c 0 - 383 425 399 423 415 413 c 1 - 421 405 426 395 426 380 c 0 - 426 357 412 337 390 337 c 0 - 370 337 366 363 345 365 c 0 - 330 366 322 355 315 343 c 0 - 292 304 277 276 257 238 c 1 - 288 87 l 2x20 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" x.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_X.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_X.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_X.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_X.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: X -Encoding: 88 88 55 -Width: 605 -Flags: W -HStem: -3 28<-53 13 102 159 331 383 504 558> 618 28<103 146 281 334 464 516 604 660> -LayerCount: 2 -Fore -SplineSet -219 642 m 0 - 264 642 299 644 336 646 c 1 - 337 640 334 618 329 618 c 0 - 316 618 274 612 269 587 c 0 - 267 579 269 570 274 558 c 2 - 346 383 l 1 - 415 461 495 551 514 578 c 0 - 516 581 521 588 522 594 c 0 - 523 600 513 617 462 617 c 1 - 458 618 462 639 466 646 c 1 - 502 643 530 641 563 641 c 0 - 610 641 641 644 663 646 c 1 - 665 641 663 623 656 617 c 1 - 649 617 600 613 568 578 c 2 - 360 353 l 1 - 480 64 l 2 - 492 36 531 25 561 25 c 1 - 564 20 557 -1 556 -3 c 1 - 520 -1 501 2 464 2 c 0 - 413 2 381 -1 330 -3 c 1 - 326 2 330 25 335 25 c 0 - 345 25 390 34 394 53 c 0 - 395 56 393 61 392 64 c 2 - 298 293 l 1 - 229 215 125 90 104 64 c 0 - 102 61 97 55 96 49 c 0 - 95 43 110 25 161 25 c 1 - 164 19 159 0 157 -3 c 1 - 124 -1 88 2 55 2 c 0 - 8 2 -20 -1 -57 -3 c 1 - -59 3 -52 22 -50 25 c 1 - -43 25 19 29 51 64 c 2 - 283 324 l 1 - 196 535 l 2 - 182 570 171 587 149 603 c 0 - 135 613 112 618 101 618 c 0 - 96 618 101 641 107 646 c 1 - 151 644 174 642 219 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/x.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/x.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/x.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/x.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: x.sc -Encoding: 65612 -1 467 -Width: 473 -Flags: W -HStem: -3 28<-22 27 77 116 245 283 365 405> 412 28<72 99 192 233 325 359 421 465> -LayerCount: 2 -Fore -SplineSet -157 437 m 0 - 184 437 214 438 236 440 c 1 - 237 435 232 412 229 412 c 0 - 220 412 193 412 190 395 c 0 - 189 390 189 382 193 374 c 2 - 248 264 l 1 - 291 311 342 364 354 381 c 0 - 358 387 358 392 359 396 c 0 - 360 400 355 411 323 411 c 1 - 320 412 323 433 327 439 c 1 - 349 436 380 436 401 436 c 0 - 430 436 454 437 468 439 c 1 - 470 435 466 416 461 411 c 1 - 457 411 426 408 404 387 c 0 - 355 341 310 291 262 236 c 1 - 356 51 l 2 - 365 33 388 25 407 25 c 1 - 410 21 404 -1 403 -3 c 1 - 381 -1 354 1 331 1 c 0 - 299 1 274 -1 241 -3 c 1 - 242 1 246 25 246 25 c 0 - 252 25 282 31 285 44 c 0 - 285 46 284 49 283 51 c 1 - 211 193 l 1 - 165 146 94 70 82 51 c 0 - 81 49 78 45 77 41 c 0 - 76 37 88 25 120 25 c 1 - 119 20 116 4 115 -3 c 1 - 94 -1 67 1 46 1 c 0 - 17 1 -4 -1 -26 -3 c 1 - -25 2 -22 20 -21 25 c 1 - -17 25 21 29 42 51 c 0 - 94 106 140 157 197 219 c 1 - 180 253 128 357 128 357 c 2 - 117 378 114 391 100 402 c 0 - 91 409 74 412 67 412 c 0 - 67 412 72 436 73 440 c 1 - 100 438 130 437 157 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: yacute -Encoding: 253 253 186 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 121 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 549 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" yacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Yacute -Encoding: 221 221 154 -Width: 542 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 89 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 179 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: yacute.sc -Encoding: 65654 -1 509 -Width: 389 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 528 34 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ycircumflex -Encoding: 375 375 393 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 511 16 2 -Refer: 88 121 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ycircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ycircumflex -Encoding: 374 374 392 -Width: 542 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 89 N 1 0 0 1 0 0 3 -Refer: 286 -1 N 1 0 0 1 89 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ycircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ycircumflex.sc -Encoding: 65718 -1 573 -Width: 389 -Flags: HW -LayerCount: 2 -Fore -Refer: 231 770 N 1 0 0 1 499 26 2 -Refer: 468 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ydieresis -Encoding: 255 255 188 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 121 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 501 21 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" ydieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ydieresis -Encoding: 376 376 394 -Width: 542 -Flags: HW -LayerCount: 2 -Fore -Refer: 56 89 N 1 0 0 1 0 0 3 -Refer: 297 -1 N 1 0 0 1 77 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ydieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ydieresis.sc -Encoding: 65719 -1 574 -Width: 389 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 0 0 2 -Refer: 265 776 N 1 0 0 1 502 32 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/yen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/yen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: yen -Encoding: 165 165 99 -Width: 578 -Flags: W -HStem: -3 27<144 210 294 350> 135 37<153 404> 211 37<168 419> 590 27<87 130 258 308 436 487 562 619> -LayerCount: 2 -Fore -SplineSet -169 211 m 2 - 166 211 165 215 165 219 c 0 - 165 226 171 242 178 248 c 1 - 418 248 l 2 - 420 248 421 245 421 241 c 0 - 421 236 419 220 410 211 c 1 - 169 211 l 2 -155 135 m 2 - 152 135 151 139 151 143 c 0 - 151 150 156 166 163 172 c 1 - 404 172 l 2 - 406 172 407 169 407 165 c 0 - 407 160 404 144 395 135 c 1 - 155 135 l 2 -228 108 m 2 - 255 249 l 2 - 256 256 257 265 254 275 c 2 - 176 511 l 2 - 164 545 153 560 132 575 c 0 - 119 585 97 590 86 590 c 0 - 81 590 85 612 91 617 c 1 - 133 615 156 612 199 612 c 0 - 242 612 276 615 311 617 c 1 - 312 611 309 590 304 590 c 0 - 292 590 251 585 246 561 c 0 - 244 553 247 544 251 532 c 2 - 325 309 l 1 - 384 391 472 524 488 552 c 0 - 490 555 492 559 493 565 c 0 - 494 571 484 589 435 589 c 1 - 432 592 436 612 439 616 c 1 - 470 614 496 611 527 611 c 0 - 572 611 588 614 623 616 c 1 - 623 613 618 589 615 589 c 0 - 608 589 559 589 532 552 c 2 - 341 280 l 2 - 333 269 334 261 332 252 c 2 - 303 108 l 2 - 297 80 292 54 294 39 c 0 - 295 28 340 24 351 24 c 1 - 354 19 352 2 346 -3 c 1 - 311 -1 278 2 245 2 c 0 - 212 2 178 -1 142 -3 c 1 - 138 2 143 19 148 24 c 1 - 159 24 205 28 210 39 c 0 - 218 54 222 80 228 108 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: y -Encoding: 121 121 88 -Width: 436 -Flags: W -HStem: -228 64<-94 17> 371 54<77 171> -VStem: 143 73<15 251> 328 67<233 398> -LayerCount: 2 -Fore -SplineSet -129 425 m 0 - 213 425 216 75 216 15 c 1 - 251 58 328 172 328 278 c 0 - 328 338 315 362 304 383 c 1 - 312 408 330 425 353 425 c 0 - 394 425 396 369 396 348 c 0 - 396 119 82 -228 -50 -228 c 0 - -85 -228 -108 -209 -108 -188 c 0 - -108 -171 -101 -153 -86 -145 c 1 - -71 -154 -29 -163 -8 -163 c 0 - 53 -163 93 -129 125 -82 c 0 - 147 -49 143 19 143 61 c 0 - 143 172 132 371 84 371 c 0 - 63 371 19 317 16 314 c 1 - 13 314 6 327 6 333 c 1 - 17 352 83 425 129 425 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" y.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Y -Encoding: 89 89 56 -Width: 542 -Flags: W -HStem: -3 28<118 187 276 334> 618 28<59 103 237 290 426 480 557 616> -LayerCount: 2 -Fore -SplineSet -206 113 m 2 - 234 261 l 2 - 235 268 236 278 233 288 c 2 - 152 535 l 2 - 140 571 128 587 106 603 c 0 - 92 613 69 618 58 618 c 0 - 53 618 58 641 64 646 c 1 - 108 644 131 642 176 642 c 0 - 221 642 256 644 293 646 c 1 - 294 640 291 618 286 618 c 0 - 273 618 231 612 226 587 c 0 - 224 579 227 571 231 558 c 2 - 309 323 l 1 - 371 409 465 548 481 578 c 0 - 483 581 485 587 486 593 c 0 - 487 599 476 617 425 617 c 1 - 422 620 426 642 429 646 c 1 - 462 644 487 641 520 641 c 0 - 567 641 583 644 620 646 c 1 - 620 643 615 617 612 617 c 0 - 605 617 553 617 525 578 c 2 - 325 294 l 2 - 317 283 317 273 315 264 c 2 - 285 113 l 2 - 279 84 273 57 275 41 c 0 - 276 30 324 25 335 25 c 1 - 338 20 336 2 330 -3 c 1 - 293 -1 260 2 225 2 c 0 - 190 2 154 -1 116 -3 c 1 - 112 2 117 20 122 25 c 1 - 133 25 183 30 188 41 c 0 - 196 57 200 84 206 113 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ygrave -Encoding: 7923 7923 809 -Width: 436 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 88 121 N 1 0 0 1 0 0 3 -Refer: 229 768 N 1 0 0 1 461 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Ygrave -Encoding: 7922 7922 808 -Width: 542 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 284 -1 N 1 0 0 1 78 31 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/y.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/y.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/y.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/y.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: y.sc -Encoding: 65613 -1 468 -Width: 389 -Flags: W -HStem: -3 28<66 116 189 230> 412 28<44 67 156 195 278 312 361 406> -LayerCount: 2 -Fore -SplineSet -227 226 m 0 - 224 222 220 210 219 204 c 0 - 195 84 l 2 - 191 64 189 47 189 36 c 0 - 189 29 225 25 232 25 c 1 - 233 18 231 2 227 -3 c 1 - 201 -1 171 1 147 1 c 0 - 122 1 88 -1 62 -3 c 1 - 63 1 65 17 68 25 c 1 - 75 25 113 29 116 36 c 0 - 121 47 125 64 129 84 c 2 - 151 194 l 0 - 152 199 152 208 150 212 c 0 - 134 246 93 357 93 357 c 2 - 84 378 82 392 68 403 c 0 - 59 410 47 412 40 412 c 1 - 39 419 44 436 46 440 c 1 - 73 438 95 437 122 437 c 0 - 149 437 176 438 198 440 c 1 - 199 435 196 412 193 412 c 0 - 184 412 157 412 154 395 c 0 - 153 390 154 382 157 374 c 2 - 212 247 l 1 - 248 296 288 351 299 369 c 0 - 303 375 310 387 312 395 c 0 - 313 402 308 411 276 411 c 1 - 273 412 276 433 280 439 c 1 - 302 436 331 436 352 436 c 0 - 381 436 396 437 410 439 c 1 - 412 435 407 416 402 411 c 1 - 398 411 368 410 348 387 c 0 - 311 342 270 286 227 226 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zacute -Encoding: 378 378 396 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 122 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 533 12 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" zacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zacute -Encoding: 377 377 395 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 90 N 1 0 0 1 0 0 3 -Refer: 285 -1 N 1 0 0 1 181 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zacute.sc -Encoding: 65720 -1 575 -Width: 422 -Flags: HW -LayerCount: 2 -Fore -Refer: 469 -1 N 1 0 0 1 0 0 2 -Refer: 230 769 N 1 0 0 1 547 36 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zcaron -Encoding: 382 382 400 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 503 3 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" zcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zcaron -Encoding: 381 381 399 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 90 N 1 0 0 1 0 0 3 -Refer: 299 -1 N 1 0 0 1 110 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zcaron.sc -Encoding: 65722 -1 577 -Width: 422 -Flags: HW -LayerCount: 2 -Fore -Refer: 269 780 N 1 0 0 1 520 27 2 -Refer: 469 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zdotaccent -Encoding: 380 380 398 -Width: 377 -Flags: HW -LayerCount: 2 -Fore -Refer: 89 122 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 500 55 2 -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" zdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zdotaccent -Encoding: 379 379 397 -Width: 587 -Flags: HW -LayerCount: 2 -Fore -Refer: 57 90 N 1 0 0 1 0 0 3 -Refer: 292 -1 N 1 0 0 1 125 17 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zdotaccent.sc -Encoding: 65721 -1 576 -Width: 422 -Flags: HW -LayerCount: 2 -Fore -Refer: 469 -1 N 1 0 0 1 0 0 2 -Refer: 264 775 N 1 0 0 1 511 30 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: zero -Encoding: 48 48 15 -Width: 487 -Flags: W -HStem: -3 34<150 233> 592 34<256 339> -LayerCount: 2 -Fore -SplineSet -126 312 m 0 - 96 159 119 31 186 31 c 0 - 267 31 333 164 363 317 c 0 - 393 470 370 592 303 592 c 0 - 227 592 156 465 126 312 c 0 -46 312 m 0 - 79 482 180 626 305 626 c 0 - 432 626 474 482 441 312 c 0 - 408 142 308 -3 183 -3 c 0 - 60 -3 13 142 46 312 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" zero.prop -Substitution2: "'onum' Oldstyle Figures in Latin lookup 5-1" zero.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: zero.onum -Encoding: 65567 -1 418 -Width: 412 -VWidth: 0 -Flags: W -HStem: -5 40<137 220> 398 39<177 257> -VStem: 29 77<68 275> 288 77<158 366> -LayerCount: 2 -Fore -SplineSet -106 173 m 0 - 106 88 132 35 175 35 c 0 - 245 35 288 167 288 261 c 0 - 288 344 262 398 220 398 c 0 - 150 398 106 267 106 173 c 0 -29 164 m 0 - 29 308 136 438 236 438 c 0 - 312 438 365 367 365 269 c 0 - 365 125 259 -5 159 -5 c 0 - 83 -5 29 66 29 164 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/zero.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/zero.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: zero.prop -Encoding: 65738 -1 846 -Width: 487 -Flags: HW -LayerCount: 2 -Fore -Refer: 15 48 N 1 0 0 1 11 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: z -Encoding: 122 122 89 -Width: 377 -Flags: W -HStem: 0 67<184 255> 31 69<53 167> 324 70<186 303> 357 67<102 176> -VStem: 42 12<292 302> -LayerCount: 2 -Fore -SplineSet -142 425 m 0x18 - 170 425 193 414 217 405 c 0 - 234 399 250 395 271 395 c 0x28 - 307 395 351 425 359 425 c 1 - 367 421 370 412 370 405 c 0 - 370 391 93 94 90 90 c 1 - 94 92 114 101 135 101 c 0x58 - 156 101 176 93 195 84 c 0 - 214 76 231 67 247 67 c 0 - 272 67 298 124 304 133 c 1 - 313 133 314 125 315 117 c 1 - 298 80 259 0 213 0 c 0x88 - 190 0 160 11 135 21 c 0 - 119 27 87 31 65 31 c 0x48 - 37 31 21 10 1 0 c 1 - -5 2 -9 10 -10 19 c 1 - -10 34 283 341 285 345 c 1 - 282 343 256 324 224 324 c 0xa8 - 203 324 183 333 164 341 c 0 - 145 350 128 357 111 357 c 0 - 84 357 60 300 54 291 c 1 - 47 291 43 298 42 307 c 1 - 48 327 97 425 142 425 c 0x18 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals in Latin lookup 3-1" z.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/_Z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/_Z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: Z -Encoding: 90 90 57 -Width: 587 -Flags: W -HStem: 0 31<100 399> 614 31<218 495> 634 20G<143 161> -LayerCount: 2 -Fore -SplineSet -273 614 m 2xc0 - 211 614 157 560 122 480 c 0 - 120 477 117 477 112 477 c 0 - 104 477 91 481 89 484 c 1 - 113 529 133 587 152 653 c 1xa0 - 171 650 201 646 225 646 c 2 - 402 646 l 2xc0 - 478 646 517 649 594 655 c 1 - 598 654 608 642 606 634 c 0xa0 - 603 626 304 264 100 31 c 1 - 339 31 l 2 - 384 31 421 56 446 83 c 0 - 471 110 488 143 501 168 c 0 - 502 170 509 171 514 171 c 0 - 523 171 532 166 535 162 c 1 - 498 85 482 49 463 0 c 1 - 4 0 l 2 - -6 0 -14 8 -9 14 c 2 - 497 615 l 1 - 273 614 l 2xc0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/z.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/z.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Italic.sfdir/z.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Italic.sfdir/z.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: z.sc -Encoding: 65614 -1 469 -Width: 422 -Flags: W -HStem: 0 32<95 281> 407 32<137 309> -LayerCount: 2 -Fore -SplineSet -1 0 m 1 - -3 4 -3 16 -1 18 c 2 - 309 407 l 1 - 183 407 l 2 - 145 407 109 376 87 323 c 1 - 85 321 81 320 78 320 c 0 - 71 320 62 323 60 325 c 1 - 76 357 94 399 107 446 c 1 - 118 443 137 439 152 439 c 0 - 263 439 l 2 - 311 439 345 443 394 448 c 1 - 396 447 402 436 401 429 c 1 - 399 424 99 41 99 41 c 2 - 98 39 95 36 95 35 c 0 - 95 33 97 32 100 32 c 2 - 232 32 l 2 - 291 32 312 86 330 118 c 0 - 331 119 339 120 342 120 c 0 - 348 120 353 117 355 114 c 1 - 331 59 320 34 307 0 c 1 - 307 0 113 0 1 0 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfd fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfd --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfd 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfd 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,10966 @@ +SplineFontDB: 3.0 +FontName: AmiriLatin-Regular +FullName: Amiri Latin +FamilyName: Amiri Latin +Weight: Regular +Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. +Version: 0.8 +ItalicAngle: 0 +UnderlinePosition: -112 +UnderlineWidth: 47 +Ascent: 800 +Descent: 200 +InvalidEm: 0 +LayerCount: 2 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1270926789 +ModificationTime: 0 +PfmFamily: 17 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 90 +VLineGap: 0 +OS2TypoAscent: 700 +OS2TypoAOffset: 0 +OS2TypoDescent: -300 +OS2TypoDOffset: 0 +OS2TypoLinegap: 90 +OS2WinAscent: 0 +OS2WinAOffset: 0 +OS2WinDescent: 0 +OS2WinDOffset: 0 +HheadAscent: 700 +HheadAOffset: 0 +HheadDescent: -300 +HheadDOffset: 0 +OS2SubXSize: 650 +OS2SubYSize: 699 +OS2SubXOff: 0 +OS2SubYOff: 140 +OS2SupXSize: 650 +OS2SupYSize: 699 +OS2SupXOff: 0 +OS2SupYOff: 479 +OS2StrikeYSize: 49 +OS2StrikeYPos: 258 +OS2FamilyClass: 258 +OS2Vendor: 'PfEd' +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 6" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 12" [78,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +KernClass2: 7+ 9 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 12" + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} -16 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -14 {} -21 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -22 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -21 {} -14 {} +KernClass2: 25+ 41 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 9 backslash + 12 bracketright + 10 braceright + 10 registered + 7 uni02BC + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 10 parenright + 49 comma period quotesinglbase quotedblbase ellipsis + 0 + 0 + 0 + 0 + 0 + 29 guillemotright guilsinglright + 9 ampersand + 5 slash + 0 + 0 + 0 + 0 + 0 + 15 colon semicolon + 0 {} -4 {} -26 {} -5 {} -18 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -32 {} -22 {} -32 {} -31 {} -22 {} -20 {} -25 {} -58 {} -21 {} -12 {} -36 {} -15 {} -21 {} -21 {} -24 {} -22 {} -33 {} -12 {} -42 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -7 {} -4 {} -8 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -29 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} -33 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -19 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -7 {} 0 {} 0 {} -18 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -32 {} -8 {} -31 {} -31 {} -21 {} -21 {} -40 {} -53 {} -24 {} 0 {} -36 {} 0 {} -20 {} -19 {} -28 {} -25 {} -44 {} 0 {} -34 {} -21 {} 0 {} 0 {} 0 {} -19 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -18 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -6 {} 0 {} 0 {} -22 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -4 {} -8 {} -15 {} -13 {} 0 {} 0 {} -38 {} -27 {} -10 {} 0 {} 0 {} -13 {} -12 {} 0 {} -8 {} 0 {} 0 {} -12 {} 0 {} -13 {} -6 {} -7 {} -30 {} 0 {} -16 {} 0 {} -16 {} -7 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -13 {} -13 {} -18 {} -19 {} -13 {} -14 {} -12 {} -49 {} -23 {} -14 {} -18 {} 0 {} -12 {} -12 {} -20 {} -15 {} 0 {} -10 {} -24 {} -14 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -17 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} -24 {} -21 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} -16 {} -12 {} -15 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -17 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -25 {} 0 {} 0 {} -25 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -11 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} -19 {} -10 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -11 {} 0 {} 0 {} -33 {} 0 {} 0 {} -22 {} -21 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} -12 {} -16 {} -20 {} -20 {} -20 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} -33 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} -17 {} 0 {} 0 {} -31 {} 0 {} 0 {} -19 {} -14 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} -15 {} -11 {} -11 {} -14 {} -11 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -23 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -18 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -8 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} +KernClass2: 1+ 2 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" + 0 + 0 + 0 {} -10 {} +KernClass2: 3+ 33 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" + 9 parenleft + 11 bracketleft + 9 braceleft + 14 zero zero.prop + 13 J Jcircumflex + 173 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 76 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 166 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 34 z zacute zdotaccent zcaron uni1E93 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 2 AE + 0 {} -21 {} 98 {} -22 {} -12 {} -24 {} -30 {} -28 {} -14 {} -30 {} -21 {} -21 {} -22 {} -25 {} -25 {} -16 {} -19 {} -10 {} -16 {} 62 {} -16 {} -30 {} -22 {} -24 {} -25 {} -20 {} -20 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 108 {} -21 {} -17 {} -25 {} -28 {} -26 {} -19 {} -27 {} -24 {} -21 {} -21 {} -22 {} -22 {} -16 {} -22 {} -21 {} -21 {} 66 {} -21 {} -27 {} -24 {} -22 {} -24 {} -19 {} -20 {} -21 {} -15 {} -12 {} -14 {} -13 {} -13 {} 0 {} 0 {} 67 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 32 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 1+ 3 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 6" + 5 longs + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 0 {} -5 {} -5 {} +KernClass2: 11+ 65 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 40 comma period quotesinglbase quotedblbase + 5 slash + 15 colon semicolon + 9 backslash + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 29 guillemotright guilsinglright + 9 ampersand + 49 comma period quotesinglbase quotedblbase ellipsis + 5 slash + 9 four.prop + 8 six.prop + 2 at + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 76 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 39 g gcircumflex gbreve gdotaccent uni0123 + 166 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 1 q + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 2 AE + 0 + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 0 + 0 + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 13 J Jcircumflex + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 21 j jcircumflex uni0237 + 35 l lacute uni013C lcaron ldot lslash + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 1 x + 34 z zacute zdotaccent zcaron uni1E93 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20 quotedbl quotesingle + 173 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 14 zero zero.prop + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 9 p uni1E57 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 0 + 28 hyphen endash emdash uni2015 + 0 {} -21 {} -78 {} -40 {} -44 {} -13 {} -21 {} -49 {} -12 {} -20 {} -27 {} -11 {} -15 {} -20 {} -8 {} -74 {} -10 {} -38 {} -65 {} -23 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} -8 {} -12 {} 0 {} 0 {} 0 {} 0 {} -65 {} 0 {} 0 {} 0 {} -19 {} 0 {} 23 {} 22 {} 21 {} 14 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} -26 {} -28 {} 0 {} -20 {} -19 {} -20 {} -17 {} -28 {} -10 {} -8 {} -13 {} -14 {} -61 {} -41 {} -32 {} -29 {} -60 {} -26 {} -11 {} -9 {} -13 {} -8 {} -9 {} -10 {} -25 {} -10 {} -14 {} -12 {} -16 {} -16 {} -21 {} -9 {} -20 {} -32 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -33 {} -32 {} -23 {} -16 {} 0 {} 0 {} 0 {} 0 {} -44 {} -62 {} -52 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -30 {} 0 {} 0 {} -78 {} -16 {} -22 {} -90 {} -94 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} -38 {} -44 {} -41 {} -39 {} -41 {} 0 {} -35 {} -54 {} 0 {} 0 {} 0 {} -59 {} -39 {} -15 {} -15 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -24 {} -11 {} -28 {} -21 {} -20 {} 0 {} -21 {} -18 {} -18 {} 0 {} 0 {} -24 {} 0 {} -18 {} 0 {} 0 {} 0 {} -16 {} -10 {} -17 {} -16 {} -17 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -30 {} -23 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -18 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} -25 {} -36 {} -31 {} 10 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} 0 {} 0 {} 0 {} 0 {} -48 {} -14 {} -22 {} -29 {} -14 {} -18 {} -22 {} -10 {} -74 {} -12 {} 0 {} -65 {} -24 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -94 {} 0 {} 0 {} 0 {} 0 {} -54 {} -21 {} -29 {} -29 {} -20 {} -23 {} -29 {} -17 {} -77 {} -19 {} -55 {} -68 {} -30 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 16 {} 14 {} 0 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -31 {} -24 {} 0 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} -27 {} -21 {} 0 {} -14 {} -13 {} -13 {} 0 {} -20 {} -16 {} -14 {} -18 {} -19 {} -61 {} -46 {} -37 {} -30 {} -63 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} -39 {} 0 {} -11 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 29+ 45 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 19 b uni1E03 f_b f_f_b + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 84 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe + 13 f uni1E1F f_f + 39 g gcircumflex gbreve gdotaccent uni0123 + 86 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i + 34 j ij jcircumflex uni0237 f_j f_f_j + 32 k uni0137 kgreenlandic f_k f_f_k + 40 l lacute uni013C lcaron lslash f_l f_f_l + 101 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h + 80 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut + 15 p thorn uni1E57 + 1 q + 23 r racute uni0157 rcaron + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 1 x + 37 y yacute ydieresis ycircumflex ygrave + 34 z zacute zdotaccent zcaron uni1E93 + 3 eth + 4 ldot + 3 eng + 0 + 0 + 10 parenright + 173 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 9 backslash + 12 bracketright + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 20 quotedbl quotesingle + 8 asterisk + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 1 x + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 0 + 28 hyphen endash emdash uni2015 + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 39 g gcircumflex gbreve gdotaccent uni0123 + 166 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 1 q + 27 guillemotleft guilsinglleft + 13 J Jcircumflex + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 10 registered + 0 + 0 + 10 braceright + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 35 l lacute uni013C lcaron ldot lslash + 21 j jcircumflex uni0237 + 9 ampersand + 49 comma period quotesinglbase quotedblbase ellipsis + 5 slash + 8 question + 76 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 9 p uni1E57 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 0 {} -13 {} -6 {} -21 {} -73 {} -38 {} -19 {} -11 {} -11 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} -23 {} -93 {} -37 {} -26 {} -9 {} -9 {} -9 {} -25 {} -11 {} -14 {} -21 {} -24 {} -25 {} -23 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -9 {} -20 {} -86 {} -22 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} -19 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -6 {} -22 {} -85 {} -32 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 19 {} 58 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -16 {} -16 {} -4 {} -11 {} -15 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -71 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -20 {} -12 {} -11 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -21 {} -71 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -43 {} -45 {} -8 {} -43 {} -40 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -15 {} -5 {} 0 {} 0 {} -5 {} -5 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} -25 {} -72 {} -41 {} -20 {} -13 {} -13 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -59 {} -62 {} -47 {} -10 {} -12 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} -24 {} -93 {} -39 {} -27 {} -11 {} -10 {} -11 {} -15 {} -8 {} -10 {} -20 {} -23 {} -15 {} -15 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} -24 {} -94 {} -38 {} -28 {} -9 {} -9 {} -8 {} -13 {} 0 {} -15 {} -21 {} -24 {} -13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -71 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -15 {} -77 {} -20 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -17 {} 0 {} 0 {} 0 {} 0 {} -23 {} -8 {} -8 {} 0 {} -4 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -26 {} -73 {} -31 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -10 {} -52 {} -15 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -8 {} -21 {} -65 {} -33 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -11 {} -65 {} -14 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -22 {} -20 {} -20 {} -8 {} -13 {} -20 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} 0 {} -17 {} -34 {} -20 {} -11 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -12 {} -66 {} -14 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -23 {} -21 {} -21 {} -9 {} -14 {} -21 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} -18 {} -34 {} -21 {} -12 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -15 {} -64 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -25 {} -7 {} -23 {} -26 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -12 {} -66 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -22 {} -20 {} -20 {} -8 {} -13 {} -20 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} -18 {} -34 {} -20 {} -11 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -24 {} -79 {} -25 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -18 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 43 {} 43 {} 0 {} 39 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 15 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 18 {} 18 {} 0 {} 45 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} -11 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 26+ 79 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 9 B uni1E02 + 47 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron + 84 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE + 9 F uni1E1E + 39 G Gcircumflex Gbreve Gdotaccent uni0122 + 121 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A + 16 J IJ Jcircumflex + 9 K uni0136 + 35 L Lacute uni013B Lcaron Ldot Lslash + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 134 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni1E0A uni1E0C uni1E0E uni1E10 + 9 P uni1E56 + 23 R Racute uni0156 Rcaron + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 5 Thorn + 0 + 0 + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 14 zero zero.prop + 8 two.prop + 13 J Jcircumflex + 173 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 9 backslash + 12 bracketright + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 166 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 1 q + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 10 registered + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 10 parenright + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 1 X + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 21 j jcircumflex uni0237 + 35 l lacute uni013C lcaron ldot lslash + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 1 x + 34 z zacute zdotaccent zcaron uni1E93 + 2 AE + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 9 ampersand + 49 comma period quotesinglbase quotedblbase ellipsis + 5 slash + 9 four.prop + 15 colon semicolon + 76 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek + 39 g gcircumflex gbreve gdotaccent uni0123 + 9 p uni1E57 + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 0 + 16 seven seven.prop + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 8 one.prop + 10 three.prop + 9 five.prop + 8 six.prop + 29 guillemotright guilsinglright + 15 b thorn uni1E03 + 10 eight.prop + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 10 braceright + 0 {} -50 {} -40 {} -16 {} -10 {} 12 {} -10 {} -21 {} -51 {} -37 {} -62 {} -53 {} -59 {} -47 {} -16 {} -10 {} -9 {} -11 {} -9 {} -8 {} -12 {} -43 {} -43 {} -42 {} -33 {} -47 {} -44 {} -23 {} -46 {} -5 {} -10 {} -28 {} -18 {} -35 {} -30 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} -6 {} -21 {} -17 {} -27 {} -14 {} -21 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -19 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -12 {} 0 {} -8 {} -6 {} -11 {} -20 {} -10 {} -6 {} -7 {} -7 {} -34 {} -8 {} -7 {} -9 {} -6 {} -7 {} -8 {} -24 {} -10 {} -15 {} -14 {} -13 {} -5 {} -7 {} -6 {} -22 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -14 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -6 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -6 {} -5 {} -25 {} -24 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -20 {} -5 {} -16 {} -11 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -26 {} -23 {} -26 {} -6 {} -8 {} -8 {} -8 {} -8 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} -17 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -5 {} 0 {} 0 {} -17 {} -14 {} -21 {} -69 {} -55 {} -69 {} -13 {} -19 {} -13 {} -6 {} -12 {} -11 {} -47 {} -21 {} -13 {} -8 {} -30 {} -26 {} -6 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -19 {} -13 {} -26 {} -10 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -8 {} -16 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -5 {} -5 {} -9 {} 0 {} -5 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -20 {} -20 {} -20 {} -15 {} -13 {} -17 {} -17 {} -17 {} 0 {} 0 {} 0 {} -18 {} 0 {} -11 {} -16 {} -13 {} -14 {} -11 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -12 {} -7 {} -7 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -21 {} -23 {} -20 {} -16 {} -16 {} -16 {} -16 {} 0 {} 0 {} 0 {} -16 {} 0 {} -16 {} -17 {} -13 {} -16 {} -9 {} -7 {} -8 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -11 {} -7 {} 0 {} -18 {} -6 {} -21 {} -9 {} -9 {} -19 {} -16 {} -17 {} -15 {} 0 {} -15 {} -11 {} -8 {} 0 {} 0 {} 0 {} -21 {} -22 {} -14 {} -21 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 12 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -30 {} -38 {} -28 {} -9 {} -13 {} -72 {} -72 {} -70 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} -35 {} -53 {} -15 {} -63 {} -56 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -67 {} -77 {} 0 {} 0 {} 0 {} -6 {} 0 {} -73 {} -12 {} -76 {} -55 {} -65 {} -40 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -45 {} -44 {} -24 {} -69 {} -71 {} 0 {} -75 {} 0 {} 0 {} -44 {} 0 {} -36 {} -28 {} -38 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -19 {} -18 {} -14 {} -13 {} -19 {} -20 {} -20 {} -10 {} 0 {} 0 {} -19 {} 0 {} -10 {} -14 {} -14 {} -15 {} -13 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -9 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -21 {} -23 {} -20 {} -19 {} -19 {} -19 {} -18 {} 0 {} 0 {} 0 {} -19 {} 0 {} -17 {} -18 {} -16 {} -19 {} -12 {} -9 {} -11 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -10 {} -6 {} 0 {} -19 {} -7 {} -23 {} -8 {} -8 {} -17 {} -17 {} -18 {} -16 {} 0 {} -17 {} -12 {} -9 {} 0 {} 0 {} 0 {} -24 {} -21 {} -14 {} -24 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -5 {} -7 {} -24 {} -18 {} -35 {} -17 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -21 {} -9 {} -11 {} -11 {} -32 {} 0 {} -11 {} 0 {} 0 {} -11 {} 0 {} -21 {} 0 {} -36 {} -32 {} -26 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -17 {} -36 {} -36 {} -32 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -45 {} -5 {} -9 {} -6 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -79 {} -71 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -69 {} -24 {} -19 {} 0 {} -19 {} -21 {} 0 {} -15 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -9 {} 0 {} 29 {} -6 {} -15 {} -22 {} -20 {} -45 {} -32 {} -41 {} -27 {} -10 {} -9 {} -9 {} -11 {} -8 {} 0 {} -7 {} -35 {} -34 {} -35 {} -20 {} 0 {} 0 {} -35 {} -16 {} 0 {} -10 {} -21 {} -11 {} -22 {} -16 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} -10 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 17 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -7 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -6 {} -5 {} -21 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -11 {} 0 {} -8 {} -5 {} -8 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} -6 {} 0 {} -8 {} -13 {} -10 {} 0 {} 0 {} -6 {} 0 {} -5 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -100 {} -99 {} -97 {} -99 {} -18 {} -66 {} -56 {} -55 {} -54 {} 0 {} 0 {} 0 {} -62 {} 0 {} -43 {} -77 {} -51 {} -39 {} -40 {} -35 {} -37 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -19 {} -7 {} 0 {} -71 {} -59 {} -77 {} -74 {} -68 {} -82 {} -44 {} -53 {} -41 {} -36 {} -50 {} -21 {} -43 {} -26 {} -40 {} -34 {} -84 {} -84 {} -65 {} -80 {} -72 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -27 {} -25 {} -27 {} -19 {} -14 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} -15 {} 0 {} -18 {} -20 {} -10 {} -13 {} -6 {} 0 {} -6 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -8 {} 0 {} 0 {} -22 {} -14 {} -27 {} -38 {} -38 {} -36 {} -19 {} -23 {} -19 {} -8 {} -20 {} -12 {} -22 {} -17 {} 0 {} -9 {} -29 {} -26 {} -12 {} -28 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} -46 {} -14 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -76 {} -75 {} -69 {} -76 {} -36 {} -40 {} -37 {} -38 {} -37 {} 0 {} 0 {} 0 {} -49 {} 12 {} -32 {} -61 {} -36 {} -34 {} -22 {} -20 {} -21 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -34 {} 21 {} -8 {} 0 {} 21 {} -62 {} -38 {} -64 {} -91 {} -81 {} -107 {} -36 {} -45 {} -35 {} -22 {} -45 {} -28 {} -63 {} -37 {} -38 {} -30 {} -79 {} -68 {} -47 {} -73 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -30 {} 37 {} -13 {} -8 {} 0 {} 0 {} 0 {} 0 {} -34 {} -12 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} -56 {} -53 {} -56 {} -35 {} -33 {} -27 {} -28 {} -27 {} 0 {} 0 {} 0 {} -39 {} 0 {} -32 {} -45 {} -30 {} -31 {} -17 {} -15 {} -16 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} -31 {} 15 {} -9 {} 0 {} 15 {} -43 {} -26 {} -48 {} -80 {} -70 {} -77 {} -34 {} -34 {} -34 {} -21 {} -35 {} -26 {} -50 {} -32 {} -29 {} -24 {} -63 {} -53 {} -30 {} -58 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -24 {} 31 {} -12 {} -7 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 6 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -31 {} -23 {} -12 {} -13 {} -60 {} -59 {} -59 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} -27 {} -42 {} -15 {} -46 {} -36 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -18 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} -89 {} -88 {} -89 {} -60 {} -68 {} -60 {} -61 {} -61 {} 0 {} 0 {} 0 {} -59 {} 0 {} -59 {} -73 {} -58 {} -55 {} -36 {} -32 {} -34 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -36 {} 11 {} -11 {} 0 {} 11 {} -69 {} -57 {} -77 {} -83 {} -75 {} -80 {} -56 {} -61 {} -52 {} -37 {} -61 {} -27 {} -35 {} -28 {} -43 {} -31 {} -79 {} -75 {} -62 {} -75 {} -64 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -38 {} 27 {} -14 {} -8 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} -41 {} -41 {} -39 {} -10 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -36 {} -9 {} -33 {} -25 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -8 {} 0 {} -5 {} 0 {} -8 {} 0 {} 0 {} 0 {} -5 {} 0 {} -5 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -15 {} -6 {} -32 {} -22 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -10 {} -12 {} -12 {} -62 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 5 {} 13 {} 0 {} 0 {} -15 {} -15 {} -12 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -7 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -8 {} -5 {} -13 {} -37 {} -37 {} -38 {} -10 {} -16 {} -11 {} 0 {} -6 {} 0 {} -24 {} -13 {} 0 {} 0 {} -15 {} -15 {} 0 {} -13 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 5 {} -8 {} 20 {} 14 {} 50 {} 48 {} 54 {} 38 {} 57 {} -27 {} -27 {} -25 {} -27 {} -23 {} -18 {} -16 {} -16 {} -16 {} 0 {} 0 {} 0 {} -17 {} 0 {} -21 {} -21 {} -14 {} -17 {} -9 {} -7 {} -9 {} 55 {} -39 {} 0 {} 0 {} 9 {} 11 {} -21 {} 0 {} -8 {} 0 {} 0 {} -24 {} -19 {} -32 {} -45 {} -38 {} -41 {} -22 {} -24 {} -21 {} -12 {} -23 {} -13 {} -22 {} -17 {} 0 {} -11 {} -33 {} -26 {} -16 {} -31 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 22 {} +KernClass2: 14+ 24 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" + 9 ampersand + 14 zero zero.prop + 8 one.prop + 8 two.prop + 10 three.prop + 10 seven.prop + 10 eight.prop + 9 nine.prop + 10 exclamdown + 10 registered + 12 questiondown + 7 uni02BC + 8 fraction + 0 + 20 quotedbl quotesingle + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 10 parenright + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 9 backslash + 12 bracketright + 1 X + 49 comma period quotesinglbase quotedblbase ellipsis + 9 M uni1E40 + 13 J Jcircumflex + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 0 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 2 AE + 0 + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 166 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 0 + 14 zero zero.prop + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 0 {} -36 {} -29 {} -27 {} -21 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -14 {} -21 {} -21 {} -10 {} -15 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -13 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 29 {} 27 {} 35 {} 0 {} -40 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -11 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -13 {} 0 {} -25 {} 0 {} 0 {} 0 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -40 {} -32 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 66 {} -18 {} 16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} -11 {} -50 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -36 {} -29 {} -49 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 82 {} -14 {} 0 {} -11 {} 0 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -58 {} -14 {} 0 {} 0 {} 0 {} 0 {} -8 {} +LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "" "http://scripts.sil.org/OFL" +GaspTable: 1 65535 15 1 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +WidthSeparation: 78 +BeginPrivate: 0 +EndPrivate +Grid +-1000 711.0078125 m 1 + 2000 711.0078125 l 1025 +-1000 486.03515625 m 1 + 2000 486.03515625 l 1025 +-249.0234375 -196.77734375 m 25 + -249.0234375 887.20703125 l 1025 +-1000 626.953125 m 1 + 2000 626.953125 l 1025 +247.0703125 -221.6796875 m 25 + 492.1875 -221.6796875 l 1025 +-1000 806.640625 m 1 + 2000 806.640625 l 1025 +EndSplineSet +BeginChars: 65602 501 + +StartChar: space +Encoding: 32 32 0 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclam +Encoding: 33 33 1 +Width: 235 +Flags: HW +HStem: -11 107<75 160> 607 20G<106 137> +VStem: 63 107<1 85> 73 92<319 617> +LayerCount: 2 +Fore +SplineSet +63 44 m 0xe0 + 63 73 89 97 118 97 c 0 + 147 97 171 73 171 44 c 0 + 171 15 147 -11 118 -11 c 0 + 89 -11 63 15 63 44 c 0xe0 +122 627 m 0 + 152 627 165 595 165 570 c 0 + 165 543 152 412 131 168 c 1 + 127 160 124 156 115 155 c 1 + 110 157 106 160 103 166 c 1 + 89 323 73 520 73 570 c 0xd0 + 73 597 91 627 122 627 c 0 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 2 +Width: 273 +Flags: HW +HStem: 462 221<72 100 190 218> +VStem: 38 76<511 669> 155 76<511 669> +LayerCount: 2 +Fore +SplineSet +206 683 m 0 + 218 683 223 680 231 670 c 1 + 231 642 224 531 218 480 c 1 + 215 474 206 466 198 462 c 1 + 195 462 191 464 189 468 c 1 + 168 538 155 587 155 614 c 0 + 155 641 175 683 206 683 c 0 +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 3 +Width: 468 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: 174 48<58 383> 360 48<84 410> +LayerCount: 2 +Fore +SplineSet +404 360 m 1 + 249 360 249 360 83 360 c 1 + 71 360 78 404 91 408 c 9 + 410 408 l 17 + 424 408 417 366 404 360 c 1 +377 174 m 1 + 222 174 221 174 55 174 c 1 + 43 174 52 218 65 222 c 9 + 383 222 l 17 + 397 222 390 180 377 174 c 1 +365 516 m 1 + 295 75 l 2 + 294 71 286 62 271 62 c 0 + 261 62 260 66 260 66 c 1 + 331 506 l 1 + 334 515 333 519 352 519 c 0 + 361 519 362 518 365 516 c 1 +208 516 m 1 + 136 75 l 2 + 135 71 129 62 114 62 c 0 + 104 62 103 66 103 66 c 1 + 173 506 l 1 + 176 515 176 519 195 519 c 0 + 204 519 205 518 208 516 c 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 4 +Width: 486 +Flags: HW +HStem: -10 33<215 303> 592 32<186 272> +VStem: 50 35<114 168> 67 75<426 538> 278 34<623 665> 355 82<83 202> 373 31<461 511> +LayerCount: 2 +Fore +SplineSet +285 667 m 1xd8 + 293 667 319 667 319 660 c 1 + 312 618 l 1 + 335 613 358 606 393 598 c 1 + 405 548 403 490 404 465 c 1 + 399 462 394 461 387 461 c 0 + 383 461 376 463 373 466 c 1xda + 369 499 345 547 305 573 c 1 + 268 347 l 1 + 270 346 272 344 274 343 c 0 + 336 304 438 255 438 162 c 0 + 438 58 342 -10 241 -10 c 0 + 230 -10 220 -9 209 -8 c 1 + 202 -51 l 1 + 193 -51 168 -49 168 -42 c 1 + 174 -4 l 1 + 136 2 101 12 72 18 c 1 + 60 74 50 150 50 161 c 1 + 54 165 67 169 74 169 c 0 + 79 169 83 168 85 164 c 1xec + 90 141 109 64 181 35 c 1 + 221 277 l 1 + 151 318 67 368 67 459 c 0 + 67 559 157 624 251 624 c 0 + 261 624 270 624 278 623 c 1 + 285 667 l 1xd8 +253 259 m 1 + 215 26 l 1 + 224 25 233 23 243 23 c 0 + 302 23 355 64 355 137 c 0xcc + 355 206 308 229 253 259 c 1 +236 367 m 1 + 272 588 l 1 + 263 590 254 592 245 592 c 0 + 163 592 143 533 143 488 c 0xd8 + 143 428 187 397 236 367 c 1 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 5 +Width: 651 +Flags: HW +HStem: -7 24<441 509> 282 23<428 496> 317 24<159 226> 606 23<146 213> +VStem: 39 62<398 558> 265 64<390 557> 320 62<74 232> 546 64<65 233> +LayerCount: 2 +Fore +SplineSet +182 606 m 0xfd + 124 606 102 542 102 484 c 0 + 102 417 142 342 191 342 c 0 + 248 342 265 408 265 465 c 0 + 265 530 234 606 182 606 c 0xfd +186 630 m 0 + 271 630 329 558 329 473 c 0 + 329 395 275 317 186 317 c 0 + 105 317 39 387 39 473 c 0 + 39 560 99 630 186 630 c 0 +464 282 m 0 + 406 282 383 218 383 160 c 0xfb + 383 93 425 18 474 18 c 0 + 531 18 546 84 546 141 c 0 + 546 206 516 282 464 282 c 0 +468 306 m 0 + 553 306 610 233 610 148 c 0 + 610 70 557 -7 467 -7 c 0 + 386 -7 320 62 320 148 c 0 + 320 235 381 306 468 306 c 0 +584 609 m 1 + 112 0 l 2 + 108 -5 92 -12 80 -12 c 0 + 66 -12 63 -3 62 -1 c 1 + 533 609 l 2 + 538 615 547 621 553 621 c 0 + 581 621 575 618 584 609 c 1 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 6 +Width: 666 +Flags: HW +HStem: -3 42<195 334 502 593> 282 22<453 495 583 640> 605 35<256 347> +VStem: 52 84<92 231> 157 71<435 579> 376 66<454 581> +LayerCount: 2 +Fore +SplineSet +396 93 m 1 + 333 157 236 307 236 307 c 1 + 183 271 136 238 136 168 c 0 + 136 76 203 39 274 39 c 0 + 313 39 365 60 396 93 c 1 +306 605 m 0 + 264 605 229 575 229 530 c 0 + 229 482 248 433 279 376 c 1 + 340 411 376 443 376 518 c 0 + 376 562 350 605 306 605 c 0 +301 641 m 0 + 387 641 442 601 442 531 c 0 + 442 443 371 391 297 345 c 1 + 338 276 392 205 441 150 c 1 + 477 205 497 255 497 265 c 0 + 497 285 460 280 453 282 c 1 + 450 288 450 301 454 305 c 1 + 531 305 l 2 + 565 305 594 308 639 310 c 1 + 642 308 641 282 638 282 c 1 + 621 282 581 273 570 266 c 0 + 565 263 529 189 469 120 c 1 + 513 74 541 44 564 44 c 0 + 585 44 610 76 615 89 c 1 + 626 89 638 78 638 71 c 1 + 634 62 606 0 531 0 c 0 + 473 0 419 70 419 70 c 1 + 372 29 305 -3 241 -3 c 0 + 127 -3 52 55 52 154 c 0 + 52 248 132 300 214 342 c 1 + 187 389 157 440 157 507 c 0 + 157 581 219 641 301 641 c 0 +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 7 +Width: 156 +Flags: HW +HStem: 462 221<72 100> +VStem: 38 76<511 669> +LayerCount: 2 +Fore +SplineSet +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 8 +Width: 255 +Flags: HW +VStem: 36 71<120 437> +LayerCount: 2 +Fore +SplineSet +107 278 m 0 + 107 125 158 -46 250 -127 c 1 + 251 -127 238 -142 231 -146 c 1 + 117 -56 36 89 36 278 c 0 + 36 468 117 612 231 702 c 1 + 238 698 251 683 250 683 c 1 + 158 602 107 432 107 278 c 0 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 9 +Width: 255 +Flags: HW +VStem: 148 71<120 437> +LayerCount: 2 +Fore +SplineSet +220 278 m 0 + 220 89 138 -56 24 -146 c 1 + 17 -142 5 -127 6 -127 c 1 + 98 -46 148 125 148 278 c 0 + 148 432 98 602 6 683 c 1 + 5 683 17 698 24 702 c 1 + 138 612 220 468 220 278 c 0 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 10 +Width: 432 +Flags: HW +HStem: 381 60<302 384> 424 63<37 145> +VStem: 127 56<560 645> 204 24<411 440> +LayerCount: 2 +Fore +SplineSet +295 599 m 0x70 + 312 618 334 625 349 610 c 0 + 365 594 362 573 343 556 c 0 + 309 525 276 519 249 493 c 1 + 249 493 243 484 244 479 c 0 + 245 474 248 472 253 470 c 0 + 287 454 315 460 358 440 c 0 + 380 430 395 412 386 393 c 0 + 376 373 354 369 333 381 c 0xb0 + 292 403 277 433 244 451 c 1 + 244 451 235 456 230 454 c 0 + 224 451 225 446 224 441 c 0 + 220 404 233 380 228 333 c 0 + 225 309 212 289 191 292 c 0 + 170 295 159 315 164 339 c 0 + 173 385 197 409 204 446 c 1 + 204 446 205 455 201 459 c 0 + 198 463 193 463 188 462 c 0 + 152 454 133 434 86 424 c 0 + 63 419 38 425 35 446 c 0 + 31 467 48 484 72 487 c 0 + 119 493 147 477 185 482 c 1 + 185 482 194 485 196 490 c 0 + 198 495 197 499 194 504 c 0 + 175 536 150 549 127 590 c 0 + 115 611 114 635 132 645 c 0 + 152 655 171 644 182 622 c 0 + 202 579 195 547 212 513 c 1 + 212 513 217 503 222 502 c 0 + 227 501 231 504 235 508 c 0 + 260 535 264 564 295 599 c 0x70 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 11 +Width: 529 +Flags: HW +HStem: 213 55<35 236 291 495> +VStem: 236 55<7 213 268 470> +LayerCount: 2 +Fore +SplineSet +236 463 m 1 + 252 469 271 474 278 474 c 0 + 288 474 291 468 291 468 c 1 + 291 268 l 25 + 369 268 412 268 490 268 c 16 + 494 268 499 264 499 256 c 0 + 499 240 491 221 483 213 c 1 + 291 213 l 25 + 291 213 291 91 291 16 c 1 + 279 7 259 5 249 5 c 0 + 242 5 236 10 236 14 c 2 + 236 213 l 25 + 36 213 l 1 + 36 213 30 213 30 223 c 0 + 30 227 35 260 45 268 c 1 + 236 268 l 9 + 236 268 236 444 236 463 c 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 12 +Width: 196 +Flags: HW +HStem: -136 256 +VStem: 78 68<-26 63> +LayerCount: 2 +Fore +SplineSet +104 120 m 0 + 112 120 122 117 129 113 c 1 + 136 101 146 82 146 45 c 0 + 146 -11 81 -109 31 -136 c 1 + 24 -136 17 -121 17 -115 c 1 + 37 -100 78 -69 78 -7 c 0 + 78 25 46 34 46 72 c 0 + 46 93 69 120 104 120 c 0 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 13 +Width: 368 +Flags: HW +HStem: 205 62<78 307> +VStem: 57 255 +LayerCount: 2 +Fore +SplineSet +69 255 m 1 + 69 255 273 266 305 267 c 0 + 309 267 312 266 312 258 c 0 + 312 241 307 222 299 205 c 1 + 253 202 152 198 63 194 c 0 + 58 194 57 196 57 205 c 0 + 57 224 62 240 69 255 c 1 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 14 +Width: 403 +Flags: HW +LayerCount: 2 +Fore +SplineSet +360 743 m 0 + 368 743 372 737 373 734 c 1 + 85 -12 l 2 + 82 -19 69 -34 47 -34 c 0 + 32 -34 29 -27 29 -27 c 1 + 321 729 l 1 + 322 732 337 743 360 743 c 0 +EndSplineSet +EndChar + +StartChar: zero +Encoding: 48 48 15 +Width: 532 +Flags: HW +HStem: -3 36<218 310> 590 36<223 315> +VStem: 53 86<169 455> 393 86<168 460> +LayerCount: 2 +Fore +SplineSet +271 590 m 0 + 189 590 139 465 139 312 c 0 + 139 159 190 33 262 33 c 0 + 349 33 393 164 393 317 c 0 + 393 470 343 590 271 590 c 0 +266 626 m 0 + 403 626 479 482 479 312 c 0 + 479 142 401 -3 266 -3 c 0 + 133 -3 53 142 53 312 c 0 + 53 482 131 626 266 626 c 0 +EndSplineSet +EndChar + +StartChar: one +Encoding: 49 49 16 +Width: 532 +Flags: HW +HStem: -3 28<170 235 324 388> 607 20G<313 319> +VStem: 241 77<32 545> +LayerCount: 2 +Fore +SplineSet +241 113 m 2 + 241 508 l 2 + 241 536 235 545 221 545 c 0 + 206 545 168 531 152 525 c 1 + 147 529 143 535 143 542 c 0 + 143 544 142 547 145 548 c 0 + 225 584 311 627 314 627 c 2 + 316 627 l 2 + 322 627 325 616 326 611 c 1 + 326 611 318 577 318 517 c 2 + 318 113 l 2 + 318 84 318 57 323 41 c 0 + 326 30 374 25 386 25 c 1 + 390 20 391 2 386 -3 c 1 + 346 -1 315 2 277 2 c 0 + 239 2 213 -1 173 -3 c 1 + 168 2 169 20 173 25 c 1 + 185 25 232 30 235 41 c 0 + 240 57 241 84 241 113 c 2 +EndSplineSet +EndChar + +StartChar: two +Encoding: 50 50 17 +Width: 532 +Flags: HW +HStem: 0 71<160 404> 563 63<182 302> +VStem: 80 19<486 492> 346 83<369 518> +LayerCount: 2 +Fore +SplineSet +467 146 m 1 + 447 98 420 18 414 0 c 9 + 414 0 83 0 76 0 c 1 + 72 2 66 10 66 14 c 1 + 148 105 242 216 299 299 c 0 + 339 358 346 397 346 445 c 0 + 346 512 300 563 238 563 c 0 + 160 563 111 499 99 479 c 1 + 91 479 80 491 80 495 c 1 + 87 519 157 627 260 627 c 0 + 354 627 429 547 429 464 c 0 + 429 408 407 358 373 316 c 0 + 304 231 204 120 160 71 c 9 + 354 71 l 2 + 393 71 415 95 436 146 c 0 + 438 151 441 152 447 152 c 0 + 451 152 463 149 467 146 c 1 +EndSplineSet +EndChar + +StartChar: three +Encoding: 51 51 18 +Width: 532 +Flags: HW +HStem: -5 39<183 302> 311 29<176 224> 575 52<193 298> +VStem: 330 73<435 543> 365 84<122 262> +LayerCount: 2 +Fore +SplineSet +275 627 m 0xf0 + 325 627 403 582 403 502 c 0xf0 + 403 439 346 391 312 370 c 1 + 368 362 449 309 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 74 365 186 c 0xe8 + 365 265 304 323 240 323 c 0 + 219 323 194 314 182 311 c 1 + 178 316 176 322 176 330 c 0 + 176 334 176 337 178 340 c 1 + 256 358 330 400 330 484 c 0 + 330 536 290 575 234 575 c 0 + 172 575 134 518 125 511 c 1 + 119 511 113 523 113 532 c 1 + 143 577 199 627 275 627 c 0xf0 +EndSplineSet +EndChar + +StartChar: four +Encoding: 52 52 19 +Width: 532 +Flags: HW +HStem: -6 21G<357 388> 170 56<115 334 411 480> 609 20G<393 401> +VStem: 334 77<-5 170 226 512> +LayerCount: 2 +Fore +SplineSet +396 629 m 0 + 406 629 411 619 411 611 c 2 + 411 226 l 25 + 469 226 l 18 + 475 226 482 207 482 186 c 0 + 482 177 481 173 479 170 c 1 + 411 170 l 25 + 411 -1 l 1 + 411 -1 407 -6 369 -6 c 0 + 346 -6 334 -5 334 2 c 2 + 334 170 l 25 + 59 170 l 1 + 52 174 49 182 49 188 c 1 + 367 604 l 2 + 373 612 388 629 396 629 c 0 +334 512 m 25 + 115 226 l 25 + 334 226 l 25 + 334 512 l 25 +EndSplineSet +EndChar + +StartChar: five +Encoding: 53 53 20 +Width: 532 +Flags: HW +HStem: -5 39<183 302> 331 55<163 294> 543 77<193 391> 609 20G<320 413> +VStem: 365 84<124 260> +LayerCount: 2 +Fore +SplineSet +266 386 m 0xe8 + 381 386 449 296 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 73 365 186 c 0 + 365 247 322 331 209 331 c 3 + 188 331 143 324 127 316 c 1 + 123 316 119 323 119 330 c 1 + 140 439 165 560 176 620 c 1 + 320 620 l 2xe8 + 360 620 410 629 410 629 c 17xd8 + 416 625 422 623 422 618 c 0 + 422 612 411 570 393 549 c 1 + 366 546 330 543 279 543 c 2 + 279 543 210 543 197 543 c 1 + 185 484 174 422 162 367 c 1 + 189 378 240 386 266 386 c 0xe8 +EndSplineSet +EndChar + +StartChar: six +Encoding: 54 54 21 +Width: 532 +Flags: HW +HStem: -6 32<225 318> 338 48<201 324> 604 28<401 434> +VStem: 71 84<117 306> 378 83<108 278> +LayerCount: 2 +Fore +SplineSet +159 299 m 1 + 156 278 155 255 155 232 c 0 + 155 144 193 26 271 26 c 0 + 333 26 378 92 378 180 c 0 + 378 263 343 338 255 338 c 0 + 227 338 191 334 159 299 c 1 +282 386 m 0 + 419 386 461 268 461 198 c 0 + 461 89 374 -6 263 -6 c 0 + 145 -6 71 110 71 215 c 0 + 71 315 103 407 165 474 c 0 + 234 550 345 611 427 632 c 1 + 436 632 438 610 438 604 c 1 + 356 578 211 515 167 342 c 1 + 201 370 249 386 282 386 c 0 +EndSplineSet +EndChar + +StartChar: seven +Encoding: 55 55 22 +Width: 532 +Flags: HW +HStem: -5 21G<168 178> 547 71<115 410> +LayerCount: 2 +Fore +SplineSet +398 618 m 2 + 423 618 459 621 465 621 c 0 + 471 621 471 617 471 612 c 0 + 471 599 456 574 443 547 c 2 + 186 -2 l 1 + 184 -4 181 -5 176 -5 c 0 + 161 -5 133 4 133 13 c 1 + 234 165 410 547 410 547 c 9 + 162 547 l 2 + 123 547 107 524 92 472 c 0 + 91 467 86 466 80 466 c 0 + 76 466 65 469 61 472 c 1 + 78 525 95 587 102 618 c 9 + 398 618 l 2 +EndSplineSet +EndChar + +StartChar: eight +Encoding: 56 56 23 +Width: 532 +Flags: HW +HStem: -9 35<211 326> 594 34<221 314> +VStem: 82 77<75 220> 109 72<420 543> 361 70<414 549> 371 79<84 198> +LayerCount: 2 +Fore +SplineSet +266 26 m 0xe4 + 330 26 371 69 371 135 c 0 + 371 216 260 280 246 288 c 0 + 244 289 243 290 240 290 c 0 + 239 290 237 290 236 289 c 0 + 182 255 159 215 159 153 c 0 + 159 73 214 26 266 26 c 0xe4 +266 594 m 0 + 219 594 182 545 182 486 c 0 + 182 411 246 376 283 355 c 0 + 285 354 287 354 289 354 c 0 + 291 354 292 353 295 355 c 0 + 335 381 361 421 361 475 c 0xd8 + 361 532 325 594 266 594 c 0 +271 628 m 0 + 358 628 432 575 432 484 c 0xd8 + 432 408 367 364 322 336 c 1 + 318 335 319 332 322 330 c 0 + 381 297 450 233 450 163 c 0 + 450 65 362 -9 264 -9 c 0 + 157 -9 82 55 82 150 c 0xe4 + 82 236 171 287 209 311 c 0 + 212 313 211 315 209 316 c 0 + 168 340 109 397 109 469 c 0 + 109 552 185 628 271 628 c 0 +EndSplineSet +EndChar + +StartChar: nine +Encoding: 57 57 24 +Width: 532 +Flags: HW +HStem: -6 28<98 132> 240 48<208 331> 600 32<215 307> +VStem: 72 83<348 520> 377 84<320 509> +LayerCount: 2 +Fore +SplineSet +373 327 m 1 + 376 348 377 371 377 394 c 0 + 377 482 340 600 262 600 c 0 + 200 600 155 534 155 446 c 0 + 155 363 189 288 277 288 c 0 + 305 288 341 292 373 327 c 1 +94 22 m 1 + 176 48 321 111 365 284 c 1 + 331 256 283 240 250 240 c 0 + 113 240 72 358 72 428 c 0 + 72 537 159 632 270 632 c 0 + 388 632 461 516 461 411 c 0 + 461 311 429 219 367 152 c 0 + 298 76 187 15 105 -6 c 1 + 96 -6 94 16 94 22 c 1 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 25 +Width: 220 +Flags: HW +HStem: -11 107<69 153> 313 107<69 153> +VStem: 57 107<1 85 325 410> +LayerCount: 2 +Fore +SplineSet +57 44 m 0 + 57 73 82 97 111 97 c 0 + 140 97 164 73 164 44 c 0 + 164 15 140 -11 111 -11 c 0 + 82 -11 57 15 57 44 c 0 +57 368 m 0 + 57 397 82 421 111 421 c 0 + 140 421 164 397 164 368 c 0 + 164 339 140 313 111 313 c 0 + 82 313 57 339 57 368 c 0 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 26 +Width: 226 +Flags: HW +HStem: 313 107<72 156> +VStem: 66 101<25 109 325 410> 99 68<-26 63> +LayerCount: 2 +Fore +SplineSet +124 120 m 0xc0 + 132 120 142 117 149 113 c 1 + 156 101 167 82 167 45 c 0xc0 + 167 -11 102 -109 52 -136 c 1 + 45 -136 37 -121 37 -115 c 1 + 57 -100 99 -69 99 -7 c 0xa0 + 99 25 66 34 66 72 c 0 + 66 93 89 120 124 120 c 0xc0 +60 368 m 0 + 60 397 85 421 114 421 c 0 + 143 421 167 397 167 368 c 0 + 167 339 143 313 114 313 c 0 + 85 313 60 339 60 368 c 0 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 27 +Width: 480 +Flags: HW +HStem: 400 20G<412 414> +LayerCount: 2 +Fore +SplineSet +434 34 m 0 + 434 27 424 -15 418 -15 c 0 + 417 -15 415 -14 413 -13 c 2 + 47 173 l 2 + 32 181 29 195 29 212 c 0 + 29 223 37 230 47 235 c 2 + 407 418 l 2 + 409 419 411 420 412 420 c 0 + 415 420 422 410 429 374 c 0 + 430 368 426 365 426 365 c 1 + 107 204 l 1 + 431 40 l 1 + 431 40 434 39 434 34 c 0 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 28 +Width: 551 +Flags: HW +HStem: 117 54<79 474> 258 54<79 474> +LayerCount: 2 +Fore +SplineSet +467 117 m 1 + 310 117 239 117 71 117 c 1 + 59 117 72 166 86 171 c 9 + 480 171 l 17 + 494 171 481 124 467 117 c 1 +467 258 m 1 + 310 258 239 258 71 258 c 1 + 59 258 72 307 86 312 c 9 + 480 312 l 17 + 494 312 481 265 467 258 c 1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 29 +Width: 481 +Flags: HW +HStem: 400 20G<66 69> +LayerCount: 2 +Fore +SplineSet +47 34 m 0 + 47 38 50 40 50 40 c 1 + 373 204 l 1 + 56 365 l 1 + 56 365 53 366 53 373 c 0 + 53 391 64 420 68 420 c 0 + 69 420 71 419 73 418 c 2 + 435 235 l 2 + 445 230 451 223 451 212 c 0 + 451 195 450 181 435 173 c 2 + 68 -13 l 2 + 66 -14 64 -15 63 -15 c 0 + 57 -15 47 26 47 34 c 0 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 30 +Width: 347 +Flags: HW +HStem: -11 107<73 158> 535 92<63 179> 556 71<81 188> +VStem: 62 107<1 85> 94 28<156 236> 254 49<422 523> +LayerCount: 2 +Fore +SplineSet +62 44 m 0x94 + 62 73 87 97 116 97 c 0 + 145 97 169 73 169 44 c 0 + 169 15 145 -11 116 -11 c 0 + 87 -11 62 15 62 44 c 0x94 +98 535 m 0xd4 + 84 535 55 552 55 584 c 0 + 55 599 58 613 63 620 c 1 + 73 625 89 627 110 627 c 0 + 174 627 303 560 303 446 c 0 + 303 380 277 339 204 297 c 0 + 178 281 134 247 128 236 c 0 + 119 220 122 190 122 168 c 1 + 118 160 115 156 106 155 c 1 + 101 157 97 160 94 166 c 1xcc + 89 187 86 229 86 255 c 0 + 86 327 133 353 169 376 c 0 + 217 406 254 429 254 476 c 0 + 254 527 219 556 182 556 c 0xb4 + 130 556 123 535 98 535 c 0xd4 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 31 +Width: 730 +Flags: HW +HStem: -121 18<255 279> -7 42<483 570> -5 57<276 333> 380 45<381 486> 525 39<307 506> +VStem: 48 39<61 280> 189 72<64 227> 413 64<41 122> 656 39<153 369> +LayerCount: 2 +Fore +SplineSet +408 564 m 0xdf80 + 599 564 695 416 695 264 c 0 + 695 115 608 -7 494 -7 c 0xdf80 + 446 -7 413 17 413 77 c 0 + 413 89 417 114 420 122 c 1 + 401 86 339 -5 282 -5 c 3xbf80 + 221 -5 189 59 189 127 c 3 + 189 270 335 425 469 425 c 0 + 503 425 521 419 540 412 c 9 + 480 104 l 2 + 479 100 478 84 478 79 c 0 + 478 48 498 35 524 35 c 0 + 586 35 656 139 656 261 c 0 + 656 393 578 525 408 525 c 0 + 209 525 87 336 87 166 c 0 + 87 52 147 -35 217 -76 c 0 + 252 -97 271 -101 290 -104 c 1 + 290 -112 267 -121 255 -121 c 0 + 243 -121 230 -120 217 -115 c 0 + 127 -82 48 28 48 166 c 0 + 48 357 181 564 408 564 c 0xdf80 +428 380 m 3 + 353 380 262 259 262 147 c 0 + 262 86 278 52 312 52 c 3xbf80 + 361 52 429 174 448 268 c 2 + 468 367 l 17 + 459 377 441 380 428 380 c 3 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 32 +Width: 612 +Flags: HW +HStem: -3 28<-13 42 127 188 394 451 569 617> 247 38<195 370> 628 20G<314 320> +LayerCount: 2 +Fore +SplineSet +93 136 m 2 + 93 136 221 467 281 619 c 1 + 286 629 310 647 319 647 c 0 + 322 647 321 646 324 645 c 1 + 523 123 l 0 + 537 86 546 63 548 59 c 0 + 558 36 607 25 615 25 c 1 + 620 18 617 0 616 -3 c 1 + 577 -1 552 2 509 2 c 0 + 464 2 441 -1 396 -3 c 1 + 391 2 392 20 397 25 c 1 + 409 25 442 30 451 38 c 0 + 454 41 455 46 455 52 c 0 + 455 81 389 242 389 242 c 1 + 389 242 386 246 383 246 c 0 + 358 248 310 247 286 247 c 0 + 246 247 225 247 181 244 c 0 + 179 244 176 241 176 241 c 1 + 176 241 148 169 132 122 c 16 + 120 88 118 66 118 53 c 0 + 118 30 178 25 186 25 c 1 + 189 22 190 3 188 -3 c 1 + 149 -1 136 2 93 2 c 0 + 48 2 33 -1 -12 -3 c 1 + -15 0 -15 18 -12 25 c 1 + 0 25 37 31 47 44 c 0 + 67 69 79 101 93 136 c 2 +284 529 m 1 + 195 291 l 1 + 195 291 195 287 197 287 c 0 + 222 286 263 285 285 285 c 0 + 315 285 337 286 367 288 c 0 + 369 288 370 293 370 293 c 1 + 284 529 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 33 +Width: 582 +Flags: HW +HStem: -3 31<42 112 212 372> 324 37<202 353> 612 31<44 113 207 330> +VStem: 117 85<46 324 361 602> 406 89<425 554> 443 97<103 257> +LayerCount: 2 +Fore +SplineSet +202 324 m 1xf4 + 202 112 l 2 + 202 98 203 53 210 46 c 0 + 225 30 251 28 287 28 c 0 + 360 28 443 53 443 172 c 0 + 443 245 411 324 261 324 c 2 + 202 324 l 1xf4 +202 361 m 1 + 283 361 l 2 + 371 361 406 420 406 476 c 0xf8 + 406 563 346 612 255 612 c 0 + 243 612 210 612 206 603 c 0 + 201 591 202 558 202 529 c 2 + 202 361 l 1 +298 644 m 0 + 387 644 495 609 495 498 c 0xf8 + 495 423 430 369 396 356 c 0 + 394 355 393 354 396 352 c 1 + 444 350 539 291 539 194 c 0xf4 + 539 138 522 90 474 50 c 0 + 427 11 344 -2 269 -3 c 0 + 237 -3 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 + 198 642 240 644 298 644 c 0 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 34 +Width: 658 +Flags: HW +HStem: -6 32<311 478> 619 32<307 475> +VStem: 47 97<207 437> 573 33<474 526> 586 31<137 182> +LayerCount: 2 +Fore +SplineSet +377 651 m 0xe8 + 441 651 512 647 584 631 c 1 + 584 631 606 496 606 486 c 1 + 607 480 595 474 585 474 c 0 + 579 474 576 475 573 477 c 1xf0 + 567 507 545 619 382 619 c 0 + 237 619 144 472 144 335 c 0 + 144 183 227 26 397 26 c 0 + 457 26 498 48 526 73 c 0 + 564 107 579 155 586 187 c 1 + 596 188 608 185 617 179 c 1 + 617 159 597 50 583 38 c 1 + 529 8 463 -6 373 -6 c 0 + 180 -6 47 141 47 314 c 0 + 47 497 185 651 377 651 c 0xe8 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 35 +Width: 693 +Flags: HW +HStem: -3 31<42 112 209 382> 611 31<44 113 206 368> +VStem: 117 86<42 608> 547 97<193 438> +LayerCount: 2 +Fore +SplineSet +203 528 m 2 + 203 112 l 0 + 203 98 203 48 208 42 c 0 + 216 31 252 28 288 28 c 0 + 427 28 547 116 547 306 c 0 + 547 527 416 611 275 611 c 0 + 263 611 210 611 207 601 c 0 + 202 585 203 556 203 528 c 2 +301 643 m 0 + 515 643 644 507 644 326 c 0 + 644 160 563 -3 288 -3 c 0 + 245 -3 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 + 198 642 258 643 301 643 c 0 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 36 +Width: 573 +Flags: HW +HStem: -3 28<42 111> 0 33<208 426> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> +VStem: 117 85<43 303 341 606> 403 31<225 283 363 418> 471 31<511 558> +LayerCount: 2 +Fore +SplineSet +160 642 m 0x3b80 + 252 642 368 648 474 648 c 1 + 481 599 493 560 502 516 c 1 + 499 513 492 511 485 511 c 0 + 478 511 472 513 471 518 c 0 + 450 596 410 609 358 609 c 2 + 274 609 l 0 + 262 609 209 609 206 599 c 0 + 201 583 202 555 202 529 c 2 + 202 347 l 2 + 202 342 223 341 244 341 c 2 + 295 341 l 2 + 389 341 386 347 403 411 c 0 + 404 416 410 418 417 418 c 0 + 424 418 431 416 434 413 c 1 + 434 229 l 1 + 432 227 425 225 418 225 c 0 + 411 225 405 227 403 232 c 0 + 388 288 384 291 375 297 c 0 + 364 304 309 305 272 305 c 0 + 245 305 202 305 202 296 c 2 + 202 110 l 2 + 202 95 201 48 207 43 c 0 + 220 33 236 33 277 33 c 2 + 324 33 l 2 + 370 33 420 43 447 60 c 0 + 478 79 492 116 508 158 c 0 + 509 162 515 164 522 164 c 0 + 532 164 543 161 546 158 c 1 + 527 105 501 39 494 -4 c 1 + 388 -4 291 0 161 0 c 0x7b80 + 115 0 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1xb780 + 84 644 122 642 160 642 c 0x3b80 +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 37 +Width: 522 +Flags: HW +HStem: -3 28<42 111 207 286> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> +VStem: 117 85<33 303 341 606> 403 31<225 283 363 418> 471 31<511 558> +LayerCount: 2 +Fore +SplineSet +160 642 m 0xf7 + 252 642 368 648 474 648 c 1 + 481 599 493 560 502 516 c 1 + 499 513 492 511 485 511 c 0 + 478 511 472 513 471 518 c 0 + 450 596 410 609 358 609 c 2 + 274 609 l 0xf7 + 262 609 209 609 206 599 c 0 + 201 583 202 555 202 529 c 2 + 202 347 l 2 + 202 342 223 341 244 341 c 2 + 295 341 l 2 + 389 341 386 347 403 411 c 0 + 404 416 410 418 417 418 c 0 + 424 418 431 416 434 413 c 1 + 434 229 l 1 + 432 227 425 225 418 225 c 0 + 411 225 405 227 403 232 c 0 + 388 288 384 291 375 297 c 0 + 364 304 309 305 272 305 c 0 + 245 305 202 305 202 296 c 2 + 202 113 l 2 + 202 84 201 57 206 41 c 0 + 209 30 272 25 284 25 c 1 + 288 20 289 2 284 -3 c 1 + 244 -1 198 2 160 2 c 0 + 114 2 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1xef + 84 644 122 642 160 642 c 0xf7 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 38 +Width: 703 +Flags: HW +HStem: -6 32<311 481> 259 28<449 517 612 677> 619 32<307 475> +VStem: 47 97<207 437> 522 84<63 252> 573 33<474 526> +LayerCount: 2 +Fore +SplineSet +522 171 m 2xf8 + 522 200 523 227 518 243 c 0 + 515 254 463 259 451 259 c 1 + 447 264 446 282 451 287 c 1 + 491 285 527 282 565 282 c 0 + 603 282 635 285 675 287 c 1 + 680 282 679 264 675 259 c 1 + 663 259 614 254 611 243 c 0 + 606 227 606 200 606 171 c 2 + 606 171 606 112 606 102 c 0xf8 + 606 81 616 72 616 62 c 0 + 616 56 614 54 597 45 c 0 + 555 23 502 -6 373 -6 c 0 + 180 -6 47 141 47 314 c 0 + 47 497 185 651 377 651 c 0 + 441 651 512 647 584 631 c 1 + 584 631 606 496 606 486 c 1 + 607 480 595 474 585 474 c 0 + 579 474 576 475 573 477 c 1xf4 + 567 507 545 619 382 619 c 0 + 237 619 144 472 144 335 c 0 + 144 183 226 26 397 26 c 0 + 448 26 487 43 516 58 c 0 + 522 61 522 65 522 72 c 0 + 522 171 l 2xf8 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 39 +Width: 708 +Flags: HW +HStem: -3 31<42 112 206 276 433 503 598 668> 317 33<203 508> 615 31<42 112 206 276 433 503 598 668> +VStem: 117 85<35 311 354 609> 508 85<35 313 354 609> +LayerCount: 2 +Fore +SplineSet +160 642 m 0 + 198 642 234 644 274 646 c 1 + 279 641 278 620 274 615 c 1 + 262 615 209 611 206 600 c 0 + 201 584 202 556 202 527 c 2 + 202 356 l 1 + 202 354 204 354 204 354 c 1 + 252 353 302 351 357 351 c 0 + 403 351 462 353 506 354 c 1 + 506 354 508 355 508 357 c 0 + 508 527 l 2 + 508 556 508 584 503 600 c 0 + 500 611 448 615 436 615 c 1 + 432 620 431 641 436 646 c 1 + 476 644 513 642 551 642 c 0 + 589 642 625 644 665 646 c 1 + 670 641 669 620 665 615 c 1 + 653 615 601 611 598 600 c 0 + 593 584 593 556 593 527 c 2 + 593 116 l 2 + 593 87 593 60 598 44 c 0 + 601 33 653 28 665 28 c 1 + 669 23 670 2 665 -3 c 1 + 625 -1 589 2 551 2 c 0 + 513 2 476 -1 436 -3 c 1 + 431 2 432 23 436 28 c 1 + 448 28 500 33 503 44 c 0 + 508 60 508 87 508 116 c 2 + 508 310 l 1 + 508 312 506 313 506 313 c 1 + 460 314 407 317 357 317 c 0 + 221 317 207 314 203 312 c 1 + 202 311 202 310 202 310 c 1 + 202 116 l 2 + 202 87 201 60 206 44 c 0 + 209 33 262 28 274 28 c 1 + 278 23 279 2 274 -3 c 1 + 234 -1 198 2 160 2 c 0 + 122 2 84 -1 44 -3 c 1 + 39 2 40 23 44 28 c 1 + 56 28 109 33 112 44 c 0 + 117 60 117 87 117 116 c 2 + 117 527 l 2 + 117 556 117 584 112 600 c 0 + 109 611 56 615 44 615 c 1 + 40 620 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 40 +Width: 316 +Flags: HW +HStem: -3 28<42 111 207 276> 618 28<42 111 207 276> +VStem: 117 85<32 612> +LayerCount: 2 +Fore +SplineSet +160 642 m 0 + 198 642 234 644 274 646 c 1 + 279 641 278 623 274 618 c 1 + 262 618 209 614 206 603 c 0 + 201 587 202 559 202 530 c 2 + 202 113 l 2 + 202 84 201 57 206 41 c 0 + 209 30 262 25 274 25 c 1 + 278 20 279 2 274 -3 c 1 + 234 -1 198 2 160 2 c 0 + 122 2 84 -1 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 41 +Width: 305 +Flags: HW +HStem: -222 46<-40 65> 618 28<37 106 202 271> +VStem: 111 85<-52 612> +LayerCount: 2 +Fore +SplineSet +154 642 m 0 + 192 642 229 644 269 646 c 1 + 274 641 273 623 269 618 c 1 + 257 618 204 614 201 603 c 0 + 196 587 196 559 196 530 c 2 + 196 118 l 2 + 196 -126 100 -222 -32 -222 c 0 + -47 -222 -82 -213 -94 -204 c 1 + -99 -199 -102 -189 -102 -182 c 0 + -102 -152 -86 -127 -55 -127 c 0 + -37 -127 -21 -143 -8 -155 c 0 + 3 -165 19 -176 36 -176 c 0 + 77 -176 111 -123 111 113 c 2 + 111 530 l 2 + 111 559 111 587 106 603 c 0 + 103 614 51 618 39 618 c 1 + 35 623 34 641 39 646 c 1 + 79 644 116 642 154 642 c 0 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 42 +Width: 641 +Flags: HW +HStem: -3 31<42 112 206 276 576 646> 615 31<42 112 206 276 393 449 540 614> +VStem: 117 85<35 300 333 609> +LayerCount: 2 +Fore +SplineSet +160 642 m 0 + 198 642 234 644 274 646 c 1 + 279 641 278 620 274 615 c 1 + 262 615 209 611 206 600 c 0 + 201 584 202 556 202 527 c 2 + 202 333 l 1 + 223 346 272 393 312 432 c 0 + 388 507 406 526 436 564 c 0 + 442 572 450 585 450 595 c 0 + 450 619 404 616 395 616 c 1 + 392 622 392 637 395 646 c 1 + 431 644 471 641 507 641 c 0 + 550 641 574 644 613 646 c 1 + 615 640 616 616 611 616 c 0 + 602 615 547 616 514 580 c 0 + 430 488 373 437 288 355 c 1 + 286 352 286 351 288 348 c 1 + 382 239 463 141 538 70 c 0 + 562 48 591 29 645 25 c 1 + 650 20 645 -1 644 -3 c 1 + 579 -3 525 1 505 8 c 0 + 491 13 466 23 439 50 c 0 + 418 71 329 171 219 297 c 0 + 217 300 214 300 210 300 c 0 + 207 300 204 299 202 298 c 1 + 202 116 l 2 + 202 87 201 60 206 44 c 0 + 209 33 262 28 274 28 c 1 + 278 23 279 2 274 -3 c 1 + 234 -1 198 2 160 2 c 0 + 122 2 84 -1 44 -3 c 1 + 39 2 40 23 44 28 c 1 + 56 28 109 33 112 44 c 0 + 117 60 117 87 117 116 c 2 + 117 527 l 2 + 117 556 117 584 112 600 c 0 + 109 611 56 615 44 615 c 1 + 40 620 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 43 +Width: 550 +Flags: HW +HStem: -3 28<42 111> 0 33<208 428> 618 28<42 111 207 276> +VStem: 117 85<43 612> +LayerCount: 2 +Fore +SplineSet +202 113 m 2xb0 + 202 98 201 48 207 43 c 0 + 220 33 236 33 277 33 c 2 + 332 33 l 2 + 369 33 420 41 447 60 c 0 + 471 77 492 106 508 158 c 0 + 509 162 515 164 522 164 c 0 + 532 164 543 161 546 158 c 1 + 527 105 501 39 494 -4 c 1 + 388 -4 291 0 161 0 c 0x70 + 115 0 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 + 198 642 234 644 274 646 c 1 + 279 641 278 623 274 618 c 1 + 262 618 209 614 206 603 c 0 + 201 587 202 559 202 530 c 2 + 202 113 l 2xb0 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 44 +Width: 885 +Flags: HW +HStem: -3 28<24 100 167 244 618 682 785 853> 618 28<57 119 770 833> +VStem: 117 44<37 283> 130 43<363 570> 677 84<318 571> 692 79<36 374> +LayerCount: 2 +Fore +SplineSet +159 642 m 0xd0 + 192 642 217 644 238 646 c 1 + 258 584 376 317 445 143 c 0 + 446 141 448 141 449 141 c 0 + 450 141 452 142 453 145 c 0 + 511 293 546 384 603 529 c 0 + 621 574 646 646 646 646 c 1 + 677 644 704 643 723 643 c 0 + 757 643 808 644 832 646 c 1 + 833 643 835 618 835 618 c 17 + 821 618 771 611 766 601 c 0 + 762 592 761 575 761 563 c 0xd8 + 763 496 768 264 771 137 c 0 + 772 99 774 65 783 42 c 0 + 788 28 843 25 851 25 c 1 + 856 16 854 0 853 -3 c 1 + 814 -1 780 2 737 2 c 0 + 692 2 664 -1 619 -3 c 1 + 617 -1 615 17 619 25 c 1 + 631 25 671 29 683 36 c 0 + 690 40 692 63 692 77 c 0xc4 + 692 91 690 119 690 134 c 0 + 686 275 683 394 677 552 c 0 + 677 556 675 571 668 571 c 0 + 666 571 665 569 663 564 c 8 + 583 363 532 236 457 48 c 0 + 453 39 431 0 420 -2 c 0 + 417 -3 414 -1 411 0 c 1 + 173 570 l 1xd8 + 169 357 160 83 160 73 c 0 + 160 64 161 51 164 43 c 0 + 170 28 234 25 242 25 c 1 + 247 19 244 0 243 -3 c 1 + 204 -1 183 2 140 2 c 0 + 95 2 71 -1 26 -3 c 1 + 24 -1 22 17 26 25 c 1 + 38 25 96 30 105 43 c 0 + 114 56 116 71 117 92 c 0xe0 + 126 326 130 541 130 559 c 0 + 130 573 130 587 126 598 c 0 + 122 610 70 618 58 618 c 1 + 56 618 56 644 58 646 c 1 + 103 644 114 642 159 642 c 0xd0 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 45 +Width: 757 +Flags: HW +HStem: -3 28<38 109 188 257> 619 28<38 112 510 579 659 730> +VStem: 126 45<46 555> 597 45<162 599> +LayerCount: 2 +Fore +SplineSet +140 645 m 0 + 169 645 200 645 214 646 c 1 + 264 568 489 313 597 162 c 1 + 597 219 l 0 + 597 532 l 2 + 597 567 597 584 587 600 c 0 + 581 610 529 619 513 619 c 1 + 508 626 509 641 511 647 c 1 + 550 645 580 643 623 643 c 0 + 668 643 683 645 728 647 c 1 + 731 642 733 630 728 619 c 1 + 716 619 658 612 651 600 c 0 + 642 585 642 570 642 533 c 2 + 642 136 l 2 + 642 79 642 52 644 1 c 1 + 643 -4 634 -5 631 -5 c 0 + 626 -5 611 1 597 18 c 2 + 171 556 l 1 + 171 112 l 2 + 171 77 171 61 181 45 c 0 + 187 35 238 25 254 25 c 1 + 259 18 258 3 256 -3 c 1 + 217 -1 188 2 145 2 c 0 + 100 2 85 -1 40 -3 c 1 + 37 2 35 14 40 25 c 1 + 52 25 109 33 116 45 c 0 + 125 60 126 74 126 111 c 2 + 126 535 l 2 + 126 572 125 587 116 602 c 0 + 109 614 52 621 40 621 c 1 + 35 632 37 644 40 649 c 1 + 85 647 108 645 140 645 c 0 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 46 +Width: 730 +Flags: HW +HStem: -10 33<305 455> 618 33<274 427> +VStem: 48 97<209 437> 586 97<205 433> +LayerCount: 2 +Fore +SplineSet +350 618 m 0 + 204 618 145 473 145 342 c 0 + 145 191 229 23 380 23 c 0 + 526 23 586 170 586 302 c 0 + 586 453 501 618 350 618 c 0 +364 651 m 0 + 536 651 683 514 683 320 c 0 + 683 137 536 -10 364 -10 c 0 + 192 -10 48 127 48 320 c 0 + 48 503 192 651 364 651 c 0 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 47 +Width: 535 +Flags: HW +HStem: -3 28<41 111 207 276> 271 27<246 338> 612 31<43 113 206 332> +VStem: 116 85<32 602> 416 90<375 542> +LayerCount: 2 +Fore +SplineSet +506 468 m 0 + 506 349 419 271 291 271 c 0 + 280 271 259 274 249 279 c 0 + 246 281 235 289 235 301 c 0 + 235 303 236 307 240 306 c 1 + 251 303 262 299 277 299 c 0 + 355 299 416 353 416 451 c 0 + 416 548 363 612 255 612 c 0 + 243 612 210 612 206 603 c 0 + 201 591 201 558 201 529 c 2 + 201 113 l 2 + 201 84 201 57 206 41 c 0 + 209 30 261 25 273 25 c 1 + 277 20 278 2 273 -3 c 1 + 233 -1 197 2 159 2 c 0 + 121 2 84 -1 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 108 30 111 41 c 0 + 116 57 116 84 116 113 c 2 + 116 530 l 2 + 116 559 116 587 111 603 c 0 + 108 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 121 642 159 642 c 0 + 197 642 240 644 298 644 c 0 + 402 644 506 581 506 468 c 0 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 48 +Width: 729 +Flags: HW +HStem: -133 54<566 698> 618 33<274 427> +VStem: 48 97<210 437> 586 97<202 433> +LayerCount: 2 +Fore +SplineSet +350 618 m 0 + 204 618 145 473 145 342 c 0 + 145 191 229 23 380 23 c 0 + 526 23 586 170 586 302 c 0 + 586 453 501 618 350 618 c 0 +364 651 m 0 + 536 651 683 514 683 320 c 0 + 683 171 585 45 455 4 c 1 + 549 -41 568 -79 669 -79 c 0 + 708 -79 731 -75 738 -73 c 1 + 744 -73 753 -76 756 -80 c 0 + 757 -81 757 -82 757 -83 c 1 + 703 -111 655 -133 595 -133 c 0 + 491 -133 413 -32 286 0 c 0 + 150 34 48 157 48 320 c 0 + 48 503 192 651 364 651 c 0 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 49 +Width: 606 +Flags: HW +HStem: -3 28<42 111 207 276 573 632> 295 30<202 282> 612 31<43 113 206 332> +VStem: 116 85<32 295 325 602> 405 91<404 552> +LayerCount: 2 +Fore +SplineSet +298 644 m 0 + 387 644 496 586 496 475 c 0 + 496 405 428 335 363 313 c 1 + 415 227 457 169 521 84 c 0 + 549 47 577 29 631 25 c 1 + 636 20 631 -1 630 -3 c 1 + 565 -3 521 2 501 9 c 0 + 487 14 461 22 438 52 c 0 + 423 72 345 187 283 283 c 0 + 277 292 267 295 253 295 c 0 + 253 295 211 295 202 295 c 1 + 202 113 l 1 + 202 84 201 57 206 41 c 0 + 209 30 262 25 274 25 c 1 + 278 20 279 2 274 -3 c 1 + 234 -1 198 2 160 2 c 0 + 122 2 84 -1 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 116 530 l 2 + 116 559 116 587 111 603 c 0 + 108 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 121 642 159 642 c 0 + 197 642 240 644 298 644 c 0 +405 466 m 0 + 405 551 363 612 255 612 c 0 + 243 612 210 612 206 603 c 0 + 201 591 201 558 201 529 c 2 + 202 325 l 1 + 202 325 235 325 254 325 c 0 + 330 325 405 380 405 466 c 0 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 50 +Width: 490 +Flags: HW +HStem: -10 33<177 308> 617 33<188 304> +VStem: 48 36<122 180> 63 78<444 558> 363 85<88 209> +LayerCount: 2 +Fore +SplineSet +255 650 m 0xd8 + 316 650 338 638 402 623 c 1 + 410 572 414 510 416 484 c 0 + 417 477 403 474 396 474 c 0 + 393 474 388 475 385 478 c 1 + 379 527 331 617 248 617 c 0 + 168 617 142 556 142 509 c 0xd8 + 142 431 214 398 278 357 c 0 + 342 316 448 266 448 169 c 0 + 448 62 348 -10 244 -10 c 0 + 178 -10 116 9 68 19 c 1 + 56 77 48 158 48 170 c 1 + 54 176 64 182 73 182 c 0 + 80 182 83 178 84 173 c 0xe8 + 92 136 129 23 246 23 c 0 + 309 23 363 67 363 143 c 0 + 363 224 300 244 233 283 c 0 + 158 327 63 380 63 479 c 0 + 63 583 157 650 255 650 c 0xd8 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 51 +Width: 611 +Flags: HW +HStem: -3 28<189 258 354 423> 611 34<94 264 349 516> +VStem: 12 32<488 544> 264 85<32 611> 566 32<488 544> +LayerCount: 2 +Fore +SplineSet +496 646 m 0 + 512 646 543 654 555 660 c 0 + 565 665 567 665 573 662 c 1 + 580 602 588 546 599 494 c 1 + 596 491 589 486 580 487 c 0 + 575 487 568 489 566 492 c 1 + 552 560 522 611 473 611 c 2 + 349 611 l 1 + 349 113 l 2 + 349 84 349 57 354 41 c 0 + 357 30 409 25 421 25 c 1 + 425 20 426 2 421 -3 c 1 + 381 -1 345 2 307 2 c 0 + 269 2 231 -1 191 -3 c 1 + 186 2 187 20 191 25 c 1 + 203 25 256 30 259 41 c 0 + 264 57 264 84 264 113 c 2 + 264 611 l 1 + 138 611 l 2 + 89 611 58 560 44 492 c 1 + 42 489 35 487 30 487 c 0 + 21 486 15 491 12 494 c 1 + 23 546 30 602 37 662 c 1 + 43 665 54 662 60 659 c 0 + 72 653 98 646 114 646 c 0 + 199 646 405 646 496 646 c 0 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 52 +Width: 706 +Flags: HW +HStem: -4 57<275 465> 618 28<26 95 192 261 474 542 617 690> +VStem: 101 85<155 612> 557 45<153 599> +LayerCount: 2 +Fore +SplineSet +144 642 m 0 + 182 642 218 644 258 646 c 1 + 263 641 262 623 258 618 c 1 + 246 618 194 614 191 603 c 0 + 186 587 186 559 186 530 c 2 + 186 289 l 2 + 186 208 203 148 234 109 c 0 + 265 71 310 53 368 53 c 0 + 469 53 554 100 557 268 c 2 + 557 532 l 2 + 557 567 557 584 547 600 c 0 + 541 610 493 619 477 619 c 1 + 472 626 473 641 475 647 c 1 + 514 645 540 643 583 643 c 0 + 628 643 643 645 688 647 c 1 + 691 642 693 630 688 619 c 1 + 676 619 619 612 612 600 c 0 + 603 585 602 570 602 533 c 2 + 602 270 l 2 + 602 75 499 -4 347 -4 c 0 + 277 -4 216 20 173 61 c 0 + 128 104 101 167 101 245 c 2 + 101 530 l 2 + 101 559 101 587 96 603 c 0 + 93 614 41 618 29 618 c 1 + 25 623 24 641 29 646 c 1 + 69 644 106 642 144 642 c 0 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 53 +Width: 623 +Flags: HW +HStem: -2 21G<294 303> 618 28<-8 46 177 229 436 487 586 637> +LayerCount: 2 +Fore +SplineSet +107 642 m 0 + 150 642 189 644 228 646 c 1 + 230 640 230 619 226 618 c 1 + 218 618 167 613 167 586 c 0 + 167 577 173 553 185 520 c 0 + 217 432 327 134 330 126 c 1 + 336 139 427 361 486 511 c 16 + 495 533 503 561 503 579 c 0 + 503 610 451 617 439 617 c 1 + 434 619 434 641 439 646 c 1 + 475 644 505 642 541 642 c 0 + 586 642 597 644 636 646 c 1 + 639 641 637 618 634 618 c 1 + 626 618 589 613 572 593 c 0 + 560 579 538 531 523 494 c 0 + 452 314 409 213 333 31 c 0 + 322 5 309 -2 296 -2 c 0 + 292 -2 289 10 287 14 c 0 + 221 188 174 314 101 502 c 0 + 86 540 73 571 56 596 c 0 + 45 612 6 618 -6 618 c 1 + -8 618 -8 644 -6 646 c 1 + 39 644 62 642 107 642 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 54 +Width: 878 +Flags: HW +HStem: -2 21G<251 260 605 613> 618 28<-6 45 170 221 682 736 837 884> +LayerCount: 2 +Fore +SplineSet +115 642 m 0 + 158 642 181 644 220 646 c 1 + 222 640 222 619 218 618 c 1 + 210 618 160 613 160 586 c 1 + 160 580 166 556 175 522 c 0 + 197 441 247 283 288 145 c 1 + 334 296 407 518 436 614 c 0 + 442 633 460 646 471 646 c 0 + 475 646 477 642 482 631 c 1 + 489 610 573 341 638 147 c 1 + 680 296 704 374 740 512 c 0 + 746 535 751 562 751 580 c 0 + 751 611 697 618 685 618 c 1 + 680 620 680 641 685 646 c 1 + 721 644 755 642 791 642 c 0 + 836 642 844 644 883 646 c 1 + 886 641 884 618 881 618 c 1 + 873 618 839 610 819 593 c 0 + 805 581 796 559 784 519 c 0 + 730 334 696 206 644 31 c 0 + 639 13 620 -2 607 -2 c 0 + 603 -2 598 10 597 14 c 1 + 549 155 438 497 438 496 c 1 + 383 316 343 204 291 31 c 0 + 286 13 266 -2 253 -2 c 0 + 249 -2 245 10 244 14 c 0 + 187 195 147 328 87 520 c 0 + 75 559 71 581 52 599 c 0 + 38 612 8 618 -4 618 c 1 + -6 618 -6 644 -4 646 c 1 + 41 644 70 642 115 642 c 0 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 55 +Width: 652 +Flags: HW +HStem: -3 28<-8 56 151 223 407 457 587 654> 618 28<31 85 229 282 423 484 580 633> +LayerCount: 2 +Fore +SplineSet +156 642 m 0 + 204 642 242 644 281 646 c 1 + 283 640 284 618 279 618 c 0 + 265 618 220 612 220 587 c 0 + 220 579 224 570 232 558 c 2 + 345 384 l 1 + 404 462 463 537 487 576 c 0 + 491 582 491 590 491 592 c 0 + 491 601 481 617 426 617 c 1 + 422 618 421 639 424 646 c 1 + 463 643 489 641 525 641 c 0 + 576 641 609 644 632 646 c 1 + 635 641 636 623 630 617 c 1 + 622 617 572 612 543 578 c 0 + 468 488 434 446 364 352 c 1 + 556 64 l 2 + 574 36 620 25 652 25 c 1 + 656 20 654 -1 653 -3 c 1 + 614 -1 592 2 552 2 c 0 + 497 2 464 -1 409 -3 c 1 + 404 2 404 25 409 25 c 0 + 420 25 466 34 466 53 c 0 + 466 56 463 61 461 64 c 2 + 312 294 l 1 + 253 216 166 91 151 64 c 0 + 150 61 146 55 146 49 c 0 + 146 37 166 25 221 25 c 1 + 225 19 225 0 223 -3 c 1 + 187 -1 149 2 113 2 c 0 + 62 2 31 -1 -8 -3 c 1 + -11 3 -8 22 -6 25 c 1 + 2 25 72 33 99 68 c 0 + 173 163 220 230 290 324 c 1 + 252 383 153 535 153 535 c 2 + 131 570 115 587 88 603 c 0 + 71 613 45 618 33 618 c 0 + 28 618 28 641 33 646 c 1 + 81 644 108 642 156 642 c 0 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 56 +Width: 583 +Flags: HW +HStem: -3 28<180 249 345 414> 618 28<-13 41 185 238 384 445 528 589> +VStem: 255 85<32 313> +LayerCount: 2 +Fore +SplineSet +255 113 m 2 + 255 261 l 0 + 255 268 253 278 248 288 c 16 + 191 391 167 431 109 535 c 0 + 88 571 72 587 45 603 c 0 + 28 613 2 618 -10 618 c 0 + -15 618 -15 641 -10 646 c 1 + 38 644 64 642 112 642 c 0 + 160 642 198 644 237 646 c 1 + 239 640 240 618 235 618 c 0 + 221 618 177 612 177 587 c 0 + 177 579 180 571 188 558 c 2 + 324 323 l 1 + 372 409 436 541 451 576 c 0 + 452 579 454 585 454 591 c 0 + 454 601 441 617 386 617 c 1 + 383 617 382 643 384 646 c 1 + 420 644 445 641 481 641 c 0 + 532 641 550 644 589 646 c 1 + 591 640 590 617 587 617 c 1 + 579 617 522 617 500 578 c 0 + 463 513 387 372 345 294 c 8 + 339 283 341 273 341 264 c 0 + 341 205 340 113 340 113 c 2 + 340 84 339 57 344 41 c 0 + 347 30 400 25 412 25 c 1 + 416 20 417 2 412 -3 c 1 + 372 -1 336 2 298 2 c 0 + 260 2 222 -1 182 -3 c 1 + 177 2 178 20 182 25 c 1 + 194 25 247 30 250 41 c 0 + 255 57 255 84 255 113 c 2 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 57 +Width: 618 +Flags: HW +HStem: 0 34<153 476> 611 34<150 449> 634 20G<71 84 508 551> +VStem: 42 36<480 531> +LayerCount: 2 +Fore +SplineSet +211 611 m 2xd0 + 145 611 99 563 78 483 c 1 + 76 480 72 479 67 479 c 0 + 58 479 45 484 42 487 c 1 + 59 532 68 587 74 653 c 1xb0 + 95 650 128 646 154 646 c 0 + 344 646 l 2xd0 + 426 646 467 649 549 655 c 1 + 553 654 566 642 566 634 c 1xb0 + 564 626 153 34 153 34 c 25 + 408 34 l 2 + 450 34 478 48 499 69 c 0 + 527 97 540 137 551 165 c 0 + 552 167 559 168 564 168 c 0 + 574 168 584 163 588 159 c 1 + 565 82 553 50 541 0 c 1 + 541 0 240 0 52 0 c 0 + 41 0 30 8 34 14 c 2 + 449 611 l 1 + 211 611 l 2xd0 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 58 +Width: 252 +Flags: HW +HStem: -141 24<191 248> 683 24<191 248> +VStem: 77 47<-97 663> +LayerCount: 2 +Fore +SplineSet +96 701 m 0 + 176 701 245 707 245 707 c 1 + 245 707 248 704 248 698 c 0 + 248 692 244 685 238 683 c 0 + 201 670 124 660 124 660 c 1 + 124 -94 l 1 + 124 -94 201 -103 238 -116 c 0 + 244 -118 248 -126 248 -132 c 0 + 248 -138 245 -141 245 -141 c 1 + 245 -141 176 -135 96 -135 c 0 + 78 -135 77 -113 77 -112 c 2 + 77 679 l 2 + 77 680 78 701 96 701 c 0 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 59 +Width: 391 +Flags: HW +VStem: 30 330 +LayerCount: 2 +Fore +SplineSet +30 732 m 1 + 33 737 43 739 50 739 c 0 + 61 739 74 732 77 724 c 2 + 77 724 360 -11 360 -17 c 1 + 359 -21 350 -27 338 -27 c 0 + 331 -27 320 -21 317 -14 c 0 + 209 268 116 511 30 732 c 1 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 60 +Width: 253 +Flags: HW +HStem: -141 24<6 63> 683 24<6 63> +VStem: 130 47<-97 663> +LayerCount: 2 +Fore +SplineSet +158 701 m 0 + 176 701 177 680 177 679 c 2 + 177 -112 l 2 + 177 -113 176 -135 158 -135 c 0 + 78 -135 9 -141 9 -141 c 1 + 9 -141 6 -138 6 -132 c 0 + 6 -126 10 -118 16 -116 c 0 + 53 -103 130 -94 130 -94 c 1 + 130 660 l 1 + 130 660 53 670 16 683 c 0 + 10 685 6 692 6 698 c 0 + 6 704 9 707 9 707 c 1 + 9 707 78 701 158 701 c 0 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 61 +Width: 380 +Flags: HW +HStem: 413 217 +VStem: 60 244 +LayerCount: 2 +Fore +SplineSet +182 630 m 0 + 187 630 193 625 197 617 c 0 + 236 540 262 502 304 429 c 1 + 304 419 295 413 289 413 c 1 + 244 460 182 539 182 539 c 25 + 182 539 120 460 75 413 c 1 + 69 413 60 419 60 429 c 1 + 102 502 128 540 167 617 c 0 + 171 625 177 630 182 630 c 0 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 62 +Width: 493 +Flags: HW +HStem: -42 55<18 465> +LayerCount: 2 +Fore +SplineSet +14 -32 m 1 + 14 -32 18 13 28 13 c 2 + 467 13 l 2 + 469 13 471 12 471 8 c 0 + 471 -1 467 -15 461 -36 c 0 + 459 -42 455 -42 455 -42 c 1 + 21 -42 l 1 + 21 -42 14 -42 14 -32 c 1 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 63 +Width: 333 +Flags: HW +LayerCount: 2 +Fore +Refer: 323 768 N 1 0 0 1 455 25 2 +EndChar + +StartChar: a +Encoding: 97 97 64 +Width: 420 +Flags: HW +HStem: -8 53<135 207 316 379> 389 37<155 263> +VStem: 36 81<63 163> 51 79<288 345> 268 74<66 218 240 353> +LayerCount: 2 +Fore +SplineSet +183 45 m 0xe8 + 217 45 268 75 268 85 c 2 + 268 218 l 17 + 242 210 195 196 177 189 c 0 + 142 175 117 150 117 113 c 0 + 117 77 146 45 183 45 c 0xe8 +235 426 m 0 + 291 426 342 367 342 292 c 2 + 342 91 l 2 + 342 65 350 45 372 45 c 0 + 390 45 401 56 404 58 c 1 + 407 58 408 53 408 50 c 0 + 408 44 406 36 403 31 c 1 + 391 20 351 -6 330 -6 c 0 + 302 -6 277 28 271 58 c 1 + 259 46 184 -8 150 -8 c 0 + 86 -8 36 41 36 104 c 0xe8 + 36 144 64 175 85 183 c 0 + 140 203 228 231 256 244 c 0 + 266 248 268 251 268 269 c 2 + 268 295 l 2 + 268 339 232 389 184 389 c 0 + 150 389 137 366 130 328 c 0 + 124 295 108 281 84 281 c 0 + 63 281 51 302 51 322 c 0xd8 + 51 326 54 341 58 346 c 1 + 88 374 164 426 235 426 c 0 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 65 +Width: 486 +Flags: HW +HStem: -7 33<179 287> 370 5<151 222> 613 25<4 61> 658 20G<124 147> +VStem: 70 75<52 344 375 607> 366 82<131 292> +LayerCount: 2 +Fore +SplineSet +206 -7 m 0 + 191 -7 155 2 134 8 c 0 + 113 14 93 22 71 14 c 1 + 66 14 58 30 58 35 c 1 + 67 55 70 87 70 107 c 2 + 70 545 l 2 + 70 558 70 584 65 596 c 0 + 59 610 32 613 5 613 c 1 + 4 613 2 638 6 639 c 1 + 55 644 104 659 145 678 c 1 + 150 678 156 669 156 662 c 1 + 156 662 145 631 145 577 c 2 + 145 385 l 2 + 145 380 145 370 151 375 c 0 + 166 386 232 428 269 428 c 0 + 386 428 448 317 448 228 c 0 + 448 100 345 -7 206 -7 c 0 +222 370 m 0 + 197 370 159 353 150 344 c 0 + 147 341 145 338 145 333 c 2 + 145 96 l 2 + 145 54 193 26 236 26 c 0 + 306 26 366 110 366 189 c 0 + 366 302 309 370 222 370 c 0 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 66 +Width: 413 +Flags: HW +HStem: -8 64<187 314> 385 43<189 283> +VStem: 38 76<129 282> +LayerCount: 2 +Fore +SplineSet +373 377 m 0 + 373 342 353 330 336 330 c 1 + 315 330 296 355 279 366 c 0 + 258 380 249 385 224 385 c 0 + 172 385 114 325 114 222 c 0 + 114 108 184 57 272 57 c 0 + 326 57 363 91 376 106 c 1 + 377 106 384 101 384 93 c 0 + 384 88 381 80 378 75 c 0 + 360 47 311 -8 235 -8 c 0 + 117 -8 38 87 38 189 c 0 + 38 332 173 428 275 428 c 0 + 309 428 340 420 363 404 c 1 + 367 400 373 387 373 377 c 0 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 67 +Width: 502 +Flags: HW +HStem: -8 61<188 283> 20 26<428 485> 387 41<192 320> 613 25<277 334> 658 20G<397 420> +VStem: 38 82<127 285> 343 75<69 366 418 607> +LayerCount: 2 +Fore +SplineSet +271 428 m 0xbe + 292 428 328 422 338 418 c 1 + 342 418 343 426 343 438 c 2 + 343 545 l 2 + 343 559 343 584 338 596 c 0 + 332 610 305 613 278 613 c 1 + 277 613 275 638 279 639 c 1 + 328 644 377 659 418 678 c 1 + 423 678 429 669 429 662 c 1 + 429 662 418 631 418 577 c 2 + 418 159 l 2 + 418 121 419 77 425 63 c 0 + 433 45 479 47 482 46 c 0 + 484 45 485 37 485 34 c 0 + 485 32 483 20 478 20 c 0x7e + 427 17 352 -8 351 -8 c 0 + 345 -8 343 4 343 11 c 2 + 343 45 l 2 + 343 50 342 53 340 51 c 0 + 325 35 257 -8 210 -8 c 0 + 121 -8 38 82 38 201 c 0 + 38 329 183 428 271 428 c 0xbe +239 387 m 0 + 165 387 120 307 120 225 c 0 + 120 133 169 53 258 53 c 0xbe + 302 53 343 76 343 92 c 2 + 343 339 l 2 + 343 361 294 387 239 387 c 0 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 68 +Width: 419 +Flags: HW +HStem: -8 62<188 314> 242 36<113 294> 393 35<168 259> +VStem: 39 69<139 242> 295 83<279 360> +LayerCount: 2 +Fore +SplineSet +113 278 m 1 + 122 278 262 278 272 278 c 0 + 284 278 294 283 295 301 c 0 + 296 324 275 393 215 393 c 0 + 133 393 111 278 113 278 c 1 +108 242 m 1 + 105 117 182 55 268 55 c 0 + 322 55 362 91 375 106 c 1 + 376 106 383 101 383 93 c 0 + 383 88 380 80 377 75 c 0 + 359 47 310 -8 234 -8 c 0 + 119 -8 39 80 39 195 c 0 + 39 326 145 428 231 428 c 0 + 348 428 378 334 378 295 c 0 + 378 267 373 250 354 249 c 0 + 324 247 120 242 108 242 c 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 69 +Width: 300 +Flags: HW +HStem: -3 28<25 89 175 242> 382 40<40 94 169 288> 622 59<210 294> +VStem: 94 75<32 382 422 533> +LayerCount: 2 +Fore +SplineSet +263 681 m 0 + 292 681 294 679 309 669 c 1 + 313 665 319 652 319 642 c 0 + 319 607 293 603 280 603 c 0 + 270 603 262 607 251 613 c 0 + 240 619 236 622 223 622 c 0 + 193 622 168 591 169 530 c 2 + 169 409 l 1 + 285 409 l 2 + 290 409 289 404 289 398 c 0 + 289 389 285 378 276 369 c 1 + 169 369 l 1 + 169 113 l 2 + 169 84 169 57 174 41 c 0 + 177 30 228 25 240 25 c 1 + 244 20 245 2 240 -3 c 1 + 200 -1 169 2 131 2 c 0 + 93 2 68 -1 28 -3 c 1 + 23 2 24 20 28 25 c 1 + 40 25 86 30 89 41 c 0 + 94 57 94 84 94 113 c 2 + 94 369 l 1 + 37 369 l 2 + 34 369 33 375 33 378 c 0 + 33 382 57 408 58 409 c 1 + 74 409 83 409 94 409 c 1 + 94 420 94 428 94 428 c 2 + 94 570 203 681 263 681 c 0 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 70 +Width: 455 +Flags: HW +HStem: -222 38<154 288> -4 69<159 340> 134 29<173 258> 365 50<380 433> 399 29<167 254> +VStem: 22 77<-138 -59> 49 75<72 113 213 353> 301 75<211 357> 378 67<-101 -10> +LayerCount: 2 +Fore +SplineSet +210 399 m 27xeb80 + 154 399 124 341 124 285 c 27 + 124 225 158 163 218 163 c 27 + 272 163 301 220 301 274 c 27 + 301 335 271 399 210 399 c 27xeb80 +249 -4 m 0 + 231 -4 165 -5 158 -9 c 0 + 136 -22 100 -49 100 -74 c 0xe580 + 100 -137 147 -184 230 -184 c 0 + 297 -184 378 -133 378 -79 c 0 + 378 -51 342 -4 249 -4 c 0 +294 65 m 0 + 371 65 445 18 445 -37 c 0 + 445 -117 327 -221 191 -222 c 0 + 112 -223 22 -183 22 -103 c 0xf580 + 22 -60 93 -18 126 -1 c 1 + 92 10 46 41 46 90 c 1 + 63 110 112 145 130 156 c 1 + 82 182 49 233 49 281 c 0 + 49 358 120 429 214 429 c 0xeb80 + 256 429 285 414 303 407 c 0 + 322 400 316 402 325 400 c 1 + 430 415 l 1 + 437 413 439 409 439 405 c 0 + 439 397 427 371 417 365 c 1xf380 + 393 366 353 369 353 369 c 2 + 350 369 349 368 349 366 c 1 + 354 361 376 322 376 277 c 0 + 376 209 305 134 211 134 c 0 + 194 134 166 139 156 143 c 1 + 138 133 120 116 120 100 c 0 + 120 90 140 65 179 65 c 0 + 243 65 251 65 294 65 c 0 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 71 +Width: 503 +Flags: HW +HStem: -3 28<18 82 168 231 282 345 432 495> 371 57<235 320> 613 25<22 78> 658 20G<142 165> +VStem: 87 75<32 339 354 607> 351 75<32 339> +LayerCount: 2 +Fore +SplineSet +300 428 m 0 + 405 428 426 363 426 221 c 2 + 426 113 l 2 + 426 84 426 57 431 41 c 0 + 434 30 481 25 493 25 c 1 + 497 20 498 2 493 -3 c 1 + 453 -1 426 2 388 2 c 0 + 350 2 325 -1 285 -3 c 1 + 280 2 281 20 285 25 c 1 + 297 25 343 30 346 41 c 0 + 351 57 351 84 351 113 c 2 + 351 211 l 2 + 351 332 331 371 255 371 c 0 + 219 371 162 326 162 317 c 2 + 162 113 l 2 + 162 84 162 57 167 41 c 0 + 170 30 217 25 229 25 c 1 + 233 20 234 2 229 -3 c 1 + 189 -1 162 2 124 2 c 0 + 86 2 61 -1 21 -3 c 1 + 16 2 17 20 21 25 c 1 + 33 25 79 30 82 41 c 0 + 87 57 87 84 87 113 c 2 + 87 545 l 2 + 87 558 87 584 82 596 c 0 + 76 610 50 613 23 613 c 1 + 22 613 20 638 24 639 c 1 + 73 644 121 659 162 678 c 1 + 167 678 173 669 173 662 c 1 + 173 662 162 631 162 577 c 2 + 162 577 162 364 162 356 c 0 + 162 355 163 354 165 354 c 0 + 166 354 167 355 168 356 c 0 + 188 377 253 428 300 428 c 0 +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 72 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 381 44 2 +EndChar + +StartChar: j +Encoding: 106 106 73 +Width: 233 +Flags: HW +LayerCount: 2 +Fore +Refer: 315 567 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 362 44 2 +EndChar + +StartChar: k +Encoding: 107 107 74 +Width: 505 +Flags: HW +HStem: -3 28<18 82 168 231 432 501> 387 28<284 332 408 469> 613 25<22 78> 658 20G<142 165> +VStem: 87 75<32 199 229 607> +LayerCount: 2 +Fore +SplineSet +162 113 m 2 + 162 84 162 57 167 41 c 0 + 170 30 217 25 229 25 c 1 + 233 20 234 2 229 -3 c 1 + 189 -1 162 2 124 2 c 0 + 86 2 61 -1 21 -3 c 1 + 16 2 17 20 21 25 c 1 + 33 25 79 30 82 41 c 0 + 87 57 87 84 87 113 c 2 + 87 545 l 2 + 87 559 87 584 82 596 c 0 + 76 610 50 613 23 613 c 1 + 22 613 20 638 24 639 c 1 + 73 644 121 659 162 678 c 1 + 167 678 173 669 173 662 c 1 + 173 662 162 631 162 577 c 2 + 162 229 l 1 + 179 235 210 261 243 289 c 0 + 294 332 332 360 332 370 c 0 + 332 385 295 386 286 387 c 1 + 281 394 282 413 287 415 c 1 + 315 412 350 410 381 410 c 0 + 414 410 446 412 467 415 c 1 + 471 409 470 391 467 387 c 1 + 453 387 413 379 392 364 c 0 + 381 356 292 292 234 243 c 1 + 307 164 387 72 410 52 c 0 + 435 31 474 24 499 25 c 1 + 501 22 503 7 500 2 c 1 + 493 -1 463 -4 437 -4 c 0 + 379 -4 332 23 317 39 c 2 + 317 39 233 129 177 190 c 0 + 173 195 162 199 162 199 c 1 + 162 113 l 2 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 75 +Width: 249 +Flags: HW +HStem: -3 28<18 82 168 231> 613 25<22 78> 658 20G<142 165> +VStem: 87 75<32 607> +LayerCount: 2 +Fore +SplineSet +87 545 m 2 + 87 559 87 584 82 596 c 0 + 76 610 50 613 23 613 c 1 + 22 613 20 638 24 639 c 1 + 73 644 121 659 162 678 c 1 + 167 678 173 669 173 662 c 1 + 173 662 162 631 162 577 c 2 + 162 113 l 2 + 162 84 162 57 167 41 c 0 + 170 30 217 25 229 25 c 1 + 233 20 234 2 229 -3 c 1 + 189 -1 162 2 124 2 c 0 + 86 2 61 -1 21 -3 c 1 + 16 2 17 20 21 25 c 1 + 33 25 79 30 82 41 c 0 + 87 57 87 84 87 113 c 2 + 87 545 l 2 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 76 +Width: 771 +Flags: HW +HStem: -3 28<33 96 183 246 291 354 440 504 549 612 698 762> 363 25<32 92> 371 57<243 330 501 587> +VStem: 102 75<32 343> 360 75<32 339> 617 75<32 340> +LayerCount: 2 +Fore +SplineSet +312 428 m 0xbc + 370 428 407 406 423 347 c 1 + 466 386 520 428 567 428 c 0 + 672 428 693 363 693 221 c 2 + 693 113 l 2 + 693 84 693 57 698 41 c 0 + 701 30 747 25 759 25 c 1 + 763 20 764 2 759 -3 c 1 + 719 -1 693 2 655 2 c 0 + 617 2 591 -1 551 -3 c 1 + 546 2 547 20 551 25 c 1 + 563 25 610 30 613 41 c 0 + 618 57 617 84 617 113 c 2 + 617 218 l 2 + 617 315 605 371 526 371 c 0 + 478 371 430 322 430 315 c 0 + 430 314 431 305 431 303 c 0 + 434 284 435 251 435 233 c 2 + 435 113 l 2 + 435 84 435 57 440 41 c 0 + 443 30 489 25 501 25 c 1 + 505 20 506 2 501 -3 c 1 + 461 -1 435 2 397 2 c 0 + 359 2 333 -1 293 -3 c 1 + 288 2 289 20 293 25 c 1 + 305 25 352 30 355 41 c 0 + 360 57 360 84 360 113 c 2 + 360 213 l 2 + 360 332 338 371 268 371 c 0xbc + 224 371 177 330 177 317 c 2 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 231 25 243 25 c 1 + 247 20 248 2 243 -3 c 1 + 203 -1 177 2 139 2 c 0 + 101 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 291 l 2 + 102 304 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 178 371 178 363 c 0xdc + 178 362 178 359 180 359 c 0 + 181 359 182 360 183 361 c 0 + 207 382 259 428 312 428 c 0xbc +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 77 +Width: 519 +Flags: HW +HStem: -3 28<33 96 183 246 297 360 446 510> 363 25<32 92> 371 57<250 334> +VStem: 102 75<32 339> 366 75<32 339> +LayerCount: 2 +Fore +SplineSet +315 428 m 0xb8 + 420 428 441 363 441 221 c 2 + 441 113 l 2 + 441 84 441 57 446 41 c 0 + 449 30 495 25 507 25 c 1 + 511 20 512 2 507 -3 c 1 + 467 -1 441 2 403 2 c 0 + 365 2 339 -1 299 -3 c 1 + 294 2 295 20 299 25 c 1 + 311 25 358 30 361 41 c 0 + 366 57 366 84 366 113 c 2 + 366 211 l 2 + 366 332 346 371 270 371 c 0xb8 + 234 371 177 326 177 317 c 2 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 231 25 243 25 c 1 + 247 20 248 2 243 -3 c 1 + 203 -1 177 2 139 2 c 0 + 101 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 291 l 2 + 102 304 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1xd8 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 178 366 178 358 c 0 + 178 357 178 354 180 354 c 0 + 181 354 182 355 183 356 c 0 + 203 377 268 428 315 428 c 0xb8 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 78 +Width: 497 +Flags: HW +HStem: -7 32<209 313> 396 32<185 289> +VStem: 40 84<118 306> 373 84<114 302> +LayerCount: 2 +Fore +SplineSet +237 396 m 0 + 154 396 124 312 124 228 c 0 + 124 133 172 25 260 25 c 0 + 343 25 373 110 373 193 c 0 + 373 288 324 396 237 396 c 0 +248 429 m 0 + 377 429 457 338 457 216 c 0 + 457 90 368 -7 250 -7 c 0 + 121 -7 40 86 40 208 c 0 + 40 334 130 429 248 429 c 0 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 79 +Width: 498 +Flags: HW +HStem: -221 28<15 79 165 228> -8 34<192 306> 363 25<14 74> 370 58<216 310> +VStem: 84 75<-186 3 51 354> 378 82<136 294> +LayerCount: 2 +Fore +SplineSet +284 428 m 0xdc + 405 428 460 311 460 227 c 0 + 460 101 342 -8 232 -8 c 0 + 207 -8 179 -2 163 3 c 1 + 163 3 159 -2 159 -10 c 2 + 159 -104 l 2 + 159 -133 159 -161 164 -177 c 0 + 167 -188 214 -192 226 -192 c 1 + 230 -197 231 -216 226 -221 c 1 + 186 -219 159 -216 121 -216 c 0 + 83 -216 58 -219 18 -221 c 1 + 13 -216 14 -197 18 -192 c 1 + 30 -192 76 -188 79 -177 c 0 + 84 -161 84 -133 84 -104 c 2 + 84 295 l 2 + 84 308 84 334 79 346 c 0 + 72 363 23 363 16 363 c 1 + 14 365 12 384 16 389 c 1xec + 66 396 117 409 156 430 c 1 + 161 430 166 419 166 414 c 1 + 165 407 159 382 159 374 c 0 + 159 373 159 370 161 370 c 0 + 162 370 163 371 164 372 c 0 + 188 393 245 428 284 428 c 0xdc +242 370 m 0xdc + 202 370 159 346 159 332 c 2 + 159 98 l 2 + 159 47 216 26 250 26 c 0 + 331 26 378 111 378 190 c 0 + 378 306 316 370 242 370 c 0xdc +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 80 +Width: 485 +Flags: HW +HStem: -222 28<272 335 422 485> -7 59<190 281> 393 35<202 309> +VStem: 38 82<126 283> 341 75<-187 49 67 368> +LayerCount: 2 +Fore +SplineSet +250 393 m 0 + 158 393 120 289 120 229 c 0 + 120 114 182 52 263 52 c 0 + 302 52 341 76 341 91 c 2 + 341 324 l 2 + 341 366 293 393 250 393 c 0 +279 428 m 0 + 308 428 364 403 396 403 c 0 + 402 403 409 404 415 406 c 1 + 421 406 428 390 428 385 c 1 + 419 365 416 332 416 312 c 2 + 416 -105 l 2 + 416 -134 416 -162 421 -178 c 0 + 424 -189 470 -193 482 -193 c 1 + 486 -198 487 -217 482 -222 c 1 + 442 -220 416 -217 378 -217 c 0 + 340 -217 314 -220 274 -222 c 1 + 269 -217 270 -198 274 -193 c 1 + 286 -193 333 -189 336 -178 c 0 + 341 -162 341 -134 341 -105 c 2 + 341 39 l 2 + 341 44 339 53 334 49 c 0 + 319 36 254 -7 212 -7 c 0 + 100 -7 38 107 38 194 c 0 + 38 328 175 428 279 428 c 0 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 81 +Width: 374 +Flags: HW +HStem: -3 28<33 96 183 268> 352 75<246 306> 363 25<32 92> +VStem: 102 75<33 314 322 357> +LayerCount: 2 +Fore +SplineSet +296 427 m 0xd0 + 321 427 347 414 356 398 c 1 + 358 392 360 383 360 372 c 0 + 360 336 337 321 327 321 c 0 + 313 321 302 333 291 340 c 0 + 282 346 273 352 255 352 c 0xd0 + 213 352 177 286 177 264 c 2 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 254 25 266 25 c 1 + 270 20 271 2 266 -3 c 1 + 226 -1 183 2 145 2 c 0 + 107 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 295 l 2 + 102 308 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1xb0 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 177 335 177 324 c 0 + 177 320 180 321 181 322 c 0 + 200 364 252 427 296 427 c 0xd0 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 82 +Width: 360 +Flags: HW +HStem: -11 31<125 218> 396 30<144 230> +VStem: 40 26<84 115> 49 75<284 372> 242 79<54 141> 275 26<302 339> +LayerCount: 2 +Fore +SplineSet +190 427 m 0xd8 + 228 427 247 419 290 414 c 1 + 297 384 301 342 302 307 c 0 + 302 303 297 302 292 302 c 0 + 287 302 280 303 275 307 c 1 + 265 343 235 396 193 396 c 0 + 146 396 124 370 124 335 c 0xd4 + 124 284 165 269 209 243 c 0 + 253 217 321 186 321 124 c 0 + 321 45 250 -11 171 -11 c 0 + 126 -11 100 0 57 8 c 1 + 49 29 40 84 40 109 c 1 + 44 112 53 115 58 115 c 0 + 61 115 63 115 66 113 c 1xe8 + 78 72 120 21 172 21 c 0 + 212 21 242 46 242 91 c 0 + 242 151 180 170 123 203 c 0 + 84 225 49 256 49 308 c 0 + 49 380 118 427 190 427 c 0xd8 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 83 +Width: 303 +Flags: HW +HStem: -7 53<172 246> 382 40<27 81 156 286> +VStem: 81 75<61 382 422 508> +LayerCount: 2 +Fore +SplineSet +156 422 m 1 + 282 422 l 2 + 287 422 287 417 287 411 c 0 + 287 402 282 391 273 382 c 1 + 156 382 l 1 + 156 126 l 2 + 156 74 178 46 221 46 c 0 + 250 46 277 63 284 68 c 1 + 286 67 287 65 287 62 c 0 + 287 56 284 48 283 47 c 0 + 269 31 231 -7 183 -7 c 0 + 133 -7 81 15 81 99 c 2 + 81 382 l 1 + 24 382 l 2 + 21 382 20 388 20 391 c 0 + 20 395 44 421 45 422 c 1 + 61 422 70 422 81 422 c 1 + 81 433 81 475 81 483 c 1 + 100 504 139 546 141 549 c 1 + 146 554 156 554 156 550 c 2 + 156 422 l 1 +EndSplineSet +EndChar + +StartChar: u +Encoding: 117 117 84 +Width: 502 +Flags: HW +HStem: -7 55<191 279> 20 26<427 484> 385 25<14 65 277 327> 410 20G<132 152 395 415> +VStem: 79 75<90 377> 341 75<71 377> +LayerCount: 2 +Fore +SplineSet +341 312 m 2x9c + 341 325 342 350 334 365 c 0 + 324 383 292 385 279 385 c 1 + 276 388 275 405 279 410 c 1xac + 329 412 378 419 413 430 c 1 + 418 430 423 411 423 406 c 1 + 419 398 417 371 417 343 c 2 + 417 298 l 0 + 417 138 l 2 + 417 127 417 90 423 63 c 0 + 428 44 478 47 481 46 c 0 + 483 45 484 38 484 35 c 0 + 484 33 481 20 476 20 c 0x5c + 425 17 350 -8 349 -8 c 0 + 344 -8 341 1 341 8 c 2 + 341 53 l 2 + 341 58 339 58 339 58 c 1 + 312 29 251 -7 201 -7 c 0 + 97 -7 79 106 79 188 c 2 + 79 312 l 2 + 79 325 79 350 71 365 c 0 + 61 383 29 385 16 385 c 1 + 13 388 12 405 16 410 c 1xac + 66 412 115 419 150 430 c 1 + 155 430 161 415 161 410 c 1 + 157 402 154 371 154 343 c 2 + 154 301 l 0 + 154 199 l 2 + 154 95 184 48 252 48 c 0 + 295 48 341 79 341 102 c 2 + 341 312 l 2x9c +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 85 +Width: 461 +Flags: HW +HStem: -11 21G<222 227> 392 28<1 52 146 197 288 339 413 461> +LayerCount: 2 +Fore +SplineSet +100 415 m 0 + 137 415 159 418 198 420 c 1 + 200 414 199 392 194 392 c 1 + 187 392 146 390 146 375 c 0 + 146 374 146 373 147 371 c 0 + 254 107 l 1 + 254 107 304 237 341 329 c 0 + 346 341 347 353 347 360 c 0 + 347 380 323 392 290 392 c 1 + 285 392 285 415 290 420 c 1 + 320 418 329 415 369 415 c 0 + 406 415 421 418 460 420 c 1 + 464 414 461 392 457 392 c 1 + 449 392 408 385 396 358 c 0 + 338 220 306 145 249 6 c 0 + 246 -2 230 -11 224 -11 c 0 + 220 -11 216 -9 215 -7 c 0 + 152 143 110 262 56 372 c 0 + 46 393 14 392 2 392 c 1 + 0 397 -2 410 2 420 c 1 + 42 418 60 415 100 415 c 0 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 86 +Width: 704 +Flags: HW +HStem: -11 21G<220 227 469 475> 392 28<0 50 148 197 261 303 410 456 526 580 653 704> +VStem: 330 74<298 370> +LayerCount: 2 +Fore +SplineSet +99 415 m 0 + 136 415 158 418 197 420 c 1 + 199 414 199 394 195 392 c 1 + 187 392 146 390 146 369 c 0 + 146 368 148 362 151 354 c 0 + 163 323 196 243 251 114 c 1 + 301 240 330 310 330 319 c 0 + 330 326 320 354 307 373 c 0 + 296 389 276 392 264 392 c 1 + 259 395 259 415 264 420 c 1 + 304 418 313 415 353 415 c 0 + 390 415 415 418 454 420 c 1 + 456 414 457 396 453 392 c 1 + 423 392 405 383 405 360 c 0 + 405 357 405 355 407 350 c 0 + 415 324 442 256 496 117 c 1 + 534 212 568 295 582 336 c 0 + 586 347 587 355 587 359 c 0 + 587 387 551 390 529 392 c 1 + 525 395 524 415 529 420 c 1 + 569 418 574 415 614 415 c 0 + 651 415 664 418 703 420 c 1 + 704 417 706 397 700 392 c 1 + 692 392 646 385 634 356 c 0 + 580 220 549 142 492 6 c 0 + 489 -2 478 -11 472 -11 c 0 + 466 -11 461 -9 460 -7 c 2 + 352 275 l 1 + 246 8 l 2 + 245 5 233 -11 222 -11 c 0 + 218 -11 214 -9 213 -7 c 0 + 152 144 119 224 55 370 c 0 + 46 391 14 392 2 392 c 1 + -1 398 -1 414 2 420 c 1 + 42 418 59 415 99 415 c 0 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 87 +Width: 464 +Flags: HW +HStem: -3 28<11 75 145 197 255 297 403 458> 392 28<22 80 178 219 260 315 371 439> +LayerCount: 2 +Fore +SplineSet +120 415 m 0 + 160 415 197 418 219 420 c 1 + 220 416 222 398 217 392 c 1 + 201 392 178 390 178 375 c 0 + 178 372 180 368 183 363 c 2 + 247 261 l 1 + 273 302 316 353 316 373 c 0 + 316 393 268 391 262 392 c 1 + 260 393 259 416 262 420 c 1 + 302 418 320 415 360 415 c 0 + 395 415 425 418 439 420 c 1 + 440 415 440 392 438 392 c 1 + 419 391 375 387 362 370 c 0 + 327 321 274 245 265 234 c 1 + 275 219 382 61 382 61 c 2 + 402 33 429 25 457 25 c 1 + 459 25 459 1 456 -3 c 1 + 420 -1 400 2 364 2 c 0 + 322 2 298 -1 256 -3 c 1 + 253 4 254 25 257 25 c 1 + 271 26 298 31 298 43 c 0 + 298 45 297 47 296 49 c 2 + 296 49 245 132 219 171 c 1 + 200 143 175 108 148 65 c 0 + 143 57 143 52 143 47 c 0 + 143 28 174 27 196 25 c 1 + 198 25 199 2 195 -3 c 1 + 157 -1 141 2 103 2 c 0 + 66 2 48 -1 11 -3 c 1 + 9 5 10 20 13 25 c 1 + 44 30 84 33 106 63 c 2 + 106 63 196 194 201 201 c 1 + 193 213 88 370 88 370 c 2 + 77 386 42 392 22 392 c 1 + 20 392 20 414 23 420 c 1 + 55 417 82 415 120 415 c 0 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 88 +Width: 458 +Flags: HW +HStem: -223 70<43 131> 392 28<0 51 145 197 283 335 408 456> +LayerCount: 2 +Fore +SplineSet +99 415 m 0 + 136 415 180 418 197 420 c 1 + 199 414 198 392 193 392 c 1 + 186 392 145 390 145 375 c 0 + 145 374 145 373 146 371 c 0 + 250 107 l 1 + 250 107 299 237 336 329 c 0 + 341 341 342 353 342 360 c 0 + 342 380 319 392 286 392 c 1 + 281 392 281 415 286 420 c 1 + 301 418 334 415 374 415 c 0 + 411 415 436 418 456 420 c 1 + 460 414 457 392 453 392 c 1 + 445 392 403 385 391 358 c 0 + 333 220 302 145 245 6 c 0 + 221 -54 202 -116 167 -168 c 0 + 145 -201 114 -223 82 -223 c 0 + 63 -223 40 -216 40 -181 c 0 + 40 -169 46 -158 51 -152 c 1 + 97 -152 122 -150 162 -97 c 0 + 177 -76 205 -9 208 2 c 1 + 153 142 113 247 55 372 c 0 + 45 393 13 392 1 392 c 1 + -1 392 -1 418 1 420 c 1 + 20 418 59 415 99 415 c 0 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 89 +Width: 436 +Flags: HW +HStem: 0 34<133 327> 388 33<104 284> 409 20G<56 145 369 391> +VStem: 377 32<87 126> +LayerCount: 2 +Fore +SplineSet +145 421 m 2xd0 + 270 421 l 2xd0 + 323 421 349 424 389 429 c 1xb0 + 394 421 392 410 392 405 c 1 + 392 405 133 37 133 34 c 1 + 270 34 l 2 + 330 34 365 80 377 122 c 0 + 378 127 380 128 384 128 c 0 + 392 128 404 122 409 116 c 1 + 409 116 380 45 365 0 c 1 + 308 0 176 0 48 0 c 1 + 41 2 33 12 33 20 c 0 + 33 21 33 25 34 26 c 2 + 285 387 l 1 + 148 388 l 2xd0 + 92 388 82 337 74 319 c 0 + 72 315 63 311 53 311 c 0 + 47 311 42 311 42 313 c 1 + 46 328 55 377 58 429 c 1xb0 + 58 429 110 421 145 421 c 2xd0 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 90 +Width: 216 +Flags: HW +VStem: 57 43<-55 69 494 618> 102 45<117 237 325 446> +LayerCount: 2 +Fore +SplineSet +102 374 m 0 + 102 399 90 423 79 447 c 0 + 67 472 57 498 57 528 c 0 + 57 623 119 686 161 703 c 1 + 169 703 177 694 177 685 c 1 + 151 672 100 625 100 575 c 0 + 100 538 112 513 124 486 c 0 + 136 462 147 435 147 396 c 0 + 147 333 100 291 75 281 c 1 + 100 271 147 230 147 167 c 0 + 147 128 136 100 124 76 c 0 + 112 49 100 24 100 -13 c 0 + 100 -63 151 -109 177 -122 c 1 + 177 -131 169 -141 161 -141 c 1 + 119 -124 57 -61 57 34 c 0 + 57 64 67 90 79 115 c 0 + 90 139 102 163 102 188 c 0 + 102 240 66 261 28 271 c 1 + 27 273 25 277 25 281 c 0 + 25 285 27 290 28 292 c 1 + 66 302 102 322 102 374 c 0 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 91 +Width: 200 +Flags: HW +VStem: 75 50<-115 747> +LayerCount: 2 +Fore +SplineSet +125 -104 m 2 + 125 -112 82 -120 80 -120 c 0 + 73 -120 75 -116 75 -112 c 2 + 75 739 l 1 + 75 739 74 745 80 747 c 0 + 97 752 113 754 116 754 c 0 + 125 754 124 748 124 748 c 1 + 125 -104 l 2 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 92 +Width: 217 +Flags: HW +VStem: 70 45<117 237 325 446> 117 43<-55 69 494 618> +LayerCount: 2 +Fore +SplineSet +56 703 m 1 + 98 686 160 623 160 528 c 0 + 160 498 150 472 138 447 c 0 + 127 423 115 399 115 374 c 0 + 115 322 151 302 189 292 c 1 + 190 290 191 285 191 281 c 0 + 191 277 191 274 189 271 c 1 + 151 261 115 240 115 188 c 0 + 115 163 127 139 138 115 c 0 + 150 90 160 64 160 34 c 0 + 160 -61 98 -124 56 -141 c 1 + 48 -141 40 -131 40 -122 c 1 + 66 -109 117 -63 117 -13 c 0 + 117 24 105 49 93 76 c 0 + 81 100 70 128 70 167 c 0 + 70 230 117 271 142 281 c 1 + 117 291 70 333 70 396 c 0 + 70 435 81 462 93 486 c 0 + 105 513 117 538 117 575 c 0 + 117 625 66 672 40 685 c 1 + 40 694 48 703 56 703 c 1 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 93 +Width: 556 +Flags: HW +HStem: 244 50<307 462> 296 50<104 255> +LayerCount: 2 +Fore +SplineSet +265 271 m 0 + 231 284 196 296 152 296 c 0 + 114 296 86 274 63 253 c 1 + 57 256 55 262 55 270 c 0 + 55 306 130 346 182 346 c 0 + 228 346 263 332 298 319 c 0 + 332 306 366 294 412 294 c 0 + 450 294 472 315 500 337 c 1 + 506 334 509 328 509 320 c 0 + 509 288 445 244 384 244 c 0 + 336 244 301 257 265 271 c 0 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 94 +Width: 292 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclamdown +Encoding: 161 161 95 +Width: 209 +Flags: HW +HStem: 312 107<63 147> +VStem: 52 107<324 408> 58 92<-208 90> +LayerCount: 2 +Fore +SplineSet +52 365 m 0xc0 + 52 394 75 420 104 420 c 0 + 133 420 159 394 159 365 c 0 + 159 336 133 312 104 312 c 0 + 75 312 52 336 52 365 c 0xc0 +101 -218 m 0 + 71 -218 58 -186 58 -161 c 0 + 58 -134 70 -3 91 241 c 1 + 95 249 97 253 106 254 c 1 + 111 252 117 249 120 243 c 1 + 134 86 149 -111 149 -161 c 0xa0 + 149 -188 132 -218 101 -218 c 0 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 96 +Width: 435 +Flags: HW +HStem: -8 64<193 320> 385 43<195 289> +VStem: 44 76<129 282> 185 27<-42 -1> 266 27<418 460> +LayerCount: 2 +Fore +SplineSet +266 461 m 17 + 274 461 293 462 293 455 c 1 + 212 -44 l 1 + 203 -44 185 -44 185 -37 c 9 + 266 461 l 17 +EndSplineSet +Refer: 66 99 N 1 0 0 1 6 0 2 +EndChar + +StartChar: sterling +Encoding: 163 163 97 +Width: 465 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -8 64<232 352> 48 55<97 175> 299 35<66 370> 576 45<231 324> +VStem: 122 75<337 497> 145 73<184 340> 417 13<125 132> +LayerCount: 2 +Fore +SplineSet +307 621 m 0x7a + 341 621 354 614 377 598 c 1 + 381 594 387 580 387 570 c 0 + 387 535 367 523 350 523 c 1 + 329 523 313 546 298 560 c 0 + 283 574 277 576 264 576 c 0 + 213 576 197 515 197 448 c 0x7a + 197 376 218 321 218 266 c 0 + 218 193 155 117 131 95 c 1 + 145 102 154 103 165 103 c 0x76 + 219 103 232 57 319 57 c 0 + 373 57 408 118 417 136 c 1 + 418 136 430 128 430 120 c 0 + 430 116 429 111 427 105 c 0 + 416 74 360 -8 284 -8 c 0xb6 + 201 -8 164 48 113 48 c 0 + 83 48 76 10 59 -6 c 1 + 51 -6 43 7 43 16 c 0 + 43 44 77 77 92 92 c 0 + 119 119 145 178 145 226 c 0x76 + 145 247 123 359 122 390 c 0 + 118 523 215 621 307 621 c 0x7a +76 334 m 1 + 92 334 361 334 372 334 c 1 + 386 323 369 303 363 299 c 1 + 54 299 l 17 + 48 305 67 334 76 334 c 1 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 98 +Width: 560 +Flags: HW +HStem: 117 31<240 333> 452 32<225 318> +VStem: 100 71<220 388> 386 70<213 382> +LayerCount: 2 +Fore +SplineSet +287 148 m 0 + 347 148 386 214 386 287 c 0 + 386 377 333 452 271 452 c 0 + 211 452 171 385 171 312 c 0 + 171 222 225 148 287 148 c 0 +389 444 m 1 + 446 498 l 2 + 454 506 479 478 486 455 c 1 + 428 400 l 1 + 446 371 456 336 456 300 c 0 + 456 261 445 224 424 194 c 1 + 477 138 l 2 + 485 130 457 105 434 98 c 1 + 383 151 l 1 + 354 130 318 117 279 117 c 0 + 237 117 198 132 168 156 c 1 + 116 107 l 2 + 108 99 83 127 76 150 c 1 + 129 200 l 1 + 110 229 100 264 100 300 c 0 + 100 343 114 382 137 413 c 1 + 86 468 l 2 + 78 476 106 501 129 508 c 1 + 180 454 l 1 + 208 474 242 484 279 484 c 0 + 321 484 359 469 389 444 c 1 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 99 +Width: 656 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -3 28<219 288 384 453> 135 36<208 470> 213 36<208 470> 597 28<26 81 225 277 419 485 567 628> +VStem: 294 85<32 292> +LayerCount: 2 +Fore +SplineSet +218 171 m 1 + 234 171 462 171 473 171 c 1 + 487 160 470 139 464 135 c 1 + 198 135 l 17 + 192 141 209 171 218 171 c 1 +218 249 m 1 + 234 249 462 249 473 249 c 1 + 487 238 470 217 464 213 c 1 + 198 213 l 17 + 192 219 209 249 218 249 c 1 +294 113 m 2 + 294 239 l 0 + 294 246 292 257 287 267 c 16 + 230 370 206 410 148 514 c 0 + 127 550 111 565 84 581 c 0 + 67 591 41 597 29 597 c 0 + 24 597 24 620 29 625 c 1 + 77 623 103 620 151 620 c 0 + 199 620 237 623 276 625 c 1 + 278 619 279 597 274 597 c 0 + 260 597 216 590 216 565 c 0 + 216 557 219 549 227 536 c 2 + 363 304 l 1 + 411 390 479 524 492 557 c 0 + 493 560 495 565 495 571 c 0 + 495 577 477 596 422 596 c 1 + 419 596 418 621 420 624 c 1 + 456 622 484 619 520 619 c 0 + 571 619 589 622 628 624 c 1 + 630 618 629 596 626 596 c 1 + 618 596 561 596 539 557 c 0 + 502 492 427 350 385 272 c 8 + 379 261 380 251 380 242 c 0 + 380 183 379 113 379 113 c 2 + 379 84 379 57 384 41 c 0 + 387 30 439 25 451 25 c 1 + 455 20 456 2 451 -3 c 1 + 411 -1 375 2 337 2 c 0 + 299 2 261 -1 221 -3 c 1 + 216 2 217 20 221 25 c 1 + 233 25 286 30 289 41 c 0 + 294 57 294 84 294 113 c 2 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 100 +Width: 208 +Flags: HW +VStem: 80 50<-116 251 380 747> +LayerCount: 2 +Fore +SplineSet +130 391 m 2 + 130 383 87 376 85 376 c 0 + 78 376 80 380 80 384 c 2 + 80 739 l 1 + 80 739 79 745 85 747 c 0 + 102 752 119 752 122 752 c 0 + 131 752 130 746 130 746 c 1 + 130 391 l 2 +80 -112 m 2 + 80 243 l 1 + 80 243 79 249 85 251 c 0 + 102 256 119 256 122 256 c 0 + 131 256 130 250 130 250 c 1 + 130 -105 l 2 + 130 -113 87 -120 85 -120 c 0 + 78 -120 80 -116 80 -112 c 2 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 101 +Width: 430 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -76 49<110 233> 589 49<199 322> +VStem: 37 53<345 459> 117 45<482 538> 270 45<24 80> 342 53<103 217> +LayerCount: 2 +Fore +SplineSet +297 638 m 0 + 188 638 117 573 117 495 c 0 + 117 425 185 370 232 327 c 0 + 285 278 342 213 342 132 c 0 + 342 89 324 69 303 32 c 0 + 303 32 280 14 270 -3 c 24 + 264 -14 266 -22 264 -34 c 17 + 301 -9 395 103 395 175 c 0 + 395 259 332 327 281 374 c 0 + 235 416 162 491 162 536 c 0 + 162 573 211 589 241 589 c 0 + 256 589 264 585 272 581 c 0 + 282 576 291 569 308 569 c 0 + 324 569 343 590 343 604 c 0 + 343 610 342 620 337 630 c 1 + 323 636 311 638 297 638 c 0 +135 -76 m 0 + 244 -76 314 -12 314 66 c 0 + 314 136 246 191 199 234 c 0 + 146 283 90 349 90 430 c 0 + 90 473 108 492 129 529 c 0 + 129 529 152 547 162 564 c 24 + 168 575 166 584 168 596 c 17 + 131 571 37 459 37 387 c 0 + 37 303 99 235 150 188 c 0 + 196 146 270 70 270 25 c 0 + 270 -12 220 -27 190 -27 c 0 + 175 -27 167 -24 159 -20 c 0 + 149 -15 141 -8 124 -8 c 0 + 108 -8 89 -29 89 -43 c 0 + 89 -49 90 -58 95 -68 c 1 + 109 -74 121 -76 135 -76 c 0 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 102 +Width: 368 +Flags: HW +LayerCount: 2 +Fore +Refer: 331 776 N 1 0 0 1 429 -26 2 +EndChar + +StartChar: copyright +Encoding: 169 169 103 +Width: 643 +Flags: HW +HStem: 67 30<242 402> 190 31<289 407> 438 33<283 395> 570 30<242 402> +VStem: 55 32<251 417> 183 56<265 400> 559 30<254 414> +LayerCount: 2 +Fore +SplineSet +445 270 m 1 + 445 267 433 212 426 209 c 0 + 395 196 363 190 322 190 c 0 + 243 190 183 251 183 328 c 0 + 183 406 239 472 320 472 c 0 + 349 472 397 466 430 453 c 1 + 430 453 445 398 445 394 c 0 + 445 389 437 385 430 385 c 0 + 427 385 425 386 423 387 c 1 + 420 400 401 438 332 438 c 0 + 279 438 238 391 238 337 c 0 + 238 258 296 222 341 222 c 0 + 370 222 398 228 411 240 c 0 + 423 251 424 272 426 272 c 0 + 429 272 444 272 445 270 c 1 +87 334 m 0 + 87 204 192 98 322 98 c 0 + 452 98 559 204 559 334 c 0 + 559 464 452 570 322 570 c 0 + 192 570 87 464 87 334 c 0 +55 334 m 0 + 55 481 174 601 321 601 c 0 + 468 601 589 481 589 334 c 0 + 589 187 468 67 321 67 c 0 + 174 67 55 187 55 334 c 0 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 104 +Width: 336 +Flags: HW +HStem: 243 36<112 169 239 288> 514 29<123 186> +VStem: 46 56<287 365> 56 55<445 488> 206 52<293 396 412 501> +LayerCount: 2 +Fore +SplineSet +147 279 m 0xe8 + 170 279 206 305 206 312 c 2 + 206 396 l 17 + 187 390 156 381 144 376 c 0 + 120 366 102 352 102 327 c 0 + 102 302 122 279 147 279 c 0xe8 +184 543 m 0 + 222 543 258 503 258 451 c 2 + 258 312 l 2 + 258 293 262 279 278 279 c 0 + 290 279 299 287 301 288 c 1 + 303 288 304 285 304 283 c 0 + 304 279 302 274 300 271 c 1 + 292 263 264 244 249 244 c 0 + 229 244 212 267 208 288 c 1 + 200 280 148 243 125 243 c 0 + 80 243 46 277 46 321 c 0xe8 + 46 348 65 369 80 375 c 0 + 118 389 178 409 198 418 c 0 + 205 421 206 423 206 435 c 2 + 206 453 l 2 + 206 483 185 514 148 514 c 0 + 125 514 115 502 110 476 c 0 + 106 453 96 443 79 443 c 0 + 64 443 56 458 56 472 c 0xd8 + 56 475 58 485 61 488 c 1 + 82 508 134 543 184 543 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 105 +Width: 470 +Flags: HW +LayerCount: 2 +Fore +SplineSet +202 240 m 0 + 202 250 203 249 207 258 c 1 + 335 335 410 412 411 413 c 1 + 427 408 431 404 433 401 c 1 + 427 380 333 281 288 241 c 1 + 333 201 427 102 433 81 c 1 + 431 78 427 74 411 69 c 1 + 410 70 335 148 207 225 c 1 + 205 228 202 234 202 240 c 0 +26 240 m 0 + 26 250 27 249 31 258 c 1 + 159 335 234 412 235 413 c 1 + 251 408 255 404 257 401 c 1 + 251 380 157 281 112 241 c 1 + 157 201 251 102 257 81 c 1 + 255 78 251 74 235 69 c 1 + 234 70 159 148 31 225 c 1 + 29 228 26 234 26 240 c 0 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 106 +Width: 573 +Flags: HW +HStem: 355 55<48 445> +VStem: 445 59<155 355> +LayerCount: 2 +Fore +SplineSet +504 410 m 17 + 504 165 l 17 + 503 164 478 150 458 150 c 0 + 458 150 448 151 445 157 c 1 + 445 178 445 278 445 355 c 9 + 50 355 l 1 + 50 355 44 355 44 365 c 1 + 44 365 49 410 59 410 c 2 + 504 410 l 17 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 107 +Width: 643 +Flags: HW +HStem: 130 31<242 402> 266 14<199 229 279 309 439 467> 393 18<277 307> 523 16<200 229 279 333> 633 31<242 402> +VStem: 55 32<314 481> 231 46<287 393 411 519> 357 47<421 514> 559 30<317 478> +LayerCount: 2 +Fore +SplineSet +315 540 m 0 + 353 540 404 515 404 468 c 0 + 404 438 378 410 350 400 c 1 + 372 364 393 336 420 303 c 0 + 433 288 444 282 467 280 c 1 + 469 278 466 267 466 266 c 1 + 438 266 408 268 400 271 c 0 + 394 273 383 276 373 289 c 0 + 367 297 330 348 304 388 c 0 + 302 392 298 393 292 393 c 0 + 292 393 281 393 277 393 c 1 + 277 317 l 1 + 277 305 277 294 279 287 c 0 + 280 282 303 280 308 280 c 1 + 310 278 310 268 308 266 c 1 + 291 267 271 268 255 268 c 0 + 239 268 218 267 201 266 c 1 + 199 268 199 278 201 280 c 1 + 206 280 228 282 229 287 c 0 + 231 294 231 304 231 317 c 2 + 231 490 l 2 + 231 502 231 513 229 520 c 0 + 228 525 206 527 201 527 c 1 + 199 529 199 539 201 541 c 1 + 218 540 241 539 257 539 c 0 + 273 539 291 540 315 540 c 0 +357 458 m 0 + 357 495 346 523 300 523 c 0 + 295 523 281 523 279 519 c 0 + 277 514 277 501 277 488 c 2 + 277 411 l 1 + 277 411 288 411 295 411 c 16 + 330 411 357 426 357 458 c 0 +87 397 m 0 + 87 267 192 161 322 161 c 0 + 452 161 559 267 559 397 c 0 + 559 527 452 633 322 633 c 0 + 192 633 87 527 87 397 c 0 +55 397 m 0 + 55 544 174 664 321 664 c 0 + 468 664 589 544 589 397 c 0 + 589 250 468 130 321 130 c 0 + 174 130 55 250 55 397 c 0 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 108 +Width: 330 +Flags: HW +LayerCount: 2 +Fore +Refer: 327 772 N 1 0 0 1 420 62 2 +EndChar + +StartChar: degree +Encoding: 176 176 109 +Width: 267 +Flags: HW +HStem: 427 36<92 176> 583 36<92 176> +VStem: 37 36<481 565> 193 36<481 565> +LayerCount: 2 +Fore +SplineSet +73 523 m 0 + 73 490 101 463 134 463 c 0 + 167 463 193 490 193 523 c 0 + 193 556 167 583 134 583 c 0 + 101 583 73 556 73 523 c 0 +37 523 m 0 + 37 576 81 619 134 619 c 0 + 187 619 229 576 229 523 c 0 + 229 470 187 427 134 427 c 0 + 81 427 37 470 37 523 c 0 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 110 +Width: 535 +Flags: HW +HStem: 6 55<38 498> 298 55<38 239 294 498> +VStem: 239 55<92 298 353 555> +LayerCount: 2 +Fore +SplineSet +48 61 m 1 + 126 61 447 61 493 61 c 0 + 497 61 502 57 502 49 c 0 + 502 33 494 14 486 6 c 1 + 39 6 l 1 + 39 6 33 6 33 16 c 0 + 33 20 38 53 48 61 c 1 +48 353 m 1 + 239 353 l 9 + 239 353 239 529 239 548 c 1 + 255 554 274 559 281 559 c 0 + 291 559 294 553 294 553 c 1 + 294 353 l 25 + 372 353 415 353 493 353 c 16 + 497 353 502 349 502 341 c 0 + 502 325 494 306 486 298 c 1 + 294 298 l 25 + 294 298 294 176 294 101 c 1 + 282 92 262 90 252 90 c 0 + 245 90 239 95 239 99 c 2 + 239 298 l 25 + 39 298 l 1 + 39 298 33 298 33 308 c 0 + 33 312 38 345 48 353 c 1 +EndSplineSet +EndChar + +StartChar: uni00B2 +Encoding: 178 178 111 +Width: 349 +Flags: HW +HStem: 248 54<118 277> 588 44<106 206> +VStem: 222 63<461 572> +LayerCount: 2 +Fore +SplineSet +313 352 m 1 + 302 324 291 280 277 248 c 1 + 50 248 l 1 + 44 248 36 256 38 260 c 1 + 77 303 135 354 175 408 c 0 + 202 445 222 482 222 518 c 0 + 222 559 199 588 158 588 c 0 + 114 588 91 561 73 540 c 1 + 69 536 55 552 56 557 c 1 + 78 596 124 632 169 632 c 0 + 237 632 285 589 285 527 c 0 + 285 495 270 464 241 429 c 0 + 215 398 165 350 118 302 c 1 + 236 302 l 2 + 276 302 288 344 294 354 c 0 + 295 356 296 356 299 357 c 0 + 302 357 310 356 313 352 c 1 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 112 +Width: 310 +Flags: HW +HStem: 243 27<105 183> 593 38<100 176> +VStem: 188 55<502 583> 212 62<305 419> +LayerCount: 2 +Fore +SplineSet +158 631 m 0xe0 + 199 631 243 606 243 556 c 0xe0 + 243 513 208 485 187 475 c 1 + 212 475 274 441 274 377 c 0 + 274 291 200 243 115 243 c 0 + 94 243 60 249 50 258 c 1 + 50 258 38 268 38 281 c 0 + 38 301 52 313 68 313 c 0 + 85 313 92 297 104 285 c 0 + 114 275 127 271 142 271 c 0 + 183 271 212 299 212 359 c 0xd0 + 212 407 178 443 142 443 c 0 + 124 443 108 437 103 436 c 1 + 101 438 99 442 98 446 c 0 + 97 450 97 454 98 456 c 1 + 146 466 188 495 188 543 c 0 + 188 568 164 593 139 593 c 0 + 103 593 76 563 70 557 c 1 + 65 559 61 571 62 572 c 1 + 76 593 106 631 158 631 c 0xe0 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 113 +Width: 253 +Flags: HW +LayerCount: 2 +Fore +Refer: 324 769 N 1 0 0 1 361 25 2 +EndChar + +StartChar: mu +Encoding: 181 181 114 +Width: 528 +Flags: HW +HStem: -222 21G<123 134> -9 71<163 244 401 459> 407 20G<110 121 347 357> +VStem: 93 75<244 413> 93 42<106 292> 329 75<244 413> +LayerCount: 2 +Fore +SplineSet +141 218 m 0xf4 + 141 141 155 62 190 62 c 0 + 255 62 305 152 329 222 c 1 + 329 245 329 269 329 291 c 0 + 329 304 330 370 329 407 c 1 + 334 415 341 427 353 427 c 0 + 363 427 404 404 404 391 c 0 + 404 373 396 327 382 240 c 0 + 380 230 372 190 372 190 c 1 + 372 121 395 64 440 64 c 0 + 465 64 483 85 490 94 c 1 + 493 94 496 90 499 85 c 0 + 501 81 502 77 502 74 c 0 + 489 31 450 -4 411 -4 c 0 + 364 -3 350 113 348 139 c 1 + 319 71 264 -9 196 -9 c 0 + 155 -9 140 70 135 99 c 1xec + 137 75 130 -87 151 -202 c 1 + 146 -210 140 -222 128 -222 c 0 + 118 -222 76 -199 76 -186 c 0 + 76 -168 85 97 97 199 c 1 + 97 222 93 269 93 291 c 0 + 93 304 94 370 93 407 c 1 + 98 415 104 427 116 427 c 0 + 126 427 168 404 168 391 c 0 + 168 373 165 327 146 240 c 0 + 145 234 141 218 141 218 c 0xf4 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 115 +Width: 472 +Flags: HW +HStem: -4 26<153 210 363 422> 2 33<262 311> 281 39<259 313> 292 39<354 382> 597 36<259 314> 609 28<361 415> +VStem: 33 226<383 543> 221 38<42 280> 314 39<42 285 331 596> +LayerCount: 2 +Fore +SplineSet +314 325 m 1x2980 + 314 360 314 579 314 592 c 1 + 310 596 296 597 286 597 c 0 + 276 597 265 597 259 591 c 9 + 259 591 259 420 259 320 c 1 + 265 320 310 322 314 325 c 1x2980 +313 285 m 17 + 299 284 275 282 259 281 c 9 + 259 216 259 178 259 113 c 16 + 259 84 259 57 262 41 c 0 + 263 34 282 35 286 35 c 0x6180 + 293 35 311 35 312 41 c 0 + 315 57 314 84 314 113 c 2 + 313 285 l 17 +353 292 m 1x1680 + 353 223 353 182 353 113 c 16 + 353 84 352 57 357 41 c 0 + 360 30 409 22 421 22 c 1 + 423 22 423 -2 421 -4 c 1x9680 + 359 -2 352 2 290 2 c 0x4280 + 245 2 193 -2 154 -4 c 1 + 152 2 151 18 156 22 c 1 + 164 22 213 30 216 41 c 0 + 221 57 221 84 221 113 c 2 + 221 280 l 17x8180 + 96 280 33 390 33 458 c 0 + 33 564 120 637 200 637 c 0 + 258 637 237 633 295 633 c 0x8a80 + 360 633 413 638 413 638 c 1 + 418 633 417 612 412 609 c 1 + 397 609 361 602 356 590 c 0 + 354 583 354 577 354 527 c 0 + 354 467 354 350 354 331 c 1 + 359 330 401 344 401 344 c 1 + 406 344 411 342 411 338 c 0 + 410 328 390 305 383 302 c 0 + 372 297 361 293 353 292 c 1x1680 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 116 +Width: 292 +Flags: W +HStem: 200 114<102.264 189.329> +VStem: 89.5 113<213.578 301.236> +LayerCount: 2 +Fore +SplineSet +89.5 258 m 0 + 89.5 289 114.5 314 145.5 314 c 0 + 176.5 314 202.5 289 202.5 258 c 0 + 202.5 227 176.5 200 145.5 200 c 0 + 114.5 200 89.5 227 89.5 258 c 0 +EndSplineSet +EndChar + +StartChar: cedilla +Encoding: 184 184 117 +Width: 225 +Flags: HW +LayerCount: 2 +Fore +Refer: 337 807 N 1 0 0 1 358 0 2 +EndChar + +StartChar: uni00B9 +Encoding: 185 185 118 +Width: 285 +Flags: HW +HStem: 247 24<56 113 203 253> +VStem: 120 72<287 555> +LayerCount: 2 +Fore +SplineSet +120 506 m 2 + 120 551 113 556 102 556 c 0 + 90 556 67 547 47 540 c 1 + 41 543 38 551 38 557 c 0 + 38 560 39 563 41 564 c 0 + 145 607 185 637 188 637 c 2 + 189 637 l 2 + 195 637 200 617 201 614 c 1 + 201 614 192 573 192 535 c 2 + 192 332 l 2 + 192 312 193 302 200 286 c 0 + 203 279 243 272 251 272 c 1 + 254 272 254 251 251 247 c 1 + 213 248 195 250 157 250 c 0 + 119 250 98 248 60 247 c 1 + 55 250 55 271 60 271 c 0 + 72 271 111 278 114 285 c 0 + 119 298 120 320 120 330 c 2 + 120 506 l 2 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 119 +Width: 378 +Flags: HW +HStem: 241 23<160 233> 518 23<146 222> +VStem: 37 67<315 467> 274 67<316 469> +LayerCount: 2 +Fore +SplineSet +183 518 m 0 + 126 518 104 456 104 401 c 0 + 104 337 135 265 199 265 c 0 + 253 265 274 328 274 382 c 0 + 274 445 246 518 183 518 c 0 +191 541 m 0 + 276 541 342 475 342 394 c 0 + 342 313 276 241 191 241 c 0 + 106 241 37 309 37 390 c 0 + 37 473 104 541 191 541 c 0 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 120 +Width: 470 +Flags: HW +LayerCount: 2 +Fore +SplineSet +271 240 m 0 + 271 234 268 228 266 225 c 1 + 138 148 63 70 62 69 c 1 + 46 74 42 78 40 81 c 1 + 46 102 140 201 185 241 c 1 + 140 281 46 380 40 401 c 1 + 42 404 46 408 62 413 c 1 + 63 412 138 335 266 258 c 1 + 270 249 271 250 271 240 c 0 +446 240 m 0 + 446 234 443 228 441 225 c 1 + 313 148 238 70 237 69 c 1 + 221 74 218 78 216 81 c 1 + 222 102 315 201 360 241 c 1 + 315 281 222 380 216 401 c 1 + 218 404 221 408 237 413 c 1 + 238 412 313 335 441 258 c 1 + 445 249 446 250 446 240 c 0 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 121 +Width: 682 +Flags: HW +HStem: 104 44<432 543 604 637> 245 21<50 96 180 228> +VStem: 109 61<282 542> 543 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +592 397 m 0 + 598 397 601 391 601 386 c 8 + 601 291 601 233 601 143 c 1 + 608 143 625 143 635 143 c 1 + 644 135 649 118 641 104 c 1 + 627 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 588 -3 574 -3 c 0 + 561 -3 548 -2 543 2 c 9 + 543 104 l 1 + 382 104 l 1 + 377 105 373 108 372 119 c 1 + 572 386 l 2 + 576 391 584 397 592 397 c 0 +543 147 m 9 + 543 147 543 289 543 298 c 1 + 503 247 476 204 432 147 c 1 + 439 147 535 147 543 147 c 9 +170 521 m 2 + 170 328 l 2 + 170 308 172 295 177 280 c 0 + 179 273 218 267 226 267 c 1 + 231 262 228 247 227 245 c 1 + 189 246 181 248 143 248 c 0 + 105 248 91 246 53 245 c 1 + 48 248 49 263 53 267 c 1 + 65 267 99 274 102 281 c 0 + 107 294 109 316 109 326 c 2 + 109 508 l 2 + 109 527 103 542 93 542 c 0 + 82 542 66 534 46 527 c 1 + 40 530 35 539 33 545 c 1 + 52 557 82 574 165 623 c 1 + 172 621 178 614 178 607 c 1 + 178 607 170 559 170 521 c 2 +182 -12 m 0 + 172 -10 171 -4 171 -4 c 1 + 512 621 l 1 + 513 623 525 632 542 629 c 0 + 548 628 550 622 550 619 c 1 + 213 2 l 2 + 210 -4 198 -15 182 -12 c 0 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 122 +Width: 732 +Flags: HW +HStem: -1 54<505 663> 245 21<53 99 183 231> 339 44<493 592> +VStem: 112 61<282 542> 608 63<212 323> +LayerCount: 2 +Fore +SplineSet +556 383 m 0 + 624 383 672 340 672 278 c 0 + 672 246 656 215 627 180 c 0 + 601 149 552 101 505 53 c 1 + 622 53 l 2 + 662 53 675 95 681 105 c 0 + 682 107 683 107 686 108 c 0 + 689 108 696 107 699 103 c 1 + 688 75 677 31 663 -1 c 1 + 437 -1 l 1 + 431 -1 423 7 425 11 c 1 + 462 51 515 98 554 148 c 0 + 586 188 608 230 608 269 c 0 + 608 310 585 339 544 339 c 0 + 500 339 477 312 459 291 c 1 + 455 287 441 303 442 308 c 1 + 464 347 511 383 556 383 c 0 +173 521 m 2 + 173 328 l 2 + 173 308 175 295 180 280 c 0 + 182 273 221 267 229 267 c 1 + 234 262 230 247 229 245 c 1 + 191 246 184 248 146 248 c 0 + 108 248 94 246 56 245 c 1 + 51 248 52 263 56 267 c 1 + 68 267 101 274 104 281 c 0 + 109 294 112 316 112 326 c 2 + 112 508 l 2 + 112 527 106 542 96 542 c 0 + 85 542 69 534 49 527 c 1 + 43 530 38 539 36 545 c 1 + 55 557 85 574 168 623 c 1 + 175 621 181 614 181 607 c 1 + 181 607 173 559 173 521 c 2 +551 619 m 1 + 214 2 l 2 + 211 -4 199 -15 183 -12 c 0 + 173 -10 172 -4 172 -4 c 1 + 513 621 l 1 + 514 623 526 632 543 629 c 0 + 549 628 551 622 551 619 c 1 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 123 +Width: 683 +Flags: HW +HStem: 104 44<433 544 604 638> 243 27<101 179> 593 38<96 172> +VStem: 185 55<502 583> 208 62<305 419> 544 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +593 397 m 0xe4 + 599 397 602 391 602 386 c 8 + 602 291 602 233 602 143 c 1 + 609 143 626 143 636 143 c 1 + 645 135 650 118 642 104 c 1 + 628 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 589 -3 575 -3 c 0 + 562 -3 549 -2 544 2 c 9 + 544 104 l 1 + 383 104 l 1 + 378 105 374 108 373 119 c 1 + 573 386 l 2 + 577 391 585 397 593 397 c 0xe4 +544 147 m 9 + 544 147 544 289 544 298 c 1 + 504 247 477 204 433 147 c 1 + 440 147 536 147 544 147 c 9 +154 631 m 0 + 195 631 239 606 239 556 c 0xf4 + 239 513 204 485 183 475 c 1 + 208 475 271 441 271 377 c 0 + 271 291 196 243 111 243 c 0 + 90 243 56 249 46 258 c 1 + 46 258 34 268 34 281 c 0 + 34 301 48 313 64 313 c 0 + 81 313 88 297 100 285 c 0 + 110 275 123 271 138 271 c 0 + 179 271 208 299 208 359 c 0xec + 208 407 174 443 138 443 c 0 + 120 443 104 437 99 436 c 1 + 97 438 95 442 94 447 c 0 + 93 450 93 454 94 456 c 1 + 142 466 185 495 185 543 c 0xf4 + 185 568 160 593 135 593 c 0 + 99 593 72 563 66 557 c 1 + 61 559 57 571 58 572 c 1 + 72 593 102 631 154 631 c 0 +556 619 m 1 + 219 2 l 2 + 216 -4 204 -15 188 -12 c 0 + 178 -10 176 -4 176 -4 c 1 + 518 621 l 1 + 519 623 531 632 548 629 c 0 + 554 628 556 622 556 619 c 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 124 +Width: 336 +Flags: HW +HStem: -218 92<164 280> -218 71<155 261> 312 107<185 269> +VStem: 40 49<-114 -13> 174 107<324 408> 221 28<174 254> +LayerCount: 2 +Fore +SplineSet +281 365 m 0x38 + 281 336 256 312 227 312 c 0 + 198 312 174 336 174 365 c 0 + 174 394 198 420 227 420 c 0 + 256 420 281 394 281 365 c 0x38 +249 243 m 1xb4 + 254 222 257 180 257 154 c 0 + 257 82 210 56 174 33 c 0 + 126 3 89 -19 89 -66 c 0 + 89 -117 124 -146 161 -146 c 0x78 + 213 -146 220 -126 245 -126 c 0 + 259 -126 288 -143 288 -175 c 0 + 288 -190 284 -204 279 -211 c 1 + 269 -216 253 -218 232 -218 c 0 + 168 -218 40 -151 40 -37 c 0 + 40 29 66 70 139 112 c 0 + 165 128 209 162 215 173 c 0 + 224 189 221 219 221 241 c 1 + 225 249 227 253 236 254 c 1 + 241 252 246 249 249 243 c 1xb4 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 125 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 511 0 2 +EndChar + +StartChar: Aacute +Encoding: 193 193 126 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 604 0 2 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 127 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 566 -1 2 +EndChar + +StartChar: Atilde +Encoding: 195 195 128 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 400 -1 N 1 0 0 1 561 -7 2 +EndChar + +StartChar: Adieresis +Encoding: 196 196 129 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 405 -1 N 1 0 0 1 152 16 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Aring +Encoding: 197 197 130 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 399 -1 N 1 0 0 1 563 -64 2 +EndChar + +StartChar: AE +Encoding: 198 198 131 +Width: 875 +Flags: HW +HStem: -3 28<-15 34 124 183 347 403> 0 33<509 727> 251 37<260 420> 305 36<503 676> 398 20G<715 722> 609 32<348 392 507 725> +VStem: 420 83<43 249 290 303 341 553> 704 31<225 283 363 418> 772 31<511 558> +LayerCount: 2 +Fore +SplineSet +462 0 m 0x7f80 + 397 0 349 -3 349 -3 c 1 + 345 2 347 25 349 25 c 1 + 361 25 408 36 413 48 c 1 + 419 70 420 115 420 132 c 10 + 420 249 l 17 + 402 250 357 251 333 251 c 0 + 293 251 279 249 234 246 c 0 + 232 246 229 243 229 243 c 1 + 229 243 187 174 157 126 c 0 + 137 96 118 64 118 51 c 0 + 118 28 173 25 181 25 c 1 + 184 22 185 3 183 -3 c 1 + 144 -1 131 2 88 2 c 0 + 43 2 32 -1 -13 -3 c 1 + -16 0 -16 18 -13 25 c 1xbf80 + -1 25 28 35 42 44 c 0 + 66 60 95 102 115 134 c 2 + 386 570 l 2 + 389 575 393 583 393 590 c 0 + 393 608 361 614 349 614 c 1 + 344 620 347 641 349 643 c 1 + 349 643 397 642 462 642 c 0 + 554 642 669 648 775 648 c 1 + 782 599 795 560 804 516 c 1 + 801 513 793 511 786 511 c 0 + 779 511 773 513 772 518 c 0 + 751 596 711 609 659 609 c 2 + 575 609 l 0 + 563 609 511 609 508 599 c 0 + 503 583 503 555 503 529 c 2 + 503 347 l 2 + 503 342 524 341 545 341 c 2 + 597 341 l 2 + 691 341 687 347 704 411 c 0 + 705 416 712 418 719 418 c 0 + 726 418 732 416 735 413 c 1 + 735 229 l 1 + 733 227 727 225 720 225 c 0 + 713 225 706 227 704 232 c 0 + 689 288 686 291 677 297 c 0 + 666 304 610 305 573 305 c 0 + 546 305 503 305 503 296 c 2 + 503 110 l 2 + 503 95 503 48 509 43 c 0 + 522 33 537 33 578 33 c 2 + 625 33 l 2 + 671 33 721 43 748 60 c 0 + 779 79 794 116 810 158 c 0 + 811 162 816 164 823 164 c 0 + 833 164 845 161 848 158 c 1 + 829 105 802 39 795 -4 c 1 + 689 -4 592 0 462 0 c 0x7f80 +420 290 m 9 + 420 553 l 17 + 399 521 260 293 260 293 c 1 + 260 293 259 289 261 289 c 0 + 286 288 316 288 338 288 c 0 + 368 288 401 289 420 290 c 9 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 132 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 403 -1 N 1 0 0 1 156 0 2 +Refer: 34 67 N 1 0 0 1 1 0 2 +EndChar + +StartChar: Egrave +Encoding: 200 200 133 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 499 0 2 +EndChar + +StartChar: Eacute +Encoding: 201 201 134 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 592 0 2 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 135 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 546 -1 2 +EndChar + +StartChar: Edieresis +Encoding: 203 203 136 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 405 -1 N 1 0 0 1 124 16 2 +Refer: 36 69 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Igrave +Encoding: 204 204 137 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 381 0 2 +EndChar + +StartChar: Iacute +Encoding: 205 205 138 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 455 0 2 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 139 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 417 -23 2 +EndChar + +StartChar: Idieresis +Encoding: 207 207 140 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 405 -1 N 1 0 0 1 -1 16 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Eth +Encoding: 208 208 141 +Width: 693 +Flags: HW +HStem: -3 31<42 112 209 382> 304 36<46 358> 611 31<44 113 206 368> +VStem: 117 86<42 608> 547 97<193 438> +LayerCount: 2 +Fore +SplineSet +356 304 m 1 + 328 304 62 304 48 304 c 1 + 44 304 43 331 49 340 c 1 + 77 340 342 340 356 340 c 1 + 360 340 360 313 356 304 c 1 +EndSplineSet +Refer: 35 68 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ntilde +Encoding: 209 209 142 +Width: 757 +Flags: HW +LayerCount: 2 +Fore +Refer: 45 78 N 1 0 0 1 0 0 2 +Refer: 400 -1 N 1 0 0 1 603 -7 2 +EndChar + +StartChar: Ograve +Encoding: 210 210 143 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 572 0 2 +EndChar + +StartChar: Oacute +Encoding: 211 211 144 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 646 0 2 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 145 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 616 -1 2 +EndChar + +StartChar: Otilde +Encoding: 213 213 146 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 400 -1 N 1 0 0 1 613 -8 2 +EndChar + +StartChar: Odieresis +Encoding: 214 214 147 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 405 -1 N 1 0 0 1 200 16 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: multiply +Encoding: 215 215 148 +Width: 453 +Flags: HW +HStem: 399 20G<73 79 375 381> +LayerCount: 2 +Fore +SplineSet +194 241 m 1 + 54 382 l 1 + 54 396 68 419 77 419 c 0 + 80 419 82 419 84 417 c 2 + 84 417 227 278 229 276 c 9 + 371 417 l 2 + 372 418 374 419 377 419 c 0 + 386 419 398 390 398 380 c 1 + 398 380 265 247 262 244 c 1 + 263 243 398 103 398 103 c 1 + 398 88 388 63 377 63 c 0 + 375 63 371 64 370 65 c 2 + 370 65 228 208 227 209 c 1 + 225 207 81 64 81 64 c 2 + 80 63 77 62 75 62 c 0 + 66 62 54 93 54 103 c 1 + 54 103 190 237 194 241 c 1 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 149 +Width: 730 +Flags: HW +HStem: -10 33<305 455> 618 33<274 427> 632 20G<539 556> +VStem: 48 97<209 437> 586 97<205 433> +LayerCount: 2 +Fore +SplineSet +552 651 m 17xb8 + 561 649 584 636 580 630 c 9 + 172 -13 l 17 + 163 -10 140 4 144 10 c 9 + 552 651 l 17xb8 +EndSplineSet +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ugrave +Encoding: 217 217 150 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 575 0 2 +EndChar + +StartChar: Uacute +Encoding: 218 218 151 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 668 0 2 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 152 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 607 -1 2 +EndChar + +StartChar: Udieresis +Encoding: 220 220 153 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 405 -1 N 1 0 0 1 191 16 2 +Refer: 52 85 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Yacute +Encoding: 221 221 154 +Width: 583 +Flags: HW +LayerCount: 2 +Fore +Refer: 56 89 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 625 0 2 +EndChar + +StartChar: Thorn +Encoding: 222 222 155 +Width: 535 +Flags: HW +HStem: -3 28<42 111 207 276> 125 27<246 338> 459 38<220 352> 618 28<42 111 207 276> +VStem: 117 85<32 429 469 612> 416 90<228 396> +LayerCount: 2 +Fore +SplineSet +160 642 m 0 + 198 642 234 644 274 646 c 1 + 279 641 278 623 274 618 c 1 + 262 618 209 614 206 603 c 0 + 201 587 202 559 202 530 c 2 + 202 469 l 17 + 238 494 300 497 317 497 c 0 + 396 497 506 434 506 321 c 0 + 506 202 419 125 291 125 c 0 + 280 125 259 128 249 133 c 0 + 246 135 235 142 235 154 c 0 + 235 156 236 160 240 159 c 1 + 251 156 262 152 277 152 c 0 + 355 152 416 207 416 305 c 0 + 416 402 361 459 281 459 c 0 + 269 459 224 453 209 430 c 0 + 202 419 202 381 202 352 c 0 + 202 113 l 2 + 202 84 201 57 206 41 c 0 + 209 30 262 25 274 25 c 1 + 278 20 279 2 274 -3 c 1 + 234 -1 198 2 160 2 c 0 + 122 2 84 -1 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1 + 84 644 122 642 160 642 c 0 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 156 +Width: 524 +Flags: HW +HStem: -10 30<28 83 181 240 339 410> 382 40<40 94> 645 32<216 318> +VStem: 94 75<32 382 422 533> 242 57<307 368> 360 73<477 610> 433 66<55 149> +LayerCount: 2 +Fore +SplineSet +261 677 m 0xfc + 353 677 433 640 433 548 c 0xfc + 433 499 405 465 375 437 c 0 + 338 404 298 380 298 351 c 0 + 298 311 348 283 394 259 c 0 + 440 235 499 201 499 134 c 0 + 499 57 444 -10 370 -10 c 0 + 310 -10 265 15 255 32 c 1 + 255 36 256 41 256 45 c 0 + 258 71 265 89 288 89 c 0 + 306 89 315 67 328 48 c 0 + 338 33 350 21 372 21 c 0 + 407 21 433 51 433 100 c 0xfa + 433 144 394 165 351 188 c 0 + 299 216 242 245 242 317 c 0 + 242 358 281 383 314 420 c 0 + 339 447 360 482 360 536 c 0 + 360 599 326 645 264 645 c 0 + 177 645 169 544 169 464 c 0 + 169 113 l 2 + 169 84 169 57 174 41 c 0 + 177 30 228 25 240 25 c 1 + 244 20 245 2 240 -3 c 1 + 200 -1 169 2 131 2 c 0 + 93 2 68 -1 28 -3 c 1 + 23 2 24 20 28 25 c 1 + 40 25 86 30 89 41 c 0 + 94 57 94 84 94 113 c 2 + 94 382 l 1 + 37 382 l 2 + 34 382 33 388 33 391 c 0 + 33 395 57 421 58 422 c 1 + 74 422 83 422 94 422 c 1 + 94 423 94 424 94 428 c 0 + 94 547 183 677 261 677 c 0xfc +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 157 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 432 -4 2 +EndChar + +StartChar: aacute +Encoding: 225 225 158 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 459 -4 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 159 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 470 -5 2 +EndChar + +StartChar: atilde +Encoding: 227 227 160 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 326 771 N 1 0 0 1 448 -2 2 +EndChar + +StartChar: adieresis +Encoding: 228 228 161 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 442 2 2 +EndChar + +StartChar: aring +Encoding: 229 229 162 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 332 778 N 1 0 0 1 468 -1 2 +EndChar + +StartChar: ae +Encoding: 230 230 163 +Width: 637 +Flags: HW +HStem: -8 62<405 531> -8 53<135 206> 242 36<331 512> 393 35<162 254 384 476> +VStem: 36 81<63 163> 51 79<288 346> 259 67<139 215> 513 83<279 360> +LayerCount: 2 +Fore +SplineSet +177 189 m 0x7b + 142 176 117 150 117 113 c 0 + 117 77 146 45 183 45 c 0 + 218 45 272 73 272 102 c 1 + 264 119 258 158 255 188 c 0 + 254 199 253 209 253 215 c 1 + 228 206 194 195 177 189 c 0x7b +433 393 m 0 + 351 393 329 278 331 278 c 1 + 340 278 480 278 490 278 c 0 + 502 278 512 283 513 301 c 0 + 514 324 493 393 433 393 c 0 +449 428 m 0 + 566 428 596 334 596 295 c 0 + 596 267 591 250 572 249 c 0 + 542 247 338 242 326 242 c 1 + 323 117 399 55 485 55 c 0 + 539 55 580 91 593 106 c 1 + 594 106 601 101 601 93 c 0 + 601 88 598 80 595 75 c 0 + 577 47 528 -8 452 -8 c 0xb7 + 392 -8 324 19 291 75 c 1 + 268 51 184 -8 150 -8 c 0 + 86 -8 36 41 36 104 c 0x7b + 36 144 59 170 81 182 c 0 + 128 205 215 237 243 250 c 0 + 253 254 255 256 257 264 c 0 + 259 273 259 283 259 295 c 0 + 259 339 232 389 184 389 c 0 + 150 389 137 365 130 327 c 0 + 124 294 108 281 84 281 c 0 + 63 281 51 302 51 322 c 0x77 + 51 330 55 342 58 346 c 1 + 81 368 162 426 233 426 c 0 + 275 426 307 396 324 365 c 1 + 347 390 393 428 449 428 c 0 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 164 +Width: 413 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 337 807 N 1 0 0 1 484 4 2 +EndChar + +StartChar: egrave +Encoding: 232 232 165 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 447 -4 2 +EndChar + +StartChar: eacute +Encoding: 233 233 166 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 484 -4 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 167 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 472 -5 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 168 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 470 2 2 +EndChar + +StartChar: igrave +Encoding: 236 236 169 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 362 -4 2 +EndChar + +StartChar: iacute +Encoding: 237 237 170 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 394 -4 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 171 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 406 -5 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 172 +Width: 265 +Flags: HW +LayerCount: 2 +Fore +Refer: 404 -1 N 1 0 0 1 -15 28 2 +Refer: 238 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: eth +Encoding: 240 240 173 +Width: 504 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -7 32<203 306> 396 32<178 293> 648 23<84 104> +VStem: 39 84<114 309> 366 85<125 324> +LayerCount: 2 +Fore +SplineSet +338 683 m 17 + 346 678 362 658 355 652 c 9 + 125 497 l 17 + 118 502 101 522 108 528 c 9 + 338 683 l 17 +229 396 m 0 + 151 396 123 312 123 222 c 0 + 123 126 174 25 253 25 c 0 + 330 25 366 101 366 197 c 0 + 366 251 358 300 347 321 c 0 + 320 373 282 396 229 396 c 0 +241 429 m 0 + 269 429 304 425 324 413 c 1 + 302 471 261 574 79 648 c 1 + 79 655 85 672 93 672 c 1 + 178 653 270 594 339 514 c 0 + 405 437 451 341 451 241 c 3 + 451 83 353 -7 250 -7 c 0 + 117 -7 39 89 39 206 c 0 + 39 311 105 429 241 429 c 0 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 174 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 326 771 N 1 0 0 1 500 0 2 +EndChar + +StartChar: ograve +Encoding: 242 242 175 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 497 -4 2 +EndChar + +StartChar: oacute +Encoding: 243 243 176 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 521 -4 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 177 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 505 -5 2 +EndChar + +StartChar: otilde +Encoding: 245 245 178 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 326 771 N 1 0 0 1 495 -1 2 +EndChar + +StartChar: odieresis +Encoding: 246 246 179 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 493 2 2 +EndChar + +StartChar: divide +Encoding: 247 247 180 +Width: 584 +Flags: HW +HStem: 5 98<254 336> 214 55<64 524> 379 98<254 336> +VStem: 246 98<13 94 387 468> +LayerCount: 2 +Fore +SplineSet +64 214 m 17 + 64 214 59 214 59 224 c 0 + 59 228 64 261 75 269 c 9 + 248 269 346 269 519 269 c 16 + 523 269 527 265 527 257 c 0 + 527 241 520 222 512 214 c 1 + 64 214 l 17 +EndSplineSet +Refer: 330 775 N 1 0 0 1 544 -107 2 +Refer: 330 775 N 1 0 0 1 544 -481 2 +EndChar + +StartChar: oslash +Encoding: 248 248 181 +Width: 497 +Flags: HW +HStem: -8 21G<122 138> -7 32<210 314> 396 32<186 290> 407 20G<351 367> +VStem: 41 84<118 306> 374 84<114 302> +LayerCount: 2 +Fore +SplineSet +126 -8 m 17x9c + 118 -4 97 7 100 13 c 9 + 363 427 l 17 + 370 424 393 413 390 407 c 9 + 126 -8 l 17x9c +EndSplineSet +Refer: 78 111 N 1 0 0 1 1 0 2 +EndChar + +StartChar: ugrave +Encoding: 249 249 182 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 468 -4 2 +EndChar + +StartChar: uacute +Encoding: 250 250 183 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 527 -4 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 184 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 502 -5 2 +EndChar + +StartChar: udieresis +Encoding: 252 252 185 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 483 2 2 +EndChar + +StartChar: yacute +Encoding: 253 253 186 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 88 121 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 539 -4 2 +EndChar + +StartChar: thorn +Encoding: 254 254 187 +Width: 483 +Flags: HW +HStem: -221 28<1 64 150 214> -8 34<177 291> 370 58<201 295> 613 25<4 61> 658 20G<124 147> +VStem: 70 75<-186 3 51 354 370 607> 364 82<136 294> +LayerCount: 2 +Fore +SplineSet +269 428 m 0 + 390 428 446 311 446 227 c 0 + 446 101 327 -8 217 -8 c 0 + 192 -8 165 -2 149 3 c 1 + 149 3 145 -2 145 -10 c 2 + 145 -104 l 2 + 145 -133 145 -161 150 -177 c 0 + 153 -188 199 -192 211 -192 c 1 + 215 -197 216 -216 211 -221 c 1 + 171 -219 145 -216 107 -216 c 0 + 69 -216 43 -219 3 -221 c 1 + -2 -216 -1 -197 3 -192 c 1 + 15 -192 62 -188 65 -177 c 0 + 70 -161 70 -133 70 -104 c 2 + 70 545 l 2 + 70 559 70 584 65 596 c 0 + 59 610 32 613 5 613 c 1 + 4 613 2 638 6 639 c 1 + 55 644 104 659 145 678 c 1 + 150 678 156 669 156 662 c 1 + 156 662 145 631 145 577 c 2 + 145 577 145 383 145 375 c 0 + 145 374 145 370 147 370 c 0 + 148 370 149 371 150 372 c 0 + 174 393 230 428 269 428 c 0 +227 370 m 0 + 187 370 145 346 145 332 c 2 + 145 98 l 2 + 145 47 202 26 236 26 c 0 + 317 26 364 111 364 190 c 0 + 364 306 301 370 227 370 c 0 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 188 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 88 121 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 490 2 2 +EndChar + +StartChar: Amacron +Encoding: 256 256 189 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 401 -1 N 1 0 0 1 562 27 2 +EndChar + +StartChar: amacron +Encoding: 257 257 190 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 327 772 N 1 0 0 1 462 26 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 191 +Width: 612 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 567 -3 2 +EndChar + +StartChar: abreve +Encoding: 259 259 192 +Width: 420 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 461 0 2 +EndChar + +StartChar: Aogonek +Encoding: 260 260 193 +Width: 612 +Flags: HW +HStem: -218 58<450 522> -3 28<-13 42 127 188 394 451 569 617> 247 38<195 370> 628 20G<314 320> +VStem: 393 53<-156 -81> +LayerCount: 2 +Fore +SplineSet +616 -3 m 1 + 588 -2 570 0 546 1 c 1 + 503 -25 446 -75 446 -118 c 0 + 446 -133 453 -160 486 -160 c 0 + 536 -160 559 -123 565 -123 c 0 + 566 -123 570 -128 570 -136 c 0 + 570 -141 568 -149 565 -153 c 0 + 544 -181 506 -218 462 -218 c 0 + 407 -218 393 -169 393 -143 c 0 + 393 -89 449 -31 502 2 c 1 + 501 2 501 2 500 2 c 0 + 461 2 437 -1 396 -3 c 1 + 391 2 392 20 397 25 c 1 + 409 25 442 30 451 38 c 0 + 454 41 455 46 455 52 c 0 + 455 81 389 242 389 242 c 1 + 389 242 386 246 383 246 c 0 + 358 248 310 247 286 247 c 0 + 246 247 225 247 181 244 c 0 + 179 244 176 241 176 241 c 1 + 176 241 148 169 132 122 c 16 + 120 88 118 66 118 53 c 0 + 119 30 178 25 186 25 c 1 + 189 22 190 3 188 -3 c 1 + 149 -1 135 2 93 2 c 0 + 48 2 33 -1 -12 -3 c 1 + -15 0 -15 18 -12 25 c 1 + 0 25 37 31 47 44 c 0 + 67 69 79 101 93 136 c 2 + 93 136 221 467 281 619 c 1 + 286 629 310 647 319 647 c 0 + 322 647 321 646 324 645 c 1 + 523 123 l 0 + 537 86 546 63 548 59 c 0 + 558 36 607 25 615 25 c 1 + 620 18 617 0 616 -3 c 1 +284 529 m 1 + 195 291 l 1 + 195 291 195 287 197 287 c 0 + 222 286 263 285 285 285 c 0 + 315 285 337 286 367 288 c 0 + 369 288 370 293 370 293 c 1 + 284 529 l 1 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 194 +Width: 420 +Flags: HW +HStem: -218 58<262 334> -8 53<135 207> 389 37<155 263> +VStem: 36 81<63 163> 51 79<288 345> 205 53<-156 -85> 268 74<66 218 240 353> +LayerCount: 2 +Fore +SplineSet +183 45 m 0xf6 + 217 45 268 75 268 85 c 2 + 268 218 l 17 + 242 210 195 196 177 189 c 0 + 142 175 117 150 117 113 c 0 + 117 77 146 45 183 45 c 0xf6 +271 58 m 1 + 259 46 184 -8 150 -8 c 0 + 86 -8 36 41 36 104 c 0xf6 + 36 144 64 175 85 183 c 0 + 140 203 228 231 256 244 c 0 + 266 248 268 251 268 269 c 2 + 268 295 l 2 + 268 339 232 389 184 389 c 0 + 150 389 137 366 130 328 c 0 + 124 295 108 281 84 281 c 0 + 63 281 51 302 51 322 c 0xee + 51 326 54 341 58 346 c 1 + 88 374 164 426 235 426 c 0 + 291 426 342 367 342 292 c 2 + 342 91 l 2 + 342 65 350 45 372 45 c 0 + 390 45 401 56 404 58 c 1 + 407 58 408 53 408 50 c 0 + 408 44 406 36 403 31 c 1 + 393 24 380 15 368 7 c 0 + 331 -19 258 -65 258 -118 c 0 + 258 -133 265 -160 298 -160 c 0 + 348 -160 371 -123 377 -123 c 0 + 378 -123 382 -128 382 -136 c 0 + 382 -141 380 -149 377 -153 c 0 + 356 -181 318 -218 274 -218 c 0 + 219 -218 205 -169 205 -143 c 0 + 205 -100 259 -36 306 1 c 1 + 289 11 273 35 271 58 c 1 +EndSplineSet +EndChar + +StartChar: Cacute +Encoding: 262 262 195 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 689 0 2 +EndChar + +StartChar: cacute +Encoding: 263 263 196 +Width: 413 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 501 -4 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 197 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 637 -1 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 198 +Width: 413 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 486 -5 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 199 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 623 225 2 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 200 +Width: 413 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 490 44 2 +EndChar + +StartChar: Ccaron +Encoding: 268 268 201 +Width: 658 +Flags: HW +LayerCount: 2 +Fore +Refer: 406 -1 N 1 0 0 1 240 0 2 +Refer: 34 67 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 202 +Width: 413 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 492 0 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 203 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 406 -1 N 1 0 0 1 193 0 2 +Refer: 35 68 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dcaron +Encoding: 271 271 204 +Width: 519 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 335 789 N 1 0 0 1 761 40 2 +EndChar + +StartChar: Dcroat +Encoding: 272 272 205 +Width: 693 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 141 208 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dcroat +Encoding: 273 273 206 +Width: 502 +Flags: HW +HStem: -8 61<188 283> 20 26<428 485> 387 41<192 320> 513 34<209 478> 613 25<277 334> 658 20<397 420> +VStem: 38 82<127 285> 343 75<69 366 418 607> +LayerCount: 2 +Fore +SplineSet +214 547 m 1x3f + 242 547 459 547 473 547 c 0 + 477 547 479 543 479 539 c 3 + 479 534 477 521 473 513 c 1 + 445 513 227 513 213 513 c 0 + 209 513 208 520 208 524 c 3 + 208 529 210 540 214 547 c 1x3f +EndSplineSet +Refer: 67 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Emacron +Encoding: 274 274 207 +Width: 573 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 401 -1 N 1 0 0 1 511 27 2 +EndChar + +StartChar: emacron +Encoding: 275 275 208 +Width: 419 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 327 772 N 1 0 0 1 465 26 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 209 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 538 -3 2 +EndChar + +StartChar: ebreve +Encoding: 277 277 210 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 490 0 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 211 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 537 225 2 +EndChar + +StartChar: edotaccent +Encoding: 279 279 212 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 490 44 2 +EndChar + +StartChar: Eogonek +Encoding: 280 280 213 +Width: 573 +Flags: HW +HStem: -219 58<375 447> -3 28<42 111> 0 33<208 419> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> +VStem: 117 85<43 303 341 606> 318 53<-157 -84> 403 31<225 283 363 418> 471 31<511 558> +LayerCount: 2 +Fore +SplineSet +160 642 m 0x9de0 + 252 642 368 648 474 648 c 1 + 481 599 493 560 502 516 c 1 + 499 513 492 511 485 511 c 0 + 478 511 472 513 471 518 c 0 + 450 596 410 609 358 609 c 2 + 274 609 l 0 + 262 609 209 609 206 599 c 0 + 201 583 202 555 202 529 c 2 + 202 347 l 2 + 202 342 223 341 244 341 c 2 + 295 341 l 2 + 389 341 386 347 403 411 c 0 + 404 416 410 418 417 418 c 0 + 424 418 431 416 434 413 c 1 + 434 229 l 1 + 432 227 425 225 418 225 c 0 + 411 225 405 227 403 232 c 0 + 388 288 384 291 375 297 c 0 + 364 304 309 305 272 305 c 0 + 245 305 202 305 202 296 c 2 + 202 110 l 2 + 202 95 201 48 207 43 c 0 + 220 33 236 33 277 33 c 2 + 324 33 l 2 + 370 33 420 43 447 60 c 0 + 478 79 492 116 508 158 c 0 + 509 162 515 164 522 164 c 0 + 532 164 543 161 546 158 c 1 + 527 105 501 39 494 -4 c 1 + 436 -4 371 -77 371 -119 c 0 + 371 -134 378 -161 411 -161 c 0 + 461 -161 484 -124 490 -124 c 0 + 491 -124 494 -129 494 -137 c 0 + 494 -142 493 -150 490 -154 c 0 + 469 -182 432 -219 388 -219 c 0 + 333 -219 318 -170 318 -144 c 0 + 318 -94 371 -37 420 -3 c 1 + 340 -2 291 0 161 0 c 0xbde0 + 115 0 82 -3 44 -3 c 1 + 39 2 40 20 44 25 c 1 + 56 25 109 30 112 41 c 0 + 117 57 117 84 117 113 c 2 + 117 530 l 2 + 117 559 117 587 112 603 c 0 + 109 614 56 618 44 618 c 1 + 40 623 39 641 44 646 c 1xdbe0 + 84 644 122 642 160 642 c 0x9de0 +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 214 +Width: 420 +Flags: HW +HStem: -219 58<239 311> -8 62<188 292> 242 36<113 294> 393 35<168 259> +VStem: 39 69<139 242> 182 53<-157 -79> 295 83<279 360> +LayerCount: 2 +Fore +SplineSet +330 25 m 0 + 281 -16 234 -62 234 -119 c 0 + 234 -134 241 -161 274 -161 c 0 + 324 -161 348 -124 354 -124 c 0 + 355 -124 357 -129 357 -137 c 0 + 357 -142 357 -150 354 -154 c 0 + 333 -182 295 -219 251 -219 c 0 + 196 -219 182 -170 182 -144 c 0 + 182 -105 219 -45 258 -6 c 1 + 251 -7 242 -8 234 -8 c 0 + 119 -8 39 80 39 195 c 0 + 39 326 145 428 231 428 c 0 + 348 428 378 334 378 295 c 0 + 378 267 373 250 354 249 c 0 + 324 247 120 242 108 242 c 1 + 105 117 182 55 268 55 c 0 + 322 55 362 91 375 106 c 0 + 376 106 383 101 383 93 c 0 + 383 88 380 80 377 75 c 0 + 369 61 351 42 330 25 c 0 +113 278 m 0 + 122 278 262 278 272 278 c 0 + 284 278 294 283 295 301 c 0 + 296 324 275 393 215 393 c 0 + 133 393 111 278 113 278 c 0 +EndSplineSet +EndChar + +StartChar: Ecaron +Encoding: 282 282 215 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 406 -1 N 1 0 0 1 167 0 2 +Refer: 36 69 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ecaron +Encoding: 283 283 216 +Width: 419 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 483 0 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 217 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 625 -1 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 218 +Width: 455 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 475 24 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 219 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 621 -3 2 +EndChar + +StartChar: gbreve +Encoding: 287 287 220 +Width: 455 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 484 0 2 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 221 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 623 225 2 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 222 +Width: 455 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 471 44 2 +EndChar + +StartChar: uni0122 +Encoding: 290 290 223 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 617 0 2 +EndChar + +StartChar: uni0123 +Encoding: 291 291 224 +Width: 455 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 334 786 N 1 0 0 1 472 -15 2 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 225 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 608 -1 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 226 +Width: 503 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 1 0 2 +Refer: 398 -1 N 1 0 0 1 371 -1 2 +EndChar + +StartChar: Hbar +Encoding: 294 294 227 +Width: 708 +Flags: HW +HStem: -3 31<42 112 206 276 433 503 598 668> 317 33<203 508> 459 37<79 629> 615 31<42 112 206 276 433 503 598 668> +VStem: 117 85<35 311 354 609> 508 85<35 313 354 609> +LayerCount: 2 +Fore +SplineSet +84 459 m 0 + 80 459 79 467 79 472 c 3 + 79 478 79 487 85 496 c 1 + 624 496 l 0 + 628 496 629 488 629 483 c 3 + 629 477 629 468 623 459 c 1 + 595 459 98 459 84 459 c 0 +EndSplineSet +Refer: 39 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hbar +Encoding: 295 295 228 +Width: 503 +Flags: HW +HStem: -3 28<18 82 168 231 282 345 432 495> 371 57<235 320> 513 34<23 292> 613 25<22 78> 658 20<142 165> +VStem: 87 75<32 339 354 607> 351 75<32 339> +LayerCount: 2 +Fore +SplineSet +28 547 m 1 + 56 547 273 547 287 547 c 0 + 291 547 293 543 293 539 c 3 + 293 534 291 521 287 513 c 1 + 259 513 41 513 27 513 c 0 + 23 513 22 520 22 524 c 3 + 22 529 24 540 28 547 c 1 +EndSplineSet +Refer: 71 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Itilde +Encoding: 296 296 229 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 400 -1 N 1 0 0 1 410 -7 2 +EndChar + +StartChar: itilde +Encoding: 297 297 230 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 8 0 2 +Refer: 326 771 N 1 0 0 1 393 -2 2 +EndChar + +StartChar: Imacron +Encoding: 298 298 231 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 401 -1 N 1 0 0 1 417 27 2 +EndChar + +StartChar: imacron +Encoding: 299 299 232 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 8 0 2 +Refer: 327 772 N 1 0 0 1 387 26 2 +EndChar + +StartChar: Ibreve +Encoding: 300 300 233 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 414 -3 2 +EndChar + +StartChar: ibreve +Encoding: 301 301 234 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 238 305 N 1 0 0 1 7 0 2 +Refer: 329 774 N 1 0 0 1 404 0 2 +EndChar + +StartChar: Iogonek +Encoding: 302 302 235 +Width: 320 +Flags: HW +HStem: -219 58<124 195> -3 28<41 104 224 277> 618 28<41 103 218 277> +VStem: 66 53<-157 -85> 117 85<36 607> +LayerCount: 2 +Fore +SplineSet +162 642 m 0xe8 + 205 642 236 644 275 646 c 1 + 276 643 277 637 277 632 c 0 + 277 626 276 618 273 618 c 0 + 265 618 214 609 211 598 c 0 + 204 572 202 542 202 507 c 2 + 202 136 l 2xe8 + 202 101 204 71 211 45 c 0 + 214 34 265 25 273 25 c 0 + 276 25 277 17 277 11 c 0 + 277 6 276 0 275 -3 c 1 + 257 -2 240 -1 224 0 c 1 + 181 -25 119 -76 119 -119 c 0 + 119 -134 126 -161 159 -161 c 0 + 209 -161 232 -124 238 -124 c 0 + 239 -124 242 -129 242 -137 c 0 + 242 -142 241 -150 238 -154 c 0 + 217 -182 180 -219 136 -219 c 0 + 81 -219 66 -170 66 -144 c 0xf0 + 66 -91 128 -32 180 2 c 1 + 174 2 169 2 162 2 c 0 + 117 2 90 -1 45 -3 c 1 + 43 -1 41 6 41 12 c 0 + 41 18 43 25 45 25 c 0 + 57 25 105 33 110 45 c 1 + 116 67 117 114 117 132 c 2 + 117 511 l 2 + 117 529 116 576 110 598 c 1 + 105 610 57 618 45 618 c 0 + 43 618 41 625 41 631 c 0 + 41 637 43 644 45 646 c 1 + 90 644 117 642 162 642 c 0xe8 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 236 +Width: 261 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 395 -1 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 386 44 2 +EndChar + +StartChar: Idotaccent +Encoding: 304 304 237 +Width: 316 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 408 225 2 +EndChar + +StartChar: dotlessi +Encoding: 305 305 238 +Width: 263 +Flags: HW +HStem: -3 28<33 96 183 246> 363 25<32 92> 410 20G<154 176> +VStem: 102 75<32 357> +LayerCount: 2 +Fore +SplineSet +177 317 m 0 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 231 25 243 25 c 1 + 247 20 248 2 243 -3 c 1 + 203 -1 177 2 139 2 c 0 + 101 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 295 l 2 + 102 308 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 177 360 177 350 c 2 + 177 317 l 0 +EndSplineSet +EndChar + +StartChar: IJ +Encoding: 306 306 239 +Width: 557 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 74 N 1 0 0 1 252 0 2 +Refer: 40 73 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 240 +Width: 461 +Flags: HW +LayerCount: 2 +Fore +Refer: 330 775 N 1 0 0 1 591 44 2 +Refer: 315 567 N 1 0 0 1 229 0 2 +Refer: 330 775 N 1 0 0 1 381 44 2 +Refer: 238 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 241 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 74 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 408 -1 2 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 242 +Width: 233 +Flags: HW +LayerCount: 2 +Fore +Refer: 315 567 N 1 0 0 1 3 0 2 +Refer: 325 770 N 1 0 0 1 385 -5 2 +EndChar + +StartChar: uni0136 +Encoding: 310 310 243 +Width: 641 +Flags: HW +LayerCount: 2 +Fore +Refer: 42 75 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 596 0 2 +EndChar + +StartChar: uni0137 +Encoding: 311 311 244 +Width: 505 +Flags: HW +LayerCount: 2 +Fore +Refer: 74 107 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 501 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 245 +Width: 520 +Flags: HW +HStem: -3 28<33 96 183 246 446 515> 363 25<32 92> 387 28<298 347 422 484> 410 20G<154 176> +VStem: 102 75<32 199 229 357> +LayerCount: 2 +Fore +SplineSet +177 350 m 2xd8 + 177 229 l 1 + 194 235 224 261 257 289 c 0 + 308 332 347 360 347 370 c 0 + 347 385 309 386 300 387 c 1 + 295 394 297 413 302 415 c 1xa8 + 330 412 365 410 396 410 c 0x98 + 429 410 461 412 482 415 c 1 + 486 409 485 391 482 387 c 1xa8 + 468 387 428 379 407 364 c 0 + 396 356 306 292 248 243 c 1 + 321 164 401 72 424 52 c 0 + 449 31 489 24 514 25 c 1 + 516 22 518 7 515 2 c 1 + 508 -1 477 -4 451 -4 c 0 + 393 -4 346 23 331 39 c 2 + 331 39 248 129 192 190 c 0 + 188 195 177 199 177 199 c 1 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 231 25 243 25 c 1 + 247 20 248 2 243 -3 c 1 + 203 -1 177 2 139 2 c 0 + 101 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 295 l 2 + 102 308 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 177 360 177 350 c 2xd8 +EndSplineSet +EndChar + +StartChar: Lacute +Encoding: 313 313 246 +Width: 550 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 76 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 473 0 2 +EndChar + +StartChar: lacute +Encoding: 314 314 247 +Width: 249 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 108 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 414 0 2 +EndChar + +StartChar: uni013B +Encoding: 315 315 248 +Width: 550 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 76 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 560 0 2 +EndChar + +StartChar: uni013C +Encoding: 316 316 249 +Width: 249 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 108 N 1 0 0 1 -1 0 2 +Refer: 336 806 N 1 0 0 1 377 0 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 250 +Width: 568 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 76 N 1 0 0 1 0 0 2 +Refer: 335 789 N 1 0 0 1 717 -7 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 251 +Width: 266 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 108 N 1 0 0 1 0 0 2 +Refer: 335 789 N 1 0 0 1 510 20 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 252 +Width: 550 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 76 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 686 -229 2 +EndChar + +StartChar: ldot +Encoding: 320 320 253 +Width: 376 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 108 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 561 -248 2 +EndChar + +StartChar: Lslash +Encoding: 321 321 254 +Width: 550 +Flags: HW +HStem: -3 28<42 111> 0 33<208 428> 618 28<42 111 207 276> +VStem: 117 85<43 612> +LayerCount: 2 +Fore +SplineSet +375 437 m 1x30 + 380 432 396 409 392 406 c 9 + 49 174 l 1 + 43 180 29 199 33 202 c 9 + 375 437 l 1x30 +EndSplineSet +Refer: 43 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: lslash +Encoding: 322 322 255 +Width: 249 +Flags: HW +HStem: -3 28<18 82 168 231> 613 25<22 78> 658 20<142 165> +VStem: 87 75<32 607> +LayerCount: 2 +Fore +SplineSet +34 254 m 1 + 28 260 15 277 19 281 c 9 + 212 413 l 1 + 217 408 231 391 227 387 c 9 + 34 254 l 1 +EndSplineSet +Refer: 75 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 256 +Width: 757 +Flags: HW +LayerCount: 2 +Fore +Refer: 45 78 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 643 0 2 +EndChar + +StartChar: nacute +Encoding: 324 324 257 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 547 -2 2 +EndChar + +StartChar: uni0145 +Encoding: 325 325 258 +Width: 757 +Flags: HW +LayerCount: 2 +Fore +Refer: 45 78 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 627 0 2 +EndChar + +StartChar: uni0146 +Encoding: 326 326 259 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 -1 0 2 +Refer: 336 806 N 1 0 0 1 517 0 2 +EndChar + +StartChar: Ncaron +Encoding: 327 327 260 +Width: 757 +Flags: HW +LayerCount: 2 +Fore +Refer: 406 -1 N 1 0 0 1 235 0 2 +Refer: 45 78 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ncaron +Encoding: 328 328 261 +Width: 519 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 529 2 2 +EndChar + +StartChar: Eng +Encoding: 330 330 262 +Width: 757 +Flags: HW +HStem: -222 46<406 510> -3 28<38 109 188 257> 619 28<38 112 510 579 659 730> +VStem: 126 45<46 555> 597 45<162 599> +LayerCount: 2 +Fore +SplineSet +582 37 m 1 + 171 556 l 1 + 171 112 l 2 + 171 77 171 61 181 45 c 0 + 187 35 238 25 254 25 c 1 + 259 18 258 3 256 -3 c 1 + 217 -1 188 2 145 2 c 0 + 100 2 85 -1 40 -3 c 1 + 37 2 35 14 40 25 c 1 + 52 25 109 33 116 45 c 0 + 125 60 126 74 126 111 c 2 + 126 535 l 2 + 126 572 125 587 116 602 c 0 + 109 614 52 621 40 621 c 1 + 35 632 37 644 40 649 c 1 + 85 647 108 645 140 645 c 0 + 169 645 200 645 214 646 c 1 + 264 568 489 313 597 162 c 1 + 597 219 l 1 + 597 532 l 2 + 597 567 597 584 587 600 c 0 + 581 610 529 619 513 619 c 1 + 508 626 509 641 511 647 c 1 + 550 645 580 643 623 643 c 0 + 668 643 683 645 728 647 c 1 + 731 642 733 630 728 619 c 1 + 716 619 658 612 651 600 c 0 + 642 585 642 570 642 533 c 2 + 642 118 l 2 + 642 -126 545 -222 413 -222 c 0 + 398 -222 364 -213 352 -204 c 1 + 347 -199 344 -189 344 -182 c 0 + 344 -152 360 -127 391 -127 c 0 + 409 -127 425 -143 438 -155 c 0 + 449 -165 464 -176 481 -176 c 0 + 517 -176 570 -135 582 37 c 1 +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 263 +Width: 508 +Flags: HW +HStem: -3 28<33 96 183 246> 363 25<32 92> 371 57<250 334> +VStem: 102 75<32 339> 366 75<-67 339> +LayerCount: 2 +Fore +SplineSet +366 45 m 2xb8 + 366 211 l 2 + 366 332 346 371 270 371 c 0xb8 + 234 371 177 326 177 317 c 2 + 177 113 l 2 + 177 84 177 57 182 41 c 0 + 185 30 231 25 243 25 c 1 + 247 20 248 2 243 -3 c 1 + 203 -1 177 2 139 2 c 0 + 101 2 75 -1 35 -3 c 1 + 30 2 31 20 35 25 c 1 + 47 25 94 30 97 41 c 0 + 102 57 102 84 102 113 c 2 + 102 295 l 2 + 102 308 102 334 97 346 c 0 + 90 363 41 363 34 363 c 1 + 32 365 30 384 34 389 c 1xd8 + 84 396 134 409 173 430 c 1 + 178 430 184 419 184 414 c 1 + 183 407 178 366 178 358 c 0 + 178 357 178 354 180 354 c 0 + 181 354 182 355 183 356 c 0 + 203 377 268 428 315 428 c 0 + 420 428 441 363 441 221 c 1 + 440 66 l 1 + 440 -122 337 -199 271 -226 c 1 + 266 -223 261 -216 259 -211 c 0 + 258 -209 258 -205 259 -204 c 1 + 315 -164 366 -117 366 45 c 2xb8 +EndSplineSet +EndChar + +StartChar: Omacron +Encoding: 332 332 264 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 401 -1 N 1 0 0 1 616 27 2 +EndChar + +StartChar: omacron +Encoding: 333 333 265 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 327 772 N 1 0 0 1 508 26 2 +EndChar + +StartChar: Obreve +Encoding: 334 334 266 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 613 -3 2 +EndChar + +StartChar: obreve +Encoding: 335 335 267 +Width: 497 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 499 0 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 268 +Width: 730 +Flags: HW +LayerCount: 2 +Fore +Refer: 46 79 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 755 4 2 +Refer: 397 -1 N 1 0 0 1 606 4 2 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 269 +Width: 497 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 478 -4 2 +Refer: 324 769 N 1 0 0 1 599 -4 2 +EndChar + +StartChar: OE +Encoding: 338 338 270 +Width: 993 +Flags: HW +HStem: -7 30<307 484> 0 33<628 845> 305 36<621 794> 398 20G<833 840> 609 32<625 844> 618 33<277 468> +VStem: 48 97<207 437> 536 85<65 303 341 563> 822 31<225 283 363 418> 891 31<511 558> +LayerCount: 2 +Back +SplineSet +349.609375 618.1640625 m 0 + 321.2890625 618.1640625 295.491210938 612.711914062 272.216796875 601.806640625 c 0 + 248.942382812 590.901367188 229.573242188 576.497070312 214.111328125 558.59375 c 0 + 198.649414062 540.690429688 185.546875 519.694335938 174.8046875 495.60546875 c 0 + 164.0625 471.516601562 156.331054688 446.614257812 151.611328125 420.8984375 c 0 + 146.891601562 395.182617188 144.53125 368.815429688 144.53125 341.796875 c 0 + 144.53125 303.385742188 149.821289062 265.461914062 160.400390625 228.02734375 c 0 + 170.979492188 190.592773438 185.872070312 156.575195312 205.078125 125.9765625 c 0 + 224.284179688 95.3779296875 249.104492188 70.6376953125 279.541015625 51.7578125 c 0 + 309.977539062 32.8779296875 343.424804688 23.4375 379.8828125 23.4375 c 1024 +364.2578125 -9.765625 m 0 + 321.614257812 -9.765625 281.005859375 -1.5458984375 242.431640625 14.892578125 c 0 + 203.857421875 31.3310546875 170.247070312 53.8740234375 141.6015625 82.51953125 c 0 + 112.956054688 111.165039062 90.1689453125 146.159179688 73.2421875 187.5 c 0 + 56.3154296875 228.840820312 47.8515625 273.112304688 47.8515625 320.3125 c 0 + 47.8515625 365.234375 56.3154296875 408.122070312 73.2421875 448.974609375 c 0 + 90.1689453125 489.827148438 112.874023438 524.983398438 141.357421875 554.443359375 c 0 + 169.840820312 583.903320312 203.532226562 607.421875 242.431640625 625 c 0 + 281.331054688 642.578125 321.940429688 651.3671875 364.2578125 651.3671875 c 1024 +EndSplineSet +Fore +SplineSet +580 0 m 8x7bc0 + 535 0 493 -1 465 -3 c 0 + 450 -4 378 -7 354 -7 c 0 + 182 -7 48 137 48 320 c 0 + 48 503 194 651 359 651 c 0xb7c0 + 383 651 516 641 579 642 c 0 + 671 642 788 648 894 648 c 1 + 901 599 913 560 922 516 c 1 + 919 513 911 511 904 511 c 0 + 897 511 892 513 891 518 c 0 + 870 596 829 609 777 609 c 2 + 693 609 l 0 + 681 609 629 609 626 599 c 0 + 621 583 621 555 621 529 c 2 + 621 347 l 2 + 621 342 642 341 663 341 c 2 + 715 341 l 2 + 809 341 805 347 822 411 c 0 + 823 416 830 418 837 418 c 0 + 844 418 851 416 854 413 c 1 + 854 229 l 1 + 852 227 845 225 838 225 c 0 + 831 225 824 227 822 232 c 0 + 807 288 804 291 795 297 c 0 + 784 304 728 305 691 305 c 0 + 664 305 621 305 621 296 c 2 + 621 110 l 2 + 621 95 621 48 627 43 c 0 + 640 33 655 33 696 33 c 2 + 743 33 l 2 + 789 33 839 43 866 60 c 0 + 897 79 912 116 928 158 c 0 + 929 162 934 164 941 164 c 0 + 951 164 963 161 966 158 c 1 + 947 105 920 39 913 -4 c 1 + 807 -4 710 0 580 0 c 8x7bc0 +349 618 m 0 + 207 618 145 473 145 342 c 0 + 145 191 228 23 379 23 c 0 + 433 23 491 28 513 62 c 0 + 536 97 536 130 536 183 c 2 + 536 483 l 2 + 536 517 530 549 502 579 c 0 + 470 613 417 618 349 618 c 0 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 271 +Width: 759 +Flags: HW +HStem: -8 62<527 653> -7 32<209 313> 242 36<453 634> 396 32<185 290 514 592> +VStem: 40 84<118 306> 373 75<140 238> 635 83<279 360> +LayerCount: 2 +Fore +SplineSet +555 393 m 0x3e + 473 393 451 278 453 278 c 0 + 462 278 602 278 612 278 c 0 + 624 278 634 283 635 301 c 0 + 636 324 615 393 555 393 c 0x3e +237 396 m 0 + 154 396 124 312 124 228 c 0 + 124 133 172 25 260 25 c 0x7e + 343 25 373 110 373 193 c 0 + 373 288 324 396 237 396 c 0 +607 55 m 0xbe + 661 55 702 91 715 106 c 0 + 716 106 723 101 723 93 c 0 + 723 88 720 80 717 75 c 0 + 699 47 650 -8 574 -8 c 0xbe + 504 -8 447 24 413 76 c 1 + 376 25 317 -7 250 -7 c 0x7e + 121 -7 40 86 40 208 c 0 + 40 334 130 429 248 429 c 0 + 328 429 390 394 425 338 c 1 + 464 394 520 428 571 428 c 0 + 688 428 718 334 718 295 c 0 + 718 267 713 250 694 249 c 0 + 667 248 487 243 448 242 c 1 + 448 98 537 55 607 55 c 0xbe +EndSplineSet +EndChar + +StartChar: Racute +Encoding: 340 340 272 +Width: 606 +Flags: HW +LayerCount: 2 +Fore +Refer: 49 82 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 576 0 2 +EndChar + +StartChar: racute +Encoding: 341 341 273 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 81 114 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 499 1 2 +EndChar + +StartChar: uni0156 +Encoding: 342 342 274 +Width: 606 +Flags: HW +LayerCount: 2 +Fore +Refer: 49 82 N 1 0 0 1 0 0 2 +Refer: 336 806 N 1 0 0 1 605 0 2 +EndChar + +StartChar: uni0157 +Encoding: 343 343 275 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 81 114 N 1 0 0 1 -1 0 2 +Refer: 336 806 N 1 0 0 1 387 0 2 +EndChar + +StartChar: Rcaron +Encoding: 344 344 276 +Width: 606 +Flags: HW +LayerCount: 2 +Fore +Refer: 49 82 N 1 0 0 1 0 0 2 +Refer: 406 -1 N 1 0 0 1 170 0 2 +EndChar + +StartChar: rcaron +Encoding: 345 345 277 +Width: 374 +Flags: HW +LayerCount: 2 +Fore +Refer: 81 114 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 458 5 2 +EndChar + +StartChar: Sacute +Encoding: 346 346 278 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 543 0 2 +EndChar + +StartChar: sacute +Encoding: 347 347 279 +Width: 360 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 488 -3 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 280 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 499 -1 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 281 +Width: 360 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 440 -5 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 282 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 403 -1 N 1 0 0 1 28 -4 2 +EndChar + +StartChar: scedilla +Encoding: 351 351 283 +Width: 360 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 1 0 2 +Refer: 337 807 N 1 0 0 1 432 -2 2 +EndChar + +StartChar: Scaron +Encoding: 352 352 284 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 406 -1 N 1 0 0 1 128 0 2 +EndChar + +StartChar: scaron +Encoding: 353 353 285 +Width: 360 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 441 1 2 +EndChar + +StartChar: uni0162 +Encoding: 354 354 286 +Width: 611 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 1 0 2 +Refer: 403 -1 N 1 0 0 1 81 3 2 +EndChar + +StartChar: uni0163 +Encoding: 355 355 287 +Width: 303 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 1 0 2 +Refer: 337 807 N 1 0 0 1 423 4 2 +EndChar + +StartChar: Tcaron +Encoding: 356 356 288 +Width: 611 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 0 0 2 +Refer: 406 -1 N 1 0 0 1 171 14 2 +EndChar + +StartChar: tcaron +Encoding: 357 357 289 +Width: 303 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 0 0 2 +Refer: 335 789 N 1 0 0 1 547 10 2 +EndChar + +StartChar: Tbar +Encoding: 358 358 290 +Width: 611 +Flags: HW +HStem: -3 28<189 258 354 423> 304 36<152 464> 611 34<94 264 349 516> +VStem: 12 32<488 544> 264 85<32 611> 566 32<488 544> +LayerCount: 2 +Fore +SplineSet +462 304 m 1 + 434 304 167 304 153 304 c 1 + 149 304 148 331 154 340 c 1 + 182 340 448 340 462 340 c 1 + 466 340 466 313 462 304 c 1 +EndSplineSet +Refer: 51 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tbar +Encoding: 359 359 291 +Width: 303 +Flags: HW +HStem: -7 53<172 246> 262 39<22 286> 382 40<27 81 156 286> +VStem: 21 266 81 75<61 382 422 508> +LayerCount: 2 +Fore +SplineSet +27 301 m 1xf0 + 55 301 267 301 281 301 c 0 + 285 301 287 296 287 291 c 3 + 287 285 285 271 281 262 c 1 + 253 262 40 262 26 262 c 0 + 22 262 21 269 21 274 c 3 + 21 280 21 292 27 301 c 1xf0 +EndSplineSet +Refer: 83 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Utilde +Encoding: 360 360 292 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 400 -1 N 1 0 0 1 606 -7 2 +EndChar + +StartChar: utilde +Encoding: 361 361 293 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 326 771 N 1 0 0 1 499 -1 2 +EndChar + +StartChar: Umacron +Encoding: 362 362 294 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 401 -1 N 1 0 0 1 607 27 2 +EndChar + +StartChar: umacron +Encoding: 363 363 295 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 327 772 N 1 0 0 1 498 26 2 +EndChar + +StartChar: Ubreve +Encoding: 364 364 296 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 402 -1 N 1 0 0 1 604 -3 2 +EndChar + +StartChar: ubreve +Encoding: 365 365 297 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 509 0 2 +EndChar + +StartChar: Uring +Encoding: 366 366 298 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 399 -1 N 1 0 0 1 608 0 2 +EndChar + +StartChar: uring +Encoding: 367 367 299 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 332 778 N 1 0 0 1 500 -1 2 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 300 +Width: 706 +Flags: HW +LayerCount: 2 +Fore +Refer: 52 85 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 728 4 2 +Refer: 397 -1 N 1 0 0 1 579 4 2 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 301 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 459 -4 2 +Refer: 324 769 N 1 0 0 1 581 -4 2 +EndChar + +StartChar: Uogonek +Encoding: 370 370 302 +Width: 706 +Flags: HW +HStem: -219 58<360 431> -4 57<275 438> 618 28<26 95 192 261 474 542 617 690> +VStem: 101 85<155 612> 303 53<-157 -81> 557 45<153 599> +LayerCount: 2 +Fore +SplineSet +144 642 m 0 + 182 642 218 644 258 646 c 1 + 263 641 262 623 258 618 c 1 + 246 618 194 614 191 603 c 0 + 186 587 186 559 186 530 c 2 + 186 289 l 2 + 186 208 203 148 234 109 c 0 + 265 71 310 53 368 53 c 0 + 469 53 554 100 557 268 c 1 + 557 532 l 2 + 557 567 557 584 547 600 c 0 + 541 610 493 619 477 619 c 1 + 472 626 473 641 475 647 c 1 + 514 645 540 643 583 643 c 0 + 628 643 643 645 688 647 c 1 + 691 642 693 630 688 619 c 1 + 676 619 619 612 612 600 c 0 + 603 585 602 570 602 533 c 2 + 602 270 l 2 + 602 144 564 85 489 28 c 0 + 462 7 355 -66 355 -119 c 0 + 355 -134 363 -161 396 -161 c 0 + 446 -161 469 -124 475 -124 c 0 + 476 -124 479 -129 479 -137 c 0 + 479 -142 478 -149 475 -153 c 0 + 454 -181 416 -219 372 -219 c 0 + 317 -219 303 -170 303 -144 c 0 + 303 -91 357 -30 409 2 c 1 + 393 -3 364 -4 347 -4 c 0 + 277 -4 216 20 173 61 c 0 + 128 104 101 167 101 245 c 2 + 101 530 l 2 + 101 559 101 587 96 603 c 0 + 93 614 41 618 29 618 c 1 + 25 623 24 641 29 646 c 1 + 69 644 106 642 144 642 c 0 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 303 +Width: 495 +Flags: HW +HStem: -222 58<335 407> -7 60<190 272> 20 26<422 474> 404 20G<156 159 408 411> +VStem: 81 74<91 358> 278 53<-160 -86> 333 74<80 358> +LayerCount: 2 +Fore +SplineSet +407 333 m 2xde + 407 138 l 2 + 407 127 408 90 414 63 c 0 + 419 44 469 47 472 46 c 0 + 474 45 475 38 475 35 c 0 + 475 33 472 20 467 20 c 0xbe + 460 20 454 19 447 18 c 0 + 409 12 331 -71 331 -122 c 0 + 331 -137 338 -164 371 -164 c 0 + 421 -164 444 -127 450 -127 c 0 + 451 -127 455 -132 455 -140 c 0 + 455 -145 453 -153 450 -157 c 0 + 429 -185 392 -222 348 -222 c 0 + 293 -222 278 -172 278 -146 c 0 + 278 -104 333 -27 376 2 c 1 + 359 -3 341 -8 341 -8 c 0 + 336 -8 333 1 333 8 c 2 + 333 58 l 2 + 333 63 331 62 331 62 c 1 + 304 33 253 -7 203 -7 c 0 + 99 -7 81 107 81 175 c 2 + 81 298 l 2 + 81 306 80 337 67 351 c 1 + 46 377 11 367 11 373 c 0 + 11 374 12 396 17 397 c 0 + 61 404 115 412 151 423 c 0 + 152 423 155 424 156 424 c 0 + 162 424 162 408 161 403 c 0 + 157 372 155 364 155 331 c 2 + 155 199 l 2 + 155 100 183 53 251 53 c 0 + 294 53 333 95 333 115 c 2 + 333 298 l 2 + 333 306 332 337 319 351 c 1 + 298 377 263 367 263 373 c 0 + 263 374 264 396 269 397 c 0 + 313 404 367 412 403 423 c 0 + 404 423 407 424 408 424 c 0 + 414 424 414 408 413 403 c 0 + 409 372 407 366 407 333 c 2xde +EndSplineSet +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 304 +Width: 878 +Flags: HW +LayerCount: 2 +Fore +Refer: 54 87 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 717 -30 2 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 305 +Width: 704 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 86 119 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 645 -5 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 306 +Width: 583 +Flags: HW +LayerCount: 2 +Fore +Refer: 56 89 N 1 0 0 1 0 0 2 +Refer: 398 -1 N 1 0 0 1 558 -30 2 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 307 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 88 121 N 1 0 0 1 0 0 2 +Refer: 325 770 N 1 0 0 1 511 -5 2 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 308 +Width: 583 +Flags: HW +LayerCount: 2 +Fore +Refer: 56 89 N 1 0 0 1 0 0 2 +Refer: 405 -1 N 1 0 0 1 146 16 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 309 +Width: 618 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 90 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 603 0 2 +EndChar + +StartChar: zacute +Encoding: 378 378 310 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 491 -4 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 311 +Width: 618 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 90 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 588 225 2 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 312 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 495 44 2 +EndChar + +StartChar: Zcaron +Encoding: 381 381 313 +Width: 618 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 90 N 1 0 0 1 0 0 2 +Refer: 406 -1 N 1 0 0 1 207 0 2 +EndChar + +StartChar: zcaron +Encoding: 382 382 314 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 480 -1 2 +EndChar + +StartChar: uni0237 +Encoding: 567 567 315 +Width: 233 +Flags: HW +HStem: 363 25<19 79> 410 20G<141 163> +VStem: 90 75<-67 357> +LayerCount: 2 +Fore +SplineSet +90 44 m 2 + 90 295 l 2 + 90 308 90 334 85 346 c 0 + 78 363 28 363 21 363 c 1 + 19 365 17 384 21 389 c 1 + 71 396 122 409 161 430 c 1 + 166 430 172 419 172 414 c 1 + 171 407 165 363 165 350 c 2 + 165 316 l 0 + 165 66 l 1 + 165 -122 62 -199 -4 -226 c 1 + -9 -223 -15 -216 -17 -211 c 0 + -18 -209 -18 -205 -17 -204 c 1 + 39 -164 90 -118 90 44 c 2 +EndSplineSet +EndChar + +StartChar: uni02BB +Encoding: 699 699 316 +Width: 166 +Flags: HW +LayerCount: 2 +Fore +Refer: 334 786 N 1 0 0 1 329 -21 2 +EndChar + +StartChar: uni02BC +Encoding: 700 700 317 +Width: 145 +Flags: HW +LayerCount: 2 +Fore +Refer: 335 789 N 1 0 0 1 299 0 2 +EndChar + +StartChar: caron +Encoding: 711 711 318 +Width: 302 +Flags: HW +LayerCount: 2 +Fore +Refer: 333 780 N 1 0 0 1 400 -5 2 +EndChar + +StartChar: breve +Encoding: 728 728 319 +Width: 310 +Flags: HW +LayerCount: 2 +Fore +Refer: 329 774 N 1 0 0 1 408 22 2 +EndChar + +StartChar: dotaccent +Encoding: 729 729 320 +Width: 195 +Flags: HW +LayerCount: 2 +Fore +Refer: 330 775 N 1 0 0 1 347 -3 2 +EndChar + +StartChar: ogonek +Encoding: 731 731 321 +Width: 279 +Flags: HW +LayerCount: 2 +Fore +Refer: 338 808 N 1 0 0 1 376 0 2 +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 322 +Width: 375 +Flags: HW +LayerCount: 2 +Fore +Refer: 324 769 N 1 0 0 1 361 25 2 +Refer: 324 769 N 1 0 0 1 482 25 2 +EndChar + +StartChar: gravecomb +Encoding: 768 768 323 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 156 +VStem: -342 156 +LayerCount: 2 +Fore +SplineSet +-307 643 m 0 + -293 643 -281 636 -280 635 c 0 + -249 596 -186 505 -186 499 c 0 + -186 493 -187 486 -194 486 c 0 + -204 486 -342 583 -342 614 c 0 + -342 619 -341 643 -307 643 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb +Encoding: 769 769 324 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 156 +VStem: -312 156 +LayerCount: 2 +Fore +SplineSet +-191 643 m 0 + -157 643 -156 619 -156 614 c 0 + -156 583 -294 486 -304 486 c 0 + -311 486 -312 493 -312 499 c 0 + -312 505 -249 596 -218 635 c 0 + -217 636 -205 643 -191 643 c 0 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 325 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 150 +VStem: -356 205 +LayerCount: 2 +Fore +SplineSet +-254 636 m 0 + -250 636 -246 632 -243 627 c 0 + -210 573 -189 548 -151 498 c 1 + -151 491 -157 485 -162 485 c 1 + -199 515 -254 560 -254 560 c 25 + -254 560 -312 512 -346 485 c 1 + -351 485 -356 491 -356 498 c 1 + -318 548 -298 573 -265 627 c 0 + -262 632 -258 636 -254 636 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb +Encoding: 771 771 326 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 44<-232 -143> 532 44<-343 -254> +VStem: -366 249 +LayerCount: 2 +Fore +SplineSet +-294 576 m 0 + -270 576 -252 565 -234 554 c 0 + -215 542 -192 530 -178 530 c 0 + -143 530 -130 564 -123 568 c 1 + -117 568 -117 564 -117 560 c 0 + -117 547 -125 531 -131 522 c 0 + -148 500 -168 486 -191 486 c 0 + -215 486 -232 497 -250 508 c 0 + -269 520 -290 532 -308 532 c 0 + -343 532 -351 498 -358 494 c 1 + -364 494 -366 501 -366 505 c 0 + -366 518 -360 532 -354 541 c 0 + -337 563 -317 576 -294 576 c 0 +EndSplineSet +EndChar + +StartChar: uni0304 +Encoding: 772 772 327 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 41<-366 -143> +LayerCount: 2 +Fore +SplineSet +-147 486 m 1 + -192 486 -293 486 -366 486 c 1 + -376 490 -369 521 -360 527 c 9 + -275 527 -227 527 -142 527 c 1 + -135 522 -137 497 -147 486 c 1 +EndSplineSet +EndChar + +StartChar: uni0305 +Encoding: 773 773 328 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 722 62<-578 -1> +LayerCount: 2 +Fore +SplineSet +-581 731 m 0 + -581 733 -578 783 -567 783 c 2 + 1 783 l 2 + 3 783 7 782 7 774 c 0 + 7 756 0 733 -1 729 c 0 + -3 723 -9 722 -9 722 c 1 + -575 722 l 1 + -575 722 -581 721 -581 731 c 0 +EndSplineSet +EndChar + +StartChar: uni0306 +Encoding: 774 774 329 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 45<-310 -196> +VStem: -359 21<584 601> -168 21<583 601> +LayerCount: 2 +Fore +SplineSet +-253 530 m 0 + -212 530 -178 559 -168 601 c 0 + -168 603 -166 604 -164 604 c 0 + -158 604 -146 596 -146 591 c 0 + -146 590 -147 585 -147 583 c 0 + -156 531 -200 485 -253 485 c 0 + -306 485 -349 528 -358 584 c 0 + -358 586 -359 590 -359 591 c 0 + -359 596 -348 604 -342 604 c 0 + -340 604 -338 603 -338 601 c 0 + -328 559 -294 530 -253 530 c 0 +EndSplineSet +EndChar + +StartChar: uni0307 +Encoding: 775 775 330 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 98<-290 -208> +VStem: -298 98<495 576> +LayerCount: 2 +Fore +SplineSet +-298 535 m 0 + -298 562 -276 584 -249 584 c 0 + -222 584 -200 562 -200 535 c 0 + -200 508 -222 486 -249 486 c 0 + -276 486 -298 508 -298 535 c 0 +EndSplineSet +EndChar + +StartChar: uni0308 +Encoding: 776 776 331 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 90<-372 -296 -194 -117> +VStem: -380 92<494 568> -201 92<494 568> +LayerCount: 2 +Fore +SplineSet +-154 576 m 0 + -130 576 -109 554 -109 530 c 0 + -109 506 -131 486 -155 486 c 0 + -179 486 -201 507 -201 531 c 0 + -201 555 -178 576 -154 576 c 0 +-333 576 m 0 + -309 576 -288 554 -288 530 c 0 + -288 506 -310 486 -334 486 c 0 + -358 486 -380 507 -380 531 c 0 + -380 555 -357 576 -333 576 c 0 +EndSplineSet +EndChar + +StartChar: uni030A +Encoding: 778 778 332 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 33<-286 -212> 628 33<-288 -211> +VStem: -335 32<536 612> -196 32<536 612> +LayerCount: 2 +Fore +SplineSet +-303 574 m 0 + -303 544 -278 520 -249 520 c 0 + -220 520 -196 544 -196 574 c 0 + -196 604 -220 628 -249 628 c 0 + -278 628 -303 604 -303 574 c 0 +-335 574 m 0 + -335 622 -296 661 -249 661 c 0 + -202 661 -164 622 -164 574 c 0 + -164 526 -202 486 -249 486 c 0 + -296 486 -335 526 -335 574 c 0 +EndSplineSet +EndChar + +StartChar: uni030C +Encoding: 780 780 333 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 485 150 +VStem: -352 205 +LayerCount: 2 +Fore +SplineSet +-249 485 m 0 + -253 485 -257 489 -260 494 c 0 + -293 548 -314 573 -352 623 c 1 + -352 630 -346 636 -341 636 c 1 + -303 603 -249 555 -249 555 c 25 + -249 555 -195 603 -157 636 c 1 + -152 636 -146 630 -146 623 c 1 + -184 573 -205 548 -238 494 c 0 + -241 489 -245 485 -249 485 c 0 +EndSplineSet +EndChar + +StartChar: uni0312 +Encoding: 786 786 334 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 486 177<-278 -212> +VStem: -300 62<530 608> +LayerCount: 2 +Fore +SplineSet +-201 540 m 0 + -201 516 -219 486 -278 486 c 1 + -290 496 -300 522 -300 538 c 0 + -300 605 -244 648 -220 661 c 0 + -219 662 -216 663 -212 663 c 0 + -199 663 -192 659 -192 656 c 0 + -192 651 -237 622 -237 599 c 0 + -237 573 -201 569 -201 540 c 0 +EndSplineSet +EndChar + +StartChar: uni0315 +Encoding: 789 789 335 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 450 208 +VStem: -239 57<517 614> +LayerCount: 2 +Fore +SplineSet +-218 658 m 0 + -211 658 -202 655 -196 652 c 1 + -190 642 -183 630 -183 598 c 0 + -183 549 -212 493 -251 450 c 1 + -257 450 -270 456 -270 461 c 1 + -252 483 -239 511 -239 540 c 0 + -239 586 -267 584 -267 617 c 0 + -267 635 -248 658 -218 658 c 0 +EndSplineSet +EndChar + +StartChar: uni0326 +Encoding: 806 806 336 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -224 179 +VStem: -266 62<-161 -86> +LayerCount: 2 +Fore +SplineSet +-245 -45 m 0 + -233 -45 -222 -49 -214 -54 c 1 + -208 -63 -204 -79 -204 -94 c 0 + -204 -152 -251 -203 -301 -224 c 1 + -309 -222 -316 -213 -316 -209 c 1 + -302 -202 -266 -174 -266 -145 c 0 + -266 -124 -300 -128 -300 -88 c 0 + -300 -79 -289 -45 -245 -45 c 0 +EndSplineSet +EndChar + +StartChar: uni0327 +Encoding: 807 807 337 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -148 23<-290 -227> -60 33<-249 -222> +VStem: -218 36<-119 -63> +LayerCount: 2 +Fore +SplineSet +-249 -26 m 1 + -225 -26 l 2 + -200 -26 -182 -49 -182 -74 c 0 + -182 -120 -222 -148 -273 -148 c 0 + -285 -148 -301 -144 -307 -140 c 1 + -308 -135 -310 -132 -310 -126 c 0 + -310 -119 -302 -112 -296 -112 c 0 + -284 -112 -276 -125 -260 -125 c 0 + -233 -125 -218 -110 -218 -93 c 0 + -218 -70 -235 -60 -248 -60 c 0 + -259 -60 -263 -62 -273 -66 c 0 + -275 -66 -285 -58 -283 -54 c 0 + -274 -39 -260 -18 -252 -4 c 1 + -231 -4 l 1 + -249 -26 l 1 +EndSplineSet +EndChar + +StartChar: uni0328 +Encoding: 808 808 338 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -213 58<-270 -199> +VStem: -327 53<-152 -79> +LayerCount: 2 +Fore +SplineSet +-177 41 m 0 + -160 41 -136 36 -148 24 c 0 + -170 3 -274 -51 -274 -113 c 0 + -274 -128 -267 -155 -234 -155 c 0 + -184 -155 -161 -118 -155 -118 c 0 + -154 -118 -150 -123 -150 -131 c 0 + -150 -136 -152 -143 -155 -147 c 0 + -176 -175 -214 -213 -258 -213 c 0 + -313 -213 -327 -164 -327 -138 c 0 + -327 -74 -205 41 -177 41 c 0 +EndSplineSet +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 339 +Width: 582 +Flags: HW +LayerCount: 2 +Fore +Refer: 33 66 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 518 225 2 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 340 +Width: 486 +Flags: HW +LayerCount: 2 +Fore +Refer: 65 98 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 368 251 2 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 341 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 68 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 576 225 2 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 342 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 640 251 2 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 343 +Width: 522 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 70 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 538 225 2 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 344 +Width: 300 +Flags: HW +LayerCount: 2 +Fore +Refer: 69 102 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 489 252 2 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 345 +Width: 885 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 77 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 697 225 2 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 346 +Width: 771 +Flags: HW +LayerCount: 2 +Fore +Refer: 76 109 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 640 1 2 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 347 +Width: 535 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 80 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 522 225 2 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 348 +Width: 498 +Flags: HW +LayerCount: 2 +Fore +Refer: 79 112 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 496 1 2 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 349 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 511 225 2 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 350 +Width: 360 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 443 0 2 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 351 +Width: 611 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 579 229 2 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 352 +Width: 303 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 400 93 2 +EndChar + +StartChar: uni2010 +Encoding: 8208 8208 353 +Width: 369 +Flags: HW +HStem: 194 61<59 211> 205 62<165 310> +VStem: 58 255 +LayerCount: 2 +Fore +SplineSet +58 205 m 0x60 + 58 252 66 255 69 255 c 2 + 70 255 l 1xa0 + 306 267 l 1 + 307 267 l 2 + 309 267 312 266 312 258 c 0 + 312 210 300 205 300 205 c 1x60 + 64 194 l 1xa0 + 64 194 58 193 58 205 c 0x60 +EndSplineSet +EndChar + +StartChar: uni2011 +Encoding: 8209 8209 354 +Width: 369 +Flags: HW +HStem: 194 61<59 211> 205 62<165 310> +VStem: 58 255 +LayerCount: 2 +Fore +SplineSet +58 205 m 0x60 + 58 252 66 255 69 255 c 2 + 70 255 l 1xa0 + 306 267 l 1 + 307 267 l 2 + 309 267 312 266 312 258 c 0 + 312 210 300 205 300 205 c 1x60 + 64 194 l 1xa0 + 64 194 58 193 58 205 c 0x60 +EndSplineSet +EndChar + +StartChar: figuredash +Encoding: 8210 8210 355 +Width: 516 +Flags: HW +HStem: 195 61<60 452> +LayerCount: 2 +Fore +SplineSet +57 204 m 0 + 57 206 59 256 70 256 c 2 + 455 256 l 2 + 457 256 460 255 460 249 c 0 + 460 244 457 220 452 202 c 0 + 450 196 445 195 445 195 c 1 + 62 195 l 1 + 62 195 57 194 57 204 c 0 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 356 +Width: 550 +Flags: HW +HStem: 195 61<62 484> +LayerCount: 2 +Fore +SplineSet +59 204 m 0 + 59 206 61 256 72 256 c 2 + 487 256 l 2 + 489 256 493 255 493 247 c 0 + 493 229 485 206 484 202 c 0 + 482 196 478 195 478 195 c 1 + 64 195 l 1 + 64 195 59 194 59 204 c 0 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 357 +Width: 835 +Flags: HW +HStem: 205 61<62 769> +LayerCount: 2 +Fore +SplineSet +59 214 m 0 + 59 216 61 266 72 266 c 2 + 771 266 l 2 + 773 266 777 265 777 257 c 0 + 777 239 771 216 770 212 c 0 + 768 206 762 205 762 205 c 1 + 64 205 l 1 + 64 205 59 204 59 214 c 0 +EndSplineSet +EndChar + +StartChar: uni2015 +Encoding: 8213 8213 358 +Width: 1118 +Flags: HW +HStem: 205 61<62 1051> +LayerCount: 2 +Fore +SplineSet +59 214 m 0 + 59 216 61 266 72 266 c 2 + 1052 266 l 1 + 1052 266 1060 266 1060 257 c 0 + 1060 239 1052 216 1051 212 c 0 + 1049 206 1044 205 1044 205 c 1 + 64 205 l 1 + 64 205 59 204 59 214 c 0 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 359 +Width: 205 +Flags: HW +HStem: 423 315 +VStem: 15 84<508 628.96> +LayerCount: 2 +Fore +SplineSet +43 534 m 0 + 43 644 161 711 172 711 c 0 + 182 711 190 703 195 690 c 1 + 124 648 113 595 113 584 c 0 + 113 566 129 553 142 537 c 0 + 153 525 161 514 161 500 c 0 + 161 472 121 449 84 449 c 0 + 76 449 69 451 61 453 c 1 + 50 469 43 505 43 534 c 0 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 360 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 359 8216 N -1 -0 0 -1 229 1162 2 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 361 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 359 8216 N -1 -0 0 -1 214 594 2 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 362 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 359 8216 N 1 0 0 1 0 0 2 +Refer: 359 8216 N 1 0 0 1 165 0 2 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 363 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 359 8216 N -1 0 -0 -1 230 1160 2 +Refer: 359 8216 N -1 0 -0 -1 395 1160 2 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 364 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 359 8216 N -1 0 -0 -1 380 592 2 +Refer: 359 8216 N -1 0 -0 -1 215 592 2 +EndChar + +StartChar: dagger +Encoding: 8224 8224 365 +Width: 389 +Flags: HW +HStem: -8 21G<193 196> 427 79<39 103 286 351> 454 21<103 171 218 286> 627 20G<184 206> +VStem: 154 80<546 642> 179 31<390 450 478 595> 188 12<-8 73> +LayerCount: 2 +Fore +SplineSet +150 475 m 8xb4 + 164 475 171 480 181 493 c 1 + 181 525 173 591 154 610 c 1 + 154 631 173 646 195 646 c 0 + 216 646 234 631 234 610 c 1 + 215 591 208 525 208 493 c 1 + 218 480 226 475 239 475 c 0xb8 + 271 475 299 487 318 506 c 1 + 339 506 355 486 355 465 c 0 + 355 444 339 427 318 427 c 1xd8 + 299 446 271 454 239 454 c 24xb8 + 223 454 210 439 210 427 c 1xd4 + 217 410 227 384 239 356 c 1 + 218 221 213 167 200 4 c 1 + 198 -2 197 -7 194 -8 c 1 + 191 -7 190 0 188 4 c 1xd2 + 175 167 170 221 149 356 c 1 + 160 380 172 410 179 427 c 1xd4 + 179 439 166 454 150 454 c 24xb4 + 118 454 90 446 71 427 c 1 + 50 427 34 444 34 465 c 0 + 34 486 50 506 71 506 c 1xd4 + 90 487 118 475 150 475 c 8xb4 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 366 +Width: 413 +Flags: HW +HStem: -8 21G<196 217> 133 79<51 115 298 362> 164 21<115 183 230 298> 427 79<51 115 298 362> 454 21<115 183 230 298> 627 20G<196 217> +VStem: 166 80<-4 93 546 642> 192 27<54 159 191 239 399 447 480 585> +LayerCount: 2 +Fore +SplineSet +251 282 m 1x95 + 239 254 229 229 222 212 c 1xd5 + 222 200 235 185 251 185 c 24xa5 + 283 185 311 193 330 212 c 1 + 351 212 367 195 367 174 c 0 + 367 153 351 133 330 133 c 1xc5 + 311 152 283 164 251 164 c 0 + 238 164 230 159 220 146 c 1xa5 + 220 114 227 47 246 28 c 1 + 246 7 228 -8 207 -8 c 0 + 185 -8 166 7 166 28 c 1xa6 + 185 47 192 114 192 146 c 1 + 182 159 176 164 162 164 c 16xa5 + 130 164 102 152 83 133 c 1 + 62 133 46 153 46 174 c 0 + 46 195 62 212 83 212 c 1xc5 + 102 193 130 185 162 185 c 24xa5 + 178 185 190 200 190 212 c 1 + 183 229 172 258 161 282 c 1 + 174 299 177 303 190 319 c 1 + 177 334 179 333 161 356 c 1 + 172 380 183 410 190 427 c 1xd5 + 190 439 178 454 162 454 c 24x8d + 130 454 102 446 83 427 c 1 + 62 427 46 444 46 465 c 0 + 46 486 62 506 83 506 c 1x95 + 102 487 130 475 162 475 c 8 + 176 475 182 480 192 493 c 1x8d + 192 525 185 591 166 610 c 1 + 166 631 185 646 207 646 c 0 + 228 646 246 631 246 610 c 1x8e + 227 591 220 525 220 493 c 1 + 230 480 238 475 251 475 c 0x8d + 283 475 311 487 330 506 c 1 + 351 506 367 486 367 465 c 0 + 367 444 351 427 330 427 c 1x95 + 311 446 283 454 251 454 c 24x8d + 235 454 222 439 222 427 c 1 + 229 410 239 384 251 356 c 1 + 234 335 234 334 222 319 c 1 + 232 306 235 302 251 282 c 1x95 +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 367 +Width: 366 +Flags: HW +HStem: 151 211<121 246> +VStem: 78 210<194 320> +LayerCount: 2 +Fore +SplineSet +78 257 m 0 + 78 315 126 362 184 362 c 0 + 242 362 288 315 288 257 c 0 + 288 199 242 151 184 151 c 0 + 126 151 78 199 78 257 c 0 +EndSplineSet +EndChar + +StartChar: onedotenleader +Encoding: 8228 8228 368 +Width: 205 +Flags: HW +HStem: -14 113<59 145> +VStem: 47 111<-1 88> +LayerCount: 2 +Fore +SplineSet +47 44 m 0 + 47 75 71 100 102 100 c 0 + 133 100 158 75 158 44 c 0 + 158 13 133 -14 102 -14 c 0 + 71 -14 47 13 47 44 c 0 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 369 +Width: 818 +Flags: HW +HStem: -14 113<60 148 366 453 672 759> +VStem: 47 113<-0 87> 353 113<-0 87> 658 113<-0 87> +LayerCount: 2 +Fore +SplineSet +658 44 m 0 + 658 75 685 100 716 100 c 0 + 747 100 771 75 771 44 c 0 + 771 13 747 -14 716 -14 c 0 + 685 -14 658 13 658 44 c 0 +353 44 m 0 + 353 75 379 100 410 100 c 0 + 441 100 466 75 466 44 c 0 + 466 13 441 -14 410 -14 c 0 + 379 -14 353 13 353 44 c 0 +47 44 m 0 + 47 75 73 100 104 100 c 0 + 135 100 160 75 160 44 c 0 + 160 13 135 -14 104 -14 c 0 + 73 -14 47 13 47 44 c 0 +EndSplineSet +EndChar + +StartChar: uni202F +Encoding: 8239 8239 370 +Width: 166 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: perthousand +Encoding: 8240 8240 371 +Width: 973 +Flags: HW +HStem: -7 24<445 513 771 838> 282 23<432 500 758 826> 317 24<163 230> 606 23<150 217> +VStem: 43 62<398 558> 269 64<389 557> 324 62<74 232> 550 65<68 233> 651 62<74 233> 877 64<65 233> +LayerCount: 2 +Fore +SplineSet +794 282 m 0xf9c0 + 736 282 713 218 713 160 c 0 + 713 93 755 18 804 18 c 0 + 861 18 877 84 877 141 c 0 + 877 206 846 282 794 282 c 0xf9c0 +798 306 m 0 + 883 306 941 233 941 148 c 0 + 941 70 888 -7 798 -7 c 0 + 717 -7 651 62 651 148 c 0 + 651 235 711 306 798 306 c 0 +186 606 m 0 + 128 606 104 542 104 484 c 0 + 104 417 146 342 195 342 c 0 + 252 342 269 408 269 465 c 0xfdc0 + 269 530 238 606 186 606 c 0 +189 630 m 0 + 274 630 333 558 333 473 c 0 + 333 395 279 317 189 317 c 0 + 108 317 43 387 43 473 c 0 + 43 560 102 630 189 630 c 0 +468 282 m 0 + 410 282 387 218 387 160 c 0xfbc0 + 387 93 429 18 478 18 c 0 + 535 18 550 84 550 141 c 0 + 550 206 520 282 468 282 c 0 +472 306 m 0 + 557 306 615 233 615 148 c 0 + 615 70 561 -7 471 -7 c 0 + 390 -7 324 62 324 148 c 0 + 324 235 385 306 472 306 c 0 +588 609 m 1 + 116 0 l 2 + 112 -5 96 -12 84 -12 c 0 + 70 -12 67 -3 66 -1 c 1 + 537 609 l 2 + 542 615 551 621 557 621 c 0 + 585 621 579 618 588 609 c 1 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 372 +Width: 156 +Flags: HW +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> +LayerCount: 2 +Fore +SplineSet +108 683 m 0xa0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0 + 62 662 89 683 108 683 c 0xa0 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 373 +Width: 265 +Flags: HW +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> 157 85<576 663> 170 72<576 673> +LayerCount: 2 +Fore +SplineSet +219 683 m 0x88 + 229 683 242 679 242 659 c 0x90 + 242 613 209 546 181 490 c 0 + 178 484 174 482 170 482 c 0x88 + 164 482 157 487 157 494 c 0x90 + 157 497 162 597 170 650 c 0 + 172 662 200 683 219 683 c 0x88 +108 683 m 0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0xa0 + 62 662 89 683 108 683 c 0 +EndSplineSet +EndChar + +StartChar: uni2038 +Encoding: 8248 8248 374 +Width: 415 +Flags: HW +HStem: -35 143 +VStem: 88 229 +LayerCount: 2 +Fore +SplineSet +307 -35 m 0 + 294 -35 236 11 201 46 c 1 + 170 10 110 -35 97 -35 c 0 + 88 -35 88 -19 88 -19 c 1 + 95 -9 154 31 189 98 c 1 + 192 106 193 107 198 107 c 0 + 217 107 208 93 255 40 c 0 + 272 20 315 -15 317 -18 c 1 + 317 -22 313 -35 307 -35 c 0 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 375 +Width: 301 +Flags: HW +VStem: 29 231 +LayerCount: 2 +Fore +SplineSet +238 413 m 1 + 260 407 261 399 261 395 c 0 + 261 387 257 383 201 330 c 0 + 179 309 134 260 115 241 c 1 + 200 153 l 1 + 252 101 260 100 260 89 c 0 + 260 77 243 74 237 71 c 1 + 236 73 180 129 36 222 c 1 + 31 224 29 229 29 235 c 0 + 29 245 30 254 37 262 c 1 + 165 339 237 412 238 413 c 1 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 376 +Width: 300 +Flags: HW +VStem: 43 230 +LayerCount: 2 +Fore +SplineSet +65 71 m 1 + 43 77 43 85 43 89 c 0 + 43 100 53 104 102 153 c 1 + 187 241 l 1 + 168 260 123 309 101 330 c 0 + 43 386 42 387 42 395 c 0 + 42 407 58 410 64 413 c 1 + 66 411 138 339 265 262 c 1 + 272 254 273 245 273 235 c 0 + 273 229 271 224 266 222 c 1 + 142 142 77 84 65 71 c 1 +EndSplineSet +EndChar + +StartChar: uni203E +Encoding: 8254 8254 377 +Width: 844 +Flags: HW +LayerCount: 2 +Fore +Refer: 328 773 N 1 0 0 1 711 0 2 +EndChar + +StartChar: Euro +Encoding: 8364 8364 378 +Width: 691 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -6 35<336 511> 233 47<39 431> 342 47<39 431> 591 34<332 503> +VStem: 89 93<241 376> 607 30<133 174> +LayerCount: 2 +Fore +SplineSet +407 625 m 0 + 469 625 536 620 605 605 c 1 + 605 605 626 477 626 467 c 1 + 626 457 617 453 607 453 c 0 + 601 453 596 454 594 457 c 1 + 588 486 566 591 410 591 c 0 + 271 591 182 452 182 321 c 0 + 182 175 263 29 426 29 c 0 + 562 29 595 125 607 179 c 1 + 620 179 637 172 637 172 c 1 + 637 153 617 48 604 36 c 1 + 552 7 489 -6 403 -6 c 0 + 217 -6 89 136 89 302 c 0 + 89 478 222 625 407 625 c 0 +51 280 m 1 + 79 280 420 280 434 280 c 0 + 438 280 436 271 434 265 c 0 + 432 258 428 244 418 233 c 1 + 390 233 49 233 35 233 c 0 + 31 233 33 242 35 248 c 0 + 37 255 41 269 51 280 c 1 +51 389 m 1 + 79 389 420 389 434 389 c 0 + 438 389 436 379 434 373 c 0 + 432 366 428 353 418 342 c 1 + 390 342 49 342 35 342 c 0 + 31 342 33 350 35 356 c 0 + 37 363 41 378 51 389 c 1 +EndSplineSet +EndChar + +StartChar: minus +Encoding: 8722 8722 379 +Width: 596 +Flags: HW +HStem: 213 55<80 520> +LayerCount: 2 +Fore +SplineSet +513 213 m 1 + 356 213 240 213 72 213 c 1 + 60 213 73 263 87 268 c 9 + 526 268 l 17 + 540 268 527 220 513 213 c 1 +EndSplineSet +EndChar + +StartChar: uni2213 +Encoding: 8723 8723 380 +Width: 583 +Flags: HW +HStem: 216 56<68 267 321 518> 510 56<65 516> +VStem: 267 55<14 216 271 469> +LayerCount: 2 +Fore +SplineSet +513 565 m 1 + 513 565 523 566 521 554 c 0 + 514 507 508 513 505 510 c 1 + 67 510 l 1 + 67 510 60 509 62 523 c 0 + 67 558 69 565 75 565 c 2 + 513 565 l 1 +321 213 m 2 + 321 25 l 1 + 321 25 321 16 277 10 c 0 + 274 10 273 9 271 9 c 0 + 264 9 267 13 267 17 c 2 + 267 211 l 2 + 267 213 266 216 261 216 c 2 + 66 216 l 1 + 66 216 61 216 61 226 c 0 + 61 230 61 243 68 266 c 0 + 70 272 75 271 75 271 c 1 + 262 271 l 2 + 265 271 267 274 267 276 c 2 + 267 462 l 1 + 267 462 265 467 271 469 c 0 + 294 476 308 477 312 477 c 0 + 322 477 321 471 321 471 c 1 + 321 275 l 2 + 321 272 322 271 325 271 c 2 + 521 271 l 2 + 525 271 528 273 528 266 c 0 + 528 257 525 243 519 222 c 0 + 517 216 512 216 512 216 c 1 + 325 216 l 2 + 322 216 321 215 321 213 c 2 +EndSplineSet +EndChar + +StartChar: radical +Encoding: 8730 8730 381 +Width: 503 +Flags: HW +LayerCount: 2 +Fore +SplineSet +10 164 m 1 + -4 170 -11 178 -11 182 c 0 + -11 189 1 195 12 201 c 0 + 47 221 124 272 138 284 c 0 + 146 291 160 291 163 283 c 1 + 171 251 186 221 188 216 c 2 + 302 -30 l 1 + 310 12 440 772 440 772 c 1 + 477 772 l 1 + 477 772 339 -24 315 -149 c 1 + 300 -167 289 -169 283 -169 c 0 + 279 -169 274 -168 273 -164 c 2 + 101 215 l 1 + 10 164 l 1 +EndSplineSet +EndChar + +StartChar: f_f +Encoding: 65536 -1 382 +Width: 546 +Flags: HW +HStem: -3 28<24 88 174 241 273 337 423 490> 382 40<39 93 168 342 417 533> 609 38<227 333> 629 52<464 544> +VStem: 93 75<32 382 422 511> 342 75<32 382 422 553> 362 56<422 583> +LayerCount: 2 +Fore +SplineSet +489 629 m 0xdc + 445 629 417 589 417 492 c 2 + 417 422 l 1 + 530 422 l 2 + 535 422 535 417 535 411 c 0 + 535 402 530 391 521 382 c 1 + 417 382 l 1 + 417 113 l 2 + 417 84 417 57 422 41 c 0 + 425 30 476 25 488 25 c 1 + 492 20 493 2 488 -3 c 1 + 448 -1 417 2 379 2 c 0 + 341 2 316 -1 276 -3 c 1 + 271 2 272 20 276 25 c 1 + 288 25 334 30 337 41 c 0 + 342 57 342 84 342 113 c 2 + 342 382 l 1 + 168 382 l 17 + 168 113 l 2 + 168 84 168 57 173 41 c 0 + 176 30 227 25 239 25 c 1 + 243 20 244 2 239 -3 c 1 + 199 -1 168 2 130 2 c 0 + 92 2 67 -1 27 -3 c 1 + 22 2 23 20 27 25 c 1 + 39 25 85 30 88 41 c 0 + 93 57 93 84 93 113 c 2 + 93 382 l 1 + 37 382 l 2 + 35 382 34 384 34 391 c 0 + 34 396 49 422 62 422 c 2 + 93 422 l 1 + 93 428 l 2 + 93 535 202 647 294 647 c 0xec + 354 647 397 627 411 612 c 1 + 437 646 487 681 536 681 c 0 + 554 681 571 673 577 668 c 1 + 581 660 582 652 582 642 c 0 + 582 615 563 599 548 599 c 0 + 535 599 522 606 515 615 c 0 + 509 622 500 629 489 629 c 0xdc +357 542 m 0 + 359 547 362 551 362 553 c 0xea + 362 554 362 554 361 557 c 0 + 357 567 334 609 273 609 c 0 + 194 609 168 524 168 437 c 2 + 168 422 l 9 + 342 422 l 1 + 342 455 l 2 + 342 475 351 522 357 542 c 0 +EndSplineSet +LCarets2: 1 259 +EndChar + +StartChar: f_i +Encoding: 65537 -1 383 +Width: 519 +Flags: HW +HStem: -3 28<25 89 175 242 289 352 439 502> 369 40<40 94 169 343> 404 20G<433 436> 635 46<225 325> +VStem: 94 75<32 369 409 525> 347 88<538 605> 358 75<32 358> +LayerCount: 2 +Fore +SplineSet +282 409 m 0xdc + 327 409 392 412 428 423 c 0 + 429 423 432 424 433 424 c 0xba + 439 424 439 408 438 403 c 0 + 434 372 433 366 433 333 c 2 + 433 113 l 2 + 433 84 433 57 438 41 c 0 + 441 30 487 25 499 25 c 1 + 503 20 504 2 499 -3 c 1 + 459 -1 433 2 395 2 c 0 + 357 2 331 -1 291 -3 c 1 + 286 2 287 20 291 25 c 1 + 303 25 350 30 353 41 c 0 + 358 57 358 84 358 113 c 2 + 358 298 l 2 + 358 317 354 335 344 351 c 0 + 334 368 301 369 273 369 c 0 + 169 369 l 1 + 169 113 l 2 + 169 84 169 57 174 41 c 0 + 177 30 228 25 240 25 c 1 + 244 20 245 2 240 -3 c 1 + 200 -1 169 2 131 2 c 0 + 93 2 68 -1 28 -3 c 1 + 23 2 24 20 28 25 c 1 + 40 25 86 30 89 41 c 0 + 94 57 94 84 94 113 c 2 + 94 369 l 1 + 37 369 l 2 + 35 369 35 371 35 378 c 0 + 35 383 50 409 63 409 c 2 + 94 409 l 1xda + 94 424 l 2xba + 94 536 183 681 296 681 c 0 + 341 681 383 655 403 634 c 0 + 421 616 435 593 435 571 c 0 + 435 550 417 531 392 531 c 0 + 368 531 355 546 347 566 c 0 + 341 581 337 596 331 605 c 0 + 318 623 305 635 270 635 c 0 + 213 635 169 543 169 456 c 2 + 169 409 l 1 + 282 409 l 0xdc +EndSplineSet +LCarets2: 1 269 +EndChar + +StartChar: f_f_i +Encoding: 65538 -1 384 +Width: 795 +Flags: HW +HStem: -3 28<25 81 184 237 298 353 457 509 564 620 722 778> 363 46<40 97 171 369 443 624> 406 20G<708 711> 627 38<229 331> 641 38<495 583> +VStem: 97 74<36 363 409 530> 369 74<36 363 409 528> 633 75<36 355> +LayerCount: 2 +Fore +SplineSet +633 113 m 2xa7 + 633 303 l 2 + 633 311 632 333 621 349 c 0 + 612 362 563 363 550 363 c 2 + 449 363 l 2 + 446 363 443 360 443 357 c 2 + 443 132 l 2 + 443 100 444 71 451 45 c 0 + 454 34 498 25 506 25 c 0 + 511 25 511 3 509 -3 c 1 + 470 -1 443 2 404 2 c 0 + 364 2 342 -1 302 -3 c 1 + 300 -1 298 6 298 12 c 0 + 298 18 300 25 302 25 c 0 + 314 25 355 34 358 45 c 0 + 366 75 367 98 367 132 c 2 + 367 132 369 269 369 356 c 0 + 369 359 367 363 364 363 c 2 + 177 363 l 2 + 174 363 171 360 171 357 c 2 + 171 132 l 2 + 171 100 172 71 179 45 c 0 + 182 34 225 25 233 25 c 0 + 238 25 238 3 236 -3 c 1 + 197 -1 171 2 132 2 c 0 + 92 2 69 -1 29 -3 c 1 + 27 -1 25 6 25 12 c 0 + 25 18 27 25 29 25 c 0 + 41 25 83 34 86 45 c 0 + 94 75 95 98 95 132 c 2 + 95 132 97 269 97 356 c 0 + 97 359 95 363 92 363 c 2 + 40 363 l 2 + 38 363 37 365 37 369 c 0 + 37 382 47 409 52 409 c 2 + 92 409 l 2 + 95 409 97 412 97 415 c 2 + 97 428 l 2 + 97 570 210 665 302 665 c 0xd7 + 374 665 416 616 426 599 c 1 + 464 649 514 679 563 679 c 0 + 591 679 624 670 651 656 c 0 + 681 640 704 620 704 598 c 0 + 704 571 687 552 660 552 c 0 + 643 552 627 559 619 573 c 0 + 606 595 583 641 533 641 c 0 + 473 641 438 551 443 464 c 1 + 443 414 l 2 + 443 412 446 409 448 409 c 2 + 557 409 l 2xcf + 600 409 672 411 703 423 c 0 + 704 423 707 426 708 426 c 0 + 714 426 713 408 713 403 c 0 + 709 372 708 366 708 333 c 2 + 708 132 l 2 + 708 100 709 71 716 45 c 0 + 719 34 766 25 774 25 c 0 + 779 25 779 3 777 -3 c 1 + 738 -1 710 2 673 2 c 0 + 633 2 606 -1 566 -3 c 1 + 561 2 561 25 566 25 c 0 + 578 25 623 34 626 45 c 0 + 632 69 633 99 633 113 c 2xa7 +268 627 m 0 + 204 627 171 551 171 464 c 2 + 171 414 l 2 + 171 412 174 409 176 409 c 2 + 364 409 l 2 + 367 409 369 412 369 415 c 2 + 369 419 l 2 + 369 449 373 488 381 514 c 0 + 383 519 383 525 383 528 c 0 + 383 532 380 542 379 545 c 0 + 373 554 351 627 268 627 c 0 +EndSplineSet +LCarets2: 2 269 537 +EndChar + +StartChar: f_l +Encoding: 65539 -1 385 +Width: 541 +Flags: HW +HStem: -3 28<25 82 183 240 310 366 467 524> 363 46<39 95 170 285> 641 38<224 313> +VStem: 95 74<36 363 409 536> 379 75<36 581> +LayerCount: 2 +Fore +SplineSet +94 113 m 2 + 94 113 95 269 95 356 c 0 + 95 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2 + 94 409 95 412 95 415 c 2 + 95 428 l 2 + 95 570 198 679 290 679 c 0 + 319 679 357 656 382 656 c 0 + 413 656 447 678 450 678 c 2 + 453 678 l 2 + 459 678 464 667 465 662 c 1 + 465 662 454 631 454 577 c 2 + 454 132 l 2 + 454 100 455 71 462 45 c 0 + 465 34 512 25 520 25 c 0 + 525 25 525 3 523 -3 c 1 + 484 -1 456 2 419 2 c 0 + 379 2 352 -1 312 -3 c 1 + 307 2 307 25 312 25 c 0 + 324 25 369 34 372 45 c 0 + 378 69 379 99 379 113 c 2 + 379 489 l 2 + 379 500 375 550 368 565 c 0 + 358 586 310 641 260 641 c 0 + 200 641 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 283 409 l 2 + 288 409 288 408 288 402 c 0 + 288 393 283 377 276 363 c 1 + 176 363 l 2 + 173 363 170 360 170 357 c 2 + 170 132 l 1 + 171 100 170 71 177 45 c 0 + 180 34 228 25 236 25 c 0 + 241 25 241 3 239 -3 c 1 + 200 -1 172 2 135 2 c 0 + 95 2 68 -1 28 -3 c 1 + 23 2 23 25 28 25 c 0 + 40 25 85 34 88 45 c 0 + 94 69 94 99 94 113 c 2 +EndSplineSet +LCarets2: 1 273 +EndChar + +StartChar: f_f_l +Encoding: 65540 -1 386 +Width: 813 +Flags: HW +HStem: -3 28<26 82 185 238 299 354 458 510 582 639 740 796> 363 46<39 96 172 368 442 557> 627 38<228 330> 641 38<493 586> +VStem: 96 74<36 363 409 530> 368 74<36 363> 382 61<409 575> 651 75<36 581> +LayerCount: 2 +Fore +SplineSet +651 113 m 2xdd + 651 489 l 2 + 651 500 648 550 641 565 c 0 + 631 586 582 641 532 641 c 0 + 472 641 442 551 442 464 c 2 + 442 414 l 2xdb + 442 412 445 409 447 409 c 2 + 556 409 l 2 + 561 409 561 408 561 402 c 0 + 561 393 556 377 549 363 c 1 + 448 363 l 2 + 445 363 442 360 442 357 c 0 + 442 269 444 132 444 132 c 2 + 444 100 445 71 452 45 c 0 + 455 34 499 25 507 25 c 0 + 512 25 512 3 510 -3 c 1 + 471 -1 444 2 405 2 c 0 + 365 2 343 -1 303 -3 c 1 + 301 -1 299 6 299 12 c 0 + 299 18 301 25 303 25 c 0 + 315 25 356 34 359 45 c 0 + 367 75 368 98 368 132 c 2 + 368 356 l 2 + 368 359 366 363 363 363 c 2 + 177 363 l 2 + 173 363 170 360 170 357 c 0 + 170 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 96 98 96 132 c 2 + 96 356 l 2 + 96 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2 + 94 409 96 412 96 415 c 2 + 96 428 l 2 + 96 570 209 665 301 665 c 0xed + 373 665 415 616 425 599 c 1 + 462 650 513 679 562 679 c 0 + 591 679 629 656 654 656 c 0 + 685 656 720 678 723 678 c 2 + 726 678 l 2 + 732 678 736 667 737 662 c 1 + 737 662 727 631 727 577 c 2 + 727 132 l 2 + 727 100 727 71 734 45 c 0 + 737 34 785 25 793 25 c 0 + 798 25 798 3 796 -3 c 1 + 757 -1 728 2 691 2 c 0 + 651 2 625 -1 585 -3 c 1 + 580 2 580 25 585 25 c 0 + 597 25 642 34 645 45 c 0 + 651 69 651 99 651 113 c 2xdd +378 545 m 0 + 372 554 350 627 267 627 c 0 + 203 627 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 363 409 l 2 + 366 409 367 414 368 419 c 2xed + 368 419 372 488 380 514 c 0 + 382 519 382 525 382 528 c 0 + 382 532 379 542 378 545 c 0 +EndSplineSet +LCarets2: 2 273 547 +EndChar + +StartChar: f_b +Encoding: 65541 -1 387 +Width: 798 +Flags: HW +HStem: -7 33<26 86 182 238 489 597> 363 46<40 97 171 286> 370 5<461 532> 641 38<225 314> +VStem: 97 74<36 363 409 536> 380 75<52 344 375 581> 676 82<131 292> +LayerCount: 2 +Fore +SplineSet +380 490 m 2xbe + 380 501 376 550 369 565 c 0 + 359 586 311 641 261 641 c 0 + 201 641 171 551 171 464 c 2 + 171 414 l 2 + 171 412 174 409 176 409 c 2 + 284 409 l 2 + 289 409 289 408 289 402 c 0 + 289 393 284 377 277 363 c 1 + 177 363 l 2 + 174 363 171 360 171 357 c 0 + 171 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 96 98 96 132 c 2 + 96 132 97 269 97 356 c 0 + 97 359 95 363 92 363 c 2 + 40 363 l 2 + 38 363 37 365 37 369 c 0 + 37 382 47 409 52 409 c 2 + 92 409 l 2xde + 95 409 97 412 97 415 c 2 + 97 428 l 2 + 97 570 199 679 291 679 c 0 + 320 679 358 656 383 656 c 0 + 414 656 448 678 451 678 c 2 + 454 678 l 2 + 460 678 465 667 466 662 c 1 + 466 662 455 631 455 577 c 2 + 455 385 l 2 + 455 380 455 370 461 375 c 0 + 476 386 542 428 579 428 c 0 + 696 428 758 317 758 228 c 0 + 758 100 656 -7 517 -7 c 0 + 502 -7 465 2 444 8 c 0 + 423 14 403 22 381 14 c 1 + 376 14 368 30 368 35 c 1 + 377 55 380 87 380 107 c 2 + 380 490 l 2xbe +532 370 m 0xbe + 507 370 469 353 460 344 c 0 + 457 341 455 338 455 333 c 2 + 455 96 l 2 + 455 54 503 26 546 26 c 0 + 616 26 676 110 676 189 c 0 + 676 302 619 370 532 370 c 0xbe +EndSplineSet +LCarets2: 1 302 +EndChar + +StartChar: f_f_b +Encoding: 65542 -1 388 +Width: 1070 +Flags: HW +HStem: -3 28<26 82 185 238 299 354 458 510 766 863> 363 46<39 96 172 368 442 557> 370 5<732 804> 627 38<228 330> 641 38<493 586> +VStem: 96 74<36 363 409 530> 368 74<36 363> 382 61<409 575> 651 75<52 344 375 581> 947 82<131 292> +LayerCount: 2 +Fore +SplineSet +651 489 m 2xaec0 + 651 509 648 550 641 565 c 0 + 631 586 582 641 532 641 c 0 + 472 641 442 551 442 464 c 2 + 442 414 l 2xadc0 + 442 412 445 409 447 409 c 2 + 556 409 l 2 + 561 409 561 408 561 402 c 0 + 561 393 556 377 549 363 c 1 + 448 363 l 2 + 445 363 442 360 442 357 c 0 + 442 269 444 132 444 132 c 2 + 444 100 445 71 452 45 c 0 + 455 34 499 25 507 25 c 0 + 512 25 512 3 510 -3 c 1 + 471 -1 444 2 405 2 c 0 + 365 2 343 -1 303 -3 c 1 + 301 -1 299 6 299 12 c 0 + 299 18 301 25 303 25 c 0 + 315 25 356 34 359 45 c 0 + 367 75 368 98 368 132 c 2 + 368 356 l 2 + 368 359 366 363 363 363 c 2 + 177 363 l 2 + 173 363 170 360 170 357 c 0 + 170 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 96 98 96 132 c 2 + 96 356 l 2 + 96 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2 + 94 409 96 412 96 415 c 2 + 96 428 l 2 + 96 570 209 665 301 665 c 0xd6c0 + 373 665 415 616 425 599 c 1 + 462 650 513 679 562 679 c 0 + 591 679 629 656 654 656 c 0 + 685 656 720 678 723 678 c 2 + 726 678 l 2 + 732 678 736 667 737 662 c 1 + 737 662 727 631 727 577 c 2 + 727 385 l 2 + 727 380 726 370 732 375 c 0 + 747 386 814 428 851 428 c 0 + 968 428 1029 317 1029 228 c 0 + 1029 100 927 -7 788 -7 c 0 + 773 -7 737 2 716 8 c 0 + 695 14 674 22 652 14 c 1 + 647 14 640 30 640 35 c 1 + 649 55 651 87 651 107 c 2 + 651 489 l 2xaec0 +804 370 m 0 + 779 370 740 353 731 344 c 0 + 728 341 727 338 727 333 c 2 + 727 96 l 2 + 727 54 774 26 817 26 c 0 + 887 26 947 110 947 189 c 0 + 947 302 891 370 804 370 c 0 +378 545 m 0 + 372 554 350 627 267 627 c 0 + 203 627 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 363 409 l 2 + 366 409 367 414 368 419 c 2xd6c0 + 368 419 372 488 380 514 c 0 + 382 519 382 525 382 528 c 0 + 382 532 379 542 378 545 c 0 +EndSplineSet +LCarets2: 2 273 568 +EndChar + +StartChar: f_k +Encoding: 65543 -1 389 +Width: 788 +Flags: HW +HStem: -3 28<26 82 185 238 310 373 460 523 723 792> 363 46<40 97 171 286> 387 28<575 624 699 761> 641 38<225 315> +VStem: 97 74<36 363 409 536> 379 75<32 199 229 582> +LayerCount: 2 +Fore +SplineSet +379 488 m 2xbc + 379 499 376 548 369 565 c 0 + 360 586 311 641 261 641 c 0 + 201 641 171 551 171 464 c 2 + 171 414 l 2 + 171 412 174 409 176 409 c 2 + 284 409 l 2 + 289 409 289 408 289 402 c 0 + 289 393 284 377 277 363 c 1 + 177 363 l 2 + 174 363 171 360 171 357 c 0 + 171 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 96 98 96 132 c 2 + 96 132 97 269 97 356 c 0 + 97 359 95 363 92 363 c 2 + 40 363 l 2 + 38 363 37 365 37 369 c 0 + 37 382 47 409 52 409 c 2 + 92 409 l 2xdc + 95 409 97 412 97 415 c 2 + 97 428 l 2 + 97 570 199 679 291 679 c 0 + 320 679 358 656 383 656 c 0 + 414 656 448 678 451 678 c 2 + 454 678 l 2 + 460 678 465 667 466 662 c 1 + 466 662 454 631 454 577 c 2 + 454 229 l 1 + 471 235 501 261 534 289 c 0 + 585 332 624 360 624 370 c 0 + 624 385 586 386 577 387 c 1 + 572 394 574 413 579 415 c 1 + 607 412 642 410 673 410 c 0 + 706 410 738 412 759 415 c 1 + 763 409 762 391 759 387 c 1 + 745 387 705 379 684 364 c 0 + 673 356 583 292 525 243 c 1 + 598 164 678 72 701 52 c 0 + 726 31 766 24 791 25 c 1 + 793 22 795 7 792 2 c 1 + 785 -1 755 -4 729 -4 c 0 + 671 -4 623 23 608 39 c 2 + 608 39 525 129 469 190 c 0 + 465 195 454 199 454 199 c 1 + 454 113 l 2 + 454 84 454 57 459 41 c 0 + 462 30 509 25 521 25 c 1 + 525 20 526 2 521 -3 c 1 + 481 -1 454 2 416 2 c 0 + 378 2 352 -1 312 -3 c 1 + 307 2 308 20 312 25 c 1 + 324 25 371 30 374 41 c 0 + 379 57 379 84 379 113 c 2 + 379 488 l 2xbc +EndSplineSet +LCarets2: 1 275 +EndChar + +StartChar: f_f_k +Encoding: 65544 -1 390 +Width: 1059 +Flags: HW +HStem: -3 28<26 82 185 238 299 354 458 510 581 645 731 795 995 1064> 363 46<39 96 172 368 442 557> 387 28<847 895 971 1032> 627 38<228 330> 641 38<493 586> +VStem: 96 74<36 363 409 530> 368 74<36 363> 381 62<409 578> 650 75<32 199 229 582> +LayerCount: 2 +Fore +SplineSet +650 489 m 2xae80 + 650 500 648 550 641 565 c 0 + 632 586 582 641 532 641 c 0 + 472 641 442 551 442 464 c 2 + 442 414 l 2xad80 + 442 412 445 409 447 409 c 2 + 556 409 l 2 + 561 409 561 408 561 402 c 0 + 561 393 556 377 549 363 c 1 + 448 363 l 2 + 445 363 442 360 442 357 c 0 + 442 269 444 132 444 132 c 2 + 444 100 445 71 452 45 c 0 + 455 34 499 25 507 25 c 0 + 512 25 512 3 510 -3 c 1 + 471 -1 444 2 405 2 c 0 + 365 2 343 -1 303 -3 c 1 + 301 -1 299 6 299 12 c 0 + 299 18 301 25 303 25 c 0 + 315 25 356 34 359 45 c 0 + 367 75 367 98 368 132 c 1 + 368 356 l 2 + 368 359 366 363 363 363 c 2 + 177 363 l 2 + 173 363 170 360 170 357 c 0 + 170 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 95 98 96 132 c 1 + 96 356 l 2 + 96 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2xce80 + 94 409 96 412 96 415 c 2 + 96 428 l 2 + 96 570 209 665 301 665 c 0xb680 + 373 665 415 616 425 599 c 1 + 462 650 513 679 562 679 c 0 + 591 679 630 656 654 656 c 0 + 685 656 720 678 723 678 c 2 + 726 678 l 2 + 732 678 736 667 737 662 c 1 + 737 662 726 631 726 577 c 2 + 726 229 l 1 + 743 235 773 261 806 289 c 0 + 857 332 896 360 896 370 c 0 + 896 385 858 386 849 387 c 1 + 844 394 846 413 851 415 c 1 + 879 412 913 410 944 410 c 0 + 977 410 1009 412 1030 415 c 1 + 1034 409 1033 391 1030 387 c 1 + 1016 387 976 379 955 364 c 0 + 944 356 855 292 797 243 c 1 + 870 164 950 72 973 52 c 0 + 998 31 1037 24 1062 25 c 1 + 1064 22 1066 7 1063 2 c 1 + 1056 -1 1026 -4 1000 -4 c 0 + 942 -4 895 23 880 39 c 2 + 880 39 796 129 740 190 c 0 + 736 195 726 199 726 199 c 1 + 726 113 l 2 + 726 84 725 57 730 41 c 0 + 733 30 780 25 792 25 c 1 + 796 20 797 2 792 -3 c 1 + 752 -1 726 2 688 2 c 0 + 650 2 624 -1 584 -3 c 1 + 579 2 580 20 584 25 c 1 + 596 25 643 30 646 41 c 0 + 651 57 650 84 650 113 c 2 + 650 489 l 2xae80 +377 545 m 0 + 372 554 350 627 267 627 c 0 + 203 627 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 363 409 l 2 + 366 409 367 414 368 419 c 2xd680 + 368 419 372 488 379 514 c 0 + 381 519 381 525 381 528 c 0 + 381 532 378 542 377 545 c 0 +EndSplineSet +LCarets2: 2 269 566 +EndChar + +StartChar: f_h +Encoding: 65545 -1 391 +Width: 792 +Flags: HW +HStem: -3 28<27 81 182 233 309 372 459 522 573 636 722 786> 363 46<39 95 169 284> 371 57<526 611> 641 38<223 312> +VStem: 95 74<35 363 409 536> 378 75<32 339 354 581> 642 75<32 339> +LayerCount: 2 +Fore +SplineSet +378 486 m 2xbe + 378 503 374 550 367 565 c 0 + 357 586 309 641 259 641 c 0 + 199 641 169 551 169 464 c 2 + 169 414 l 2 + 169 412 172 409 174 409 c 2 + 282 409 l 2 + 287 409 287 408 287 402 c 0 + 287 393 282 377 275 363 c 1 + 175 363 l 2 + 172 363 169 360 169 357 c 0 + 169 269 170 132 170 132 c 2 + 170 100 171 71 178 45 c 0 + 181 34 221 23 229 23 c 0 + 234 23 234 3 232 -3 c 1 + 193 -1 173 2 134 2 c 0 + 94 2 71 -1 31 -3 c 1 + 29 -1 27 6 27 12 c 0 + 27 18 29 23 31 23 c 0 + 43 23 82 34 85 45 c 0 + 93 75 94 98 94 132 c 2 + 94 132 95 269 95 356 c 0 + 95 359 93 363 90 363 c 2 + 38 363 l 2 + 36 363 35 365 35 369 c 0 + 35 382 45 409 50 409 c 2 + 90 409 l 2xde + 93 409 95 412 95 415 c 2 + 95 428 l 2 + 95 570 197 679 289 679 c 0 + 318 679 356 656 381 656 c 0 + 412 656 446 678 449 678 c 2 + 452 678 l 2 + 458 678 463 667 464 662 c 1 + 464 662 453 631 453 577 c 2 + 453 577 453 364 453 356 c 0 + 453 355 454 354 456 354 c 0 + 457 354 458 355 459 356 c 0 + 479 377 544 428 591 428 c 0 + 696 428 717 363 717 221 c 2 + 717 113 l 2 + 717 84 717 57 722 41 c 0 + 725 30 771 25 783 25 c 1 + 787 20 788 2 783 -3 c 1 + 743 -1 717 2 679 2 c 0 + 641 2 615 -1 575 -3 c 1 + 570 2 571 20 575 25 c 1 + 587 25 634 30 637 41 c 0 + 642 57 642 84 642 113 c 2 + 642 211 l 2 + 642 332 622 371 546 371 c 0 + 510 371 453 326 453 317 c 2 + 453 113 l 2 + 453 84 453 57 458 41 c 0 + 461 30 508 25 520 25 c 1 + 524 20 525 2 520 -3 c 1 + 480 -1 453 2 415 2 c 0 + 377 2 352 -1 312 -3 c 1 + 307 2 308 20 312 25 c 1 + 324 25 370 30 373 41 c 0 + 378 57 378 84 378 113 c 2 + 378 486 l 2xbe +EndSplineSet +LCarets2: 1 273 +EndChar + +StartChar: f_f_h +Encoding: 65546 -1 392 +Width: 1066 +Flags: HW +HStem: -3 28<26 82 185 238 299 354 458 510 582 646 732 796 846 909 996 1059> 363 46<39 96 172 368 442 557> 371 57<800 884> 627 38<228 330> 641 38<493 586> +VStem: 96 74<36 363 409 530> 368 74<36 363> 381 62<409 578> 651 75<32 339 354 582> 915 75<32 339> +LayerCount: 2 +Fore +SplineSet +651 486 m 2xaec0 + 651 501 648 550 641 565 c 0 + 632 586 582 641 532 641 c 0 + 472 641 442 551 442 464 c 2 + 442 414 l 2xadc0 + 442 412 445 409 447 409 c 2 + 556 409 l 2 + 561 409 561 408 561 402 c 0 + 561 393 556 377 549 363 c 1 + 448 363 l 2 + 445 363 442 360 442 357 c 0 + 442 269 444 132 444 132 c 2 + 444 100 445 71 452 45 c 0 + 455 34 499 25 507 25 c 0 + 512 25 512 3 510 -3 c 1 + 471 -1 444 2 405 2 c 0 + 365 2 343 -1 303 -3 c 1 + 301 -1 299 6 299 12 c 0 + 299 18 301 25 303 25 c 0 + 315 25 356 34 359 45 c 0 + 367 75 367 98 368 132 c 1 + 368 356 l 2 + 368 359 366 363 363 363 c 2 + 177 363 l 2 + 173 363 170 360 170 357 c 0 + 170 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 95 98 96 132 c 1 + 96 356 l 2 + 96 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2xcec0 + 94 409 96 412 96 415 c 2 + 96 428 l 2 + 96 570 209 665 301 665 c 0xb6c0 + 373 665 415 616 425 599 c 1 + 462 650 513 679 562 679 c 0 + 591 679 630 656 654 656 c 0 + 685 656 720 678 723 678 c 2 + 726 678 l 2 + 732 678 736 667 737 662 c 1 + 737 662 727 631 727 577 c 2 + 727 577 727 364 727 356 c 0 + 727 355 727 354 729 354 c 0 + 730 354 731 355 732 356 c 0 + 752 377 817 428 864 428 c 0 + 969 428 990 363 990 221 c 2 + 990 113 l 2 + 990 84 990 57 995 41 c 0 + 998 30 1045 25 1057 25 c 1 + 1061 20 1062 2 1057 -3 c 1 + 1017 -1 990 2 952 2 c 0 + 914 2 889 -1 849 -3 c 1 + 844 2 845 20 849 25 c 1 + 861 25 907 30 910 41 c 0 + 915 57 915 84 915 113 c 2 + 915 211 l 2 + 915 332 895 371 819 371 c 0 + 783 371 727 326 727 317 c 2 + 727 113 l 2 + 727 84 726 57 731 41 c 0 + 734 30 781 25 793 25 c 1 + 797 20 798 2 793 -3 c 1 + 753 -1 726 2 688 2 c 0 + 650 2 625 -1 585 -3 c 1 + 580 2 581 20 585 25 c 1 + 597 25 643 30 646 41 c 0 + 651 57 651 84 651 113 c 2 + 651 486 l 2xaec0 +377 545 m 0 + 372 554 350 627 267 627 c 0 + 203 627 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 363 409 l 2 + 366 409 367 414 368 419 c 2xd6c0 + 368 419 372 488 379 514 c 0 + 381 519 381 525 381 528 c 0 + 381 532 378 542 377 545 c 0 +EndSplineSet +LCarets2: 2 269 545 +EndChar + +StartChar: f_j +Encoding: 65547 -1 393 +Width: 501 +Flags: HW +HStem: -3 26<27 76 187 233> 363 46<39 95 169 350> 406 20G<433 437> 641 38<223 308> +VStem: 95 74<35 363 409 536> 358 75<-67 355> +LayerCount: 2 +Fore +SplineSet +358 303 m 2xbc + 358 311 358 333 347 349 c 0 + 338 362 288 363 275 363 c 2 + 175 363 l 2 + 172 363 169 360 169 357 c 0 + 169 269 170 132 170 132 c 2 + 170 100 171 71 178 45 c 0 + 181 34 221 23 229 23 c 0 + 234 23 234 3 232 -3 c 1 + 193 -1 173 2 134 2 c 0 + 94 2 71 -1 31 -3 c 1 + 29 -1 27 6 27 12 c 0 + 27 18 29 23 31 23 c 0 + 43 23 82 34 85 45 c 0 + 93 75 94 98 94 132 c 2 + 94 132 95 269 95 356 c 0 + 95 359 93 363 90 363 c 2 + 38 363 l 2 + 36 363 35 365 35 369 c 0 + 35 382 45 409 50 409 c 2 + 90 409 l 2 + 93 409 95 412 95 415 c 2 + 95 428 l 2 + 95 570 197 679 289 679 c 0 + 349 679 430 640 430 598 c 0 + 430 571 413 552 386 552 c 0 + 369 552 353 559 345 573 c 0 + 332 595 309 641 259 641 c 0 + 199 641 169 551 169 464 c 2 + 169 414 l 2 + 169 412 172 409 174 409 c 2 + 282 409 l 2xdc + 325 409 393 411 429 423 c 0 + 430 423 433 426 434 426 c 0 + 440 426 438 408 438 403 c 0 + 434 372 434 366 434 333 c 2 + 434 316 l 0 + 434 66 l 1 + 434 -122 331 -199 265 -226 c 1 + 260 -223 254 -216 252 -211 c 0 + 251 -209 251 -205 252 -204 c 1 + 308 -164 358 -118 358 44 c 2 + 358 303 l 2xbc +EndSplineSet +LCarets2: 1 278 +EndChar + +StartChar: f_f_j +Encoding: 65548 -1 394 +Width: 775 +Flags: HW +HStem: -3 28<26 82 185 238 299 354 458 510> 363 46<39 96 170 368 442 624> 406 20G<708 711> 627 38<228 330> 641 38<494 581> +VStem: 96 74<36 363 409 530> 368 74<36 363 409 528> 633 75<-67 355> +LayerCount: 2 +Fore +SplineSet +633 303 m 2xa7 + 633 311 631 333 620 349 c 0 + 611 362 562 363 549 363 c 2 + 448 363 l 2 + 445 363 442 360 442 357 c 0 + 442 269 444 132 444 132 c 2 + 444 100 445 71 452 45 c 0 + 455 34 499 25 507 25 c 0 + 512 25 512 3 510 -3 c 1 + 471 -1 444 2 405 2 c 0 + 365 2 343 -1 303 -3 c 1 + 301 -1 299 6 299 12 c 0 + 299 18 301 25 303 25 c 0 + 315 25 356 34 359 45 c 0 + 367 75 368 98 368 132 c 2 + 368 356 l 2 + 368 359 366 363 363 363 c 2 + 176 363 l 2 + 173 363 170 360 170 357 c 0 + 170 269 172 132 172 132 c 2 + 172 100 173 71 180 45 c 0 + 183 34 226 25 234 25 c 0 + 239 25 239 3 237 -3 c 1 + 198 -1 172 2 133 2 c 0 + 93 2 70 -1 30 -3 c 1 + 28 -1 26 6 26 12 c 0 + 26 18 28 25 30 25 c 0 + 42 25 84 34 87 45 c 0 + 95 75 96 98 96 132 c 2 + 96 356 l 2 + 96 359 94 363 91 363 c 2 + 39 363 l 2 + 37 363 36 365 36 369 c 0 + 36 382 46 409 51 409 c 2 + 91 409 l 2 + 94 409 96 412 96 415 c 2 + 96 428 l 2 + 96 570 209 665 301 665 c 0xd7 + 373 665 415 616 425 599 c 1 + 463 649 513 679 562 679 c 0 + 622 679 703 640 703 598 c 0 + 703 571 686 552 659 552 c 0 + 642 552 626 559 618 573 c 0 + 605 595 582 641 532 641 c 0 + 472 641 437 551 442 464 c 1 + 442 414 l 2 + 442 412 445 409 447 409 c 2 + 556 409 l 2xcf + 599 409 666 411 702 423 c 0 + 703 423 707 426 708 426 c 0 + 714 426 712 408 712 403 c 0 + 708 372 708 366 708 333 c 2 + 708 316 l 0 + 708 66 l 1 + 708 -122 605 -199 539 -226 c 1 + 534 -223 528 -216 526 -211 c 0 + 525 -209 525 -205 526 -204 c 1 + 582 -164 633 -118 633 44 c 2 + 633 303 l 2xa7 +378 545 m 0 + 372 554 350 627 267 627 c 0 + 203 627 170 551 170 464 c 2 + 170 414 l 2 + 170 412 173 409 175 409 c 2 + 363 409 l 2 + 366 409 368 412 368 415 c 2 + 368 419 l 2 + 368 449 372 488 380 514 c 0 + 382 519 382 525 382 528 c 0 + 382 532 379 542 378 545 c 0 +EndSplineSet +LCarets2: 2 269 552 +EndChar + +StartChar: iogonek.dotless +Encoding: 65549 -1 395 +Width: 261 +Flags: HW +HStem: -219 58<108 180> -3 28<29 85 206 243> 404 20G<172 176> +VStem: 51 53<-157 -85> 98 75<36 358> +LayerCount: 2 +Fore +SplineSet +31 -3 m 1xf0 + 26 2 26 25 31 25 c 0 + 43 25 88 34 91 45 c 0 + 97 69 98 99 98 113 c 2 + 98 298 l 2 + 98 306 97 337 84 351 c 1 + 63 377 27 367 27 373 c 0 + 27 374 28 396 33 397 c 0 + 77 404 132 412 168 423 c 0 + 169 423 172 424 173 424 c 0 + 179 424 179 408 178 403 c 0 + 174 372 173 366 173 333 c 2 + 173 132 l 2xe8 + 173 100 174 71 181 45 c 0 + 184 34 231 25 239 25 c 0 + 244 25 244 3 242 -3 c 1 + 231 -2 215 -2 206 -1 c 1 + 163 -27 104 -77 104 -119 c 0 + 104 -134 111 -161 144 -161 c 0 + 194 -161 217 -124 223 -124 c 0 + 224 -124 227 -129 227 -137 c 0 + 227 -142 226 -150 223 -154 c 0 + 202 -182 164 -219 120 -219 c 0 + 65 -219 51 -170 51 -144 c 0 + 51 -91 112 -33 164 1 c 1 + 156 1 148 2 138 2 c 0 + 98 2 71 -1 31 -3 c 1xf0 +EndSplineSet +EndChar + +StartChar: gravecomb.cap +Encoding: 65550 -1 396 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 130 +VStem: -345 181 +LayerCount: 2 +Fore +SplineSet +-164 720 m 0 + -164 717 -167 711 -170 711 c 0 + -187 711 -345 778 -345 812 c 0 + -345 824 -338 841 -300 841 c 0 + -292 841 -286 840 -282 838 c 0 + -248 813 -164 727 -164 720 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb.cap +Encoding: 65551 -1 397 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 130 +VStem: -342 181 +LayerCount: 2 +Fore +SplineSet +-342 720 m 0 + -342 727 -258 813 -224 838 c 0 + -220 840 -214 841 -206 841 c 0 + -168 841 -161 824 -161 812 c 0 + -161 778 -319 711 -336 711 c 0 + -339 711 -342 717 -342 720 c 0 +EndSplineSet +EndChar + +StartChar: uni0302.cap +Encoding: 65552 -1 398 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 129 +VStem: -361 223 +LayerCount: 2 +Fore +SplineSet +-249 840 m 0 + -245 840 -241 836 -237 832 c 0 + -198 790 -180 773 -138 728 c 1 + -138 722 -142 711 -147 711 c 1 + -164 722 -249 773 -249 773 c 25 + -249 773 -325 726 -351 711 c 1 + -356 711 -361 722 -361 728 c 1 + -319 772 -301 788 -261 832 c 0 + -257 836 -253 840 -249 840 c 0 +EndSplineSet +EndChar + +StartChar: uni030A.cap +Encoding: 65553 -1 399 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 33<-287 -212> 853 33<-288 -211> +VStem: -336 32<761 836> -196 32<761 837> +LayerCount: 2 +Fore +SplineSet +-304 799 m 0 + -304 769 -278 744 -249 744 c 0 + -220 744 -196 769 -196 799 c 0 + -196 829 -220 853 -249 853 c 0 + -278 853 -304 829 -304 799 c 0 +-336 799 m 0 + -336 847 -296 886 -249 886 c 0 + -202 886 -164 847 -164 799 c 0 + -164 751 -202 711 -249 711 c 0 + -296 711 -336 751 -336 799 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb.cap +Encoding: 65554 -1 400 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 43<-229 -130> 756 43<-351 -254> +VStem: -378 275 +LayerCount: 2 +Fore +SplineSet +-297 799 m 0 + -270 799 -252 789 -232 778 c 0 + -211 766 -187 755 -172 755 c 0 + -133 755 -116 787 -109 791 c 1 + -105 791 -103 785 -103 781 c 0 + -103 769 -110 756 -117 747 c 0 + -135 725 -158 711 -184 711 c 0 + -211 711 -229 721 -249 732 c 0 + -270 744 -289 756 -309 756 c 0 + -348 756 -365 722 -372 718 c 1 + -376 718 -378 725 -378 729 c 0 + -378 741 -371 755 -364 764 c 0 + -346 786 -323 799 -297 799 c 0 +EndSplineSet +EndChar + +StartChar: uni0304.cap +Encoding: 65555 -1 401 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 41<-373 -128> +LayerCount: 2 +Fore +SplineSet +-133 711 m 1 + -178 711 -300 711 -373 711 c 1 + -383 715 -376 746 -367 752 c 9 + -367 752 -212 752 -127 752 c 1 + -120 747 -123 722 -133 711 c 1 +EndSplineSet +EndChar + +StartChar: uni0306.cap +Encoding: 65556 -1 402 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 711 45<-309 -189> +VStem: -355 21<794 810> -164 21<794 810> +LayerCount: 2 +Fore +SplineSet +-164 816 m 1 + -154 816 -143 807 -143 800 c 0 + -143 798 -143 796 -144 794 c 0 + -158 743 -202 711 -249 711 c 0 + -296 711 -340 743 -354 794 c 0 + -355 796 -355 798 -355 800 c 0 + -355 807 -344 816 -334 816 c 1 + -321 778 -292 756 -249 756 c 0 + -206 756 -177 778 -164 816 c 1 +EndSplineSet +EndChar + +StartChar: uni0327.cap +Encoding: 65557 -1 403 +Width: 459 +GlyphClass: 4 +Flags: HW +HStem: -170 27<167 241> -65 39<215 247> +VStem: 252 43<-136 -69> +LayerCount: 2 +Fore +SplineSet +215 -26 m 1 + 244 -26 l 2 + 274 -26 295 -53 295 -83 c 0 + 295 -137 247 -170 187 -170 c 0 + 173 -170 154 -165 147 -160 c 1 + 146 -154 144 -151 144 -144 c 0 + 144 -136 153 -128 160 -128 c 0 + 174 -128 183 -143 202 -143 c 0 + 234 -143 252 -124 252 -104 c 0 + 252 -77 232 -65 217 -65 c 0 + 204 -65 199 -68 187 -73 c 0 + 185 -73 173 -64 175 -59 c 0 + 186 -41 203 -17 212 0 c 1 + 236 0 l 1 + 215 -26 l 1 +EndSplineSet +EndChar + +StartChar: uni0308.narrow +Encoding: 65558 -1 404 +Width: 300 +GlyphClass: 4 +Flags: HW +HStem: 457 96<31 112 188 268> +VStem: 22 98<466 544> 179 98<466 544> +LayerCount: 2 +Fore +SplineSet +229 553 m 0 + 255 553 276 530 276 504 c 0 + 276 478 254 457 228 457 c 0 + 202 457 179 479 179 505 c 0 + 179 531 203 553 229 553 c 0 +72 553 m 0 + 98 553 120 530 120 504 c 0 + 120 478 97 457 71 457 c 0 + 45 457 22 479 22 505 c 0 + 22 531 46 553 72 553 c 0 +EndSplineSet +EndChar + +StartChar: uni0308.cap +Encoding: 65559 -1 405 +Width: 333 +GlyphClass: 4 +Flags: HW +HStem: 695 98<37 118 213 294> +VStem: 28 98<704 785> 205 98<704 785> +LayerCount: 2 +Fore +SplineSet +205 744 m 0 + 205 771 227 793 254 793 c 0 + 281 793 303 771 303 744 c 0 + 303 717 281 695 254 695 c 0 + 227 695 205 717 205 744 c 0 +28 744 m 0 + 28 771 50 793 77 793 c 0 + 104 793 126 771 126 744 c 0 + 126 717 104 695 77 695 c 0 + 50 695 28 717 28 744 c 0 +EndSplineSet +EndChar + +StartChar: uni030C.cap +Encoding: 65560 -1 406 +Width: 255 +GlyphClass: 4 +Flags: HW +HStem: 710 129 +VStem: 21 223 +LayerCount: 2 +Fore +SplineSet +133 710 m 0 + 129 710 125 714 121 718 c 0 + 82 760 63 778 21 823 c 1 + 21 829 26 839 31 839 c 1 + 48 828 133 777 133 777 c 25 + 133 777 209 824 235 839 c 1 + 240 839 245 829 245 823 c 1 + 203 779 185 762 145 718 c 0 + 141 714 137 710 133 710 c 0 +EndSplineSet +EndChar + +StartChar: uni1E0C +Encoding: 7692 7692 407 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 68 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 563 -646 2 +EndChar + +StartChar: uni1E0D +Encoding: 7693 7693 408 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 524 -651 2 +EndChar + +StartChar: uni1E0E +Encoding: 7694 7694 409 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 68 N 1 0 0 1 -1 0 2 +Refer: 327 772 N 1 0 0 1 570 -590 2 +EndChar + +StartChar: uni1E0F +Encoding: 7695 7695 410 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 327 772 N 1 0 0 1 540 -593 2 +EndChar + +StartChar: uni1E10 +Encoding: 7696 7696 411 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 68 N 1 0 0 1 -1 0 2 +Refer: 403 -1 N 1 0 0 1 86 3 2 +EndChar + +StartChar: uni1E11 +Encoding: 7697 7697 412 +Width: 502 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 337 807 N 1 0 0 1 475 3 2 +EndChar + +StartChar: uni1E24 +Encoding: 7716 7716 413 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 607 -646 2 +EndChar + +StartChar: uni1E25 +Encoding: 7717 7717 414 +Width: 503 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 510 -645 2 +EndChar + +StartChar: uni1E28 +Encoding: 7720 7720 415 +Width: 708 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 403 -1 N 1 0 0 1 -61 3 2 +EndChar + +StartChar: uni1E29 +Encoding: 7721 7721 416 +Width: 503 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 0 0 2 +Refer: 337 807 N 1 0 0 1 385 6 2 +EndChar + +StartChar: uni1E2A +Encoding: 7722 7722 417 +Width: 708 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 329 774 N 1 0 0 1 609 -665 2 +EndChar + +StartChar: uni1E2B +Encoding: 7723 7723 418 +Width: 503 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 -1 0 2 +Refer: 329 774 N 1 0 0 1 510 -665 2 +EndChar + +StartChar: uni1E62 +Encoding: 7778 7778 419 +Width: 490 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 494 -653 2 +EndChar + +StartChar: uni1E63 +Encoding: 7779 7779 420 +Width: 360 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 1 0 2 +Refer: 330 775 N 1 0 0 1 423 -651 2 +EndChar + +StartChar: uni1E6C +Encoding: 7788 7788 421 +Width: 611 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 1 0 2 +Refer: 330 775 N 1 0 0 1 557 -646 2 +EndChar + +StartChar: uni1E6D +Encoding: 7789 7789 422 +Width: 303 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 1 0 2 +Refer: 330 775 N 1 0 0 1 413 -651 2 +EndChar + +StartChar: uni1E6E +Encoding: 7790 7790 423 +Width: 611 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 1 0 2 +Refer: 327 772 N 1 0 0 1 562 -590 2 +EndChar + +StartChar: uni1E6F +Encoding: 7791 7791 424 +Width: 303 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 1 0 2 +Refer: 327 772 N 1 0 0 1 433 -594 2 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 425 +Width: 878 +Flags: HW +LayerCount: 2 +Fore +Refer: 54 87 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 671 0 2 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 426 +Width: 704 +Flags: HW +LayerCount: 2 +Fore +Refer: 86 119 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 589 -3 2 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 427 +Width: 878 +Flags: HW +LayerCount: 2 +Fore +Refer: 54 87 N 1 0 0 1 0 0 2 +Refer: 397 -1 N 1 0 0 1 750 0 2 +EndChar + +StartChar: wacute +Encoding: 7811 7811 428 +Width: 704 +Flags: HW +LayerCount: 2 +Fore +Refer: 86 119 N 1 0 0 1 0 0 2 +Refer: 324 769 N 1 0 0 1 646 -3 2 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 429 +Width: 878 +Flags: HW +LayerCount: 2 +Fore +Refer: 54 87 N 1 0 0 1 0 0 2 +Refer: 405 -1 N 1 0 0 1 292 16 2 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 430 +Width: 704 +Flags: HW +LayerCount: 2 +Fore +Refer: 86 119 N 1 0 0 1 0 0 2 +Refer: 331 776 N 1 0 0 1 613 3 2 +EndChar + +StartChar: uni1E92 +Encoding: 7826 7826 431 +Width: 618 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 90 N 1 0 0 1 0 0 2 +Refer: 330 775 N 1 0 0 1 573 -643 2 +EndChar + +StartChar: uni1E93 +Encoding: 7827 7827 432 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 -1 0 2 +Refer: 330 775 N 1 0 0 1 469 -651 2 +EndChar + +StartChar: uni1E96 +Encoding: 7830 7830 433 +Width: 503 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 -1 0 2 +Refer: 327 772 N 1 0 0 1 511 -590 2 +EndChar + +StartChar: uni1E97 +Encoding: 7831 7831 434 +Width: 303 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 -27 0 2 +Refer: 331 776 N 1 0 0 1 364 96 2 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 435 +Width: 583 +Flags: HW +LayerCount: 2 +Fore +Refer: 56 89 N 1 0 0 1 0 0 2 +Refer: 396 -1 N 1 0 0 1 502 0 2 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 436 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 88 121 N 1 0 0 1 0 0 2 +Refer: 323 768 N 1 0 0 1 445 2 2 +EndChar + +StartChar: fraction +Encoding: 8260 8260 437 +AltUni2: 002215.ffffffff.0 +Width: 503 +Flags: HW +HStem: -2 21G<42 57> +LayerCount: 2 +Fore +SplineSet +481 704 m 1 + 72 14 l 2 + 68 7 62 -2 53 -2 c 0 + 32 -2 22 10 22 10 c 1 + 432 700 l 2 + 435 706 441 714 447 714 c 0 + 463 714 477 707 481 704 c 1 +EndSplineSet +EndChar + +StartChar: zero.prop +Encoding: 65561 -1 438 +Width: 533 +Flags: HW +LayerCount: 2 +Fore +Refer: 15 48 N 1 0 0 1 0 0 2 +EndChar + +StartChar: one.prop +Encoding: 65562 -1 439 +Width: 315 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 49 N 1 0 0 1 -111 0 2 +EndChar + +StartChar: two.prop +Encoding: 65563 -1 440 +Width: 467 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 50 N 1 0 0 1 -34 0 2 +EndChar + +StartChar: three.prop +Encoding: 65564 -1 441 +Width: 448 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 51 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: four.prop +Encoding: 65565 -1 442 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 52 N 1 0 0 1 -39 0 2 +EndChar + +StartChar: five.prop +Encoding: 65566 -1 443 +Width: 442 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 53 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: six.prop +Encoding: 65567 -1 444 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 54 N 1 0 0 1 -21 0 2 +EndChar + +StartChar: seven.prop +Encoding: 65568 -1 445 +Width: 441 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 55 N 1 0 0 1 -37 0 2 +EndChar + +StartChar: eight.prop +Encoding: 65569 -1 446 +Width: 484 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 56 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: nine.prop +Encoding: 65570 -1 447 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 57 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: longs +Encoding: 383 383 448 +Width: 266 +Flags: HW +HStem: -3 28<25 89 175 242> 382 40<40 94> 622 59<210 294> +VStem: 94 75<32 382 422 533> +LayerCount: 2 +Fore +SplineSet +169 422 m 1 + 169 113 l 2 + 169 84 169 57 174 41 c 0 + 177 30 228 25 240 25 c 1 + 244 20 245 2 240 -3 c 1 + 200 -1 169 2 131 2 c 0 + 93 2 68 -1 28 -3 c 1 + 23 2 24 20 28 25 c 1 + 40 25 86 30 89 41 c 0 + 94 57 94 84 94 113 c 2 + 94 382 l 1 + 37 382 l 2 + 34 382 33 388 33 391 c 0 + 33 395 57 421 58 422 c 1 + 74 422 83 422 94 422 c 1 + 94 433 94 428 94 428 c 2 + 94 570 203 681 263 681 c 0 + 292 681 294 679 309 669 c 1 + 313 665 319 652 319 642 c 0 + 319 607 293 603 280 603 c 0 + 270 603 262 607 251 613 c 0 + 240 619 236 622 223 622 c 0 + 193 622 168 591 169 530 c 2 + 169 422 l 1 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 449 +Width: 202 +Flags: HW +HStem: -11 107<59 143> +VStem: 47 107<1 85> +LayerCount: 2 +Fore +SplineSet +47 44 m 0 + 47 73 73 97 102 97 c 0 + 131 97 154 73 154 44 c 0 + 154 15 131 -11 102 -11 c 0 + 73 -11 47 15 47 44 c 0 +EndSplineSet +EndChar + +StartChar: Gcaron +Encoding: 486 486 450 +Width: 703 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 406 -1 N 1 0 0 1 242 0 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 451 +Width: 455 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 333 780 N 1 0 0 1 470 24 2 +EndChar + +StartChar: uni02BE +Encoding: 702 702 452 +Width: 190 +VWidth: 0 +Flags: HW +HStem: 428 33<31 78> 648 33<29 79> +VStem: 111 50<490 622> +LayerCount: 2 +Fore +SplineSet +33 461 m 1 + 79 461 111 505 111 555 c 0 + 111 609 83 648 29 648 c 1 + 26 654 24 669 32 682 c 1 + 104 682 161 624 161 556 c 0 + 161 488 101 428 30 428 c 1 + 27 437 28 447 33 461 c 1 +EndSplineSet +EndChar + +StartChar: uni02BF +Encoding: 703 703 453 +Width: 190 +VWidth: 0 +Flags: HW +HStem: 428 33<113 159> 648 33<112 161> +VStem: 29 50<490 622> +LayerCount: 2 +Fore +SplineSet +157 461 m 1 + 162 447 163 437 160 428 c 1 + 89 428 29 488 29 556 c 0 + 29 624 86 682 158 682 c 1 + 166 669 164 654 161 648 c 1 + 107 648 79 609 79 555 c 0 + 79 505 111 461 157 461 c 1 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 454 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +SplineSet +19 628 m 0 + 19 657 26 693 37 709 c 1 + 45 711 52 713 60 713 c 0 + 97 713 137 690 137 662 c 0 + 137 648 129 637 118 625 c 0 + 105 609 89 596 89 578 c 0 + 89 567 100 514 171 472 c 1 + 166 459 158 451 148 451 c 0 + 137 451 19 518 19 628 c 0 +EndSplineSet +EndChar + +StartChar: uni201F +Encoding: 8223 8223 455 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +SplineSet +183 626 m 0 + 183 655 190 691 201 707 c 1 + 209 709 216 711 224 711 c 0 + 261 711 301 688 301 660 c 0 + 301 646 293 635 282 623 c 0 + 269 607 253 594 253 576 c 0 + 253 565 264 512 335 470 c 1 + 330 457 322 449 312 449 c 0 + 301 449 183 516 183 626 c 0 +18 626 m 0 + 18 655 25 691 36 707 c 1 + 44 709 51 711 59 711 c 0 + 96 711 136 688 136 660 c 0 + 136 646 128 635 117 623 c 0 + 104 607 88 594 88 576 c 0 + 88 565 99 512 170 470 c 1 + 165 457 157 449 147 449 c 0 + 136 449 18 516 18 626 c 0 +EndSplineSet +EndChar + +StartChar: i.TRK +Encoding: 65571 -1 456 +Width: 263 +Flags: HW +LayerCount: 2 +Fore +Refer: 330 775 N 1 0 0 1 381 44 2 +Refer: 238 305 N 1 0 0 1 0 0 2 +EndChar + +StartChar: napostrophe +Encoding: 329 329 457 +Width: 519 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 2 0 2 +Refer: 335 789 N 1 0 0 1 222 0 2 +EndChar + +StartChar: uni2042 +Encoding: 8258 8258 458 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 10 42 N 1 0 0 1 218 0 2 +Refer: 10 42 N 1 0 0 1 0 -393 2 +Refer: 10 42 N 1 0 0 1 436 -393 2 +EndChar + +StartChar: uni00AD +Encoding: 173 173 459 +Width: 0 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: zero.small +Encoding: 65572 -1 460 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 15 48 N 0.6 0 0 0.6 -13.7998 -40 2 +EndChar + +StartChar: one.small +Encoding: 65573 -1 461 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 49 N 0.6 0 0 0.6 -13.7039 -40 2 +EndChar + +StartChar: two.small +Encoding: 65574 -1 462 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 50 N 0.6 0 0 0.6 -14.5996 -40 2 +EndChar + +StartChar: three.small +Encoding: 65575 -1 463 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 51 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: four.small +Encoding: 65576 -1 464 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 52 N 0.6 0 0 0.6 -13.4004 -40 2 +EndChar + +StartChar: five.small +Encoding: 65577 -1 465 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 53 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: six.small +Encoding: 65578 -1 466 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 54 N 0.6 0 0 0.6 -13.5996 -40 2 +EndChar + +StartChar: seven.small +Encoding: 65579 -1 467 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 55 N 0.6 0 0 0.6 -13.5996 -40 2 +EndChar + +StartChar: eight.small +Encoding: 65580 -1 468 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 56 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: nine.small +Encoding: 65581 -1 469 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 57 N 0.6 0 0 0.6 -14.2002 -40 2 +EndChar + +StartChar: zero.medium +Encoding: 65582 -1 470 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 15 48 N 0.8 0 0 0.8 6.59961 50 2 +EndChar + +StartChar: one.medium +Encoding: 65583 -1 471 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 49 N 0.8 0 0 0.8 5.72786 50 2 +EndChar + +StartChar: two.medium +Encoding: 65584 -1 472 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 50 N 0.8 0 0 0.8 6.2002 50 2 +EndChar + +StartChar: three.medium +Encoding: 65585 -1 473 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 51 N 0.8 0 0 0.8 6.40039 50 2 +EndChar + +StartChar: four.medium +Encoding: 65586 -1 474 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 52 N 0.8 0 0 0.8 6.7998 50 2 +EndChar + +StartChar: five.medium +Encoding: 65587 -1 475 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 53 N 0.8 0 0 0.8 6.40039 50 2 +EndChar + +StartChar: six.medium +Encoding: 65588 -1 476 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 54 N 0.8 0 0 0.8 6.2002 50 2 +EndChar + +StartChar: seven.medium +Encoding: 65589 -1 477 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 55 N 0.8 0 0 0.8 6.2002 50 2 +EndChar + +StartChar: eight.medium +Encoding: 65590 -1 478 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 56 N 0.8 0 0 0.8 6.40039 50 2 +EndChar + +StartChar: nine.medium +Encoding: 65591 -1 479 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 57 N 0.8 0 0 0.8 5.40039 50 2 +EndChar + +StartChar: zero.numr +Encoding: 65592 -1 480 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 460 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: one.numr +Encoding: 65593 -1 481 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 461 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: two.numr +Encoding: 65594 -1 482 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: three.numr +Encoding: 65595 -1 483 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 463 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: four.numr +Encoding: 65596 -1 484 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: five.numr +Encoding: 65597 -1 485 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 465 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: six.numr +Encoding: 65598 -1 486 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 466 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: seven.numr +Encoding: 65599 -1 487 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 467 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: eight.numr +Encoding: 65600 -1 488 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 468 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: nine.numr +Encoding: 65601 -1 489 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 469 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: uni0325 +Encoding: 805 805 490 +Width: 0 +GlyphClass: 4 +Flags: HW +LayerCount: 2 +Fore +Refer: 332 778 N 1 0 0 1 0 -686 2 +EndChar + +StartChar: circumflex +Encoding: 710 710 491 +Width: 302 +Flags: HW +LayerCount: 2 +Fore +Refer: 325 770 N 1 0 0 1 405 20 2 +EndChar + +StartChar: ring +Encoding: 730 730 492 +Width: 268 +Flags: HW +LayerCount: 2 +Fore +Refer: 332 778 N 1 0 0 1 384 4 2 +EndChar + +StartChar: tilde +Encoding: 732 732 493 +Width: 346 +Flags: HW +LayerCount: 2 +Fore +Refer: 326 771 N 1 0 0 1 415 6 2 +EndChar + +StartChar: uni2074 +Encoding: 8308 8308 494 +Width: 304 +VWidth: 456 +Flags: W +HStem: 553 41<59 166 225 274> +VStem: 166 59<451 553 594 731> +LayerCount: 2 +Fore +SplineSet +194 451 m 0 + 168 451 166 454 166 459 c 2 + 166 551 l 1 + 165 554 163 553 161 553 c 2 + 23 553 l 1 + 18 559 16 575 15 589 c 1 + 88 677 137 750 202 825 c 0 + 206 829 212 832 217 832 c 0 + 221 832 225 830 225 826 c 2 + 225 598 l 2 + 225 595 226 595 230 594 c 1 + 266 594 l 2 + 271 594 274 593 274 561 c 0 + 274 557 269 553 269 553 c 1 + 229 553 l 2 + 226 553 225 552 225 549 c 2 + 225 458 l 1 + 225 458 226 451 194 451 c 0 +166 598 m 1 + 166 727 l 2 + 166 729 164 731 163 731 c 1 + 163 731 164 731 163 730 c 2 + 60 601 l 2 + 59 600 59 600 59 599 c 0 + 59 596 60 594 63 594 c 2 + 161 594 l 1 + 163 595 165 594 166 598 c 1 +EndSplineSet +EndChar + +StartChar: uni2070 +Encoding: 8304 8304 495 +Width: 362 +VWidth: 455 +Flags: W +HStem: 452 26<151 211> 803 26<151 213> +VStem: 36 67<543 738> 259 67<543 739> +LayerCount: 2 +Fore +SplineSet +104 642 m 0 + 104 553 137 479 182 479 c 0 + 227 479 259 556 259 645 c 0 + 259 734 227 803 182 803 c 0 + 137 803 104 731 104 642 c 0 +36 641 m 0 + 36 744 100 829 181 829 c 0 + 262 829 326 744 326 641 c 0 + 326 538 262 452 181 452 c 0 + 100 452 36 538 36 641 c 0 +EndSplineSet +EndChar + +StartChar: uni2075 +Encoding: 8309 8309 496 +Width: 311 +VWidth: 455 +Flags: W +HStem: 451 29<112 187> 645 50<94 187> 773 53<105 255> +VStem: 211 62<503 623> +LayerCount: 2 +Fore +SplineSet +94 826 m 0 + 139 828 228 825 250 831 c 1 + 253 827 256 819 256 805 c 0 + 256 792 252 783 247 773 c 1 + 103 767 109 779 107 767 c 2 + 94 691 l 1 + 112 693 126 694 150 694 c 0 + 219 694 273 640 273 578 c 0 + 273 504 228 451 129 451 c 0 + 103 451 56 461 41 482 c 1 + 40 486 39 487 39 491 c 0 + 39 507 55 518 66 518 c 0 + 96 518 115 480 146 480 c 0 + 200 480 211 527 211 561 c 0 + 211 612 183 645 133 645 c 0 + 85 645 73 641 67 641 c 0 + 64 641 62 643 58 649 c 1 + 87 825 86 826 94 826 c 0 +EndSplineSet +EndChar + +StartChar: uni2076 +Encoding: 8310 8310 497 +Width: 318 +VWidth: 456 +Flags: W +HStem: 451 29<125 197> 636 38<120 199> +VStem: 34 62<504 638> 219 62<500 618> +LayerCount: 2 +Fore +SplineSet +97 566 m 0 + 97 517 120 480 165 480 c 0 + 198 480 219 514 219 563 c 0 + 219 599 198 636 151 636 c 0 + 128 636 110 618 103 602 c 0 + 99 593 97 580 97 566 c 0 +161 451 m 0 + 90 451 34 499 34 584 c 3 + 34 698 131 793 245 833 c 1 + 255 830 264 814 264 808 c 1 + 192 780 130 730 104 647 c 0 + 102 643 104 640 107 643 c 0 + 117 656 140 674 187 674 c 0 + 229 674 281 632 281 570 c 0 + 281 503 233 451 161 451 c 0 +EndSplineSet +EndChar + +StartChar: uni2077 +Encoding: 8311 8311 498 +Width: 298 +VWidth: 455 +Flags: W +HStem: 775 54<70 242> +VStem: 38 25<732 766> +LayerCount: 2 +Fore +SplineSet +256 829 m 2 + 272 829 292 831 296 831 c 0 + 300 831 300 828 300 825 c 0 + 300 817 294 806 283 787 c 2 + 87 447 l 1 + 85 446 83 446 82 446 c 0 + 71 446 64 456 64 468 c 0 + 64 470 64 472 65 474 c 2 + 242 775 l 1 + 190 775 145 775 97 775 c 0 + 69 775 68 741 63 730 c 1 + 57 729 44 729 38 735 c 1 + 41 766 41 791 42 821 c 0 + 42 826 49 829 54 829 c 2 + 256 829 l 2 +EndSplineSet +EndChar + +StartChar: uni2078 +Encoding: 8312 8312 499 +Width: 303 +VWidth: 455 +Flags: W +HStem: 448 29<124 186> 626 45<132 172> 803 28<122 176> +VStem: 42 62<490 601> 57 54<692 798> 192 53<687 795> 202 62<491 596> +LayerCount: 2 +Fore +SplineSet +57 738 m 3xe8 + 57 788 96 831 147 831 c 3 + 204 831 245 798 245 742 c 3xec + 245 703 214 672 190 659 c 0 + 187 658 186 658 189 656 c 0 + 228 635 265 594 265 552 c 0 + 265 493 214 448 152 448 c 0 + 90 448 42 483 42 545 c 0xf2 + 42 593 87 627 108 639 c 0 + 110 640 110 643 108 644 c 0 + 71 669 57 697 57 738 c 3xe8 +110 747 m 3 + 110 700 142 682 162 672 c 0 + 163 671 163 671 164 671 c 0 + 166 671 166 672 168 673 c 0 + 188 690 192 722 192 740 c 3 + 192 778 172 803 148 803 c 0 + 127 803 110 784 110 747 c 3 +104 557 m 0xf2 + 104 512 122 478 155 478 c 0 + 189 478 202 511 202 546 c 0 + 202 586 165 613 145 624 c 0 + 143 625 142 626 140 626 c 0 + 139 626 138 626 137 625 c 0 + 120 610 104 592 104 557 c 0xf2 +EndSplineSet +EndChar + +StartChar: uni2079 +Encoding: 8313 8313 500 +Width: 319 +VWidth: 456 +Flags: W +HStem: 610 38<125 204> 804 29<127 199> +VStem: 43 62<666 784> 228 62<646 780> +LayerCount: 2 +Fore +SplineSet +228 718 m 0 + 228 767 204 804 159 804 c 0 + 126 804 105 770 105 721 c 0 + 105 685 126 648 173 648 c 0 + 196 648 215 667 222 683 c 0 + 226 692 228 704 228 718 c 0 +163 833 m 0 + 234 833 290 785 290 700 c 3 + 290 586 193 491 79 451 c 1 + 69 454 61 471 61 477 c 1 + 133 505 194 554 220 637 c 0 + 222 641 220 645 217 642 c 0 + 207 629 185 610 138 610 c 0 + 96 610 43 652 43 714 c 0 + 43 781 91 833 163 833 c 0 +EndSplineSet +EndChar +EndChars +EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aacute -Encoding: 225 225 158 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 459 -4 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" aacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aacute -Encoding: 193 193 126 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 604 0 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aacute.sc -Encoding: 65630 -1 782 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 507 21 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: abreve -Encoding: 259 259 192 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 461 0 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" abreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Abreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Abreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Abreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Abreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Abreve -Encoding: 258 258 191 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 567 -3 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/abreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/abreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/abreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/abreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: abreve.sc -Encoding: 65663 -1 815 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 506 24 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: acircumflex -Encoding: 226 226 159 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 470 -5 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" acircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Acircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Acircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Acircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Acircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Acircumflex -Encoding: 194 194 127 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 566 -1 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: acircumflex.sc -Encoding: 65631 -1 783 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 507 49 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: acutecomb.cap -Encoding: 65565 -1 460 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 130 -VStem: -342 181 -LayerCount: 2 -Fore -SplineSet --342 720 m 0 - -342 727 -258 813 -224 838 c 0 - -220 840 -214 841 -206 841 c 0 - -168 841 -161 824 -161 812 c 0 - -161 778 -319 711 -336 711 c 0 - -339 711 -342 717 -342 720 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acutecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: acutecomb -Encoding: 769 769 333 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 156 -VStem: -312 156 -LayerCount: 2 -Fore -SplineSet --191 643 m 0 - -157 643 -156 619 -156 614 c 0 - -156 583 -294 486 -304 486 c 0 - -311 486 -312 493 -312 499 c 0 - -312 505 -249 596 -218 635 c 0 - -217 636 -205 643 -191 643 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/acute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/acute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: acute -Encoding: 180 180 113 -Width: 253 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 361 25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: adieresis -Encoding: 228 228 161 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 442 2 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" adieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Adieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Adieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Adieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Adieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Adieresis -Encoding: 196 196 129 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 32 65 N 1 0 0 1 0 0 3 -Refer: 473 -1 N 1 0 0 1 152 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/adieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/adieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/adieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/adieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: adieresis.sc -Encoding: 65633 -1 785 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 500 26 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aeacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aeacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aeacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aeacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aeacute -Encoding: 509 509 501 -Width: 637 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 620 -3 2 -Refer: 163 230 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" aeacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: AEacute -Encoding: 508 508 500 -Width: 875 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 849 0 2 -Refer: 131 198 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aeacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aeacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aeacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aeacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aeacute.sc -Encoding: 65736 -1 888 -Width: 919 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 933 -3 2 -Refer: 787 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_E.alt01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_E.alt01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_E.alt01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_E.alt01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,76 +0,0 @@ -StartChar: AE.alt01 -Encoding: 65551 -1 446 -Width: 822 -Flags: W -HStem: -3 26<-17 37 141 190 332 377> 2 41<509 712> 289 43<269 392 488 633> 602 47<507 672> 602 39<458 607> 610 30<309 346> -VStem: -18 147<2 59> 350 107<552 595> 398 88<213 286> 652 30<370 408> 706 31<513 557> -LayerCount: 2 -Fore -SplineSet -542 602 m 2x3360 - 466 602 457 587 457 576 c 2 - 457 574 l 1x3360 - 479 339 l 2 - 480 333 495 332 514 332 c 2 - 550 332 l 2 - 639 332 635 337 652 401 c 0 - 653 406 659 408 666 408 c 0 - 673 408 680 406 683 403 c 1 - 682 392 682 380 682 369 c 0 - 682 318 688 267 695 216 c 1 - 693 214 686 212 679 212 c 0 - 672 212 666 214 664 219 c 0 - 649 275 643 275 634 281 c 0 - 623 288 564 289 527 289 c 0 - 501 289 486 288 486 280 c 2 - 486 279 l 1 - 500 150 l 1 - 500 150 506 82 509 65 c 0 - 511 52 513 43 584 43 c 0 - 621 43 679 45 707 60 c 0 - 726 70 745 106 760 158 c 0 - 761 162 767 164 774 164 c 0 - 784 164 795 161 798 158 c 1 - 780 105 761 39 754 -4 c 1 - 648 -4 555 2 466 2 c 0x72e0 - 401 2 335 -3 335 -3 c 1 - 333 -1 332 5 332 11 c 0 - 332 20 334 30 337 30 c 0 - 349 30 404 40 409 49 c 0 - 415 59 417 72 417 87 c 0 - 417 125 400 259 398 278 c 0 - 398 283 395 286 390 286 c 2 - 248 286 l 2 - 245 286 243 285 242 283 c 2 - 161 128 l 1 - 138 86 130 65 130 53 c 0 - 130 30 183 23 189 23 c 0 - 190 23 191 22 191 20 c 0 - 191 14 188 1 186 -3 c 1xa2e0 - 147 -1 129 2 86 2 c 0x62e0 - 41 2 29 -1 -16 -3 c 1 - -17 -2 -18 1 -18 4 c 0 - -18 12 -15 23 -11 23 c 0 - 1 23 36 31 48 44 c 0 - 107 103 102 140 348 572 c 0 - 349 574 350 577 350 581 c 0 - 350 593 341 610 313 610 c 0 - 310 610 309 614 309 619 c 0 - 309 627 312 638 315 641 c 1 - 406 641 l 2xa760 - 497 641 613 648 719 648 c 1 - 726 599 730 561 737 518 c 1 - 734 515 727 513 720 513 c 0 - 713 513 707 515 706 520 c 0 - 684 602 630 602 604 602 c 2 - 542 602 l 2x3360 -270 332 m 1 - 291 331 309 331 326 331 c 0 - 347 331 367 331 388 333 c 0 - 391 333 393 335 393 338 c 0 - 386 414 373 534 373 534 c 1 - 269 336 l 1 - 269 334 l 2 - 269 332 270 332 270 332 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ae.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ae.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ae.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ae.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: ae -Encoding: 230 230 163 -Width: 637 -Flags: W -HStem: -8 62<405 531> -8 53<135 206> 242 36<331 512> 393 35<162 254 384 476> -VStem: 36 81<63 163> 51 79<288 346> 259 67<139 215> 513 83<279 360> -LayerCount: 2 -Fore -SplineSet -177 189 m 0x7b - 142 176 117 150 117 113 c 0 - 117 77 146 45 183 45 c 0 - 218 45 272 73 272 102 c 1 - 264 119 258 158 255 188 c 0 - 254 199 253 209 253 215 c 1 - 228 206 194 195 177 189 c 0x7b -433 393 m 0 - 351 393 329 278 331 278 c 1 - 340 278 480 278 490 278 c 0 - 502 278 512 283 513 301 c 0 - 514 324 493 393 433 393 c 0 -449 428 m 0 - 566 428 596 334 596 295 c 0 - 596 267 591 250 572 249 c 0 - 542 247 338 242 326 242 c 1 - 323 117 399 55 485 55 c 0 - 539 55 580 91 593 106 c 1 - 594 106 601 101 601 93 c 0 - 601 88 598 80 595 75 c 0 - 577 47 528 -8 452 -8 c 0xb7 - 392 -8 324 19 291 75 c 1 - 268 51 184 -8 150 -8 c 0 - 86 -8 36 41 36 104 c 0x7b - 36 144 59 170 81 182 c 0 - 128 205 215 237 243 250 c 0 - 253 254 255 256 257 264 c 0 - 259 273 259 283 259 295 c 0 - 259 339 232 389 184 389 c 0 - 150 389 137 365 130 327 c 0 - 124 294 108 281 84 281 c 0 - 63 281 51 302 51 322 c 0x77 - 51 330 55 342 58 346 c 1 - 81 368 162 426 233 426 c 0 - 275 426 307 396 324 365 c 1 - 347 390 393 428 449 428 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ae.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,70 +0,0 @@ -StartChar: AE -Encoding: 198 198 131 -Width: 875 -Flags: W -HStem: -3 28<-15 34 124 183 347 403> 0 33<509 727> 251 37<260 420> 305 36<503 676> 398 20G<715 722> 609 32<348 392 507 725> -VStem: 420 83<43 249 290 303 341 553> 704 31<225 283 363 418> 772 31<511 558> -LayerCount: 2 -Fore -SplineSet -462 0 m 0x7f80 - 397 0 349 -3 349 -3 c 1 - 345 2 347 25 349 25 c 1 - 361 25 408 36 413 48 c 1 - 419 70 420 115 420 132 c 10 - 420 249 l 17 - 402 250 357 251 333 251 c 0 - 293 251 279 249 234 246 c 0 - 232 246 229 243 229 243 c 1 - 229 243 187 174 157 126 c 0 - 137 96 118 64 118 51 c 0 - 118 28 173 25 181 25 c 1 - 184 22 185 3 183 -3 c 1 - 144 -1 131 2 88 2 c 0 - 43 2 32 -1 -13 -3 c 1 - -16 0 -16 18 -13 25 c 1xbf80 - -1 25 28 35 42 44 c 0 - 66 60 95 102 115 134 c 2 - 386 570 l 2 - 389 575 393 583 393 590 c 0 - 393 608 361 614 349 614 c 1 - 344 620 347 641 349 643 c 1 - 349 643 397 642 462 642 c 0 - 554 642 669 648 775 648 c 1 - 782 599 795 560 804 516 c 1 - 801 513 793 511 786 511 c 0 - 779 511 773 513 772 518 c 0 - 751 596 711 609 659 609 c 2 - 575 609 l 0 - 563 609 511 609 508 599 c 0 - 503 583 503 555 503 529 c 2 - 503 347 l 2 - 503 342 524 341 545 341 c 2 - 597 341 l 2 - 691 341 687 347 704 411 c 0 - 705 416 712 418 719 418 c 0 - 726 418 732 416 735 413 c 1 - 735 229 l 1 - 733 227 727 225 720 225 c 0 - 713 225 706 227 704 232 c 0 - 689 288 686 291 677 297 c 0 - 666 304 610 305 573 305 c 0 - 546 305 503 305 503 296 c 2 - 503 110 l 2 - 503 95 503 48 509 43 c 0 - 522 33 537 33 578 33 c 2 - 625 33 l 2 - 671 33 721 43 748 60 c 0 - 779 79 794 116 810 158 c 0 - 811 162 816 164 823 164 c 0 - 833 164 845 161 848 158 c 1 - 829 105 802 39 795 -4 c 1 - 689 -4 592 0 462 0 c 0x7f80 -420 290 m 9 - 420 553 l 17 - 399 521 260 293 260 293 c 1 - 260 293 259 289 261 289 c 0 - 286 288 316 288 338 288 c 0 - 368 288 401 289 420 290 c 9 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ae.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ae.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ae.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ae.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,84 +0,0 @@ -StartChar: ae.sc -Encoding: 65635 -1 787 -Width: 919 -Flags: W -HStem: -3 28<7 57 118 169 283 336 426 483 505 559 642 791> 163 37<170 281> 199 33<637 755> 404 31<641 801> 412 28<503 559> -VStem: 562 75<38 199 233 397> 774 27<243 284> 825 29<344 379> -LayerCount: 2 -Fore -SplineSet -484 -3 m 1xc7 - 458 -1 416 1 387 1 c 0 - 357 1 312 -1 282 -3 c 1 - 278 1 279 21 283 25 c 1 - 291 25 330 28 336 33 c 0 - 338 35 339 38 339 42 c 0 - 339 61 295 160 295 160 c 1 - 295 160 293 162 291 162 c 0 - 273 164 243 163 226 163 c 0 - 199 163 188 163 158 160 c 0 - 157 160 156 159 156 159 c 1 - 156 159 138 113 127 84 c 16 - 119 63 116 51 116 43 c 0 - 116 28 164 25 169 25 c 1 - 172 22 172 2 170 -3 c 1 - 144 -1 123 1 94 1 c 0 - 64 1 37 -1 7 -3 c 1 - 4 0 4 19 7 25 c 1 - 15 25 50 29 57 38 c 0 - 71 56 78 74 88 97 c 2 - 88 97 176 306 217 409 c 0 - 221 420 253 441 259 441 c 0 - 261 441 262 439 264 438 c 1 - 264 438 410 61 416 48 c 0 - 423 32 478 25 483 25 c 1 - 487 19 485 0 484 -3 c 1xc7 -172 202 m 0 - 190 201 209 200 225 200 c 0 - 246 200 259 201 280 203 c 0 - 281 203 281 205 281 205 c 1 - 227 343 l 1 - 170 204 l 1 - 170 204 171 202 172 202 c 0 -598 436 m 0x97 - 666 436 751 442 829 442 c 1 - 835 407 847 378 855 347 c 1 - 852 345 846 344 840 344 c 0 - 834 344 826 345 825 348 c 0 - 810 398 781 404 745 404 c 2 - 688 404 l 0x97 - 680 404 643 403 641 397 c 0 - 637 387 637 370 637 353 c 2 - 637 236 l 2 - 637 233 651 232 666 232 c 2 - 701 232 l 2 - 764 232 762 236 774 279 c 0 - 775 282 780 284 786 284 c 0 - 792 284 798 282 801 279 c 1 - 801 151 l 1 - 799 150 793 149 787 149 c 0 - 781 149 776 151 774 154 c 0 - 764 188 761 190 755 194 c 0 - 748 198 710 199 685 199 c 0 - 666 199 637 199 637 193 c 2 - 637 80 l 2 - 637 71 638 41 642 38 c 0 - 651 32 662 32 691 32 c 2 - 725 32 l 2 - 758 32 791 36 811 47 c 0 - 834 59 845 82 856 108 c 0 - 857 110 862 111 867 111 c 0 - 874 111 883 110 885 108 c 1 - 871 72 851 25 846 -4 c 1 - 767 -4 696 0 598 0 c 0 - 564 0 533 -3 505 -3 c 1 - 501 1 501 21 505 25 c 1 - 513 25 557 29 559 36 c 0 - 562 47 562 64 562 84 c 2 - 562 354 l 2 - 562 374 562 390 559 401 c 0 - 557 408 513 412 505 412 c 1 - 501 416 501 436 505 440 c 1xaf - 534 438 570 436 598 436 c 0x97 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/a.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/a.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/a.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/a.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: a -Encoding: 97 97 64 -Width: 420 -Flags: W -HStem: -8 53<135 207 316 379> 389 37<155 263> -VStem: 36 81<63 163> 51 79<288 345> 268 74<66 218 240 353> -LayerCount: 2 -Fore -SplineSet -183 45 m 0xe8 - 217 45 268 75 268 85 c 2 - 268 218 l 17 - 242 210 195 196 177 189 c 0 - 142 175 117 150 117 113 c 0 - 117 77 146 45 183 45 c 0xe8 -235 426 m 0 - 291 426 342 367 342 292 c 2 - 342 91 l 2 - 342 65 350 45 372 45 c 0 - 390 45 401 56 404 58 c 1 - 407 58 408 53 408 50 c 0 - 408 44 406 36 403 31 c 1 - 391 20 351 -6 330 -6 c 0 - 302 -6 277 28 271 58 c 1 - 259 46 184 -8 150 -8 c 0 - 86 -8 36 41 36 104 c 0xe8 - 36 144 64 175 85 183 c 0 - 140 203 228 231 256 244 c 0 - 266 248 268 251 268 269 c 2 - 268 295 l 2 - 268 339 232 389 184 389 c 0 - 150 389 137 366 130 328 c 0 - 124 295 108 281 84 281 c 0 - 63 281 51 302 51 322 c 0xd8 - 51 326 54 341 58 346 c 1 - 88 374 164 426 235 426 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" a.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: A -Encoding: 65 65 32 -Width: 612 -Flags: W -HStem: -3 28<-13 42 127 188 394 451 569 617> 247 38<195 370> 628 20G<314 320> -LayerCount: 2 -Fore -SplineSet -93 136 m 2 - 93 136 221 467 281 619 c 1 - 286 629 310 647 319 647 c 0 - 322 647 321 646 324 645 c 1 - 523 123 l 0 - 537 86 546 63 548 59 c 0 - 558 36 607 25 615 25 c 1 - 620 18 617 0 616 -3 c 1 - 577 -1 552 2 509 2 c 0 - 464 2 441 -1 396 -3 c 1 - 391 2 392 20 397 25 c 1 - 409 25 442 30 451 38 c 0 - 454 41 455 46 455 52 c 0 - 455 81 389 242 389 242 c 1 - 389 242 386 246 383 246 c 0 - 358 248 310 247 286 247 c 0 - 246 247 225 247 181 244 c 0 - 179 244 176 241 176 241 c 1 - 176 241 148 169 132 122 c 16 - 120 88 118 66 118 53 c 0 - 118 30 178 25 186 25 c 1 - 189 22 190 3 188 -3 c 1 - 149 -1 136 2 93 2 c 0 - 48 2 33 -1 -12 -3 c 1 - -15 0 -15 18 -12 25 c 1 - 0 25 37 31 47 44 c 0 - 67 69 79 101 93 136 c 2 -284 529 m 1 - 195 291 l 1 - 195 291 195 287 197 287 c 0 - 222 286 263 285 285 285 c 0 - 315 285 337 286 367 288 c 0 - 369 288 370 293 370 293 c 1 - 284 529 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: agrave -Encoding: 224 224 157 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 432 -4 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" agrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Agrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Agrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Agrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Agrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Agrave -Encoding: 192 192 125 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 511 0 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/agrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/agrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/agrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/agrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: agrave.sc -Encoding: 65629 -1 781 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 462 21 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: amacron -Encoding: 257 257 190 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 462 26 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" amacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Amacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Amacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Amacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Amacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Amacron -Encoding: 256 256 189 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 562 27 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/amacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/amacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/amacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/amacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: amacron.sc -Encoding: 65662 -1 814 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 510 35 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ampersand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ampersand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ampersand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ampersand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: ampersand -Encoding: 38 38 6 -Width: 666 -Flags: W -HStem: -3 42<195 334 502 593> 282 22<453 495 583 640> 605 35<256 347> -VStem: 52 84<92 231> 157 71<435 579> 376 66<454 581> -LayerCount: 2 -Fore -SplineSet -396 93 m 1 - 333 157 236 307 236 307 c 1 - 183 271 136 238 136 168 c 0 - 136 76 203 39 274 39 c 0 - 313 39 365 60 396 93 c 1 -306 605 m 0 - 264 605 229 575 229 530 c 0 - 229 482 248 433 279 376 c 1 - 340 411 376 443 376 518 c 0 - 376 562 350 605 306 605 c 0 -301 641 m 0 - 387 641 442 601 442 531 c 0 - 442 443 371 391 297 345 c 1 - 338 276 392 205 441 150 c 1 - 477 205 497 255 497 265 c 0 - 497 285 460 280 453 282 c 1 - 450 288 450 301 454 305 c 1 - 531 305 l 2 - 565 305 594 308 639 310 c 1 - 642 308 641 282 638 282 c 1 - 621 282 581 273 570 266 c 0 - 565 263 529 189 469 120 c 1 - 513 74 541 44 564 44 c 0 - 585 44 610 76 615 89 c 1 - 626 89 638 78 638 71 c 1 - 634 62 606 0 531 0 c 0 - 473 0 419 70 419 70 c 1 - 372 29 305 -3 241 -3 c 0 - 127 -3 52 55 52 154 c 0 - 52 248 132 300 214 342 c 1 - 187 389 157 440 157 507 c 0 - 157 581 219 641 301 641 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ampersand.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ampersand.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ampersand.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ampersand.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ampersand.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: ampersand.sc -Encoding: 65581 -1 733 -Width: 503 -VWidth: 1039 -Flags: W -HStem: -3 38<152 263> 0 43<382 441> 189 23<336 367 417 466> 405 31<205 264> -VStem: 47 74<61 168> 127 63<278 396> 274 60<294 401> -LayerCount: 2 -Fore -SplineSet -290 70 m 1xbe - 250 111 187 201 187 201 c 1 - 145 177 121 152 121 121 c 0 - 121 59 165 35 211 35 c 0 - 236 35 269 49 290 70 c 1xbe -237 405 m 0 - 216 405 190 385 190 356 c 0 - 190 314 205 290 225 255 c 1 - 259 277 274 305 274 354 c 0 - 274 382 258 405 237 405 c 0 -233 437 m 0 - 292 437 334 406 334 358 c 0 - 334 298 287 261 237 230 c 1 - 264 183 299 150 331 113 c 1 - 355 149 367 171 367 178 c 0 - 367 196 341 186 337 189 c 1 - 334 194 334 210 338 213 c 1 - 391 213 l 2 - 414 213 434 215 464 217 c 1 - 466 215 467 210 467 206 c 3 - 467 200 465 189 463 189 c 0 - 451 189 424 184 417 179 c 0 - 414 177 391 139 351 94 c 1 - 381 65 401 43 417 43 c 0 - 431 43 448 63 451 71 c 1 - 458 71 470 64 470 60 c 1 - 467 53 441 0 388 0 c 0x7e - 356 0 312 50 312 50 c 1 - 279 17 229 -3 183 -3 c 0 - 101 -3 47 37 47 105 c 0 - 47 169 97 202 168 231 c 1 - 144 262 127 302 127 347 c 0 - 127 397 177 437 233 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: aogonek -Encoding: 261 261 194 -Width: 420 -Flags: W -HStem: -218 58<262 334> -8 53<135 207> 389 37<155 263> -VStem: 36 81<63 163> 51 79<288 345> 205 53<-156 -85> 268 74<66 218 240 353> -LayerCount: 2 -Fore -SplineSet -183 45 m 0xf6 - 217 45 268 75 268 85 c 2 - 268 218 l 17 - 242 210 195 196 177 189 c 0 - 142 175 117 150 117 113 c 0 - 117 77 146 45 183 45 c 0xf6 -271 58 m 1 - 259 46 184 -8 150 -8 c 0 - 86 -8 36 41 36 104 c 0xf6 - 36 144 64 175 85 183 c 0 - 140 203 228 231 256 244 c 0 - 266 248 268 251 268 269 c 2 - 268 295 l 2 - 268 339 232 389 184 389 c 0 - 150 389 137 366 130 328 c 0 - 124 295 108 281 84 281 c 0 - 63 281 51 302 51 322 c 0xee - 51 326 54 341 58 346 c 1 - 88 374 164 426 235 426 c 0 - 291 426 342 367 342 292 c 2 - 342 91 l 2 - 342 65 350 45 372 45 c 0 - 390 45 401 56 404 58 c 1 - 407 58 408 53 408 50 c 0 - 408 44 406 36 403 31 c 1 - 393 24 380 15 368 7 c 0 - 331 -19 258 -65 258 -118 c 0 - 258 -133 265 -160 298 -160 c 0 - 348 -160 371 -123 377 -123 c 0 - 378 -123 382 -128 382 -136 c 0 - 382 -141 380 -149 377 -153 c 0 - 356 -181 318 -218 274 -218 c 0 - 219 -218 205 -169 205 -143 c 0 - 205 -100 259 -36 306 1 c 1 - 289 11 273 35 271 58 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" aogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: Aogonek -Encoding: 260 260 193 -Width: 612 -Flags: W -HStem: -218 58<450 522> -3 28<-13 42 127 188 394 451 569 617> 247 38<195 370> 628 20G<314 320> -VStem: 393 53<-156 -81> -LayerCount: 2 -Fore -SplineSet -616 -3 m 1 - 588 -2 570 0 546 1 c 1 - 503 -25 446 -75 446 -118 c 0 - 446 -133 453 -160 486 -160 c 0 - 536 -160 559 -123 565 -123 c 0 - 566 -123 570 -128 570 -136 c 0 - 570 -141 568 -149 565 -153 c 0 - 544 -181 506 -218 462 -218 c 0 - 407 -218 393 -169 393 -143 c 0 - 393 -89 449 -31 502 2 c 1 - 501 2 501 2 500 2 c 0 - 461 2 437 -1 396 -3 c 1 - 391 2 392 20 397 25 c 1 - 409 25 442 30 451 38 c 0 - 454 41 455 46 455 52 c 0 - 455 81 389 242 389 242 c 1 - 389 242 386 246 383 246 c 0 - 358 248 310 247 286 247 c 0 - 246 247 225 247 181 244 c 0 - 179 244 176 241 176 241 c 1 - 176 241 148 169 132 122 c 16 - 120 88 118 66 118 53 c 0 - 119 30 178 25 186 25 c 1 - 189 22 190 3 188 -3 c 1 - 149 -1 135 2 93 2 c 0 - 48 2 33 -1 -12 -3 c 1 - -15 0 -15 18 -12 25 c 1 - 0 25 37 31 47 44 c 0 - 67 69 79 101 93 136 c 2 - 93 136 221 467 281 619 c 1 - 286 629 310 647 319 647 c 0 - 322 647 321 646 324 645 c 1 - 523 123 l 0 - 537 86 546 63 548 59 c 0 - 558 36 607 25 615 25 c 1 - 620 18 617 0 616 -3 c 1 -284 529 m 1 - 195 291 l 1 - 195 291 195 287 197 287 c 0 - 222 286 263 285 285 285 c 0 - 315 285 337 286 367 288 c 0 - 369 288 370 293 370 293 c 1 - 284 529 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: aogonek.sc -Encoding: 65664 -1 816 -Width: 489 -Flags: W -HStem: -218 58<352 424> -3 28<5 57 118 171 281 336 426 485> 163 39<170 281> -VStem: 295 53<-156 -84> -LayerCount: 2 -Fore -SplineSet -172 202 m 0 - 190 201 209 200 225 200 c 0 - 246 200 259 201 280 203 c 0 - 281 203 281 205 281 205 c 1 - 227 343 l 1 - 170 204 l 1 - 170 204 171 202 172 202 c 0 -484 -3 m 1 - 479 -3 465 -2 465 -2 c 0 - 420 0 348 -75 348 -118 c 0 - 348 -133 355 -160 388 -160 c 0 - 438 -160 461 -123 467 -123 c 0 - 468 -123 472 -128 472 -136 c 0 - 472 -141 470 -149 467 -153 c 0 - 446 -181 409 -218 365 -218 c 0 - 310 -218 295 -169 295 -143 c 0 - 295 -91 369 -12 411 1 c 1 - 402 1 394 1 387 1 c 0 - 357 1 312 -1 282 -3 c 1 - 278 1 279 21 283 25 c 1 - 291 25 330 28 336 33 c 0 - 338 35 339 38 339 42 c 0 - 339 61 295 160 295 160 c 1 - 295 160 293 162 291 162 c 0 - 273 164 243 163 226 163 c 0 - 199 163 188 163 158 160 c 0 - 157 160 156 159 156 159 c 1 - 156 159 138 113 127 84 c 0 - 119 63 116 51 116 43 c 0 - 116 28 164 25 169 25 c 1 - 172 22 172 2 170 -3 c 1 - 144 -1 123 1 94 1 c 0 - 64 1 37 -1 7 -3 c 1 - 4 0 4 19 7 25 c 1 - 15 25 50 29 57 38 c 0 - 71 56 78 74 88 97 c 2 - 88 97 176 306 217 409 c 0 - 221 420 253 441 259 441 c 0 - 261 441 262 439 264 438 c 1 - 264 438 410 61 416 48 c 0 - 423 32 478 25 483 25 c 1 - 487 19 485 0 484 -3 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aringacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aringacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aringacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aringacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aringacute -Encoding: 507 507 499 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 506 230 2 -Refer: 162 229 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" aringacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aringacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aringacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aringacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aringacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aringacute -Encoding: 506 506 498 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 678 139 2 -Refer: 130 197 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aringacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aringacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aringacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aringacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aringacute.sc -Encoding: 65735 -1 887 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 573 195 2 -Refer: 786 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: aring -Encoding: 229 229 162 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 468 -1 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" aring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Aring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Aring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Aring -Encoding: 197 197 130 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 462 -1 N 1 0 0 1 563 -64 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/aring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/aring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: aring.sc -Encoding: 65634 -1 786 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 503 -36 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowdown -Encoding: 8595 8595 414 -Width: 391 -Flags: W -VStem: 164 62<88 650> -LayerCount: 2 -Fore -SplineSet -41 203 m 0 - 55 203 45 200 164 88 c 1 - 164 651 l 1 - 164 651 163 658 173 658 c 0 - 191 658 215 651 219 650 c 0 - 225 648 226 643 226 643 c 1 - 226 87 l 1 - 283 143 l 1 - 342 202 334 202 348 202 c 0 - 361 202 362 185 365 180 c 1 - 363 179 307 123 214 -21 c 1 - 212 -26 207 -28 201 -28 c 0 - 191 -28 182 -27 174 -20 c 1 - 97 108 24 180 23 181 c 1 - 27 195 32 203 41 203 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowleft -Encoding: 8592 8592 411 -Width: 747 -Flags: W -HStem: 211 62<144 705> -LayerCount: 2 -Fore -SplineSet -259 395 m 0 - 259 384 258 389 195 326 c 1 - 144 272 l 1 - 706 272 l 1 - 706 272 713 273 713 263 c 0 - 713 245 706 222 705 218 c 0 - 703 212 698 211 698 211 c 1 - 143 211 l 1 - 198 153 l 1 - 256 95 258 101 258 89 c 0 - 258 76 240 74 235 71 c 1 - 234 73 178 129 34 222 c 1 - 29 224 27 229 27 235 c 0 - 27 245 28 254 35 262 c 1 - 163 339 235 412 236 413 c 1 - 250 409 259 404 259 395 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: arrowright -Encoding: 8594 8594 413 -Width: 746 -Flags: W -HStem: 212 62<34 600> -LayerCount: 2 -Fore -SplineSet -484 89 m 0 - 484 103 488 93 600 212 c 1 - 36 212 l 1 - 36 212 29 211 29 221 c 0 - 29 239 36 262 37 266 c 0 - 39 272 44 273 44 273 c 1 - 601 273 l 1 - 544 331 l 2 - 489 386 485 383 485 395 c 0 - 485 408 503 410 508 413 c 1 - 509 411 564 355 708 262 c 1 - 713 260 715 255 715 249 c 0 - 715 239 714 230 707 222 c 1 - 579 145 507 72 506 71 c 1 - 492 75 484 80 484 89 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowup.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowup.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/arrowup.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/arrowup.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: arrowup -Encoding: 8593 8593 412 -Width: 390 -Flags: W -HStem: 428 20G<34 46 339 351> -VStem: 162 62<-19 542> -LayerCount: 2 -Fore -SplineSet -347 427 m 0 - 331 427 344 429 224 542 c 1 - 224 -21 l 1 - 224 -21 224 -28 214 -28 c 0 - 196 -28 173 -21 169 -20 c 0 - 163 -18 162 -13 162 -13 c 1 - 162 543 l 1 - 104 487 l 1 - 46 429 52 428 40 428 c 0 - 27 428 25 445 22 450 c 1 - 24 451 80 507 173 651 c 1 - 175 656 181 658 187 658 c 0 - 197 658 205 657 213 650 c 1 - 290 522 363 450 364 449 c 1 - 360 435 356 427 347 427 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/a.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/a.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/a.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/a.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: a.sc -Encoding: 65593 -1 745 -Width: 489 -Flags: W -HStem: -3 28<5 57 118 171 281 336 426 485> 163 37<170 281> -LayerCount: 2 -Fore -SplineSet -484 -3 m 1 - 458 -1 416 1 387 1 c 0 - 357 1 312 -1 282 -3 c 1 - 278 1 279 21 283 25 c 1 - 291 25 330 28 336 33 c 0 - 338 35 339 38 339 42 c 0 - 339 61 295 160 295 160 c 1 - 295 160 293 162 291 162 c 0 - 273 164 243 163 226 163 c 0 - 199 163 188 163 158 160 c 0 - 157 160 156 159 156 159 c 1 - 156 159 138 113 127 84 c 16 - 119 63 116 51 116 43 c 0 - 116 28 164 25 169 25 c 1 - 172 22 172 2 170 -3 c 1 - 144 -1 123 1 94 1 c 0 - 64 1 37 -1 7 -3 c 1 - 4 0 4 19 7 25 c 1 - 15 25 50 29 57 38 c 0 - 71 56 78 74 88 97 c 2 - 88 97 176 306 217 409 c 0 - 221 420 253 441 259 441 c 0 - 261 441 262 439 264 438 c 1 - 264 438 410 61 416 48 c 0 - 423 32 478 25 483 25 c 1 - 487 19 485 0 484 -3 c 1 -172 202 m 0 - 190 201 209 200 225 200 c 0 - 246 200 259 201 280 203 c 0 - 281 203 281 205 281 205 c 1 - 227 343 l 1 - 170 204 l 1 - 170 204 171 202 172 202 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: asciicircum -Encoding: 94 94 61 -Width: 380 -Flags: W -HStem: 413 217 -VStem: 60 244 -LayerCount: 2 -Fore -SplineSet -182 630 m 0 - 187 630 193 625 197 617 c 0 - 236 540 262 502 304 429 c 1 - 304 419 295 413 289 413 c 1 - 244 460 182 539 182 539 c 25 - 182 539 120 460 75 413 c 1 - 69 413 60 419 60 429 c 1 - 102 502 128 540 167 617 c 0 - 171 625 177 630 182 630 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" asciicircum.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciicircum.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: asciicircum.sc -Encoding: 65622 -1 774 -Width: 498 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 61 94 N 1 0 0 1 67 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: asciitilde -Encoding: 126 126 93 -Width: 556 -Flags: W -HStem: 244 50<307 462> 296 50<104 255> -LayerCount: 2 -Fore -SplineSet -265 271 m 0 - 231 284 196 296 152 296 c 0 - 114 296 86 274 63 253 c 1 - 57 256 55 262 55 270 c 0 - 55 306 130 346 182 346 c 0 - 228 346 263 332 298 319 c 0 - 332 306 366 294 412 294 c 0 - 450 294 472 315 500 337 c 1 - 506 334 509 328 509 320 c 0 - 509 288 445 244 384 244 c 0 - 336 244 301 257 265 271 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" asciitilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asciitilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: asciitilde.sc -Encoding: 65626 -1 778 -Width: 442 -Flags: W -HStem: 160 41<226 350> 199 41<92 216> -VStem: 66 309<181 220> -LayerCount: 2 -Fore -SplineSet -290 160 m 0xa0 - 227 160 201 199 138 199 c 0 - 112 199 92 183 72 168 c 1 - 68 170 66 175 66 181 c 0 - 66 196 91 240 152 240 c 0x60 - 214 240 243 201 305 201 c 0 - 331 201 349 217 369 232 c 1 - 373 230 375 226 375 220 c 0 - 375 205 350 160 290 160 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asterisk.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asterisk.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/asterisk.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/asterisk.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: asterisk -Encoding: 42 42 10 -Width: 432 -Flags: W -HStem: 381 60<302 384> 424 63<37 145> -VStem: 127 56<560 645> 204 24<411 440> -LayerCount: 2 -Fore -SplineSet -295 599 m 0x70 - 312 618 334 625 349 610 c 0 - 365 594 362 573 343 556 c 0 - 309 525 276 519 249 493 c 1 - 249 493 243 484 244 479 c 0 - 245 474 248 472 253 470 c 0 - 287 454 315 460 358 440 c 0 - 380 430 395 412 386 393 c 0 - 376 373 354 369 333 381 c 0xb0 - 292 403 277 433 244 451 c 1 - 244 451 235 456 230 454 c 0 - 224 451 225 446 224 441 c 0 - 220 404 233 380 228 333 c 0 - 225 309 212 289 191 292 c 0 - 170 295 159 315 164 339 c 0 - 173 385 197 409 204 446 c 1 - 204 446 205 455 201 459 c 0 - 198 463 193 463 188 462 c 0 - 152 454 133 434 86 424 c 0 - 63 419 38 425 35 446 c 0 - 31 467 48 484 72 487 c 0 - 119 493 147 477 185 482 c 1 - 185 482 194 485 196 490 c 0 - 198 495 197 499 194 504 c 0 - 175 536 150 549 127 590 c 0 - 115 611 114 635 132 645 c 0 - 152 655 171 644 182 622 c 0 - 202 579 195 547 212 513 c 1 - 212 513 217 503 222 502 c 0 - 227 501 231 504 235 508 c 0 - 260 535 264 564 295 599 c 0x70 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/at.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/at.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/at.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/at.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: at -Encoding: 64 64 31 -Width: 730 -Flags: W -HStem: -121 18<255 279> -7 42<483 570> -5 57<276 333> 380 45<381 486> 525 39<307 506> -VStem: 48 39<61 280> 189 72<64 227> 413 64<41 122> 656 39<153 369> -LayerCount: 2 -Fore -SplineSet -408 564 m 0xdf80 - 599 564 695 416 695 264 c 0 - 695 115 608 -7 494 -7 c 0xdf80 - 446 -7 413 17 413 77 c 0 - 413 89 417 114 420 122 c 1 - 401 86 339 -5 282 -5 c 3xbf80 - 221 -5 189 59 189 127 c 3 - 189 270 335 425 469 425 c 0 - 503 425 521 419 540 412 c 9 - 480 104 l 2 - 479 100 478 84 478 79 c 0 - 478 48 498 35 524 35 c 0 - 586 35 656 139 656 261 c 0 - 656 393 578 525 408 525 c 0 - 209 525 87 336 87 166 c 0 - 87 52 147 -35 217 -76 c 0 - 252 -97 271 -101 290 -104 c 1 - 290 -112 267 -121 255 -121 c 0 - 243 -121 230 -120 217 -115 c 0 - 127 -82 48 28 48 166 c 0 - 48 357 181 564 408 564 c 0xdf80 -428 380 m 3 - 353 380 262 259 262 147 c 0 - 262 86 278 52 312 52 c 3xbf80 - 361 52 429 174 448 268 c 2 - 468 367 l 17 - 459 377 441 380 428 380 c 3 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" at.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: atilde -Encoding: 227 227 160 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 448 -2 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" atilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Atilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Atilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Atilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Atilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Atilde -Encoding: 195 195 128 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 561 -7 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/atilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/atilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/atilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/atilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: atilde.sc -Encoding: 65632 -1 784 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 489 16 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/at.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/at.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/at.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/at.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: at.sc -Encoding: 65592 -1 744 -Width: 555 -Flags: W -HStem: -25 16<202 224> 52 34<372 429> 54 50<195 263> 308 40<288 374> 406 34<235 397> -VStem: 46 34<94 247> 146 67<106 218> 310 61<87 144> 480 34<156 317> -LayerCount: 2 -Fore -SplineSet -319 440 m 0xdf80 - 454 440 515 340 515 236 c 0 - 515 133 451 52 373 52 c 0xdf80 - 350 52 310 61 310 108 c 0 - 310 117 312 138 315 144 c 1 - 301 116 258 54 217 54 c 3xbf80 - 174 54 146 97 146 144 c 3 - 146 242 269 348 361 348 c 0 - 386 348 405 342 419 336 c 9 - 372 125 l 2 - 371 123 370 115 370 112 c 0 - 370 95 381 86 396 86 c 0 - 431 86 480 156 480 235 c 0 - 480 321 433 406 318 406 c 0 - 182 406 80 279 80 166 c 0 - 80 90 128 36 179 9 c 0 - 204 -5 217 -8 231 -10 c 1 - 231 -17 214 -25 205 -25 c 0 - 196 -25 187 -25 177 -21 c 0 - 111 1 46 74 46 168 c 0 - 46 298 160 440 319 440 c 0xdf80 -323 308 m 3 - 264 308 214 233 214 163 c 0 - 214 125 224 104 246 104 c 3xbf80 - 278 104 333 214 345 271 c 2 - 351 302 l 17 - 345 307 332 308 323 308 c 3 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/backslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/backslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/backslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/backslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: backslash -Encoding: 92 92 59 -Width: 391 -Flags: W -VStem: 30 330 -LayerCount: 2 -Fore -SplineSet -30 732 m 1 - 33 737 43 739 50 739 c 0 - 61 739 74 732 77 724 c 2 - 77 724 360 -11 360 -17 c 1 - 359 -21 350 -27 338 -27 c 0 - 331 -27 320 -21 317 -14 c 0 - 209 268 116 511 30 732 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" backslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/backslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/backslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/backslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/backslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: backslash.sc -Encoding: 65620 -1 772 -Width: 301 -Flags: W -VStem: 28 239 -LayerCount: 2 -Fore -SplineSet -28 476 m 1 - 31 477 34 479 44 479 c 0 - 65 479 64 475 69 465 c 1 - 268 -26 l 1 - 268 -26 265 -52 252 -52 c 0 - 245 -52 242 -50 240 -45 c 2 - 28 476 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: bar -Encoding: 124 124 91 -Width: 200 -Flags: W -VStem: 75 50<-115 747> -LayerCount: 2 -Fore -SplineSet -125 -104 m 2 - 125 -112 82 -120 80 -120 c 0 - 73 -120 75 -116 75 -112 c 2 - 75 739 l 1 - 75 739 74 745 80 747 c 0 - 97 752 113 754 116 754 c 0 - 125 754 124 748 124 748 c 1 - 125 -104 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" bar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: bar.sc -Encoding: 65624 -1 776 -Width: 220 -Flags: W -VStem: 92 37<-80 508> -LayerCount: 2 -Fore -SplineSet -129 -71 m 2 - 129 -76 98 -83 96 -83 c 0 - 91 -83 92 -80 92 -77 c 2 - 92 503 l 1 - 92 503 92 507 96 508 c 0 - 109 511 119 513 122 513 c 0 - 129 513 128 509 128 509 c 1 - 129 -71 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: b -Encoding: 98 98 65 -Width: 486 -Flags: W -HStem: -7 33<179 287> 370 5<151 222> 613 25<4 61> 658 20G<124 147> -VStem: 70 75<52 344 375 607> 366 82<131 292> -LayerCount: 2 -Fore -SplineSet -206 -7 m 0 - 191 -7 155 2 134 8 c 0 - 113 14 93 22 71 14 c 1 - 66 14 58 30 58 35 c 1 - 67 55 70 87 70 107 c 2 - 70 545 l 2 - 70 558 70 584 65 596 c 0 - 59 610 32 613 5 613 c 1 - 4 613 2 638 6 639 c 1 - 55 644 104 659 145 678 c 1 - 150 678 156 669 156 662 c 1 - 156 662 145 631 145 577 c 2 - 145 385 l 2 - 145 380 145 370 151 375 c 0 - 166 386 232 428 269 428 c 0 - 386 428 448 317 448 228 c 0 - 448 100 345 -7 206 -7 c 0 -222 370 m 0 - 197 370 159 353 150 344 c 0 - 147 341 145 338 145 333 c 2 - 145 96 l 2 - 145 54 193 26 236 26 c 0 - 306 26 366 110 366 189 c 0 - 366 302 309 370 222 370 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" b.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: B -Encoding: 66 66 33 -Width: 582 -Flags: W -HStem: -3 31<42 112 212 372> 324 37<202 353> 612 31<44 113 207 330> -VStem: 117 85<46 324 361 602> 406 89<425 554> 443 97<103 257> -LayerCount: 2 -Fore -SplineSet -202 324 m 1xf4 - 202 112 l 2 - 202 98 203 53 210 46 c 0 - 225 30 251 28 287 28 c 0 - 360 28 443 53 443 172 c 0 - 443 245 411 324 261 324 c 2 - 202 324 l 1xf4 -202 361 m 1 - 283 361 l 2 - 371 361 406 420 406 476 c 0xf8 - 406 563 346 612 255 612 c 0 - 243 612 210 612 206 603 c 0 - 201 591 202 558 202 529 c 2 - 202 361 l 1 -298 644 m 0 - 387 644 495 609 495 498 c 0xf8 - 495 423 430 369 396 356 c 0 - 394 355 393 354 396 352 c 1 - 444 350 539 291 539 194 c 0xf4 - 539 138 522 90 474 50 c 0 - 427 11 344 -2 269 -3 c 0 - 237 -3 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 - 198 642 240 644 298 644 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceleft -Encoding: 123 123 90 -Width: 216 -Flags: W -VStem: 57 43<-55 69 494 618> 102 45<117 237 325 446> -LayerCount: 2 -Fore -SplineSet -102 374 m 0 - 102 399 90 423 79 447 c 0 - 67 472 57 498 57 528 c 0 - 57 623 119 686 161 703 c 1 - 169 703 177 694 177 685 c 1 - 151 672 100 625 100 575 c 0 - 100 538 112 513 124 486 c 0 - 136 462 147 435 147 396 c 0 - 147 333 100 291 75 281 c 1 - 100 271 147 230 147 167 c 0 - 147 128 136 100 124 76 c 0 - 112 49 100 24 100 -13 c 0 - 100 -63 151 -109 177 -122 c 1 - 177 -131 169 -141 161 -141 c 1 - 119 -124 57 -61 57 34 c 0 - 57 64 67 90 79 115 c 0 - 90 139 102 163 102 188 c 0 - 102 240 66 261 28 271 c 1 - 27 273 25 277 25 281 c 0 - 25 285 27 290 28 292 c 1 - 66 302 102 322 102 374 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" braceleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceleft.sc -Encoding: 65623 -1 775 -Width: 232 -VWidth: 1019 -Flags: W -HStem: -80 13<167 178> 201 15<45 71> 487 13<167 178> -VStem: 69 40<-23 65 354 441> 110 42<94 180 239 324> -LayerCount: 2 -Fore -SplineSet -47 216 m 1 - 78 223 110 236 110 272 c 0 - 110 290 99 306 89 323 c 0 - 79 341 69 358 69 379 c 0 - 69 444 126 488 165 500 c 1 - 172 500 180 493 180 487 c 1 - 156 478 109 446 109 412 c 0 - 109 387 120 370 130 351 c 0 - 140 334 152 315 152 288 c 0 - 152 244 108 216 85 209 c 1 - 108 202 152 175 152 131 c 0 - 152 105 140 85 130 68 c 0 - 120 49 109 32 109 7 c 0 - 109 -27 156 -58 180 -67 c 1 - 180 -73 172 -80 165 -80 c 1 - 126 -68 69 -26 69 39 c 0 - 69 60 79 77 89 95 c 0 - 99 112 110 128 110 146 c 0 - 110 181 78 194 47 201 c 1 - 44 204 44 213 47 216 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceright -Encoding: 125 125 92 -Width: 217 -Flags: W -VStem: 70 45<117 237 325 446> 117 43<-55 69 494 618> -LayerCount: 2 -Fore -SplineSet -56 703 m 1 - 98 686 160 623 160 528 c 0 - 160 498 150 472 138 447 c 0 - 127 423 115 399 115 374 c 0 - 115 322 151 302 189 292 c 1 - 190 290 191 285 191 281 c 0 - 191 277 191 274 189 271 c 1 - 151 261 115 240 115 188 c 0 - 115 163 127 139 138 115 c 0 - 150 90 160 64 160 34 c 0 - 160 -61 98 -124 56 -141 c 1 - 48 -141 40 -131 40 -122 c 1 - 66 -109 117 -63 117 -13 c 0 - 117 24 105 49 93 76 c 0 - 81 100 70 128 70 167 c 0 - 70 230 117 271 142 281 c 1 - 117 291 70 333 70 396 c 0 - 70 435 81 462 93 486 c 0 - 105 513 117 538 117 575 c 0 - 117 625 66 672 40 685 c 1 - 40 694 48 703 56 703 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" braceright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/braceright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/braceright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: braceright.sc -Encoding: 65625 -1 777 -Width: 234 -VWidth: 1019 -Flags: W -HStem: -80 13<61 71> 201 15<164 193> 487 13<61 71> -VStem: 81 42<94 180 239 324> 124 39<-23 63 356 441> -LayerCount: 2 -Fore -SplineSet -70 500 m 1 - 107 488 163 444 163 379 c 0 - 163 358 154 341 144 323 c 0 - 134 306 123 290 123 272 c 0 - 123 236 156 223 190 216 c 1 - 193 213 193 204 190 201 c 1 - 156 194 123 181 123 146 c 0 - 123 128 134 112 144 95 c 0 - 154 77 163 60 163 39 c 0 - 163 -26 107 -68 70 -80 c 1 - 65 -80 60 -73 60 -67 c 1 - 82 -58 124 -27 124 7 c 0 - 124 32 112 49 102 68 c 0 - 92 85 81 105 81 131 c 0 - 81 175 123 202 146 209 c 1 - 123 216 81 244 81 288 c 0 - 81 315 92 334 102 351 c 0 - 112 370 124 387 124 412 c 0 - 124 446 82 478 60 487 c 1 - 60 493 65 500 70 500 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketleft -Encoding: 91 91 58 -Width: 252 -Flags: W -HStem: -141 24<191 248> 683 24<191 248> -VStem: 77 47<-97 663> -LayerCount: 2 -Fore -SplineSet -96 701 m 0 - 176 701 245 707 245 707 c 1 - 245 707 248 704 248 698 c 0 - 248 692 244 685 238 683 c 0 - 201 670 124 660 124 660 c 1 - 124 -94 l 1 - 124 -94 201 -103 238 -116 c 0 - 244 -118 248 -126 248 -132 c 0 - 248 -138 245 -141 245 -141 c 1 - 245 -141 176 -135 96 -135 c 0 - 78 -135 77 -113 77 -112 c 2 - 77 679 l 2 - 77 680 78 701 96 701 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" bracketleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketleft.sc -Encoding: 65619 -1 771 -Width: 263 -VWidth: 1019 -Flags: W -HStem: 480 22<160 223> -VStem: 93 43<-49 469> -LayerCount: 2 -Fore -SplineSet -107 499 m 0 - 168 499 221 503 221 503 c 1 - 221 503 224 501 224 495 c 0 - 224 489 220 482 216 480 c 0 - 190 472 136 466 136 466 c 1 - 136 -47 l 1 - 136 -47 190 -52 216 -58 c 0 - 220 -60 224 -66 224 -72 c 0 - 224 -78 221 -80 221 -80 c 1 - 221 -80 168 -76 107 -76 c 0 - 93 -76 93 -62 93 -61 c 2 - 93 483 l 2 - 93 484 93 499 107 499 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketright -Encoding: 93 93 60 -Width: 253 -Flags: W -HStem: -141 24<6 63> 683 24<6 63> -VStem: 130 47<-97 663> -LayerCount: 2 -Fore -SplineSet -158 701 m 0 - 176 701 177 680 177 679 c 2 - 177 -112 l 2 - 177 -113 176 -135 158 -135 c 0 - 78 -135 9 -141 9 -141 c 1 - 9 -141 6 -138 6 -132 c 0 - 6 -126 10 -118 16 -116 c 0 - 53 -103 130 -94 130 -94 c 1 - 130 660 l 1 - 130 660 53 670 16 683 c 0 - 10 685 6 692 6 698 c 0 - 6 704 9 707 9 707 c 1 - 9 707 78 701 158 701 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" bracketright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bracketright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bracketright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: bracketright.sc -Encoding: 65621 -1 773 -Width: 263 -VWidth: 1019 -Flags: W -HStem: 480 22<40 104> -VStem: 128 43<-49 469> -LayerCount: 2 -Fore -SplineSet -156 499 m 0 - 170 499 171 484 171 483 c 2 - 171 -61 l 2 - 171 -62 170 -76 156 -76 c 0 - 95 -76 43 -80 43 -80 c 1 - 43 -80 40 -78 40 -72 c 0 - 40 -66 44 -60 48 -58 c 0 - 74 -52 128 -47 128 -47 c 1 - 128 466 l 1 - 128 466 74 472 48 480 c 0 - 44 482 40 489 40 495 c 0 - 40 501 43 503 43 503 c 1 - 43 503 95 499 156 499 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/breve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/breve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/breve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/breve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: breve -Encoding: 728 728 326 -Width: 310 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 408 22 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/brokenbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/brokenbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/brokenbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/brokenbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: brokenbar -Encoding: 166 166 100 -Width: 208 -Flags: W -VStem: 80 50<-116 251 380 747> -LayerCount: 2 -Fore -SplineSet -130 391 m 2 - 130 383 87 376 85 376 c 0 - 78 376 80 380 80 384 c 2 - 80 739 l 1 - 80 739 79 745 85 747 c 0 - 102 752 119 752 122 752 c 0 - 131 752 130 746 130 746 c 1 - 130 391 l 2 -80 -112 m 2 - 80 243 l 1 - 80 243 79 249 85 251 c 0 - 102 256 119 256 122 256 c 0 - 131 256 130 250 130 250 c 1 - 130 -105 l 2 - 130 -113 87 -120 85 -120 c 0 - 78 -120 80 -116 80 -112 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/b.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/b.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/b.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/b.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: b.sc -Encoding: 65594 -1 746 -Width: 474 -Flags: W -HStem: -3 30<47 99 185 305> 216 34<179 285> 407 30<48 99 162 273> -VStem: 104 75<39 216 250 401> 310 79<288 380> 343 87<69 181> -LayerCount: 2 -Fore -SplineSet -243 438 m 0xf4 - 310 438 389 415 389 340 c 0xf8 - 389 289 333 256 304 247 c 0 - 302 246 301 245 304 244 c 1 - 346 243 430 199 430 133 c 0 - 430 95 403 51 371 30 c 0 - 333 6 282 -2 225 -3 c 0 - 201 -3 78 -3 49 -3 c 1 - 45 1 45 21 49 25 c 1 - 57 25 98 28 100 35 c 0 - 103 46 104 63 104 83 c 2 - 104 354 l 2 - 104 374 103 390 100 401 c 0 - 98 408 57 412 49 412 c 1 - 45 416 45 436 49 440 c 1 - 78 438 112 436 140 436 c 0 - 168 436 200 438 243 438 c 0xf4 -179 250 m 1 - 242 250 l 2 - 287 250 310 286 310 321 c 0 - 310 377 273 407 214 407 c 0 - 206 407 186 407 183 401 c 0 - 180 393 179 373 179 354 c 2 - 179 250 l 1 -179 216 m 1 - 179 81 l 2 - 179 72 180 43 185 39 c 0 - 195 29 213 27 237 27 c 0 - 287 27 343 41 343 117 c 0xf4 - 343 164 323 216 220 216 c 2 - 179 216 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bullet.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bullet.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/bullet.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/bullet.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: bullet -Encoding: 8226 8226 397 -Width: 366 -Flags: W -HStem: 151 211<121 246> -VStem: 78 210<194 320> -LayerCount: 2 -Fore -SplineSet -78 257 m 0 - 78 315 126 362 184 362 c 0 - 242 362 288 315 288 257 c 0 - 288 199 242 151 184 151 c 0 - 126 151 78 199 78 257 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cacute -Encoding: 263 263 196 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 501 -4 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" cacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Cacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Cacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Cacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Cacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cacute -Encoding: 262 262 195 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 689 0 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cacute.sc -Encoding: 65665 -1 817 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 563 21 2 -Refer: 747 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/caron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/caron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/caron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/caron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: caron -Encoding: 711 711 325 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 400 -5 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccaron -Encoding: 269 269 202 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 492 0 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ccaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccaron -Encoding: 268 268 201 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 67 N 1 0 0 1 0 0 3 -Refer: 474 -1 N 1 0 0 1 240 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccaron.sc -Encoding: 65668 -1 820 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 523 23 2 -Refer: 747 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccedilla -Encoding: 231 231 164 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 484 4 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ccedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccedilla -Encoding: 199 199 132 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 34 67 N 1 0 0 1 1 0 3 -Refer: 466 -1 N 1 0 0 1 156 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccedilla.sc -Encoding: 65636 -1 788 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 514 4 2 -Refer: 747 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ccircumflex -Encoding: 265 265 198 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 486 -5 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ccircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ccircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ccircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ccircumflex -Encoding: 264 264 197 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 637 -1 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ccircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ccircumflex.sc -Encoding: 65666 -1 818 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 528 49 2 -Refer: 747 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: cdotaccent -Encoding: 267 267 200 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 490 44 2 -Refer: 66 99 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" cdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Cdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Cdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Cdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Cdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Cdotaccent -Encoding: 266 266 199 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 623 0 2 -Refer: 34 67 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: cdotaccent.sc -Encoding: 65667 -1 819 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 526 23 2 -Refer: 747 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: cedilla -Encoding: 184 184 117 -Width: 225 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 358 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/cent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/cent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: cent -Encoding: 162 162 96 -Width: 435 -Flags: W -HStem: -8 64<193 320> 385 43<195 289> -VStem: 44 76<129 282> 185 27<-42 -1> 266 27<418 460> -LayerCount: 2 -Fore -SplineSet -266 461 m 17 - 274 461 293 462 293 455 c 1 - 212 -44 l 1 - 203 -44 185 -44 185 -37 c 9 - 266 461 l 17 -EndSplineSet -Refer: 66 99 N 1 0 0 1 6 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/c.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/c.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/c.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/c.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: c -Encoding: 99 99 66 -Width: 413 -Flags: W -HStem: -8 64<187 314> 385 43<189 283> -VStem: 38 76<129 282> -LayerCount: 2 -Fore -SplineSet -373 377 m 0 - 373 342 353 330 336 330 c 1 - 315 330 296 355 279 366 c 0 - 258 380 249 385 224 385 c 0 - 172 385 114 325 114 222 c 0 - 114 108 184 57 272 57 c 0 - 326 57 363 91 376 106 c 1 - 377 106 384 101 384 93 c 0 - 384 88 381 80 378 75 c 0 - 360 47 311 -8 235 -8 c 0 - 117 -8 38 87 38 189 c 0 - 38 332 173 428 275 428 c 0 - 309 428 340 420 363 404 c 1 - 367 400 373 387 373 377 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" c.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: C -Encoding: 67 67 34 -Width: 658 -Flags: W -HStem: -6 32<311 478> 619 32<307 475> -VStem: 47 97<207 437> 573 33<474 526> 586 31<137 182> -LayerCount: 2 -Fore -SplineSet -377 651 m 0xe8 - 441 651 512 647 584 631 c 1 - 584 631 606 496 606 486 c 1 - 607 480 595 474 585 474 c 0 - 579 474 576 475 573 477 c 1xf0 - 567 507 545 619 382 619 c 0 - 237 619 144 472 144 335 c 0 - 144 183 227 26 397 26 c 0 - 457 26 498 48 526 73 c 0 - 564 107 579 155 586 187 c 1 - 596 188 608 185 617 179 c 1 - 617 159 597 50 583 38 c 1 - 529 8 463 -6 373 -6 c 0 - 180 -6 47 141 47 314 c 0 - 47 497 185 651 377 651 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/circumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/circumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/circumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/circumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: circumflex -Encoding: 710 710 324 -Width: 302 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 405 20 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/colon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/colon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/colon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/colon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: colon -Encoding: 58 58 25 -Width: 220 -Flags: W -HStem: -11 107<69 153> 313 107<69 153> -VStem: 57 107<1 85 325 410> -LayerCount: 2 -Fore -SplineSet -57 44 m 0 - 57 73 82 97 111 97 c 0 - 140 97 164 73 164 44 c 0 - 164 15 140 -11 111 -11 c 0 - 82 -11 57 15 57 44 c 0 -57 368 m 0 - 57 397 82 421 111 421 c 0 - 140 421 164 397 164 368 c 0 - 164 339 140 313 111 313 c 0 - 82 313 57 339 57 368 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" colon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/colon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/colon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/colon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/colon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: colon.sc -Encoding: 65586 -1 738 -Width: 241 -Flags: W -HStem: -11 107<78 163> 313 107<78 163> -VStem: 66 107<1 85 325 410> -LayerCount: 2 -Fore -SplineSet -66 44 m 0 - 66 73 92 97 121 97 c 0 - 150 97 174 73 174 44 c 0 - 174 15 150 -11 121 -11 c 0 - 92 -11 66 15 66 44 c 0 -66 368 m 0 - 66 397 92 421 121 421 c 0 - 150 421 174 397 174 368 c 0 - 174 339 150 313 121 313 c 0 - 92 313 66 339 66 368 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/comma.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/comma.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/comma.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/comma.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: comma -Encoding: 44 44 12 -Width: 196 -Flags: W -HStem: -136 256 -VStem: 78 68<-26 63> -LayerCount: 2 -Fore -SplineSet -104 120 m 0 - 112 120 122 117 129 113 c 1 - 136 101 146 82 146 45 c 0 - 146 -11 81 -109 31 -136 c 1 - 24 -136 17 -121 17 -115 c 1 - 37 -100 78 -69 78 -7 c 0 - 78 25 46 34 46 72 c 0 - 46 93 69 120 104 120 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" comma.sc -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" comma.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/comma.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/comma.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/comma.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/comma.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: comma.sc -Encoding: 65761 -1 937 -Width: 203 -VWidth: 0 -Flags: W -HStem: -120 228 -VStem: 81 61<-31 78> -LayerCount: 2 -Fore -SplineSet -105 107 m 0 - 111 107 120 106 126 102 c 1 - 132 91 142 74 142 41 c 0 - 142 -9 89 -96 49 -120 c 1 - 44 -120 39 -107 39 -102 c 1 - 53 -89 81 -62 81 -6 c 0 - 81 22 59 30 59 64 c 0 - 59 83 77 107 105 107 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/copyright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/copyright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/copyright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/copyright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: copyright -Encoding: 169 169 103 -Width: 643 -Flags: W -HStem: 67 30<242 402> 190 31<289 407> 438 33<283 395> 570 30<242 402> -VStem: 55 32<251 417> 183 56<265 400> 559 30<254 414> -LayerCount: 2 -Fore -SplineSet -445 270 m 1 - 445 267 433 212 426 209 c 0 - 395 196 363 190 322 190 c 0 - 243 190 183 251 183 328 c 0 - 183 406 239 472 320 472 c 0 - 349 472 397 466 430 453 c 1 - 430 453 445 398 445 394 c 0 - 445 389 437 385 430 385 c 0 - 427 385 425 386 423 387 c 1 - 420 400 401 438 332 438 c 0 - 279 438 238 391 238 337 c 0 - 238 258 296 222 341 222 c 0 - 370 222 398 228 411 240 c 0 - 423 251 424 272 426 272 c 0 - 429 272 444 272 445 270 c 1 -87 334 m 0 - 87 204 192 98 322 98 c 0 - 452 98 559 204 559 334 c 0 - 559 464 452 570 322 570 c 0 - 192 570 87 464 87 334 c 0 -55 334 m 0 - 55 481 174 601 321 601 c 0 - 468 601 589 481 589 334 c 0 - 589 187 468 67 321 67 c 0 - 174 67 55 187 55 334 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/c.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/c.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/c.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/c.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: c.sc -Encoding: 65595 -1 747 -Width: 505 -Flags: W -HStem: -5 32<232 371> 412 32<232 368> -VStem: 48 84<121 310> 434 28<93 127> -LayerCount: 2 -Fore -SplineSet -284 444 m 0 - 330 444 381 440 434 426 c 1 - 434 426 452 333 452 326 c 1 - 452 319 445 318 438 318 c 0 - 434 318 424 319 423 321 c 1 - 419 341 399 412 298 412 c 0 - 198 412 132 323 132 228 c 0 - 132 112 193 27 308 27 c 0 - 395 27 426 94 434 130 c 1 - 446 130 462 125 462 125 c 1 - 462 112 448 42 437 32 c 1 - 399 7 346 -5 282 -5 c 0 - 142 -5 48 96 48 214 c 0 - 48 339 146 444 284 444 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/currency.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/currency.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/currency.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/currency.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: currency -Encoding: 164 164 98 -Width: 560 -Flags: W -HStem: 117 31<240 333> 452 32<225 318> -VStem: 100 71<220 388> 386 70<213 382> -LayerCount: 2 -Fore -SplineSet -287 148 m 0 - 347 148 386 214 386 287 c 0 - 386 377 333 452 271 452 c 0 - 211 452 171 385 171 312 c 0 - 171 222 225 148 287 148 c 0 -389 444 m 1 - 446 498 l 2 - 454 506 479 478 486 455 c 1 - 428 400 l 1 - 446 371 456 336 456 300 c 0 - 456 261 445 224 424 194 c 1 - 477 138 l 2 - 485 130 457 105 434 98 c 1 - 383 151 l 1 - 354 130 318 117 279 117 c 0 - 237 117 198 132 168 156 c 1 - 116 107 l 2 - 108 99 83 127 76 150 c 1 - 129 200 l 1 - 110 229 100 264 100 300 c 0 - 100 343 114 382 137 413 c 1 - 86 468 l 2 - 78 476 106 501 129 508 c 1 - 180 454 l 1 - 208 474 242 484 279 484 c 0 - 321 484 359 469 389 444 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/daggerdbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/daggerdbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/daggerdbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/daggerdbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: daggerdbl -Encoding: 8225 8225 396 -Width: 413 -Flags: W -HStem: -8 21G<196 217> 133 79<51 115 298 362> 164 21<115 183 230 298> 427 79<51 115 298 362> 454 21<115 183 230 298> 627 20G<196 217> -VStem: 166 80<-4 93 546 642> 192 27<54 159 191 239 399 447 480 585> -LayerCount: 2 -Fore -SplineSet -251 282 m 1x95 - 239 254 229 229 222 212 c 1xd5 - 222 200 235 185 251 185 c 24xa5 - 283 185 311 193 330 212 c 1 - 351 212 367 195 367 174 c 0 - 367 153 351 133 330 133 c 1xc5 - 311 152 283 164 251 164 c 0 - 238 164 230 159 220 146 c 1xa5 - 220 114 227 47 246 28 c 1 - 246 7 228 -8 207 -8 c 0 - 185 -8 166 7 166 28 c 1xa6 - 185 47 192 114 192 146 c 1 - 182 159 176 164 162 164 c 16xa5 - 130 164 102 152 83 133 c 1 - 62 133 46 153 46 174 c 0 - 46 195 62 212 83 212 c 1xc5 - 102 193 130 185 162 185 c 24xa5 - 178 185 190 200 190 212 c 1 - 183 229 172 258 161 282 c 1 - 174 299 177 303 190 319 c 1 - 177 334 179 333 161 356 c 1 - 172 380 183 410 190 427 c 1xd5 - 190 439 178 454 162 454 c 24x8d - 130 454 102 446 83 427 c 1 - 62 427 46 444 46 465 c 0 - 46 486 62 506 83 506 c 1x95 - 102 487 130 475 162 475 c 8 - 176 475 182 480 192 493 c 1x8d - 192 525 185 591 166 610 c 1 - 166 631 185 646 207 646 c 0 - 228 646 246 631 246 610 c 1x8e - 227 591 220 525 220 493 c 1 - 230 480 238 475 251 475 c 0x8d - 283 475 311 487 330 506 c 1 - 351 506 367 486 367 465 c 0 - 367 444 351 427 330 427 c 1x95 - 311 446 283 454 251 454 c 24x8d - 235 454 222 439 222 427 c 1 - 229 410 239 384 251 356 c 1 - 234 335 234 334 222 319 c 1 - 232 306 235 302 251 282 c 1x95 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dagger.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dagger.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dagger.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dagger.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: dagger -Encoding: 8224 8224 395 -Width: 389 -Flags: W -HStem: -8 21G<193 196> 427 79<39 103 286 351> 454 21<103 171 218 286> 627 20G<184 206> -VStem: 154 80<546 642> 179 31<390 450 478 595> 188 12<-8 73> -LayerCount: 2 -Fore -SplineSet -150 475 m 8xb4 - 164 475 171 480 181 493 c 1 - 181 525 173 591 154 610 c 1 - 154 631 173 646 195 646 c 0 - 216 646 234 631 234 610 c 1 - 215 591 208 525 208 493 c 1 - 218 480 226 475 239 475 c 0xb8 - 271 475 299 487 318 506 c 1 - 339 506 355 486 355 465 c 0 - 355 444 339 427 318 427 c 1xd8 - 299 446 271 454 239 454 c 24xb8 - 223 454 210 439 210 427 c 1xd4 - 217 410 227 384 239 356 c 1 - 218 221 213 167 200 4 c 1 - 198 -2 197 -7 194 -8 c 1 - 191 -7 190 0 188 4 c 1xd2 - 175 167 170 221 149 356 c 1 - 160 380 172 410 179 427 c 1xd4 - 179 439 166 454 150 454 c 24xb4 - 118 454 90 446 71 427 c 1 - 50 427 34 444 34 465 c 0 - 34 486 50 506 71 506 c 1xd4 - 90 487 118 475 150 475 c 8xb4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: dcaron -Encoding: 271 271 204 -Width: 519 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 761 40 2 -Refer: 67 100 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" dcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Dcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Dcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Dcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Dcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Dcaron -Encoding: 270 270 203 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 35 68 N 1 0 0 1 0 0 3 -Refer: 474 -1 N 1 0 0 1 193 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: dcaron.sc -Encoding: 65669 -1 821 -Width: 550 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 465 23 2 -Refer: 748 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: dcroat -Encoding: 273 273 206 -Width: 502 -Flags: W -HStem: -8 61<188 283> 20 26<428 485> 387 41<192 320> 513 34<209 478> 613 25<277 334> 658 20<397 420> -VStem: 38 82<127 285> 343 75<69 366 418 607> -LayerCount: 2 -Fore -SplineSet -214 547 m 1x3f - 242 547 459 547 473 547 c 0 - 477 547 479 543 479 539 c 3 - 479 534 477 521 473 513 c 1 - 445 513 227 513 213 513 c 0 - 209 513 208 520 208 524 c 3 - 208 529 210 540 214 547 c 1x3f -EndSplineSet -Refer: 67 100 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" dcroat.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Dcroat.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Dcroat.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Dcroat.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Dcroat.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Dcroat -Encoding: 272 272 205 -Width: 693 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 141 208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcroat.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcroat.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dcroat.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dcroat.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dcroat.sc -Encoding: 65670 -1 822 -Width: 558 -Flags: HW -LayerCount: 2 -Fore -Refer: 797 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/degree.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/degree.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/degree.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/degree.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: degree -Encoding: 176 176 109 -Width: 267 -Flags: W -HStem: 427 36<92 176> 583 36<92 176> -VStem: 37 36<481 565> 193 36<481 565> -LayerCount: 2 -Fore -SplineSet -73 523 m 0 - 73 490 101 463 134 463 c 0 - 167 463 193 490 193 523 c 0 - 193 556 167 583 134 583 c 0 - 101 583 73 556 73 523 c 0 -37 523 m 0 - 37 576 81 619 134 619 c 0 - 187 619 229 576 229 523 c 0 - 229 470 187 427 134 427 c 0 - 81 427 37 470 37 523 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Delta.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Delta.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Delta.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Delta.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: Delta -Encoding: 8710 8710 417 -Width: 666 -Flags: W -HStem: 0 60<104 523> -LayerCount: 2 -Fore -SplineSet -522 66 m 2 - 320 474 l 1 - 316 477 313 478 309 472 c 2 - 104 70 l 1 - 102 63 107 60 112 60 c 2 - 520 60 l 2 - 524 60 523 62 522 66 c 2 -345 599 m 1 - 640 14 l 1 - 640 14 634 8 632 0 c 1 - 35 0 l 1 - 31 6 30 9 26 16 c 1 - 328 599 l 1 - 345 599 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/d.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/d.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/d.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/d.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: d -Encoding: 100 100 67 -Width: 502 -Flags: W -HStem: -8 61<188 283> 20 26<428 485> 387 41<192 320> 613 25<277 334> 658 20G<397 420> -VStem: 38 82<127 285> 343 75<69 366 418 607> -LayerCount: 2 -Fore -SplineSet -271 428 m 0xbe - 292 428 328 422 338 418 c 1 - 342 418 343 426 343 438 c 2 - 343 545 l 2 - 343 559 343 584 338 596 c 0 - 332 610 305 613 278 613 c 1 - 277 613 275 638 279 639 c 1 - 328 644 377 659 418 678 c 1 - 423 678 429 669 429 662 c 1 - 429 662 418 631 418 577 c 2 - 418 159 l 2 - 418 121 419 77 425 63 c 0 - 433 45 479 47 482 46 c 0 - 484 45 485 37 485 34 c 0 - 485 32 483 20 478 20 c 0x7e - 427 17 352 -8 351 -8 c 0 - 345 -8 343 4 343 11 c 2 - 343 45 l 2 - 343 50 342 53 340 51 c 0 - 325 35 257 -8 210 -8 c 0 - 121 -8 38 82 38 201 c 0 - 38 329 183 428 271 428 c 0xbe -239 387 m 0 - 165 387 120 307 120 225 c 0 - 120 133 169 53 258 53 c 0xbe - 302 53 343 76 343 92 c 2 - 343 339 l 2 - 343 361 294 387 239 387 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" d.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: D -Encoding: 68 68 35 -Width: 693 -Flags: W -HStem: -3 31<42 112 209 382> 611 31<44 113 206 368> -VStem: 117 86<42 608> 547 97<193 438> -LayerCount: 2 -Fore -SplineSet -203 528 m 2 - 203 112 l 0 - 203 98 203 48 208 42 c 0 - 216 31 252 28 288 28 c 0 - 427 28 547 116 547 306 c 0 - 547 527 416 611 275 611 c 0 - 263 611 210 611 207 601 c 0 - 202 585 203 556 203 528 c 2 -301 643 m 0 - 515 643 644 507 644 326 c 0 - 644 160 563 -3 288 -3 c 0 - 245 -3 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 - 198 642 258 643 301 643 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dieresis -Encoding: 168 168 102 -Width: 368 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 429 -26 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/divide.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/divide.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/divide.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/divide.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: divide -Encoding: 247 247 180 -Width: 584 -Flags: W -HStem: 5 98<254 336> 214 55<64 524> 379 98<254 336> -VStem: 246 98<13 94 387 468> -LayerCount: 2 -Fore -SplineSet -64 214 m 17 - 64 214 59 214 59 224 c 0 - 59 228 64 261 75 269 c 9 - 248 269 346 269 519 269 c 16 - 523 269 527 265 527 257 c 0 - 527 241 520 222 512 214 c 1 - 64 214 l 17 -EndSplineSet -Refer: 339 775 N 1 0 0 1 544 -481 2 -Refer: 339 775 N 1 0 0 1 544 -107 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" divide.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/divide.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/divide.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/divide.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/divide.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: divide.sc -Encoding: 65661 -1 813 -Width: 581 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 180 247 N 1 0 0 1 -2 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dollar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dollar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dollar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dollar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: dollar -Encoding: 36 36 4 -Width: 486 -Flags: W -HStem: -10 33<215 303> 592 32<186 272> -VStem: 50 35<114 168> 67 75<426 538> 278 34<623 665> 355 82<83 202> 373 31<461 511> -LayerCount: 2 -Fore -SplineSet -285 667 m 1xd8 - 293 667 319 667 319 660 c 1 - 312 618 l 1 - 335 613 358 606 393 598 c 1 - 405 548 403 490 404 465 c 1 - 399 462 394 461 387 461 c 0 - 383 461 376 463 373 466 c 1xda - 369 499 345 547 305 573 c 1 - 268 347 l 1 - 270 346 272 344 274 343 c 0 - 336 304 438 255 438 162 c 0 - 438 58 342 -10 241 -10 c 0 - 230 -10 220 -9 209 -8 c 1 - 202 -51 l 1 - 193 -51 168 -49 168 -42 c 1 - 174 -4 l 1 - 136 2 101 12 72 18 c 1 - 60 74 50 150 50 161 c 1 - 54 165 67 169 74 169 c 0 - 79 169 83 168 85 164 c 1xec - 90 141 109 64 181 35 c 1 - 221 277 l 1 - 151 318 67 368 67 459 c 0 - 67 559 157 624 251 624 c 0 - 261 624 270 624 278 623 c 1 - 285 667 l 1xd8 -253 259 m 1 - 215 26 l 1 - 224 25 233 23 243 23 c 0 - 302 23 355 64 355 137 c 0xcc - 355 206 308 229 253 259 c 1 -236 367 m 1 - 272 588 l 1 - 263 590 254 592 245 592 c 0 - 163 592 143 533 143 488 c 0xd8 - 143 428 187 397 236 367 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dotaccent -Encoding: 729 729 327 -Width: 195 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 347 -3 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotbelowcomb.cap -Encoding: 65573 -1 468 -Width: 270 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 393 -619 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotbelowcomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: dotbelowcomb -Encoding: 803 803 347 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 0 -615 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: dotlessi -Encoding: 305 305 238 -Width: 263 -Flags: W -HStem: -3 28<33 96 183 246> 363 25<32 92> 410 20G<154 176> -VStem: 102 75<32 357> -LayerCount: 2 -Fore -SplineSet -177 317 m 0 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 231 25 243 25 c 1 - 247 20 248 2 243 -3 c 1 - 203 -1 177 2 139 2 c 0 - 101 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 295 l 2 - 102 308 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 177 360 177 350 c 2 - 177 317 l 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" dotlessi.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/dotlessi.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: dotlessi.sc -Encoding: 65687 -1 839 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 753 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/d.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/d.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/d.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/d.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: d.sc -Encoding: 65596 -1 748 -Width: 550 -Flags: W -HStem: -3 30<46 100 185 316> 407 29<46 100 185 308> -VStem: 104 76<36 400> 415 86<114 315> -LayerCount: 2 -Fore -SplineSet -180 353 m 2 - 180 83 l 0 - 180 74 182 40 185 36 c 0 - 190 29 214 27 238 27 c 0 - 333 27 415 83 415 208 c 0 - 415 354 327 407 230 407 c 0 - 222 407 187 407 185 400 c 0 - 182 389 180 372 180 353 c 2 -246 437 m 0 - 406 437 501 344 501 221 c 0 - 501 108 443 -3 237 -3 c 0 - 205 -3 76 -3 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 28 101 35 c 0 - 104 46 104 63 104 83 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 408 48 408 c 1 - 44 412 44 434 48 438 c 1 - 91 436 129 437 157 437 c 0 - 185 437 214 437 246 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: eacute -Encoding: 233 233 166 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 484 -4 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" eacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Eacute -Encoding: 201 201 134 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 592 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: eacute.sc -Encoding: 65638 -1 790 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 480 19 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ebreve -Encoding: 277 277 210 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 490 0 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ebreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ebreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ebreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ebreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ebreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ebreve -Encoding: 276 276 209 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 538 -3 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ebreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ebreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ebreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ebreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ebreve.sc -Encoding: 65672 -1 824 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 484 22 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecaron -Encoding: 283 283 216 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 483 0 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ecaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ecaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ecaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ecaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ecaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecaron -Encoding: 282 282 215 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 474 -1 N 1 0 0 1 167 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecaron.sc -Encoding: 65675 -1 827 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 475 21 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ecircumflex -Encoding: 234 234 167 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 472 -5 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ecircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ecircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ecircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ecircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ecircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ecircumflex -Encoding: 202 202 135 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 546 -1 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ecircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ecircumflex.sc -Encoding: 65639 -1 791 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 480 47 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edieresis -Encoding: 235 235 168 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 470 2 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" edieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Edieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Edieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Edieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Edieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edieresis -Encoding: 203 203 136 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 36 69 N 1 0 0 1 0 0 3 -Refer: 473 -1 N 1 0 0 1 124 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edieresis.sc -Encoding: 65640 -1 792 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 472 24 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: edotaccent -Encoding: 279 279 212 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 490 44 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" edotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Edotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Edotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Edotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Edotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Edotaccent -Encoding: 278 278 211 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 537 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/edotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: edotaccent.sc -Encoding: 65673 -1 825 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 474 21 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/e.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/e.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/e.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/e.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: e -Encoding: 101 101 68 -Width: 419 -Flags: W -HStem: -8 62<188 314> 242 36<113 294> 393 35<168 259> -VStem: 39 69<139 242> 295 83<279 360> -LayerCount: 2 -Fore -SplineSet -113 278 m 1 - 122 278 262 278 272 278 c 0 - 284 278 294 283 295 301 c 0 - 296 324 275 393 215 393 c 0 - 133 393 111 278 113 278 c 1 -108 242 m 1 - 105 117 182 55 268 55 c 0 - 322 55 362 91 375 106 c 1 - 376 106 383 101 383 93 c 0 - 383 88 380 80 377 75 c 0 - 359 47 310 -8 234 -8 c 0 - 119 -8 39 80 39 195 c 0 - 39 326 145 428 231 428 c 0 - 348 428 378 334 378 295 c 0 - 378 267 373 250 354 249 c 0 - 324 247 120 242 108 242 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" e.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: E -Encoding: 69 69 36 -Width: 573 -Flags: W -HStem: -3 28<42 111> 0 33<208 426> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> -VStem: 117 85<43 303 341 606> 403 31<225 283 363 418> 471 31<511 558> -LayerCount: 2 -Fore -SplineSet -160 642 m 0x3b80 - 252 642 368 648 474 648 c 1 - 481 599 493 560 502 516 c 1 - 499 513 492 511 485 511 c 0 - 478 511 472 513 471 518 c 0 - 450 596 410 609 358 609 c 2 - 274 609 l 0 - 262 609 209 609 206 599 c 0 - 201 583 202 555 202 529 c 2 - 202 347 l 2 - 202 342 223 341 244 341 c 2 - 295 341 l 2 - 389 341 386 347 403 411 c 0 - 404 416 410 418 417 418 c 0 - 424 418 431 416 434 413 c 1 - 434 229 l 1 - 432 227 425 225 418 225 c 0 - 411 225 405 227 403 232 c 0 - 388 288 384 291 375 297 c 0 - 364 304 309 305 272 305 c 0 - 245 305 202 305 202 296 c 2 - 202 110 l 2 - 202 95 201 48 207 43 c 0 - 220 33 236 33 277 33 c 2 - 324 33 l 2 - 370 33 420 43 447 60 c 0 - 478 79 492 116 508 158 c 0 - 509 162 515 164 522 164 c 0 - 532 164 543 161 546 158 c 1 - 527 105 501 39 494 -4 c 1 - 388 -4 291 0 161 0 c 0x7b80 - 115 0 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1xb780 - 84 644 122 642 160 642 c 0x3b80 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: egrave -Encoding: 232 232 165 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 447 -4 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" egrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Egrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Egrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Egrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Egrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Egrave -Encoding: 200 200 133 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 499 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/egrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/egrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/egrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/egrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: egrave.sc -Encoding: 65637 -1 789 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 482 19 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: eight -Encoding: 56 56 23 -Width: 532 -Flags: W -HStem: -9 35<211 326> 594 34<221 314> -VStem: 82 77<75 220> 109 72<420 543> 361 70<414 549> 371 79<84 198> -LayerCount: 2 -Fore -SplineSet -266 26 m 0xe4 - 330 26 371 69 371 135 c 0 - 371 216 260 280 246 288 c 0 - 244 289 243 290 240 290 c 0 - 239 290 237 290 236 289 c 0 - 182 255 159 215 159 153 c 0 - 159 73 214 26 266 26 c 0xe4 -266 594 m 0 - 219 594 182 545 182 486 c 0 - 182 411 246 376 283 355 c 0 - 285 354 287 354 289 354 c 0 - 291 354 292 353 295 355 c 0 - 335 381 361 421 361 475 c 0xd8 - 361 532 325 594 266 594 c 0 -271 628 m 0 - 358 628 432 575 432 484 c 0xd8 - 432 408 367 364 322 336 c 1 - 318 335 319 332 322 330 c 0 - 381 297 450 233 450 163 c 0 - 450 65 362 -9 264 -9 c 0 - 157 -9 82 55 82 150 c 0xe4 - 82 236 171 287 209 311 c 0 - 212 313 211 315 209 316 c 0 - 168 340 109 397 109 469 c 0 - 109 552 185 628 271 628 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" eight.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" eight.onum -Substitution2: "'ordn' Ordinals lookup 0-1" eight.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: eight.onum -Encoding: 65561 -1 456 -Width: 476 -Flags: W -HStem: -6 33<188 296> 576 36<193 289> -VStem: 62 78<81 235> 84 71<407 537> 324 72<395 542> 336 77<83 205> -LayerCount: 2 -Fore -SplineSet -84 463 m 0xd0 - 84 543 152 612 235 612 c 0 - 320 612 396 558 396 468 c 0xd8 - 396 405 352 355 299 327 c 1 - 295 326 295 323 298 321 c 0 - 358 277 413 229 413 161 c 0 - 413 66 330 -6 235 -6 c 0 - 142 -6 62 67 62 159 c 0xe4 - 62 239 125 291 173 312 c 0 - 176 313 175 316 173 318 c 0 - 120 353 84 397 84 463 c 0xd0 -155 469 m 0 - 155 405 211 373 257 346 c 0 - 259 345 261 344 263 344 c 0 - 266 344 268 346 271 348 c 0 - 319 379 324 422 324 472 c 0 - 324 527 293 576 244 576 c 0 - 191 576 155 530 155 469 c 0 -140 152 m 0xe4 - 140 74 185 27 235 27 c 0 - 302 27 336 64 336 142 c 0 - 336 224 234 278 220 287 c 0 - 217 289 213 291 210 291 c 0 - 209 291 207 291 206 290 c 0 - 150 264 140 221 140 152 c 0xe4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: eight.ordn -Encoding: 65749 -1 901 -Width: 368 -Flags: W -HStem: 247 27<147 228> 445 50<163 201> 651 26<151 217> -VStem: 56 61<296 410> 73 57<529 633> 242 56<524 636> 250 62<297 397> -LayerCount: 2 -Fore -SplineSet -73 571 m 0xe8 - 73 633 129 678 187 678 c 0 - 247 678 298 641 298 578 c 0xec - 298 533 253 497 224 480 c 0 - 221 478 220 479 223 477 c 0 - 266 452 312 416 312 361 c 0 - 312 292 249 247 181 247 c 0 - 114 247 56 285 56 349 c 0xf2 - 56 408 108 445 141 463 c 0 - 143 464 143 466 141 467 c 0 - 106 489 73 524 73 571 c 0xe8 -130 581 m 0 - 130 537 169 509 195 496 c 0 - 196 495 196 495 197 495 c 0 - 199 495 200 495 202 497 c 0 - 221 512 242 537 242 574 c 0 - 242 609 226 651 184 651 c 0 - 156 651 130 629 130 581 c 0 -116 354 m 0xf2 - 116 305 150 274 187 274 c 0 - 226 274 250 298 250 341 c 0 - 250 403 180 437 168 444 c 0 - 166 445 166 445 164 445 c 0 - 163 445 163 445 162 444 c 0 - 133 424 116 397 116 354 c 0xf2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eight.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eight.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: eight.prop -Encoding: 65759 -1 930 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 23 56 N 1 0 0 1 -27 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/element.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/element.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/element.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/element.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: element -Encoding: 8712 8712 419 -Width: 489 -Flags: W -HStem: 10 46<176 433> 187 46<109 389> 365 46<173 434> -VStem: 51 59<170 296> -LayerCount: 2 -Fore -SplineSet -396 211 m 0 - 396 185 389 188 388 187 c 1 - 114 187 l 2 - 113 187 108 186 109 183 c 0 - 121 121 171 56 236 56 c 2 - 420 56 l 1 - 420 56 435 53 435 19 c 0 - 435 10 428 10 428 10 c 1 - 238 10 l 2 - 129 10 51 102 51 211 c 0 - 51 317 123 411 229 411 c 2 - 428 411 l 1 - 428 411 435 411 435 399 c 0 - 435 369 420 365 420 365 c 1 - 229 365 l 2 - 167 365 120 298 109 237 c 0 - 109 234 111 232 114 232 c 2 - 389 232 l 1 - 389 231 396 228 396 211 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ellipsis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ellipsis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ellipsis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ellipsis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: ellipsis -Encoding: 8230 8230 399 -Width: 818 -Flags: W -HStem: -14 113<60 148 366 453 672 759> -VStem: 47 113<-0 87> 353 113<-0 87> 658 113<-0 87> -LayerCount: 2 -Fore -SplineSet -658 44 m 0 - 658 75 685 100 716 100 c 0 - 747 100 771 75 771 44 c 0 - 771 13 747 -14 716 -14 c 0 - 685 -14 658 13 658 44 c 0 -353 44 m 0 - 353 75 379 100 410 100 c 0 - 441 100 466 75 466 44 c 0 - 466 13 441 -14 410 -14 c 0 - 379 -14 353 13 353 44 c 0 -47 44 m 0 - 47 75 73 100 104 100 c 0 - 135 100 160 75 160 44 c 0 - 160 13 135 -14 104 -14 c 0 - 73 -14 47 13 47 44 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: emacron -Encoding: 275 275 208 -Width: 419 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 465 26 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" emacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Emacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Emacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Emacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Emacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Emacron -Encoding: 274 274 207 -Width: 573 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 511 27 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: emacron.sc -Encoding: 65671 -1 823 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 483 33 2 -Refer: 749 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emdash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emdash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/emdash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/emdash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: emdash -Encoding: 8212 8212 387 -Width: 835 -Flags: W -HStem: 205 61<62 769> -LayerCount: 2 -Fore -SplineSet -59 214 m 0 - 59 216 61 266 72 266 c 2 - 771 266 l 2 - 773 266 777 265 777 257 c 0 - 777 239 771 216 770 212 c 0 - 768 206 762 205 762 205 c 1 - 64 205 l 1 - 64 205 59 204 59 214 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/endash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/endash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/endash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/endash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: endash -Encoding: 8211 8211 386 -Width: 550 -Flags: W -HStem: 195 61<62 484> -LayerCount: 2 -Fore -SplineSet -59 204 m 0 - 59 206 61 256 72 256 c 2 - 487 256 l 2 - 489 256 493 255 493 247 c 0 - 493 229 485 206 484 202 c 0 - 482 196 478 195 478 195 c 1 - 64 195 l 1 - 64 195 59 194 59 204 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: eng -Encoding: 331 331 263 -Width: 508 -Flags: W -HStem: -3 28<33 96 183 246> 363 25<32 92> 371 57<250 334> -VStem: 102 75<32 339> 366 75<-67 339> -LayerCount: 2 -Fore -SplineSet -366 45 m 2xb8 - 366 211 l 2 - 366 332 346 371 270 371 c 0xb8 - 234 371 177 326 177 317 c 2 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 231 25 243 25 c 1 - 247 20 248 2 243 -3 c 1 - 203 -1 177 2 139 2 c 0 - 101 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 295 l 2 - 102 308 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1xd8 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 178 366 178 358 c 0 - 178 357 178 354 180 354 c 0 - 181 354 182 355 183 356 c 0 - 203 377 268 428 315 428 c 0 - 420 428 441 363 441 221 c 1 - 440 66 l 1 - 440 -122 337 -199 271 -226 c 1 - 266 -223 261 -216 259 -211 c 0 - 258 -209 258 -205 259 -204 c 1 - 315 -164 366 -117 366 45 c 2xb8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" eng.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eng.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eng.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eng.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eng.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: Eng -Encoding: 330 330 262 -Width: 757 -Flags: W -HStem: -222 46<406 510> -3 28<38 109 188 257> 619 28<38 112 510 579 659 730> -VStem: 126 45<46 555> 597 45<162 599> -LayerCount: 2 -Fore -SplineSet -582 37 m 1 - 171 556 l 1 - 171 112 l 2 - 171 77 171 61 181 45 c 0 - 187 35 238 25 254 25 c 1 - 259 18 258 3 256 -3 c 1 - 217 -1 188 2 145 2 c 0 - 100 2 85 -1 40 -3 c 1 - 37 2 35 14 40 25 c 1 - 52 25 109 33 116 45 c 0 - 125 60 126 74 126 111 c 2 - 126 535 l 2 - 126 572 125 587 116 602 c 0 - 109 614 52 621 40 621 c 1 - 35 632 37 644 40 649 c 1 - 85 647 108 645 140 645 c 0 - 169 645 200 645 214 646 c 1 - 264 568 489 313 597 162 c 1 - 597 219 l 1 - 597 532 l 2 - 597 567 597 584 587 600 c 0 - 581 610 529 619 513 619 c 1 - 508 626 509 641 511 647 c 1 - 550 645 580 643 623 643 c 0 - 668 643 683 645 728 647 c 1 - 731 642 733 630 728 619 c 1 - 716 619 658 612 651 600 c 0 - 642 585 642 570 642 533 c 2 - 642 118 l 2 - 642 -126 545 -222 413 -222 c 0 - 398 -222 364 -213 352 -204 c 1 - 347 -199 344 -189 344 -182 c 0 - 344 -152 360 -127 391 -127 c 0 - 409 -127 425 -143 438 -155 c 0 - 449 -165 464 -176 481 -176 c 0 - 517 -176 570 -135 582 37 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eng.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eng.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eng.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eng.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: eng.sc -Encoding: 65700 -1 852 -Width: 583 -Flags: W -HStem: -151 41<306 389> -3 28<43 101 156 214> 415 28<43 101 376 433 490 548> -VStem: 107 43<39 361> 441 43<135 400> -LayerCount: 2 -Fore -SplineSet -432 32 m 1 - 150 361 l 1 - 150 83 l 2 - 150 60 149 49 156 38 c 0 - 160 31 201 25 212 25 c 1 - 216 19 215 2 213 -3 c 1 - 185 -1 158 1 127 1 c 0 - 95 1 77 -1 45 -3 c 1 - 42 1 41 15 45 25 c 1 - 53 25 96 30 101 38 c 0 - 107 48 107 58 107 82 c 2 - 107 357 l 2 - 107 381 107 391 101 401 c 0 - 96 409 53 415 45 415 c 1 - 41 425 42 439 45 443 c 1 - 78 441 102 438 125 438 c 0 - 146 438 170 439 180 440 c 1 - 214 387 364 225 441 135 c 1 - 441 355 l 2 - 441 378 440 389 433 400 c 0 - 429 407 390 413 379 413 c 1 - 375 419 376 436 378 441 c 1 - 406 439 432 438 463 438 c 0 - 495 438 515 439 547 441 c 1 - 550 437 551 423 547 413 c 1 - 539 413 495 408 490 400 c 0 - 484 390 484 380 484 355 c 2 - 484 74 l 2 - 484 -63 418 -151 314 -151 c 0 - 298 -151 278 -143 269 -136 c 1 - 266 -132 263 -124 263 -119 c 0 - 263 -97 276 -79 297 -79 c 0 - 309 -79 319 -88 329 -97 c 0 - 337 -104 347 -110 356 -110 c 0 - 375 -110 421 -82 432 32 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: eogonek -Encoding: 281 281 214 -Width: 420 -Flags: W -HStem: -219 58<239 311> -8 62<188 292> 242 36<113 294> 393 35<168 259> -VStem: 39 69<139 242> 182 53<-157 -79> 295 83<279 360> -LayerCount: 2 -Fore -SplineSet -330 25 m 0 - 281 -16 234 -62 234 -119 c 0 - 234 -134 241 -161 274 -161 c 0 - 324 -161 348 -124 354 -124 c 0 - 355 -124 357 -129 357 -137 c 0 - 357 -142 357 -150 354 -154 c 0 - 333 -182 295 -219 251 -219 c 0 - 196 -219 182 -170 182 -144 c 0 - 182 -105 219 -45 258 -6 c 1 - 251 -7 242 -8 234 -8 c 0 - 119 -8 39 80 39 195 c 0 - 39 326 145 428 231 428 c 0 - 348 428 378 334 378 295 c 0 - 378 267 373 250 354 249 c 0 - 324 247 120 242 108 242 c 1 - 105 117 182 55 268 55 c 0 - 322 55 362 91 375 106 c 0 - 376 106 383 101 383 93 c 0 - 383 88 380 80 377 75 c 0 - 369 61 351 42 330 25 c 0 -113 278 m 0 - 122 278 262 278 272 278 c 0 - 284 278 294 283 295 301 c 0 - 296 324 275 393 215 393 c 0 - 133 393 111 278 113 278 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" eogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,59 +0,0 @@ -StartChar: Eogonek -Encoding: 280 280 213 -Width: 573 -Flags: W -HStem: -219 58<375 447> -3 28<42 111> 0 33<208 419> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> -VStem: 117 85<43 303 341 606> 318 53<-157 -84> 403 31<225 283 363 418> 471 31<511 558> -LayerCount: 2 -Fore -SplineSet -160 642 m 0x9de0 - 252 642 368 648 474 648 c 1 - 481 599 493 560 502 516 c 1 - 499 513 492 511 485 511 c 0 - 478 511 472 513 471 518 c 0 - 450 596 410 609 358 609 c 2 - 274 609 l 0 - 262 609 209 609 206 599 c 0 - 201 583 202 555 202 529 c 2 - 202 347 l 2 - 202 342 223 341 244 341 c 2 - 295 341 l 2 - 389 341 386 347 403 411 c 0 - 404 416 410 418 417 418 c 0 - 424 418 431 416 434 413 c 1 - 434 229 l 1 - 432 227 425 225 418 225 c 0 - 411 225 405 227 403 232 c 0 - 388 288 384 291 375 297 c 0 - 364 304 309 305 272 305 c 0 - 245 305 202 305 202 296 c 2 - 202 110 l 2 - 202 95 201 48 207 43 c 0 - 220 33 236 33 277 33 c 2 - 324 33 l 2 - 370 33 420 43 447 60 c 0 - 478 79 492 116 508 158 c 0 - 509 162 515 164 522 164 c 0 - 532 164 543 161 546 158 c 1 - 527 105 501 39 494 -4 c 1 - 436 -4 371 -77 371 -119 c 0 - 371 -134 378 -161 411 -161 c 0 - 461 -161 484 -124 490 -124 c 0 - 491 -124 494 -129 494 -137 c 0 - 494 -142 493 -150 490 -154 c 0 - 469 -182 432 -219 388 -219 c 0 - 333 -219 318 -170 318 -144 c 0 - 318 -94 371 -37 420 -3 c 1 - 340 -2 291 0 161 0 c 0xbde0 - 115 0 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1xdbe0 - 84 644 122 642 160 642 c 0x9de0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,60 +0,0 @@ -StartChar: eogonek.sc -Encoding: 65674 -1 826 -Width: 460 -Flags: W -HStem: -218 58<276 348> -4 36<47 100 184 328 340 358> 199 33<179 297> 404 31<183 343> 412 28<44 100> -VStem: 104 75<38 199 233 397> 219 53<-156 -83> 315 27<243 284> 367 29<344 379> -LayerCount: 2 -Fore -SplineSet -140 436 m 0xf780 - 208 436 293 442 371 442 c 1 - 377 407 388 378 396 347 c 1 - 393 345 388 344 382 344 c 0 - 376 344 368 345 367 348 c 0 - 352 398 323 404 287 404 c 2 - 229 404 l 2xf780 - 221 404 185 403 183 397 c 0 - 179 387 179 370 179 353 c 2 - 179 236 l 2 - 179 233 193 232 208 232 c 2 - 243 232 l 2 - 306 232 303 236 315 279 c 0 - 316 282 322 284 328 284 c 0 - 334 284 340 282 343 279 c 1 - 343 151 l 1 - 341 150 335 149 329 149 c 0 - 323 149 317 151 315 154 c 1 - 305 188 303 190 297 194 c 0 - 290 198 252 199 227 199 c 0 - 208 199 179 199 179 193 c 2 - 179 80 l 2 - 179 71 180 41 184 38 c 0 - 193 32 203 32 232 32 c 2 - 267 32 l 2 - 300 32 333 36 353 47 c 0 - 376 59 386 82 397 108 c 0 - 398 110 404 111 409 111 c 0 - 416 111 425 110 427 108 c 1 - 413 72 393 25 388 -4 c 1 - 387 -4 385 -4 384 -4 c 0 - 338 -6 271 -76 271 -118 c 0 - 271 -133 279 -160 312 -160 c 0 - 362 -160 385 -123 391 -123 c 0 - 392 -123 396 -128 396 -136 c 0 - 396 -141 394 -149 391 -153 c 0 - 370 -181 332 -218 288 -218 c 0 - 233 -218 219 -169 219 -143 c 0 - 219 -90 287 -13 328 -3 c 1 - 270 -2 213 0 140 0 c 0 - 106 0 75 -3 47 -3 c 1 - 43 1 43 21 47 25 c 1 - 55 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 55 412 47 412 c 1 - 43 416 43 436 47 440 c 1xef80 - 76 438 112 436 140 436 c 0xf780 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/equal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/equal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/equal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/equal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: equal -Encoding: 61 61 28 -Width: 551 -Flags: W -HStem: 117 54<79 474> 258 54<79 474> -LayerCount: 2 -Fore -SplineSet -467 117 m 1 - 310 117 239 117 71 117 c 1 - 59 117 72 166 86 171 c 9 - 480 171 l 17 - 494 171 481 124 467 117 c 1 -467 258 m 1 - 310 258 239 258 71 258 c 1 - 59 258 72 307 86 312 c 9 - 480 312 l 17 - 494 312 481 265 467 258 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" equal.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/equal.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/equal.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/equal.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/equal.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: equal.sc -Encoding: 65589 -1 741 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 28 61 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/e.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/e.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/e.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/e.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,51 +0,0 @@ -StartChar: e.sc -Encoding: 65597 -1 749 -Width: 461 -Flags: W -HStem: 0 32<47 100 184 355> 199 33<179 297> 404 31<183 343> 412 28<44 100> -VStem: 104 75<38 199 233 397> 315 27<243 284> 367 29<344 379> -LayerCount: 2 -Fore -SplineSet -140 436 m 0xee - 208 436 293 442 371 442 c 1 - 377 407 388 378 396 347 c 1 - 393 345 388 344 382 344 c 0 - 376 344 368 345 367 348 c 0 - 352 398 323 404 287 404 c 2 - 229 404 l 0xee - 221 404 185 403 183 397 c 0 - 179 387 179 370 179 353 c 2 - 179 236 l 2 - 179 233 193 232 208 232 c 2 - 243 232 l 2 - 306 232 303 236 315 279 c 0 - 316 282 322 284 328 284 c 0 - 334 284 340 282 343 279 c 1 - 343 151 l 1 - 341 150 335 149 329 149 c 0 - 323 149 317 151 315 154 c 0 - 305 188 303 190 297 194 c 0 - 290 198 252 199 227 199 c 0 - 208 199 179 199 179 193 c 2 - 179 80 l 2 - 179 71 180 41 184 38 c 0 - 193 32 203 32 232 32 c 2 - 267 32 l 2 - 300 32 333 36 353 47 c 0 - 376 59 386 82 397 108 c 0 - 398 110 404 111 409 111 c 0 - 416 111 425 110 427 108 c 1 - 413 72 393 25 388 -4 c 1 - 309 -4 238 0 140 0 c 0 - 106 0 75 -3 47 -3 c 1 - 43 1 43 21 47 25 c 1 - 55 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 55 412 47 412 c 1 - 43 416 43 436 47 440 c 1xde - 76 438 112 436 140 436 c 0xee -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: eth -Encoding: 240 240 173 -Width: 504 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -7 32<203 306> 396 32<178 293> 648 23<84 104> -VStem: 39 84<114 309> 366 85<125 324> -LayerCount: 2 -Fore -SplineSet -338 683 m 17 - 346 678 362 658 355 652 c 9 - 125 497 l 17 - 118 502 101 522 108 528 c 9 - 338 683 l 17 -229 396 m 0 - 151 396 123 312 123 222 c 0 - 123 126 174 25 253 25 c 0 - 330 25 366 101 366 197 c 0 - 366 251 358 300 347 321 c 0 - 320 373 282 396 229 396 c 0 -241 429 m 0 - 269 429 304 425 324 413 c 1 - 302 471 261 574 79 648 c 1 - 79 655 85 672 93 672 c 1 - 178 653 270 594 339 514 c 0 - 405 437 451 341 451 241 c 3 - 451 83 353 -7 250 -7 c 0 - 117 -7 39 89 39 206 c 0 - 39 311 105 429 241 429 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" eth.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eth.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eth.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Eth.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Eth.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Eth -Encoding: 208 208 141 -Width: 693 -Flags: W -HStem: -3 31<42 112 209 382> 304 36<46 358> 611 31<44 113 206 368> -VStem: 117 86<42 608> 547 97<193 438> -LayerCount: 2 -Fore -SplineSet -356 304 m 1 - 328 304 62 304 48 304 c 1 - 44 304 43 331 49 340 c 1 - 77 340 342 340 356 340 c 1 - 360 340 360 313 356 304 c 1 -EndSplineSet -Refer: 35 68 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eth.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eth.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/eth.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/eth.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: eth.sc -Encoding: 65645 -1 797 -Width: 558 -Flags: W -HStem: -3 30<54 109 193 324> 208 26<23 272> 407 29<54 109 193 316> -VStem: 112 76<36 400> 423 86<114 315> -LayerCount: 2 -Fore -SplineSet -270 208 m 1 - 248 208 36 208 25 208 c 1 - 22 208 21 227 26 234 c 1 - 48 234 259 234 270 234 c 1 - 273 234 273 215 270 208 c 1 -EndSplineSet -Refer: 748 -1 N 1 0 0 1 8 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Euro.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Euro.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Euro.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Euro.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: Euro -Encoding: 8364 8364 410 -Width: 691 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -6 35<336 511> 233 47<39 431> 342 47<39 431> 591 34<332 503> -VStem: 89 93<241 376> 607 30<133 174> -LayerCount: 2 -Fore -SplineSet -407 625 m 0 - 469 625 536 620 605 605 c 1 - 605 605 626 477 626 467 c 1 - 626 457 617 453 607 453 c 0 - 601 453 596 454 594 457 c 1 - 588 486 566 591 410 591 c 0 - 271 591 182 452 182 321 c 0 - 182 175 263 29 426 29 c 0 - 562 29 595 125 607 179 c 1 - 620 179 637 172 637 172 c 1 - 637 153 617 48 604 36 c 1 - 552 7 489 -6 403 -6 c 0 - 217 -6 89 136 89 302 c 0 - 89 478 222 625 407 625 c 0 -51 280 m 1 - 79 280 420 280 434 280 c 0 - 438 280 436 271 434 265 c 0 - 432 258 428 244 418 233 c 1 - 390 233 49 233 35 233 c 0 - 31 233 33 242 35 248 c 0 - 37 255 41 269 51 280 c 1 -51 389 m 1 - 79 389 420 389 434 389 c 0 - 438 389 436 379 434 373 c 0 - 432 366 428 353 418 342 c 1 - 390 342 49 342 35 342 c 0 - 31 342 33 350 35 356 c 0 - 37 363 41 378 51 389 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclamdown -Encoding: 161 161 95 -Width: 209 -Flags: W -HStem: 312 107<63 147> -VStem: 52 107<324 408> 58 92<-208 90> -LayerCount: 2 -Fore -SplineSet -52 365 m 0xc0 - 52 394 75 420 104 420 c 0 - 133 420 159 394 159 365 c 0 - 159 336 133 312 104 312 c 0 - 75 312 52 336 52 365 c 0xc0 -101 -218 m 0 - 71 -218 58 -186 58 -161 c 0 - 58 -134 70 -3 91 241 c 1 - 95 249 97 253 106 254 c 1 - 111 252 117 249 120 243 c 1 - 134 86 149 -111 149 -161 c 0xa0 - 149 -188 132 -218 101 -218 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" exclamdown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclamdown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclamdown.sc -Encoding: 65627 -1 779 -Width: 248 -VWidth: 1039 -Flags: W -HStem: -11 21G<104 135> 319 107<83 168> -VStem: 72 107<331 415> 74 95<-3 182> -LayerCount: 2 -Fore -SplineSet -180 372 m 0xe0 - 180 343 154 319 125 319 c 0 - 96 319 72 343 72 372 c 0 - 72 401 96 427 125 427 c 0 - 154 427 180 401 180 372 c 0xe0 -119 -11 m 0 - 88 -11 74 15 74 32 c 0 - 74 50 88 121 109 279 c 1 - 114 284 117 286 126 287 c 1 - 131 286 136 284 140 280 c 1 - 154 178 169 64 169 32 c 0xd0 - 169 14 151 -11 119 -11 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclam.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclam.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclam.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclam.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclam -Encoding: 33 33 1 -Width: 235 -Flags: W -HStem: -11 107<75 160> 607 20G<106 137> -VStem: 63 107<1 85> 73 92<319 617> -LayerCount: 2 -Fore -SplineSet -63 44 m 0xe0 - 63 73 89 97 118 97 c 0 - 147 97 171 73 171 44 c 0 - 171 15 147 -11 118 -11 c 0 - 89 -11 63 15 63 44 c 0xe0 -122 627 m 0 - 152 627 165 595 165 570 c 0 - 165 543 152 412 131 168 c 1 - 127 160 124 156 115 155 c 1 - 110 157 106 160 103 166 c 1 - 89 323 73 520 73 570 c 0xd0 - 73 597 91 627 122 627 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" exclam.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclam.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclam.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/exclam.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/exclam.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: exclam.sc -Encoding: 65580 -1 732 -Width: 248 -VWidth: 1039 -Flags: W -HStem: -11 107<80 165> 407 20G<113 145> -VStem: 68 107<1 85> 79 95<234 419> -LayerCount: 2 -Fore -SplineSet -68 44 m 0xe0 - 68 73 94 97 123 97 c 0 - 152 97 176 73 176 44 c 0 - 176 15 152 -11 123 -11 c 0 - 94 -11 68 15 68 44 c 0xe0 -129 427 m 0 - 160 427 174 401 174 384 c 0 - 174 366 160 295 139 137 c 1 - 134 132 131 130 122 129 c 1 - 117 130 112 132 108 136 c 1 - 94 238 79 352 79 384 c 0xd0 - 79 402 97 427 129 427 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,65 +0,0 @@ -StartChar: f_b -Encoding: 65541 -1 436 -Width: 798 -Flags: W -HStem: -7 33<26 86 182 238 489 597> 363 46<40 97 171 286> 370 5<461 532> 641 38<225 314> -VStem: 97 74<36 363 409 536> 380 75<52 344 375 581> 676 82<131 292> -LayerCount: 2 -Fore -SplineSet -380 490 m 2xbe - 380 501 376 550 369 565 c 0 - 359 586 311 641 261 641 c 0 - 201 641 171 551 171 464 c 2 - 171 414 l 2 - 171 412 174 409 176 409 c 2 - 284 409 l 2 - 289 409 289 408 289 402 c 0 - 289 393 284 377 277 363 c 1 - 177 363 l 2 - 174 363 171 360 171 357 c 0 - 171 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 96 98 96 132 c 2 - 96 132 97 269 97 356 c 0 - 97 359 95 363 92 363 c 2 - 40 363 l 2 - 38 363 37 365 37 369 c 0 - 37 382 47 409 52 409 c 2 - 92 409 l 2xde - 95 409 97 412 97 415 c 2 - 97 428 l 2 - 97 570 199 679 291 679 c 0 - 320 679 358 656 383 656 c 0 - 414 656 448 678 451 678 c 2 - 454 678 l 2 - 460 678 465 667 466 662 c 1 - 466 662 455 631 455 577 c 2 - 455 385 l 2 - 455 380 455 370 461 375 c 0 - 476 386 542 428 579 428 c 0 - 696 428 758 317 758 228 c 0 - 758 100 656 -7 517 -7 c 0 - 502 -7 465 2 444 8 c 0 - 423 14 403 22 381 14 c 1 - 376 14 368 30 368 35 c 1 - 377 55 380 87 380 107 c 2 - 380 490 l 2xbe -532 370 m 0xbe - 507 370 469 353 460 344 c 0 - 457 341 455 338 455 333 c 2 - 455 96 l 2 - 455 54 503 26 546 26 c 0 - 616 26 676 110 676 189 c 0 - 676 302 619 370 532 370 c 0xbe -EndSplineSet -LCarets2: 1 332 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f b -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_b.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_b.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_b.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_b.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,91 +0,0 @@ -StartChar: f_f_b -Encoding: 65542 -1 437 -Width: 1070 -Flags: W -HStem: -3 28<26 82 185 238 299 354 458 510 766 863> 363 46<39 96 172 368 442 557> 370 5<732 804> 627 38<228 330> 641 38<493 586> -VStem: 96 74<36 363 409 530> 368 74<36 363> 382 61<409 575> 651 75<52 344 375 581> 947 82<131 292> -LayerCount: 2 -Fore -SplineSet -651 489 m 2xaec0 - 651 509 648 550 641 565 c 0 - 631 586 582 641 532 641 c 0 - 472 641 442 551 442 464 c 2 - 442 414 l 2xadc0 - 442 412 445 409 447 409 c 2 - 556 409 l 2 - 561 409 561 408 561 402 c 0 - 561 393 556 377 549 363 c 1 - 448 363 l 2 - 445 363 442 360 442 357 c 0 - 442 269 444 132 444 132 c 2 - 444 100 445 71 452 45 c 0 - 455 34 499 25 507 25 c 0 - 512 25 512 3 510 -3 c 1 - 471 -1 444 2 405 2 c 0 - 365 2 343 -1 303 -3 c 1 - 301 -1 299 6 299 12 c 0 - 299 18 301 25 303 25 c 0 - 315 25 356 34 359 45 c 0 - 367 75 368 98 368 132 c 2 - 368 356 l 2 - 368 359 366 363 363 363 c 2 - 177 363 l 2 - 173 363 170 360 170 357 c 0 - 170 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 96 98 96 132 c 2 - 96 356 l 2 - 96 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2 - 94 409 96 412 96 415 c 2 - 96 428 l 2 - 96 570 209 665 301 665 c 0xd6c0 - 373 665 415 616 425 599 c 1 - 462 650 513 679 562 679 c 0 - 591 679 629 656 654 656 c 0 - 685 656 720 678 723 678 c 2 - 726 678 l 2 - 732 678 736 667 737 662 c 1 - 737 662 727 631 727 577 c 2 - 727 385 l 2 - 727 380 726 370 732 375 c 0 - 747 386 814 428 851 428 c 0 - 968 428 1029 317 1029 228 c 0 - 1029 100 927 -7 788 -7 c 0 - 773 -7 737 2 716 8 c 0 - 695 14 674 22 652 14 c 1 - 647 14 640 30 640 35 c 1 - 649 55 651 87 651 107 c 2 - 651 489 l 2xaec0 -804 370 m 0 - 779 370 740 353 731 344 c 0 - 728 341 727 338 727 333 c 2 - 727 96 l 2 - 727 54 774 26 817 26 c 0 - 887 26 947 110 947 189 c 0 - 947 302 891 370 804 370 c 0 -378 545 m 0 - 372 554 350 627 267 627 c 0 - 203 627 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 363 409 l 2 - 366 409 367 414 368 419 c 2xd6c0 - 368 419 372 488 380 514 c 0 - 382 519 382 525 382 528 c 0 - 382 532 379 542 378 545 c 0 -EndSplineSet -LCarets2: 2 273 586 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f b -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.ff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.ff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.ff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.ff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,135 +0,0 @@ -StartChar: f.ff -Encoding: 65765 -1 955 -Width: 250 -Flags: HW -LayerCount: 2 -Back -SplineSet -512.20703125 680.6640625 m 0 - 526.204101562 680.6640625 535.400390625 680.012695312 539.794921875 678.7109375 c 128 - 544.189453125 677.409179688 550.29296875 674.153320312 558.10546875 668.9453125 c 1 - 560.383789062 666.666992188 562.581054688 662.678710938 564.697265625 656.982421875 c 128 - 566.813476562 651.286132812 567.87109375 646.159179688 567.87109375 641.6015625 c 0 - 567.87109375 633.463867188 566.487304688 626.545898438 563.720703125 620.849609375 c 128 - 560.954101562 615.153320312 557.291992188 611.083984375 552.734375 608.642578125 c 128 - 548.176757812 606.201171875 544.026367188 604.573242188 540.283203125 603.759765625 c 128 - 536.540039062 602.946289062 532.71484375 602.5390625 528.80859375 602.5390625 c 0 - 522.94921875 602.5390625 513.508789062 606.120117188 500.48828125 613.28125 c 0 - 489.74609375 619.140625 480.305664062 622.0703125 472.16796875 622.0703125 c 0 - 456.217773438 622.0703125 443.196289062 614.013671875 433.10546875 597.900390625 c 128 - 423.014648438 581.787109375 418.131835938 559.245117188 418.45703125 530.2734375 c 1 - 418.45703125 421.875 l 1 - 533.69140625 421.875 l 2 - 536.946289062 421.875 538.57421875 418.293945312 538.57421875 411.1328125 c 0 - 538.57421875 400.715820312 534.016601562 390.950195312 524.90234375 381.8359375 c 1 - 418.45703125 381.8359375 l 1 - 418.45703125 113.28125 l 2 - 418.45703125 75.5205078125 420.084960938 51.4326171875 423.33984375 41.015625 c 0 - 424.641601562 36.4580078125 433.430664062 32.71484375 449.70703125 29.78515625 c 128 - 465.983398438 26.85546875 479.00390625 25.390625 488.76953125 25.390625 c 1 - 490.72265625 22.7861328125 491.780273438 18.06640625 491.943359375 11.23046875 c 128 - 492.106445312 4.39453125 491.047851562 -0.3251953125 488.76953125 -2.9296875 c 1 - 422.038085938 0.3251953125 385.905273438 1.953125 380.37109375 1.953125 c 0 - 368.977539062 1.953125 357.991210938 1.708984375 347.412109375 1.220703125 c 128 - 336.833007812 0.732421875 324.70703125 0 311.03515625 -0.9765625 c 128 - 297.36328125 -1.953125 285.969726562 -2.6044921875 276.85546875 -2.9296875 c 1 - 274.577148438 -0.3251953125 273.518554688 4.39453125 273.681640625 11.23046875 c 128 - 273.844726562 18.06640625 274.90234375 22.7861328125 276.85546875 25.390625 c 1 - 286.295898438 25.390625 298.583984375 26.85546875 313.720703125 29.78515625 c 128 - 328.857421875 32.71484375 337.077148438 36.4580078125 338.37890625 41.015625 c 0 - 341.633789062 51.4326171875 343.26171875 75.5205078125 343.26171875 113.28125 c 2 - 343.26171875 381.8359375 l 1 - 286.62109375 381.8359375 l 2 - 283.366210938 381.8359375 281.73828125 384.765625 281.73828125 390.625 c 0 - 281.73828125 392.252929688 285.319335938 397.216796875 292.48046875 405.517578125 c 128 - 299.641601562 413.818359375 304.524414062 419.270507812 307.12890625 421.875 c 1 - 343.26171875 421.875 l 1 - 343.26171875 424.247070312 l 1 - 343.26171875 427.734375 l 2 - 343.26171875 461.262695312 349.284179688 494.221679688 361.328125 526.611328125 c 128 - 373.372070312 559.000976562 388.102539062 586.100585938 405.517578125 607.91015625 c 128 - 422.932617188 629.719726562 441.325195312 647.297851562 460.693359375 660.64453125 c 128 - 480.061523438 673.991210938 497.233398438 680.6640625 512.20703125 680.6640625 c 0 -361.81640625 552.734375 m 128 - 361.81640625 553.385742188 361.491210938 554.6875 360.83984375 556.640625 c 0 - 359.211914062 560.221679688 356.770507812 564.453125 353.515625 569.3359375 c 128 - 350.260742188 574.21875 345.295898438 579.915039062 338.623046875 586.42578125 c 128 - 331.950195312 592.936523438 322.834960938 598.388671875 311.279296875 602.783203125 c 128 - 299.723632812 607.177734375 286.946289062 609.375 272.94921875 609.375 c 0 - 254.069335938 609.375 237.629882812 604.573242188 223.6328125 594.970703125 c 128 - 209.635742188 585.368164062 198.73046875 572.102539062 190.91796875 555.17578125 c 128 - 183.10546875 538.249023438 177.409179688 520.01953125 173.828125 500.48828125 c 128 - 170.247070312 480.95703125 168.45703125 459.635742188 168.45703125 436.5234375 c 2 - 168.45703125 421.875 l 1 - 317.87109375 421.875 l 1 - 317.87109375 381.8359375 l 1 - 168.45703125 381.8359375 l 1 - 168.45703125 113.28125 l 2 - 168.45703125 75.5205078125 170.084960938 51.4326171875 173.33984375 41.015625 c 0 - 174.641601562 36.4580078125 183.430664062 32.71484375 199.70703125 29.78515625 c 128 - 215.983398438 26.85546875 229.00390625 25.390625 238.76953125 25.390625 c 1 - 240.72265625 22.7861328125 241.780273438 18.06640625 241.943359375 11.23046875 c 128 - 242.106445312 4.39453125 241.047851562 -0.3251953125 238.76953125 -2.9296875 c 1 - 172.038085938 0.3251953125 135.905273438 1.953125 130.37109375 1.953125 c 0 - 118.977539062 1.953125 107.991210938 1.708984375 97.412109375 1.220703125 c 128 - 86.8330078125 0.732421875 74.70703125 0 61.03515625 -0.9765625 c 128 - 47.36328125 -1.953125 35.9697265625 -2.6044921875 26.85546875 -2.9296875 c 1 - 24.5771484375 -0.3251953125 23.5185546875 4.39453125 23.681640625 11.23046875 c 128 - 23.8447265625 18.06640625 24.90234375 22.7861328125 26.85546875 25.390625 c 1 - 36.2958984375 25.390625 48.583984375 26.85546875 63.720703125 29.78515625 c 128 - 78.857421875 32.71484375 87.0771484375 36.4580078125 88.37890625 41.015625 c 0 - 91.6337890625 51.4326171875 93.26171875 75.5205078125 93.26171875 113.28125 c 2 - 93.26171875 381.8359375 l 1 - 36.62109375 381.8359375 l 2 - 34.66796875 381.8359375 33.69140625 384.765625 33.69140625 390.625 c 0 - 33.69140625 394.206054688 37.0283203125 400.309570312 43.701171875 408.935546875 c 128 - 50.3740234375 417.561523438 56.4775390625 421.875 62.01171875 421.875 c 2 - 93.26171875 421.875 l 1 - 93.26171875 427.734375 l 2 - 93.26171875 462.239257812 103.596679688 496.745117188 124.267578125 531.25 c 128 - 144.938476562 565.754882812 170.979492188 593.75 202.392578125 615.234375 c 128 - 233.805664062 636.71875 264.485351562 647.4609375 294.43359375 647.4609375 c 0 - 321.452148438 647.4609375 345.540039062 643.798828125 366.69921875 636.474609375 c 128 - 387.858398438 629.150390625 402.506835938 621.09375 410.64453125 612.3046875 c 1025 -EndSplineSet -Fore -SplineSet -375 538 m 16 - 370 537 367 541 364 548 c 0 - 354 575 337 593 312 603 c 0 - 300 607 288 609 274 609 c 0 - 255 609 239 605 225 595 c 0 - 200 578 183 546 175 500 c 0 - 171 480 169 460 169 437 c 2 - 169 409 l 1 - 319 409 l 1 - 319 369 l 1 - 169 369 l 1 - 169 113 l 2 - 169 75 171 51 174 41 c 0 - 175 36 185 33 201 30 c 128 - 217 27 230 25 240 25 c 1 - 242 22 243 18 243 11 c 128 - 243 4 242 0 240 -3 c 1 - 171 0 134 2 131 2 c 2 - 28 -3 l 1 - 26 0 25 4 25 11 c 128 - 25 18 26 22 28 25 c 1 - 37 25 50 27 65 30 c 128 - 80 33 88 36 89 41 c 0 - 92 51 94 75 94 113 c 2 - 94 369 l 1 - 38 369 l 2 - 36 369 35 372 35 378 c 0 - 35 382 38 387 45 396 c 128 - 52 405 57 409 63 409 c 2 - 94 409 l 1 - 94 428 l 2 - 94 463 104 496 125 531 c 0 - 147 568 173 596 203 615 c 0 - 256 648 311 655 368 636 c 0 - 388 629 403 621 412 612 c 0 - 422 602 421 588 410 567 c 0 - 401 549 389 540 375 538 c 16 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,63 +0,0 @@ -StartChar: f_f -Encoding: 65536 -1 431 -Width: 546 -Flags: W -HStem: -3 28<24 88 174 241 273 337 423 490> 382 40<39 93 168 342 417 533> 609 38<227 333> 629 52<464 544> -VStem: 93 75<32 382 422 511> 342 75<32 382 422 553> 362 56<422 583> -LayerCount: 2 -Fore -SplineSet -489 629 m 0xdc - 445 629 417 589 417 492 c 2 - 417 422 l 1 - 530 422 l 2 - 535 422 535 417 535 411 c 0 - 535 402 530 391 521 382 c 1 - 417 382 l 1 - 417 113 l 2 - 417 84 417 57 422 41 c 0 - 425 30 476 25 488 25 c 1 - 492 20 493 2 488 -3 c 1 - 448 -1 417 2 379 2 c 0 - 341 2 316 -1 276 -3 c 1 - 271 2 272 20 276 25 c 1 - 288 25 334 30 337 41 c 0 - 342 57 342 84 342 113 c 2 - 342 382 l 1 - 168 382 l 17 - 168 113 l 2 - 168 84 168 57 173 41 c 0 - 176 30 227 25 239 25 c 1 - 243 20 244 2 239 -3 c 1 - 199 -1 168 2 130 2 c 0 - 92 2 67 -1 27 -3 c 1 - 22 2 23 20 27 25 c 1 - 39 25 85 30 88 41 c 0 - 93 57 93 84 93 113 c 2 - 93 382 l 1 - 37 382 l 2 - 35 382 34 384 34 391 c 0 - 34 396 49 422 62 422 c 2 - 93 422 l 1 - 93 428 l 2 - 93 535 202 647 294 647 c 0xec - 354 647 397 627 411 612 c 1 - 437 646 487 681 536 681 c 0 - 554 681 571 673 577 668 c 1 - 581 660 582 652 582 642 c 0 - 582 615 563 599 548 599 c 0 - 535 599 522 606 515 615 c 0 - 509 622 500 629 489 629 c 0xdc -357 542 m 0 - 359 547 362 551 362 553 c 0xea - 362 554 362 554 361 557 c 0 - 357 567 334 609 273 609 c 0 - 194 609 168 524 168 437 c 2 - 168 422 l 9 - 342 422 l 1 - 342 455 l 2 - 342 475 351 522 357 542 c 0 -EndSplineSet -LCarets2: 1 259 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,101 +0,0 @@ -StartChar: f_f_h -Encoding: 65546 -1 441 -Width: 1066 -Flags: W -HStem: -3 28<26 82 185 238 299 354 458 510 582 646 732 796 846 909 996 1059> 363 46<39 96 172 368 442 557> 371 57<800 884> 627 38<228 330> 641 38<493 586> -VStem: 96 74<36 363 409 530> 368 74<36 363> 381 62<409 578> 651 75<32 339 354 582> 915 75<32 339> -LayerCount: 2 -Fore -SplineSet -651 486 m 2xaec0 - 651 501 648 550 641 565 c 0 - 632 586 582 641 532 641 c 0 - 472 641 442 551 442 464 c 2 - 442 414 l 2xadc0 - 442 412 445 409 447 409 c 2 - 556 409 l 2 - 561 409 561 408 561 402 c 0 - 561 393 556 377 549 363 c 1 - 448 363 l 2 - 445 363 442 360 442 357 c 0 - 442 269 444 132 444 132 c 2 - 444 100 445 71 452 45 c 0 - 455 34 499 25 507 25 c 0 - 512 25 512 3 510 -3 c 1 - 471 -1 444 2 405 2 c 0 - 365 2 343 -1 303 -3 c 1 - 301 -1 299 6 299 12 c 0 - 299 18 301 25 303 25 c 0 - 315 25 356 34 359 45 c 0 - 367 75 367 98 368 132 c 1 - 368 356 l 2 - 368 359 366 363 363 363 c 2 - 177 363 l 2 - 173 363 170 360 170 357 c 0 - 170 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 95 98 96 132 c 1 - 96 356 l 2 - 96 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2xcec0 - 94 409 96 412 96 415 c 2 - 96 428 l 2 - 96 570 209 665 301 665 c 0xb6c0 - 373 665 415 616 425 599 c 1 - 462 650 513 679 562 679 c 0 - 591 679 630 656 654 656 c 0 - 685 656 720 678 723 678 c 2 - 726 678 l 2 - 732 678 736 667 737 662 c 1 - 737 662 727 631 727 577 c 2 - 727 577 727 364 727 356 c 0 - 727 355 727 354 729 354 c 0 - 730 354 731 355 732 356 c 0 - 752 377 817 428 864 428 c 0 - 969 428 990 363 990 221 c 2 - 990 113 l 2 - 990 84 990 57 995 41 c 0 - 998 30 1045 25 1057 25 c 1 - 1061 20 1062 2 1057 -3 c 1 - 1017 -1 990 2 952 2 c 0 - 914 2 889 -1 849 -3 c 1 - 844 2 845 20 849 25 c 1 - 861 25 907 30 910 41 c 0 - 915 57 915 84 915 113 c 2 - 915 211 l 2 - 915 332 895 371 819 371 c 0 - 783 371 727 326 727 317 c 2 - 727 113 l 2 - 727 84 726 57 731 41 c 0 - 734 30 781 25 793 25 c 1 - 797 20 798 2 793 -3 c 1 - 753 -1 726 2 688 2 c 0 - 650 2 625 -1 585 -3 c 1 - 580 2 581 20 585 25 c 1 - 597 25 643 30 646 41 c 0 - 651 57 651 84 651 113 c 2 - 651 486 l 2xaec0 -377 545 m 0 - 372 554 350 627 267 627 c 0 - 203 627 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 363 409 l 2 - 366 409 367 414 368 419 c 2xd6c0 - 368 419 372 488 379 514 c 0 - 381 519 381 525 381 528 c 0 - 381 532 378 542 377 545 c 0 -EndSplineSet -LCarets2: 2 269 576 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,87 +0,0 @@ -StartChar: f_f_i -Encoding: 65538 -1 433 -Width: 795 -Flags: W -HStem: -3 28<25 81 184 237 298 353 457 509 564 620 722 778> 363 46<40 97 171 369 443 624> 406 20G<708 711> 627 38<229 331> 641 38<495 583> -VStem: 97 74<36 363 409 530> 369 74<36 363 409 528> 633 75<36 355> -LayerCount: 2 -Fore -SplineSet -633 113 m 2xa7 - 633 303 l 2 - 633 311 632 333 621 349 c 0 - 612 362 563 363 550 363 c 2 - 449 363 l 2 - 446 363 443 360 443 357 c 2 - 443 132 l 2 - 443 100 444 71 451 45 c 0 - 454 34 498 25 506 25 c 0 - 511 25 511 3 509 -3 c 1 - 470 -1 443 2 404 2 c 0 - 364 2 342 -1 302 -3 c 1 - 300 -1 298 6 298 12 c 0 - 298 18 300 25 302 25 c 0 - 314 25 355 34 358 45 c 0 - 366 75 367 98 367 132 c 2 - 367 132 369 269 369 356 c 0 - 369 359 367 363 364 363 c 2 - 177 363 l 2 - 174 363 171 360 171 357 c 2 - 171 132 l 2 - 171 100 172 71 179 45 c 0 - 182 34 225 25 233 25 c 0 - 238 25 238 3 236 -3 c 1 - 197 -1 171 2 132 2 c 0 - 92 2 69 -1 29 -3 c 1 - 27 -1 25 6 25 12 c 0 - 25 18 27 25 29 25 c 0 - 41 25 83 34 86 45 c 0 - 94 75 95 98 95 132 c 2 - 95 132 97 269 97 356 c 0 - 97 359 95 363 92 363 c 2 - 40 363 l 2 - 38 363 37 365 37 369 c 0 - 37 382 47 409 52 409 c 2 - 92 409 l 2 - 95 409 97 412 97 415 c 2 - 97 428 l 2 - 97 570 210 665 302 665 c 0xd7 - 374 665 416 616 426 599 c 1 - 464 649 514 679 563 679 c 0 - 591 679 624 670 651 656 c 0 - 681 640 704 620 704 598 c 0 - 704 571 687 552 660 552 c 0 - 643 552 627 559 619 573 c 0 - 606 595 583 641 533 641 c 0 - 473 641 438 551 443 464 c 1 - 443 414 l 2 - 443 412 446 409 448 409 c 2 - 557 409 l 2xcf - 600 409 672 411 703 423 c 0 - 704 423 707 426 708 426 c 0 - 714 426 713 408 713 403 c 0 - 709 372 708 366 708 333 c 2 - 708 132 l 2 - 708 100 709 71 716 45 c 0 - 719 34 766 25 774 25 c 0 - 779 25 779 3 777 -3 c 1 - 738 -1 710 2 673 2 c 0 - 633 2 606 -1 566 -3 c 1 - 561 2 561 25 566 25 c 0 - 578 25 623 34 626 45 c 0 - 632 69 633 99 633 113 c 2xa7 -268 627 m 0 - 204 627 171 551 171 464 c 2 - 171 414 l 2 - 171 412 174 409 176 409 c 2 - 364 409 l 2 - 367 409 369 412 369 415 c 2 - 369 419 l 2 - 369 449 373 488 381 514 c 0 - 383 519 383 525 383 528 c 0 - 383 532 380 542 379 545 c 0 - 373 554 351 627 268 627 c 0 -EndSplineSet -LCarets2: 2 269 537 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f i -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,82 +0,0 @@ -StartChar: f.fi -Encoding: 65766 -1 956 -Width: 242 -Flags: HW -LayerCount: 2 -Back -SplineSet -242.1875 409.1796875 m 1 - 281.73828125 409.1796875 l 2 - 347.493164062 409.1796875 396.321289062 413.737304688 428.22265625 422.8515625 c 0 - 433.10546875 423.828125 l 0 - 435.709960938 423.828125 437.418945312 421.061523438 438.232421875 415.52734375 c 128 - 439.045898438 409.993164062 438.96484375 405.924804688 437.98828125 403.3203125 c 1 - 434.733398438 377.278320312 433.10546875 353.840820312 433.10546875 333.0078125 c 2 - 433.10546875 113.28125 l 2 - 433.10546875 75.5205078125 434.733398438 51.4326171875 437.98828125 41.015625 c 0 - 439.290039062 36.4580078125 447.509765625 32.71484375 462.646484375 29.78515625 c 128 - 477.783203125 26.85546875 490.071289062 25.390625 499.51171875 25.390625 c 1 - 501.46484375 22.7861328125 502.522460938 18.06640625 502.685546875 11.23046875 c 128 - 502.848632812 4.39453125 501.790039062 -0.3251953125 499.51171875 -2.9296875 c 1 - 432.780273438 0.3251953125 397.94921875 1.953125 395.01953125 1.953125 c 0 - 383.625976562 1.953125 372.639648438 1.708984375 362.060546875 1.220703125 c 128 - 351.481445312 0.732421875 339.35546875 0 325.68359375 -0.9765625 c 128 - 312.01171875 -1.953125 300.618164062 -2.6044921875 291.50390625 -2.9296875 c 1 - 289.225585938 -0.3251953125 288.166992188 4.39453125 288.330078125 11.23046875 c 128 - 288.493164062 18.06640625 289.55078125 22.7861328125 291.50390625 25.390625 c 1 - 300.944335938 25.390625 313.232421875 26.85546875 328.369140625 29.78515625 c 128 - 343.505859375 32.71484375 351.725585938 36.4580078125 353.02734375 41.015625 c 0 - 356.282226562 51.4326171875 357.91015625 75.5205078125 357.91015625 113.28125 c 2 - 357.91015625 297.8515625 l 2 - 357.91015625 318.359375 353.352539062 335.9375 344.23828125 350.5859375 c 1 - 337.077148438 362.956054688 313.313476562 369.140625 272.94921875 369.140625 c 2 - 242.1875 369.140625 l 1 - 242.1875 409.1796875 l 1 -EndSplineSet -Fore -SplineSet -257 369 m 25 - 169 369 l 1 - 169 113 l 2 - 169 75 171 51 174 41 c 0 - 175 36 185 33 201 30 c 128 - 217 27 230 25 240 25 c 1 - 242 22 243 18 243 11 c 128 - 243 4 242 0 240 -3 c 1 - 173 0 137 2 131 2 c 0 - 120 2 109 1 98 1 c 128 - 87 1 76 0 62 -1 c 128 - 48 -2 37 -3 28 -3 c 1 - 26 0 25 4 25 11 c 128 - 25 18 26 22 28 25 c 1 - 37 25 50 27 65 30 c 128 - 80 33 88 36 89 41 c 0 - 92 51 94 75 94 113 c 2 - 94 369 l 1 - 38 369 l 2 - 36 369 35 372 35 378 c 0 - 35 382 38 387 45 396 c 128 - 52 405 57 409 63 409 c 2 - 94 409 l 1 - 94 424 l 2 - 94 462 103 501 121 540 c 128 - 139 579 163 613 195 640 c 128 - 227 667 260 681 296 681 c 0 - 317 681 336 676 356 666 c 128 - 376 656 392 646 403 634 c 1 - 424 613 435 591 435 571 c 0 - 435 560 431 551 423 543 c 128 - 415 535 404 531 392 531 c 0 - 371 531 356 543 347 566 c 0 - 346 569 344 574 342 580 c 128 - 340 586 338 591 336 595 c 128 - 334 599 334 602 332 605 c 0 - 325 615 317 623 308 628 c 128 - 299 633 286 635 270 635 c 0 - 243 635 219 616 199 579 c 128 - 179 542 169 501 169 456 c 2 - 169 409 l 1 - 257 409 l 25 - 257 369 l 25 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,83 +0,0 @@ -StartChar: f_f_j -Encoding: 65548 -1 443 -Width: 775 -Flags: W -HStem: -3 28<26 82 185 238 299 354 458 510> 363 46<39 96 170 368 442 624> 406 20G<708 711> 627 38<228 330> 641 38<494 581> -VStem: 96 74<36 363 409 530> 368 74<36 363 409 528> 633 75<-67 355> -LayerCount: 2 -Fore -SplineSet -633 303 m 2xa7 - 633 311 631 333 620 349 c 0 - 611 362 562 363 549 363 c 2 - 448 363 l 2 - 445 363 442 360 442 357 c 0 - 442 269 444 132 444 132 c 2 - 444 100 445 71 452 45 c 0 - 455 34 499 25 507 25 c 0 - 512 25 512 3 510 -3 c 1 - 471 -1 444 2 405 2 c 0 - 365 2 343 -1 303 -3 c 1 - 301 -1 299 6 299 12 c 0 - 299 18 301 25 303 25 c 0 - 315 25 356 34 359 45 c 0 - 367 75 368 98 368 132 c 2 - 368 356 l 2 - 368 359 366 363 363 363 c 2 - 176 363 l 2 - 173 363 170 360 170 357 c 0 - 170 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 96 98 96 132 c 2 - 96 356 l 2 - 96 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2 - 94 409 96 412 96 415 c 2 - 96 428 l 2 - 96 570 209 665 301 665 c 0xd7 - 373 665 415 616 425 599 c 1 - 463 649 513 679 562 679 c 0 - 622 679 703 640 703 598 c 0 - 703 571 686 552 659 552 c 0 - 642 552 626 559 618 573 c 0 - 605 595 582 641 532 641 c 0 - 472 641 437 551 442 464 c 1 - 442 414 l 2 - 442 412 445 409 447 409 c 2 - 556 409 l 2xcf - 599 409 666 411 702 423 c 0 - 703 423 707 426 708 426 c 0 - 714 426 712 408 712 403 c 0 - 708 372 708 366 708 333 c 2 - 708 316 l 0 - 708 66 l 1 - 708 -122 605 -199 539 -226 c 1 - 534 -223 528 -216 526 -211 c 0 - 525 -209 525 -205 526 -204 c 1 - 582 -164 633 -118 633 44 c 2 - 633 303 l 2xa7 -378 545 m 0 - 372 554 350 627 267 627 c 0 - 203 627 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 363 409 l 2 - 366 409 368 412 368 415 c 2 - 368 419 l 2 - 368 449 372 488 380 514 c 0 - 382 519 382 525 382 528 c 0 - 382 532 379 542 378 545 c 0 -EndSplineSet -LCarets2: 2 269 552 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f j -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,101 +0,0 @@ -StartChar: f_f_k -Encoding: 65544 -1 439 -Width: 1059 -Flags: W -HStem: -3 28<26 82 185 238 299 354 458 510 581 645 731 795 995 1064> 363 46<39 96 172 368 442 557> 387 28<847 895 971 1032> 627 38<228 330> 641 38<493 586> -VStem: 96 74<36 363 409 530> 368 74<36 363> 381 62<409 578> 650 75<32 199 229 582> -LayerCount: 2 -Fore -SplineSet -650 489 m 2xae80 - 650 500 648 550 641 565 c 0 - 632 586 582 641 532 641 c 0 - 472 641 442 551 442 464 c 2 - 442 414 l 2xad80 - 442 412 445 409 447 409 c 2 - 556 409 l 2 - 561 409 561 408 561 402 c 0 - 561 393 556 377 549 363 c 1 - 448 363 l 2 - 445 363 442 360 442 357 c 0 - 442 269 444 132 444 132 c 2 - 444 100 445 71 452 45 c 0 - 455 34 499 25 507 25 c 0 - 512 25 512 3 510 -3 c 1 - 471 -1 444 2 405 2 c 0 - 365 2 343 -1 303 -3 c 1 - 301 -1 299 6 299 12 c 0 - 299 18 301 25 303 25 c 0 - 315 25 356 34 359 45 c 0 - 367 75 367 98 368 132 c 1 - 368 356 l 2 - 368 359 366 363 363 363 c 2 - 177 363 l 2 - 173 363 170 360 170 357 c 0 - 170 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 95 98 96 132 c 1 - 96 356 l 2 - 96 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2xce80 - 94 409 96 412 96 415 c 2 - 96 428 l 2 - 96 570 209 665 301 665 c 0xb680 - 373 665 415 616 425 599 c 1 - 462 650 513 679 562 679 c 0 - 591 679 630 656 654 656 c 0 - 685 656 720 678 723 678 c 2 - 726 678 l 2 - 732 678 736 667 737 662 c 1 - 737 662 726 631 726 577 c 2 - 726 229 l 1 - 743 235 773 261 806 289 c 0 - 857 332 896 360 896 370 c 0 - 896 385 858 386 849 387 c 1 - 844 394 846 413 851 415 c 1 - 879 412 913 410 944 410 c 0 - 977 410 1009 412 1030 415 c 1 - 1034 409 1033 391 1030 387 c 1 - 1016 387 976 379 955 364 c 0 - 944 356 855 292 797 243 c 1 - 870 164 950 72 973 52 c 0 - 998 31 1037 24 1062 25 c 1 - 1064 22 1066 7 1063 2 c 1 - 1056 -1 1026 -4 1000 -4 c 0 - 942 -4 895 23 880 39 c 2 - 880 39 796 129 740 190 c 0 - 736 195 726 199 726 199 c 1 - 726 113 l 2 - 726 84 725 57 730 41 c 0 - 733 30 780 25 792 25 c 1 - 796 20 797 2 792 -3 c 1 - 752 -1 726 2 688 2 c 0 - 650 2 624 -1 584 -3 c 1 - 579 2 580 20 584 25 c 1 - 596 25 643 30 646 41 c 0 - 651 57 650 84 650 113 c 2 - 650 489 l 2xae80 -377 545 m 0 - 372 554 350 627 267 627 c 0 - 203 627 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 363 409 l 2 - 366 409 367 414 368 419 c 2xd680 - 368 419 372 488 379 514 c 0 - 381 519 381 525 381 528 c 0 - 381 532 378 542 377 545 c 0 -EndSplineSet -LCarets2: 2 269 566 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f k -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,84 +0,0 @@ -StartChar: f_f_l -Encoding: 65540 -1 435 -Width: 813 -Flags: W -HStem: -3 28<26 82 185 238 299 354 458 510 582 639 740 796> 363 46<39 96 172 368 442 557> 627 38<228 330> 641 38<493 586> -VStem: 96 74<36 363 409 530> 368 74<36 363> 382 61<409 575> 651 75<36 581> -LayerCount: 2 -Fore -SplineSet -651 113 m 2xdd - 651 489 l 2 - 651 500 648 550 641 565 c 0 - 631 586 582 641 532 641 c 0 - 472 641 442 551 442 464 c 2 - 442 414 l 2xdb - 442 412 445 409 447 409 c 2 - 556 409 l 2 - 561 409 561 408 561 402 c 0 - 561 393 556 377 549 363 c 1 - 448 363 l 2 - 445 363 442 360 442 357 c 0 - 442 269 444 132 444 132 c 2 - 444 100 445 71 452 45 c 0 - 455 34 499 25 507 25 c 0 - 512 25 512 3 510 -3 c 1 - 471 -1 444 2 405 2 c 0 - 365 2 343 -1 303 -3 c 1 - 301 -1 299 6 299 12 c 0 - 299 18 301 25 303 25 c 0 - 315 25 356 34 359 45 c 0 - 367 75 368 98 368 132 c 2 - 368 356 l 2 - 368 359 366 363 363 363 c 2 - 177 363 l 2 - 173 363 170 360 170 357 c 0 - 170 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 96 98 96 132 c 2 - 96 356 l 2 - 96 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2 - 94 409 96 412 96 415 c 2 - 96 428 l 2 - 96 570 209 665 301 665 c 0xed - 373 665 415 616 425 599 c 1 - 462 650 513 679 562 679 c 0 - 591 679 629 656 654 656 c 0 - 685 656 720 678 723 678 c 2 - 726 678 l 2 - 732 678 736 667 737 662 c 1 - 737 662 727 631 727 577 c 2 - 727 132 l 2 - 727 100 727 71 734 45 c 0 - 737 34 785 25 793 25 c 0 - 798 25 798 3 796 -3 c 1 - 757 -1 728 2 691 2 c 0 - 651 2 625 -1 585 -3 c 1 - 580 2 580 25 585 25 c 0 - 597 25 642 34 645 45 c 0 - 651 69 651 99 651 113 c 2xdd -378 545 m 0 - 372 554 350 627 267 627 c 0 - 203 627 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 363 409 l 2 - 366 409 367 414 368 419 c 2xed - 368 419 372 488 380 514 c 0 - 382 519 382 525 382 528 c 0 - 382 532 379 542 378 545 c 0 -EndSplineSet -LCarets2: 2 273 547 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f f l -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.fl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.fl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.fl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.fl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -StartChar: f.fl -Encoding: 65768 -1 958 -Width: 306 -Flags: HW -LayerCount: 2 -Back -SplineSet -394.04296875 544.921875 m 2 - 394.04296875 570.963867188 392.415039062 587.890625 389.16015625 595.703125 c 0 - 384.27734375 607.421875 364.420898438 613.28125 329.58984375 613.28125 c 0 - 329.264648438 613.28125 328.938476562 615.315429688 328.61328125 619.384765625 c 128 - 328.288085938 623.454101562 328.206054688 627.604492188 328.369140625 631.8359375 c 128 - 328.532226562 636.067382812 329.264648438 638.346679688 330.56640625 638.671875 c 0 - 375.48828125 643.229492188 421.711914062 656.25 469.23828125 677.734375 c 1 - 471.516601562 677.734375 473.876953125 676.025390625 476.318359375 672.607421875 c 128 - 478.759765625 669.189453125 479.98046875 665.690429688 479.98046875 662.109375 c 1 - 472.819335938 641.276367188 469.23828125 612.956054688 469.23828125 577.1484375 c 2 - 469.23828125 113.28125 l 2 - 469.23828125 75.5205078125 470.866210938 51.4326171875 474.12109375 41.015625 c 0 - 475.422851562 36.4580078125 483.642578125 32.71484375 498.779296875 29.78515625 c 128 - 513.916015625 26.85546875 526.204101562 25.390625 535.64453125 25.390625 c 1 - 537.59765625 22.7861328125 538.655273438 18.06640625 538.818359375 11.23046875 c 128 - 538.981445312 4.39453125 537.922851562 -0.3251953125 535.64453125 -2.9296875 c 1 - 468.913085938 0.3251953125 434.08203125 1.953125 431.15234375 1.953125 c 0 - 419.758789062 1.953125 408.772460938 1.708984375 398.193359375 1.220703125 c 128 - 387.614257812 0.732421875 375.48828125 0 361.81640625 -0.9765625 c 128 - 348.14453125 -1.953125 336.750976562 -2.6044921875 327.63671875 -2.9296875 c 1 - 325.358398438 -0.3251953125 324.299804688 4.39453125 324.462890625 11.23046875 c 128 - 324.625976562 18.06640625 325.68359375 22.7861328125 327.63671875 25.390625 c 1 - 337.077148438 25.390625 349.365234375 26.85546875 364.501953125 29.78515625 c 128 - 379.638671875 32.71484375 387.858398438 36.4580078125 389.16015625 41.015625 c 0 - 392.415039062 51.4326171875 394.04296875 75.5205078125 394.04296875 113.28125 c 2 - 394.04296875 544.921875 l 2 -EndSplineSet -Fore -SplineSet -423 603 m 0 - 437 584 444 566 444 550 c 0 - 444 525 436 511 419 510 c 0 - 404 509 393 520 383 545 c 24 - 360 602 319 631 259 630 c 0 - 236 630 218 622 205 604 c 0 - 181 572 169 524 169 463 c 2 - 169 414 l 2 - 169 413 170 412 171 411 c 128 - 172 410 173 409 174 409 c 2 - 283 409 l 2 - 285 409 287 409 287 408 c 128 - 287 407 288 405 288 400 c 0 - 288 395 284 385 276 369 c 1 - 175 369 l 2 - 174 369 172 368 171 367 c 128 - 170 366 169 364 169 363 c 2 - 169 131 l 1 - 170 87 173 58 177 44 c 0 - 178 39 187 35 203 31 c 128 - 219 27 229 25 236 25 c 0 - 238 25 240 21 240 13 c 128 - 240 5 240 0 239 -3 c 1 - 174 0 139 1 135 1 c 128 - 131 1 95 0 28 -3 c 1 - 25 0 24 5 24 13 c 128 - 24 21 25 25 28 25 c 0 - 36 25 47 27 62 31 c 128 - 77 35 86 39 87 44 c 0 - 92 61 94 84 94 113 c 2 - 94 362 l 2 - 94 367 92 369 89 369 c 2 - 38 369 l 2 - 36 369 35 372 35 378 c 0 - 35 382 38 387 45 396 c 128 - 52 405 57 409 63 409 c 2 - 90 409 l 2 - 93 409 95 411 95 415 c 2 - 95 427 l 2 - 95 461 100 493 110 523 c 128 - 120 553 135 579 153 601 c 0 - 185 641 223 663 265 666 c 0 - 336 672 388 650 423 603 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,40 +0,0 @@ -StartChar: f -Encoding: 102 102 69 -Width: 300 -Flags: HW -HStem: -3 28<25 89 175 242> 382 40<40 94 169 288> 622 59<210 294> -VStem: 94 75<32 382 422 533> -LayerCount: 2 -Fore -SplineSet -263 681 m 0 - 292 681 294 679 309 669 c 1 - 313 665 319 652 319 642 c 0 - 319 607 293 603 280 603 c 0 - 270 603 262 607 251 613 c 0 - 240 619 236 622 223 622 c 0 - 193 622 168 591 169 530 c 2 - 169 409 l 1 - 285 409 l 2 - 290 409 289 404 289 398 c 0 - 289 389 285 378 276 369 c 1 - 169 369 l 1 - 169 113 l 2 - 169 84 169 57 174 41 c 0 - 177 30 228 25 240 25 c 1 - 244 20 245 2 240 -3 c 1 - 200 -1 169 2 131 2 c 0 - 93 2 68 -1 28 -3 c 1 - 23 2 24 20 28 25 c 1 - 40 25 86 30 89 41 c 0 - 94 57 94 84 94 113 c 2 - 94 369 l 1 - 37 369 l 2 - 34 369 33 375 33 378 c 0 - 33 382 57 408 58 409 c 1 - 74 409 83 409 94 409 c 1 - 94 420 94 428 94 428 c 2 - 94 570 203 681 263 681 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" f.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: F -Encoding: 70 70 37 -Width: 522 -Flags: W -HStem: -3 28<42 111 207 286> 305 36<202 375> 398 20G<414 421> 609 32<205 424> 618 28<42 111> -VStem: 117 85<33 303 341 606> 403 31<225 283 363 418> 471 31<511 558> -LayerCount: 2 -Fore -SplineSet -160 642 m 0xf7 - 252 642 368 648 474 648 c 1 - 481 599 493 560 502 516 c 1 - 499 513 492 511 485 511 c 0 - 478 511 472 513 471 518 c 0 - 450 596 410 609 358 609 c 2 - 274 609 l 0xf7 - 262 609 209 609 206 599 c 0 - 201 583 202 555 202 529 c 2 - 202 347 l 2 - 202 342 223 341 244 341 c 2 - 295 341 l 2 - 389 341 386 347 403 411 c 0 - 404 416 410 418 417 418 c 0 - 424 418 431 416 434 413 c 1 - 434 229 l 1 - 432 227 425 225 418 225 c 0 - 411 225 405 227 403 232 c 0 - 388 288 384 291 375 297 c 0 - 364 304 309 305 272 305 c 0 - 245 305 202 305 202 296 c 2 - 202 113 l 2 - 202 84 201 57 206 41 c 0 - 209 30 272 25 284 25 c 1 - 288 20 289 2 284 -3 c 1 - 244 -1 198 2 160 2 c 0 - 114 2 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1xef - 84 644 122 642 160 642 c 0xf7 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ -StartChar: f_h -Encoding: 65545 -1 440 -Width: 792 -Flags: W -HStem: -3 28<27 81 182 233 309 372 459 522 573 636 722 786> 363 46<39 95 169 284> 371 57<526 611> 641 38<223 312> -VStem: 95 74<35 363 409 536> 378 75<32 339 354 581> 642 75<32 339> -LayerCount: 2 -Fore -SplineSet -378 486 m 2xbe - 378 503 374 550 367 565 c 0 - 357 586 309 641 259 641 c 0 - 199 641 169 551 169 464 c 2 - 169 414 l 2 - 169 412 172 409 174 409 c 2 - 282 409 l 2 - 287 409 287 408 287 402 c 0 - 287 393 282 377 275 363 c 1 - 175 363 l 2 - 172 363 169 360 169 357 c 0 - 169 269 170 132 170 132 c 2 - 170 100 171 71 178 45 c 0 - 181 34 221 23 229 23 c 0 - 234 23 234 3 232 -3 c 1 - 193 -1 173 2 134 2 c 0 - 94 2 71 -1 31 -3 c 1 - 29 -1 27 6 27 12 c 0 - 27 18 29 23 31 23 c 0 - 43 23 82 34 85 45 c 0 - 93 75 94 98 94 132 c 2 - 94 132 95 269 95 356 c 0 - 95 359 93 363 90 363 c 2 - 38 363 l 2 - 36 363 35 365 35 369 c 0 - 35 382 45 409 50 409 c 2 - 90 409 l 2xde - 93 409 95 412 95 415 c 2 - 95 428 l 2 - 95 570 197 679 289 679 c 0 - 318 679 356 656 381 656 c 0 - 412 656 446 678 449 678 c 2 - 452 678 l 2 - 458 678 463 667 464 662 c 1 - 464 662 453 631 453 577 c 2 - 453 577 453 364 453 356 c 0 - 453 355 454 354 456 354 c 0 - 457 354 458 355 459 356 c 0 - 479 377 544 428 591 428 c 0 - 696 428 717 363 717 221 c 2 - 717 113 l 2 - 717 84 717 57 722 41 c 0 - 725 30 771 25 783 25 c 1 - 787 20 788 2 783 -3 c 1 - 743 -1 717 2 679 2 c 0 - 641 2 615 -1 575 -3 c 1 - 570 2 571 20 575 25 c 1 - 587 25 634 30 637 41 c 0 - 642 57 642 84 642 113 c 2 - 642 211 l 2 - 642 332 622 371 546 371 c 0 - 510 371 453 326 453 317 c 2 - 453 113 l 2 - 453 84 453 57 458 41 c 0 - 461 30 508 25 520 25 c 1 - 524 20 525 2 520 -3 c 1 - 480 -1 453 2 415 2 c 0 - 377 2 352 -1 312 -3 c 1 - 307 2 308 20 312 25 c 1 - 324 25 370 30 373 41 c 0 - 378 57 378 84 378 113 c 2 - 378 486 l 2xbe -EndSplineSet -LCarets2: 1 293 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: f_i -Encoding: 65537 -1 432 -Width: 519 -Flags: W -HStem: -3 28<25 89 175 242 289 352 439 502> 369 40<40 94 169 343> 404 20G<433 436> 635 46<225 325> -VStem: 94 75<32 369 409 525> 347 88<538 605> 358 75<32 358> -LayerCount: 2 -Fore -SplineSet -282 409 m 0xdc - 327 409 392 412 428 423 c 0 - 429 423 432 424 433 424 c 0xba - 439 424 439 408 438 403 c 0 - 434 372 433 366 433 333 c 2 - 433 113 l 2 - 433 84 433 57 438 41 c 0 - 441 30 487 25 499 25 c 1 - 503 20 504 2 499 -3 c 1 - 459 -1 433 2 395 2 c 0 - 357 2 331 -1 291 -3 c 1 - 286 2 287 20 291 25 c 1 - 303 25 350 30 353 41 c 0 - 358 57 358 84 358 113 c 2 - 358 298 l 2 - 358 317 354 335 344 351 c 0 - 334 368 301 369 273 369 c 0 - 169 369 l 1 - 169 113 l 2 - 169 84 169 57 174 41 c 0 - 177 30 228 25 240 25 c 1 - 244 20 245 2 240 -3 c 1 - 200 -1 169 2 131 2 c 0 - 93 2 68 -1 28 -3 c 1 - 23 2 24 20 28 25 c 1 - 40 25 86 30 89 41 c 0 - 94 57 94 84 94 113 c 2 - 94 369 l 1 - 37 369 l 2 - 35 369 35 371 35 378 c 0 - 35 383 50 409 63 409 c 2 - 94 409 l 1xda - 94 424 l 2xba - 94 536 183 681 296 681 c 0 - 341 681 383 655 403 634 c 0 - 421 616 435 593 435 571 c 0 - 435 550 417 531 392 531 c 0 - 368 531 355 546 347 566 c 0 - 341 581 337 596 331 605 c 0 - 318 623 305 635 270 635 c 0 - 213 635 169 543 169 456 c 2 - 169 409 l 1 - 282 409 l 0xdc -EndSplineSet -LCarets2: 1 269 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f i -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/figuredash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/figuredash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/figuredash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/figuredash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: figuredash -Encoding: 8210 8210 385 -Width: 516 -Flags: W -HStem: 195 61<60 452> -LayerCount: 2 -Fore -SplineSet -57 204 m 0 - 57 206 59 256 70 256 c 2 - 455 256 l 2 - 457 256 460 255 460 249 c 0 - 460 244 457 220 452 202 c 0 - 450 196 445 195 445 195 c 1 - 62 195 l 1 - 62 195 57 194 57 204 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: five -Encoding: 53 53 20 -Width: 532 -Flags: W -HStem: -5 39<183 302> 331 55<163 294> 543 77<193 391> 609 20G<320 413> -VStem: 365 84<124 260> -LayerCount: 2 -Fore -SplineSet -266 386 m 0xe8 - 381 386 449 296 449 213 c 0 - 449 79 323 -5 201 -5 c 0 - 175 -5 133 2 102 18 c 1 - 96 22 82 39 82 55 c 0 - 82 83 102 102 123 102 c 0 - 150 102 162 75 178 59 c 0 - 197 40 224 34 250 34 c 0 - 302 34 365 73 365 186 c 0 - 365 247 322 331 209 331 c 3 - 188 331 143 324 127 316 c 1 - 123 316 119 323 119 330 c 1 - 140 439 165 560 176 620 c 1 - 320 620 l 2xe8 - 360 620 410 629 410 629 c 17xd8 - 416 625 422 623 422 618 c 0 - 422 612 411 570 393 549 c 1 - 366 546 330 543 279 543 c 2 - 279 543 210 543 197 543 c 1 - 185 484 174 422 162 367 c 1 - 189 378 240 386 266 386 c 0xe8 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" five.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" five.onum -Substitution2: "'ordn' Ordinals lookup 0-1" five.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: five.onum -Encoding: 65558 -1 453 -Width: 351 -Flags: W -HStem: -184 28<30 96> 357 74<112 278> -VStem: 236 79<-14 109> -LayerCount: 2 -Fore -SplineSet -29 -164 m 0 - 29 -160 30 -155 34 -155 c 0 - 105 -155 236 -88 236 42 c 0 - 236 122 164 175 62 202 c 0 - 55 204 52 210 52 218 c 0 - 52 222 70 343 86 422 c 0 - 87 427 91 432 95 432 c 0 - 164 432 238 430 273 438 c 1 - 277 432 281 422 281 404 c 0 - 281 387 278 374 271 361 c 1 - 172 354 135 358 123 357 c 0 - 115 357 115 356 114 350 c 2 - 104 281 l 2 - 103 275 113 270 123 267 c 0 - 220 241 315 179 315 76 c 0 - 315 -68 166 -184 37 -184 c 1 - 33 -180 29 -172 29 -164 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: five.ordn -Encoding: 65746 -1 898 -Width: 357 -Flags: W -HStem: 244 27<129 212> 460 56<115 211> 610 58<121 260> 657 20G<250 263> -VStem: 245 65<308 425> -LayerCount: 2 -Fore -SplineSet -311 385 m 0xe8 - 311 291 239 244 154 244 c 0 - 111 244 76 255 62 270 c 1 - 60 275 59 283 59 288 c 0 - 59 306 70 318 86 318 c 0 - 123 318 112 271 168 271 c 0 - 217 271 245 303 245 362 c 0 - 246 419 207 460 145 460 c 0 - 118 460 98 456 90 454 c 1 - 87 454 79 462 79 464 c 1 - 94 616 93 648 96 668 c 1xe8 - 145 670 238 670 262 677 c 1xd8 - 265 672 268 661 268 650 c 0 - 268 635 267 621 263 617 c 1 - 201 610 136 611 127 610 c 0 - 122 610 122 606 122 604 c 0 - 115 513 l 1 - 115 513 141 516 158 516 c 16 - 234 516 311 471 311 385 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/five.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/five.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: five.prop -Encoding: 65756 -1 927 -Width: 442 -Flags: HW -LayerCount: 2 -Fore -Refer: 20 53 N 1 0 0 1 -49 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: f_j -Encoding: 65547 -1 442 -Width: 501 -Flags: W -HStem: -3 26<27 76 187 233> 363 46<39 95 169 350> 406 20G<433 437> 641 38<223 308> -VStem: 95 74<35 363 409 536> 358 75<-67 355> -LayerCount: 2 -Fore -SplineSet -358 303 m 2xbc - 358 311 358 333 347 349 c 0 - 338 362 288 363 275 363 c 2 - 175 363 l 2 - 172 363 169 360 169 357 c 0 - 169 269 170 132 170 132 c 2 - 170 100 171 71 178 45 c 0 - 181 34 221 23 229 23 c 0 - 234 23 234 3 232 -3 c 1 - 193 -1 173 2 134 2 c 0 - 94 2 71 -1 31 -3 c 1 - 29 -1 27 6 27 12 c 0 - 27 18 29 23 31 23 c 0 - 43 23 82 34 85 45 c 0 - 93 75 94 98 94 132 c 2 - 94 132 95 269 95 356 c 0 - 95 359 93 363 90 363 c 2 - 38 363 l 2 - 36 363 35 365 35 369 c 0 - 35 382 45 409 50 409 c 2 - 90 409 l 2 - 93 409 95 412 95 415 c 2 - 95 428 l 2 - 95 570 197 679 289 679 c 0 - 349 679 430 640 430 598 c 0 - 430 571 413 552 386 552 c 0 - 369 552 353 559 345 573 c 0 - 332 595 309 641 259 641 c 0 - 199 641 169 551 169 464 c 2 - 169 414 l 2 - 169 412 172 409 174 409 c 2 - 282 409 l 2xdc - 325 409 393 411 429 423 c 0 - 430 423 433 426 434 426 c 0 - 440 426 438 408 438 403 c 0 - 434 372 434 366 434 333 c 2 - 434 316 l 0 - 434 66 l 1 - 434 -122 331 -199 265 -226 c 1 - 260 -223 254 -216 252 -211 c 0 - 251 -209 251 -205 252 -204 c 1 - 308 -164 358 -118 358 44 c 2 - 358 303 l 2xbc -EndSplineSet -LCarets2: 1 278 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f j -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,75 +0,0 @@ -StartChar: f_k -Encoding: 65543 -1 438 -Width: 788 -Flags: W -HStem: -3 28<26 82 185 238 310 373 460 523 723 792> 363 46<40 97 171 286> 387 28<575 624 699 761> 641 38<225 315> -VStem: 97 74<36 363 409 536> 379 75<32 199 229 582> -LayerCount: 2 -Fore -SplineSet -379 488 m 2xbc - 379 499 376 548 369 565 c 0 - 360 586 311 641 261 641 c 0 - 201 641 171 551 171 464 c 2 - 171 414 l 2 - 171 412 174 409 176 409 c 2 - 284 409 l 2 - 289 409 289 408 289 402 c 0 - 289 393 284 377 277 363 c 1 - 177 363 l 2 - 174 363 171 360 171 357 c 0 - 171 269 172 132 172 132 c 2 - 172 100 173 71 180 45 c 0 - 183 34 226 25 234 25 c 0 - 239 25 239 3 237 -3 c 1 - 198 -1 172 2 133 2 c 0 - 93 2 70 -1 30 -3 c 1 - 28 -1 26 6 26 12 c 0 - 26 18 28 25 30 25 c 0 - 42 25 84 34 87 45 c 0 - 95 75 96 98 96 132 c 2 - 96 132 97 269 97 356 c 0 - 97 359 95 363 92 363 c 2 - 40 363 l 2 - 38 363 37 365 37 369 c 0 - 37 382 47 409 52 409 c 2 - 92 409 l 2xdc - 95 409 97 412 97 415 c 2 - 97 428 l 2 - 97 570 199 679 291 679 c 0 - 320 679 358 656 383 656 c 0 - 414 656 448 678 451 678 c 2 - 454 678 l 2 - 460 678 465 667 466 662 c 1 - 466 662 454 631 454 577 c 2 - 454 229 l 1 - 471 235 501 261 534 289 c 0 - 585 332 624 360 624 370 c 0 - 624 385 586 386 577 387 c 1 - 572 394 574 413 579 415 c 1 - 607 412 642 410 673 410 c 0 - 706 410 738 412 759 415 c 1 - 763 409 762 391 759 387 c 1 - 745 387 705 379 684 364 c 0 - 673 356 583 292 525 243 c 1 - 598 164 678 72 701 52 c 0 - 726 31 766 24 791 25 c 1 - 793 22 795 7 792 2 c 1 - 785 -1 755 -4 729 -4 c 0 - 671 -4 623 23 608 39 c 2 - 608 39 525 129 469 190 c 0 - 465 195 454 199 454 199 c 1 - 454 113 l 2 - 454 84 454 57 459 41 c 0 - 462 30 509 25 521 25 c 1 - 525 20 526 2 521 -3 c 1 - 481 -1 454 2 416 2 c 0 - 378 2 352 -1 312 -3 c 1 - 307 2 308 20 312 25 c 1 - 324 25 371 30 374 41 c 0 - 379 57 379 84 379 113 c 2 - 379 488 l 2xbc -EndSplineSet -LCarets2: 1 293 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f k -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f_l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f_l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,57 +0,0 @@ -StartChar: f_l -Encoding: 65539 -1 434 -Width: 541 -Flags: W -HStem: -3 28<25 82 183 240 310 366 467 524> 363 46<39 95 170 285> 641 38<224 313> -VStem: 95 74<36 363 409 536> 379 75<36 581> -LayerCount: 2 -Fore -SplineSet -94 113 m 2 - 94 113 95 269 95 356 c 0 - 95 359 94 363 91 363 c 2 - 39 363 l 2 - 37 363 36 365 36 369 c 0 - 36 382 46 409 51 409 c 2 - 91 409 l 2 - 94 409 95 412 95 415 c 2 - 95 428 l 2 - 95 570 198 679 290 679 c 0 - 319 679 357 656 382 656 c 0 - 413 656 447 678 450 678 c 2 - 453 678 l 2 - 459 678 464 667 465 662 c 1 - 465 662 454 631 454 577 c 2 - 454 132 l 2 - 454 100 455 71 462 45 c 0 - 465 34 512 25 520 25 c 0 - 525 25 525 3 523 -3 c 1 - 484 -1 456 2 419 2 c 0 - 379 2 352 -1 312 -3 c 1 - 307 2 307 25 312 25 c 0 - 324 25 369 34 372 45 c 0 - 378 69 379 99 379 113 c 2 - 379 489 l 2 - 379 500 375 550 368 565 c 0 - 358 586 310 641 260 641 c 0 - 200 641 170 551 170 464 c 2 - 170 414 l 2 - 170 412 173 409 175 409 c 2 - 283 409 l 2 - 288 409 288 408 288 402 c 0 - 288 393 283 377 276 363 c 1 - 176 363 l 2 - 173 363 170 360 170 357 c 2 - 170 132 l 1 - 171 100 170 71 177 45 c 0 - 180 34 228 25 236 25 c 0 - 241 25 241 3 239 -3 c 1 - 200 -1 172 2 135 2 c 0 - 95 2 68 -1 28 -3 c 1 - 23 2 23 25 28 25 c 0 - 40 25 85 34 88 45 c 0 - 94 69 94 99 94 113 c 2 -EndSplineSet -LCarets2: 1 273 -Ligature2: "'liga' Standard Ligatures lookup 0-1" f l -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/font.props fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/font.props --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/font.props 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/font.props 1970-01-01 00:00:00.000000000 +0000 @@ -1,512 +0,0 @@ -SplineFontDB: 3.0 -FontName: AmiriLatin-Regular -FullName: Amiri Latin -FamilyName: Amiri Latin -Weight: Regular -Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. -Version: 0.8 -ItalicAngle: 0 -UnderlinePosition: -112 -UnderlineWidth: 47 -Ascent: 800 -Descent: 200 -InvalidEm: 0 -LayerCount: 2 -Layer: 0 0 "Back" 1 -Layer: 1 0 "Fore" 0 -FSType: 0 -OS2Version: 0 -OS2_WeightWidthSlopeOnly: 0 -OS2_UseTypoMetrics: 1 -CreationTime: 1270926789 -PfmFamily: 17 -TTFWeight: 400 -TTFWidth: 5 -LineGap: 90 -VLineGap: 0 -OS2TypoAscent: 700 -OS2TypoAOffset: 0 -OS2TypoDescent: -300 -OS2TypoDOffset: 0 -OS2TypoLinegap: 90 -OS2WinAscent: 0 -OS2WinAOffset: 1 -OS2WinDescent: 0 -OS2WinDOffset: 1 -HheadAscent: 700 -HheadAOffset: 0 -HheadDescent: -300 -HheadDOffset: 0 -OS2SubXSize: 650 -OS2SubYSize: 699 -OS2SubXOff: 0 -OS2SubYOff: 140 -OS2SupXSize: 650 -OS2SupYSize: 699 -OS2SupXOff: 0 -OS2SupYOff: 479 -OS2StrikeYSize: 49 -OS2StrikeYPos: 258 -OS2FamilyClass: 258 -OS2Vendor: 'PfEd' -Lookup: 1 0 0 "'ccmp' Turkish i" { "'ccmp' Turkish i-1" } ['ccmp' ('latn' <'TRK ' > ) ] -Lookup: 1 0 0 "'c2sc' Capitals to Small Capitals in Latin lookup 0" { "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" } ['c2sc' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'smcp' Lowercase to Small Capitals lookup 2" { "'smcp' Lowercase to Small Capitals lookup 2-1" ("sc") } ['smcp' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 4 0 1 "'liga' Standard Ligatures lookup 0" { "'liga' Standard Ligatures lookup 0-1" } ['liga' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'pnum' Proportional Numbers lookup 12" { "'pnum' Proportional Numbers lookup 12-1" ("prop") } ['pnum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'zero' Slashed Zero lookup 11" { "'zero' Slashed Zero lookup 11-1" } ['zero' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'onum' Oldstyle Figures lookup 3" { "'onum' Oldstyle Figures lookup 3-1" ("onum") } ['onum' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 1 0 0 "'ordn' Ordinals lookup 0" { "'ordn' Ordinals lookup 0-1" ("ordn") } ['ordn' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 6" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" [78,0,0] "'kern' Horizontal Kerning in Latin lookup 0 kerning class 12" [78,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] -MarkAttachClasses: 1 -DEI: 91125 -KernClass2: 7+ 9 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 12" - 14 quotesingle.sc - 12 parenleft.sc - 8 slash.sc - 14 bracketleft.sc - 12 backslash.sc - 8 comma.sc - 9 period.sc - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 19 j.sc jcircumflex.sc - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} -16 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -14 {} -21 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -22 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -21 {} -14 {} -KernClass2: 25+ 41 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" - 12 ampersand.sc - 128 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc aringacute.sc - 4 b.sc - 65 c.sc ccedilla.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc - 142 e.sc ae.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc oe.sc uni01E3.sc aeacute.sc - 4 f.sc - 54 g.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc - 159 h.sc i.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc uni01D0.sc - 25 j.sc ij.sc jcircumflex.sc - 31 k.sc uni0137.sc kgreenlandic.sc - 53 l.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 173 d.sc o.sc q.sc eth.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc dcaron.sc dcroat.sc omacron.sc obreve.sc ohungarumlaut.sc uni01D2.sc oslashacute.sc - 4 p.sc - 35 r.sc racute.sc uni0157.sc rcaron.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 4 x.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 28 z.sc zacute.sc zdotaccent.sc - 8 thorn.sc - 19 j.sc jcircumflex.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 9 backslash - 12 bracketright - 10 braceright - 10 registered - 7 uni02BC - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 9 trademark - 14 quotesingle.sc - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 4 v.sc - 12 backslash.sc - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 10 parenright - 49 comma period quotesinglbase quotedblbase ellipsis - 15 bracketright.sc - 12 ampersand.sc - 13 parenright.sc - 4 m.sc - 4 x.sc - 29 guillemotright guilsinglright - 9 ampersand - 5 slash - 8 slash.sc - 8 comma.sc - 9 period.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 5 at.sc - 15 colon semicolon - 0 {} -4 {} -26 {} -5 {} -18 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -32 {} -22 {} -32 {} -31 {} -22 {} -20 {} -25 {} -58 {} -21 {} -12 {} -36 {} -15 {} -21 {} -21 {} -24 {} -22 {} -33 {} -12 {} -42 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -7 {} -4 {} -8 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -22 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -29 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} -33 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -21 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -19 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -7 {} 0 {} 0 {} -18 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -32 {} -8 {} -31 {} -31 {} -21 {} -21 {} -40 {} -53 {} -24 {} 0 {} -36 {} 0 {} -20 {} -19 {} -28 {} -25 {} -44 {} 0 {} -34 {} -21 {} 0 {} 0 {} 0 {} -19 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -18 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -6 {} 0 {} 0 {} -22 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -4 {} -8 {} -15 {} -13 {} 0 {} 0 {} -38 {} -27 {} -10 {} 0 {} 0 {} -13 {} -12 {} 0 {} -8 {} 0 {} 0 {} -12 {} 0 {} -13 {} -6 {} -7 {} -30 {} 0 {} -16 {} 0 {} -16 {} -7 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -13 {} -13 {} -18 {} -19 {} -13 {} -14 {} -12 {} -49 {} -23 {} -14 {} -18 {} 0 {} -12 {} -12 {} -20 {} -15 {} 0 {} -10 {} -24 {} -14 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -17 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} -24 {} -21 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} -16 {} -12 {} -15 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -17 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -25 {} 0 {} 0 {} -25 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -11 {} 0 {} 0 {} -41 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} -19 {} -10 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -11 {} 0 {} 0 {} -33 {} 0 {} 0 {} -22 {} -21 {} 0 {} -24 {} 0 {} 0 {} 0 {} 0 {} -12 {} -16 {} -20 {} -20 {} -20 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} -33 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} -17 {} 0 {} 0 {} -31 {} 0 {} 0 {} -19 {} -14 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} -15 {} -11 {} -11 {} -14 {} -11 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -23 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -18 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -8 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -KernClass2: 1+ 2 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" - 5 at.sc - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 0 {} -10 {} -KernClass2: 3+ 33 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" - 9 parenleft - 11 bracketleft - 9 braceleft - 25 zero zero.slash zero.prop - 13 J Jcircumflex - 351 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni01D1 Oslashacute uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 Q.alt01 - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 215 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni01E3 aringacute aeacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 416 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 229 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 19 j.sc jcircumflex.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 28 z.sc zacute.sc zdotaccent.sc - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 98 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j f.short - 119 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB - 18 AE uni01E2 AEacute - 0 {} -21 {} 98 {} -22 {} -12 {} -24 {} -30 {} -28 {} -14 {} -30 {} -21 {} -21 {} -22 {} -25 {} -25 {} -16 {} -19 {} -10 {} -16 {} 62 {} -16 {} -30 {} -22 {} -24 {} -25 {} -20 {} -20 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 108 {} -21 {} -17 {} -25 {} -28 {} -26 {} -19 {} -27 {} -24 {} -21 {} -21 {} -22 {} -22 {} -16 {} -22 {} -21 {} -21 {} 66 {} -21 {} -27 {} -24 {} -22 {} -24 {} -19 {} -20 {} -21 {} -15 {} -12 {} -14 {} -13 {} -13 {} 0 {} 0 {} 67 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 32 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 1+ 3 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 6" - 5 longs - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 0 {} -5 {} -5 {} -KernClass2: 11+ 65 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 40 comma period quotesinglbase quotedblbase - 5 slash - 15 colon semicolon - 9 backslash - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 29 guillemotright guilsinglright - 9 ampersand - 49 comma period quotesinglbase quotedblbase ellipsis - 5 slash - 9 four.prop - 8 six.prop - 2 at - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 215 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni01E3 aringacute aeacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 416 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 1 q - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 18 AE uni01E2 AEacute - 7 uni04D9 - 27 guillemotleft guilsinglleft - 8 AE.alt01 - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 641 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni0189 uni01CF uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 13 J Jcircumflex - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 98 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j f.short - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 119 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB - 21 j jcircumflex uni0237 - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 17 x uni1E8B uni1E8D - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 19 j.sc jcircumflex.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 4 x.sc - 28 z.sc zacute.sc zdotaccent.sc - 20 quotedbl quotesingle - 351 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni01D1 Oslashacute uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 Q.alt01 - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 25 zero zero.slash zero.prop - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 17 p uni1E55 uni1E57 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 229 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 28 hyphen endash emdash uni2015 - 0 {} -21 {} -78 {} -40 {} -44 {} -13 {} -21 {} -49 {} -12 {} -20 {} -27 {} -11 {} -15 {} -20 {} -8 {} -74 {} -10 {} -38 {} -65 {} -23 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} -8 {} -12 {} 0 {} 0 {} 0 {} 0 {} -65 {} 0 {} 0 {} 0 {} -19 {} 0 {} 23 {} 22 {} 21 {} 14 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} -26 {} -28 {} 0 {} -20 {} -19 {} -20 {} -17 {} -28 {} -10 {} -8 {} -13 {} -14 {} -61 {} -41 {} -32 {} -29 {} -60 {} -26 {} -11 {} -9 {} -13 {} -8 {} -9 {} -10 {} -25 {} -10 {} -14 {} -12 {} -16 {} -16 {} -21 {} -9 {} -20 {} -32 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -33 {} -32 {} -23 {} -16 {} 0 {} 0 {} 0 {} 0 {} -44 {} -62 {} -52 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -30 {} 0 {} 0 {} -78 {} -16 {} -22 {} -90 {} -94 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -47 {} -38 {} -44 {} -41 {} -39 {} -41 {} 0 {} -35 {} -54 {} 0 {} 0 {} 0 {} -59 {} -39 {} -15 {} -15 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -24 {} -11 {} -28 {} -21 {} -20 {} 0 {} -21 {} -18 {} -18 {} 0 {} 0 {} -24 {} 0 {} -18 {} 0 {} 0 {} 0 {} -16 {} -10 {} -17 {} -16 {} -17 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -30 {} -23 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -18 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} -25 {} -36 {} -31 {} 10 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} -40 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} 0 {} 0 {} 0 {} 0 {} -48 {} -14 {} -22 {} -29 {} -14 {} -18 {} -22 {} -10 {} -74 {} -12 {} 0 {} -65 {} -24 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -94 {} 0 {} 0 {} 0 {} 0 {} -54 {} -21 {} -29 {} -29 {} -20 {} -23 {} -29 {} -17 {} -77 {} -19 {} -55 {} -68 {} -30 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 16 {} 14 {} 0 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -31 {} -24 {} 0 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} -27 {} -21 {} 0 {} -14 {} -13 {} -13 {} 0 {} -20 {} -16 {} -14 {} -18 {} -19 {} -61 {} -46 {} -37 {} -30 {} -63 {} -27 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} -39 {} 0 {} -11 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 29+ 45 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" - 196 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek uni01CE aringacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 35 b uni1E03 uni1E05 uni1E07 f_b f_f_b - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 196 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe uni01E3 aeacute uni1E15 uni1E17 uni1E19 uni1E1B uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 - 21 f uni1E1F f_f f.short - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 126 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB f_i f_f_i - 34 j ij jcircumflex uni0237 f_j f_f_j - 56 k uni0137 kgreenlandic uni1E31 uni1E33 uni1E35 f_k f_f_k - 72 l lacute uni013C lcaron lslash uni1E37 uni1E39 uni1E3B uni1E3D f_l f_f_l - 169 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E96 f_h f_f_h T_h - 188 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut uni01D2 oslashacute uni1E4D uni1E4F uni1E51 uni1E53 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 - 23 p thorn uni1E55 uni1E57 - 1 q - 55 r racute uni0157 rcaron uni1E59 uni1E5B uni1E5D uni1E5F - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 183 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 17 x uni1E8B uni1E8D - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 3 eth - 4 ldot - 3 eng - 45 ohorn uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 45 uhorn uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 10 parenright - 351 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni01D1 Oslashacute uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 Q.alt01 - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 9 backslash - 12 bracketright - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 20 quotedbl quotesingle - 8 asterisk - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 641 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni0189 uni01CF uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 17 x uni1E8B uni1E8D - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 9 trademark - 28 hyphen endash emdash uni2015 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 416 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 1 q - 27 guillemotleft guilsinglleft - 13 J Jcircumflex - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 10 registered - 10 three.onum - 9 four.onum - 10 braceright - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 21 j jcircumflex uni0237 - 9 ampersand - 49 comma period quotesinglbase quotedblbase ellipsis - 5 slash - 8 question - 215 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni01E3 aringacute aeacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 17 p uni1E55 uni1E57 - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 229 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 0 {} -13 {} -6 {} -21 {} -73 {} -38 {} -19 {} -11 {} -11 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} -23 {} -93 {} -37 {} -26 {} -9 {} -9 {} -9 {} -25 {} -11 {} -14 {} -21 {} -24 {} -25 {} -23 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -9 {} -20 {} -86 {} -22 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} -19 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -6 {} -22 {} -85 {} -32 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 19 {} 58 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} -16 {} -16 {} -4 {} -11 {} -15 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -71 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -20 {} -12 {} -11 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -21 {} -71 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -43 {} -45 {} -8 {} -43 {} -40 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -15 {} -5 {} 0 {} 0 {} -5 {} -5 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} -25 {} -72 {} -41 {} -20 {} -13 {} -13 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -59 {} -62 {} -47 {} -10 {} -12 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} -24 {} -93 {} -39 {} -27 {} -11 {} -10 {} -11 {} -15 {} -8 {} -10 {} -20 {} -23 {} -15 {} -15 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} -24 {} -94 {} -38 {} -28 {} -9 {} -9 {} -8 {} -13 {} 0 {} -15 {} -21 {} -24 {} -13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -71 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -15 {} -77 {} -20 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -17 {} 0 {} 0 {} 0 {} 0 {} -23 {} -8 {} -8 {} 0 {} -4 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -26 {} -73 {} -31 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -10 {} -52 {} -15 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -8 {} -21 {} -65 {} -33 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -11 {} -65 {} -14 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -22 {} -20 {} -20 {} -8 {} -13 {} -20 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} 0 {} -17 {} -34 {} -20 {} -11 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -12 {} -66 {} -14 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -23 {} -21 {} -21 {} -9 {} -14 {} -21 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} -18 {} -34 {} -21 {} -12 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -15 {} -64 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -25 {} -7 {} -23 {} -26 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -12 {} -66 {} -13 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} -18 {} 0 {} 0 {} 0 {} 0 {} -22 {} -20 {} -20 {} -8 {} -13 {} -20 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} -18 {} -34 {} -20 {} -11 {} -8 {} -5 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -24 {} -79 {} -25 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} -18 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 43 {} 43 {} 43 {} 0 {} 39 {} 0 {} 0 {} 21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 15 {} 26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} 18 {} 18 {} 0 {} 45 {} 0 {} 0 {} 0 {} 0 {} 17 {} 0 {} -11 {} -4 {} -4 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -KernClass2: 26+ 79 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 25 B uni1E02 uni1E04 uni1E06 - 55 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron uni1E08 - 205 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE uni01E2 AEacute uni1E14 uni1E16 uni1E18 uni1E1A uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 AE.alt01 - 9 F uni1E1E - 47 G Gcircumflex Gbreve Gdotaccent uni0122 uni1E20 - 177 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni01CF uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1EC8 uni1ECA - 16 J IJ Jcircumflex - 33 K uni0136 uni1E30 uni1E32 uni1E34 - 67 L Lacute uni013B Lcaron Ldot Lslash uni1E36 uni1E38 uni1E3A uni1E3C - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 266 D O Q Eth Ograve Oacute Ocircumflex Otilde Odieresis Oslash Dcaron Dcroat Omacron Obreve Ohungarumlaut uni0189 uni01D1 Oslashacute uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 Q.alt01 - 17 P uni1E54 uni1E56 - 55 R Racute uni0156 Rcaron uni1E58 uni1E5A uni1E5C uni1E5E - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 183 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 17 X uni1E8A uni1E8C - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 5 Thorn - 45 Ohorn uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 - 45 Uhorn uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 20 quotedbl quotesingle - 8 asterisk - 28 hyphen endash emdash uni2015 - 25 zero zero.slash zero.prop - 8 two.prop - 13 J Jcircumflex - 351 C G O Q Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE Ohorn uni01D1 Oslashacute uni1E08 uni1E20 uni1E4C uni1E4E uni1E50 uni1E52 uni1ECC uni1ECE uni1ED0 uni1ED2 uni1ED4 uni1ED6 uni1ED8 uni1EDA uni1EDC uni1EDE uni1EE0 uni1EE2 Q.alt01 - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 9 backslash - 12 bracketright - 55 c ccedilla cacute ccircumflex cdotaccent ccaron uni1E09 - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 416 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 1 q - 69 t uni0163 tcaron tbar uni021B uni1E6B uni1E6D uni1E6F uni1E71 uni1E97 - 229 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek uhorn uni01D4 uni01D6 uni01D8 uni01DA uni01DC uni1E73 uni1E75 uni1E77 uni1E79 uni1E7B uni1EE5 uni1EE7 uni1EE9 uni1EEB uni1EED uni1EEF uni1EF1 - 17 v uni1E7D uni1E7F - 61 w wcircumflex wgrave wacute wdieresis uni1E87 uni1E89 uni1E98 - 85 y yacute ydieresis ycircumflex uni0233 uni1E8F uni1E99 ygrave uni1EF5 uni1EF7 uni1EF9 - 10 registered - 22 quoteleft quotedblleft - 24 quoteright quotedblright - 27 guillemotleft guilsinglleft - 9 trademark - 19 j.sc jcircumflex.sc - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 44 t.sc uni0163.sc tcaron.sc tbar.sc uni021B.sc - 175 u.sc ugrave.sc uacute.sc ucircumflex.sc udieresis.sc utilde.sc umacron.sc ubreve.sc uring.sc uhungarumlaut.sc uogonek.sc uni01D4.sc uni01D6.sc uni01D8.sc uni01DA.sc uni01DC.sc - 4 v.sc - 19 w.sc wcircumflex.sc - 53 y.sc yacute.sc ycircumflex.sc ydieresis.sc uni0233.sc - 10 parenright - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 641 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni0189 uni01CF uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 25 M uni1E3E uni1E40 uni1E42 - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 17 X uni1E8A uni1E8C - 98 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j f.short - 100 h k hcircumflex hbar uni0137 uni1E23 uni1E25 uni1E27 uni1E29 uni1E2B uni1E31 uni1E33 uni1E35 uni1E96 - 119 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij uni01D0 uni1E2D uni1E2F uni1EC9 uni1ECB - 21 j jcircumflex uni0237 - 67 l lacute uni013C lcaron ldot lslash uni1E37 uni1E39 uni1E3B uni1E3D - 161 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E3F uni1E41 uni1E43 uni1E45 uni1E47 uni1E49 uni1E4B uni1E59 uni1E5B uni1E5D uni1E5F - 17 x uni1E8B uni1E8D - 50 z zacute zdotaccent zcaron uni1E91 uni1E93 uni1E95 - 18 AE uni01E2 AEacute - 8 AE.alt01 - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 452 b.sc d.sc e.sc f.sc h.sc i.sc k.sc l.sc p.sc r.sc egrave.sc eacute.sc ecircumflex.sc edieresis.sc igrave.sc iacute.sc icircumflex.sc idieresis.sc eth.sc thorn.sc dcaron.sc dcroat.sc emacron.sc ebreve.sc edotaccent.sc eogonek.sc ecaron.sc hcircumflex.sc hbar.sc itilde.sc imacron.sc ibreve.sc iogonek.sc Idotaccent.sc dotlessi.sc ij.sc uni0137.sc kgreenlandic.sc lacute.sc uni013C.sc lcaron.sc ldot.sc lslash.sc racute.sc uni0157.sc rcaron.sc uni01D0.sc - 4 m.sc - 52 n.sc ntilde.sc nacute.sc uni0146.sc ncaron.sc eng.sc - 4 x.sc - 28 z.sc zacute.sc zdotaccent.sc - 9 ampersand - 49 comma period quotesinglbase quotedblbase ellipsis - 5 slash - 9 four.prop - 15 colon semicolon - 215 a agrave aacute acircumflex atilde adieresis aring ae amacron abreve aogonek uni01CE uni01E3 aringacute aeacute uni1E01 uni1EA1 uni1EA3 uni1EA5 uni1EA7 uni1EA9 uni1EAB uni1EAD uni1EAF uni1EB1 uni1EB3 uni1EB5 uni1EB7 - 47 g gcircumflex gbreve gdotaccent uni0123 uni1E21 - 17 p uni1E55 uni1E57 - 84 s sacute scircumflex scedilla scaron uni0219 uni1E61 uni1E63 uni1E65 uni1E67 uni1E69 - 76 s.sc germandbls.sc sacute.sc scircumflex.sc scedilla.sc scaron.sc uni0219.sc - 16 seven seven.prop - 50 Z Zacute Zdotaccent Zcaron uni1E90 uni1E92 uni1E94 - 8 one.prop - 10 three.prop - 9 five.prop - 8 six.prop - 29 guillemotright guilsinglright - 31 b thorn uni1E03 uni1E05 uni1E07 - 10 eight.prop - 84 S Sacute Scircumflex Scedilla Scaron uni0218 uni1E60 uni1E62 uni1E64 uni1E66 uni1E68 - 10 braceright - 0 {} -50 {} -40 {} -16 {} -10 {} 12 {} -10 {} -21 {} -51 {} -37 {} -62 {} -53 {} -59 {} -47 {} -16 {} -10 {} -9 {} -11 {} -9 {} -8 {} -12 {} -43 {} -43 {} -42 {} -33 {} -47 {} -44 {} -23 {} -46 {} -5 {} -10 {} -28 {} -18 {} -35 {} -30 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} -6 {} -21 {} -17 {} -27 {} -14 {} -21 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -19 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -12 {} 0 {} -8 {} -6 {} -11 {} -20 {} -10 {} -6 {} -7 {} -7 {} -34 {} -8 {} -7 {} -9 {} -6 {} -7 {} -8 {} -24 {} -10 {} -15 {} -14 {} -13 {} -5 {} -7 {} -6 {} -22 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -14 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -6 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -6 {} -5 {} -25 {} -24 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -20 {} -5 {} -16 {} -11 {} -15 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -26 {} -23 {} -26 {} -6 {} -8 {} -8 {} -8 {} -8 {} 0 {} 0 {} 0 {} -11 {} 0 {} -11 {} -17 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -47 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -5 {} 0 {} 0 {} -17 {} -14 {} -21 {} -69 {} -55 {} -69 {} -13 {} -19 {} -13 {} -6 {} -12 {} -11 {} -47 {} -21 {} -13 {} -8 {} -30 {} -26 {} -6 {} -25 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -19 {} -13 {} -26 {} -10 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -10 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -8 {} -16 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -5 {} -5 {} -9 {} 0 {} -5 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -20 {} -20 {} -20 {} -15 {} -13 {} -17 {} -17 {} -17 {} 0 {} 0 {} 0 {} -18 {} 0 {} -11 {} -16 {} -13 {} -14 {} -11 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -12 {} -7 {} -7 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -21 {} -23 {} -20 {} -16 {} -16 {} -16 {} -16 {} 0 {} 0 {} 0 {} -16 {} 0 {} -16 {} -17 {} -13 {} -16 {} -9 {} -7 {} -8 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -11 {} -7 {} 0 {} -18 {} -6 {} -21 {} -9 {} -9 {} -19 {} -16 {} -17 {} -15 {} 0 {} -15 {} -11 {} -8 {} 0 {} 0 {} 0 {} -21 {} -22 {} -14 {} -21 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -35 {} 0 {} 12 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -30 {} -38 {} -28 {} -9 {} -13 {} -72 {} -72 {} -70 {} 0 {} 0 {} 0 {} -38 {} 0 {} 0 {} -35 {} -53 {} -15 {} -63 {} -56 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -67 {} -77 {} 0 {} 0 {} 0 {} -6 {} 0 {} -73 {} -12 {} -76 {} -55 {} -65 {} -40 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -45 {} -44 {} -24 {} -69 {} -71 {} 0 {} -75 {} 0 {} 0 {} -44 {} 0 {} -36 {} -28 {} -38 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -18 {} -19 {} -18 {} -14 {} -13 {} -19 {} -20 {} -20 {} -10 {} 0 {} 0 {} -19 {} 0 {} -10 {} -14 {} -14 {} -15 {} -13 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -9 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -23 {} -21 {} -23 {} -20 {} -19 {} -19 {} -19 {} -18 {} 0 {} 0 {} 0 {} -19 {} 0 {} -17 {} -18 {} -16 {} -19 {} -12 {} -9 {} -11 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} -10 {} -6 {} 0 {} -19 {} -7 {} -23 {} -8 {} -8 {} -17 {} -17 {} -18 {} -16 {} 0 {} -17 {} -12 {} -9 {} 0 {} 0 {} 0 {} -24 {} -21 {} -14 {} -24 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -5 {} -7 {} -24 {} -18 {} -35 {} -17 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -21 {} -9 {} -11 {} -11 {} -32 {} 0 {} -11 {} 0 {} 0 {} -11 {} 0 {} -21 {} 0 {} -36 {} -32 {} -26 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} -43 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -17 {} -36 {} -36 {} -32 {} -36 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -45 {} -5 {} -9 {} -6 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -79 {} -71 {} -80 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -69 {} -24 {} -19 {} 0 {} -19 {} -21 {} 0 {} -15 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -9 {} 0 {} 29 {} -6 {} -15 {} -22 {} -20 {} -45 {} -32 {} -41 {} -27 {} -10 {} -9 {} -9 {} -11 {} -8 {} 0 {} -7 {} -35 {} -34 {} -35 {} -20 {} 0 {} 0 {} -35 {} -16 {} 0 {} -10 {} -21 {} -11 {} -22 {} -16 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 18 {} -10 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 17 {} 18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} -7 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -6 {} -5 {} -21 {} -21 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -11 {} 0 {} -8 {} -5 {} -8 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} -6 {} 0 {} -8 {} -13 {} -10 {} 0 {} 0 {} -6 {} 0 {} -5 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -100 {} -99 {} -97 {} -99 {} -18 {} -66 {} -56 {} -55 {} -54 {} 0 {} 0 {} 0 {} -62 {} 0 {} -43 {} -77 {} -51 {} -39 {} -40 {} -35 {} -37 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -19 {} -7 {} 0 {} -71 {} -59 {} -77 {} -74 {} -68 {} -82 {} -44 {} -53 {} -41 {} -36 {} -50 {} -21 {} -43 {} -26 {} -40 {} -34 {} -84 {} -84 {} -65 {} -80 {} -72 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -39 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} -27 {} -25 {} -27 {} -19 {} -14 {} -12 {} -12 {} -12 {} 0 {} 0 {} 0 {} -15 {} 0 {} -18 {} -20 {} -10 {} -13 {} -6 {} 0 {} -6 {} 0 {} -36 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -8 {} 0 {} 0 {} -22 {} -14 {} -27 {} -38 {} -38 {} -36 {} -19 {} -23 {} -19 {} -8 {} -20 {} -12 {} -22 {} -17 {} 0 {} -9 {} -29 {} -26 {} -12 {} -28 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 8 {} 0 {} -46 {} -14 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -76 {} -75 {} -69 {} -76 {} -36 {} -40 {} -37 {} -38 {} -37 {} 0 {} 0 {} 0 {} -49 {} 12 {} -32 {} -61 {} -36 {} -34 {} -22 {} -20 {} -21 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -34 {} 21 {} -8 {} 0 {} 21 {} -62 {} -38 {} -64 {} -91 {} -81 {} -107 {} -36 {} -45 {} -35 {} -22 {} -45 {} -28 {} -63 {} -37 {} -38 {} -30 {} -79 {} -68 {} -47 {} -73 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} -30 {} 37 {} -13 {} -8 {} 0 {} 0 {} 0 {} 0 {} -34 {} -12 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -56 {} -56 {} -53 {} -56 {} -35 {} -33 {} -27 {} -28 {} -27 {} 0 {} 0 {} 0 {} -39 {} 0 {} -32 {} -45 {} -30 {} -31 {} -17 {} -15 {} -16 {} 0 {} -52 {} 0 {} 0 {} 0 {} 0 {} -31 {} 15 {} -9 {} 0 {} 15 {} -43 {} -26 {} -48 {} -80 {} -70 {} -77 {} -34 {} -34 {} -34 {} -21 {} -35 {} -26 {} -50 {} -32 {} -29 {} -24 {} -63 {} -53 {} -30 {} -58 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} -24 {} 31 {} -12 {} -7 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 6 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -25 {} -31 {} -23 {} -12 {} -13 {} -60 {} -59 {} -59 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} -27 {} -42 {} -15 {} -46 {} -36 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -55 {} -18 {} 0 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} -89 {} -88 {} -89 {} -60 {} -68 {} -60 {} -61 {} -61 {} 0 {} 0 {} 0 {} -59 {} 0 {} -59 {} -73 {} -58 {} -55 {} -36 {} -32 {} -34 {} 0 {} -51 {} 0 {} 0 {} 0 {} 0 {} -36 {} 11 {} -11 {} 0 {} 11 {} -69 {} -57 {} -77 {} -83 {} -75 {} -80 {} -56 {} -61 {} -52 {} -37 {} -61 {} -27 {} -35 {} -28 {} -43 {} -31 {} -79 {} -75 {} -62 {} -75 {} -64 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -38 {} 27 {} -14 {} -8 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -10 {} -41 {} -41 {} -39 {} -10 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -36 {} -9 {} -33 {} -25 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -8 {} 0 {} -5 {} 0 {} -8 {} 0 {} 0 {} 0 {} -5 {} 0 {} -5 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} -15 {} -6 {} -32 {} -22 {} -44 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} -10 {} -12 {} -12 {} -62 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 6 {} 5 {} 13 {} 0 {} 0 {} -15 {} -15 {} -12 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -7 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} -8 {} -5 {} -13 {} -37 {} -37 {} -38 {} -10 {} -16 {} -11 {} 0 {} -6 {} 0 {} -24 {} -13 {} 0 {} 0 {} -15 {} -15 {} 0 {} -13 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 5 {} -8 {} 20 {} 14 {} 50 {} 48 {} 54 {} 38 {} 57 {} -27 {} -27 {} -25 {} -27 {} -23 {} -18 {} -16 {} -16 {} -16 {} 0 {} 0 {} 0 {} -17 {} 0 {} -21 {} -21 {} -14 {} -17 {} -9 {} -7 {} -9 {} 55 {} -39 {} 0 {} 0 {} 9 {} 11 {} -21 {} 0 {} -8 {} 0 {} 0 {} -24 {} -19 {} -32 {} -45 {} -38 {} -41 {} -22 {} -24 {} -21 {} -12 {} -23 {} -13 {} -22 {} -17 {} 0 {} -11 {} -33 {} -26 {} -16 {} -31 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 22 {} -KernClass2: 14+ 24 "'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" - 9 ampersand - 25 zero zero.slash zero.prop - 8 one.prop - 8 two.prop - 10 three.prop - 10 seven.prop - 10 eight.prop - 9 nine.prop - 10 exclamdown - 10 registered - 12 questiondown - 7 uni02BC - 8 fraction - 9 trademark - 20 quotedbl quotesingle - 61 T uni0162 Tcaron Tbar uni021A uni1E6A uni1E6C uni1E6E uni1E70 - 17 V uni1E7C uni1E7E - 53 W Wcircumflex Wgrave Wacute Wdieresis uni1E86 uni1E88 - 77 Y Yacute Ycircumflex Ydieresis uni0232 uni1E8E Ygrave uni1EF4 uni1EF6 uni1EF8 - 10 parenright - 196 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek uni01CD Aringacute uni1E00 uni1EA0 uni1EA2 uni1EA4 uni1EA6 uni1EA8 uni1EAA uni1EAC uni1EAE uni1EB0 uni1EB2 uni1EB4 uni1EB6 - 9 backslash - 12 bracketright - 17 X uni1E8A uni1E8C - 49 comma period quotesinglbase quotedblbase ellipsis - 25 M uni1E3E uni1E40 uni1E42 - 13 J Jcircumflex - 229 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek Uhorn uni01D3 uni01D5 uni01D7 uni01D9 uni01DB uni1E72 uni1E74 uni1E76 uni1E78 uni1E7A uni1EE4 uni1EE6 uni1EE8 uni1EEA uni1EEC uni1EEE uni1EF0 - 19 j.sc jcircumflex.sc - 66 N Ntilde Nacute uni0145 Ncaron Eng uni1E44 uni1E46 uni1E48 uni1E4A - 18 AE uni01E2 AEacute - 156 a.sc agrave.sc aacute.sc acircumflex.sc atilde.sc adieresis.sc aring.sc ae.sc amacron.sc abreve.sc aogonek.sc uni01CE.sc uni01E3.sc aringacute.sc aeacute.sc - 641 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni0189 uni01CF uni1E02 uni1E04 uni1E06 uni1E0A uni1E0C uni1E0E uni1E10 uni1E12 uni1E14 uni1E16 uni1E18 uni1E1A uni1E1E uni1E22 uni1E24 uni1E26 uni1E28 uni1E2A uni1E2C uni1E2E uni1E30 uni1E32 uni1E34 uni1E36 uni1E38 uni1E3A uni1E3C uni1E54 uni1E56 uni1E58 uni1E5A uni1E5C uni1E5E uni1EB8 uni1EBA uni1EBC uni1EBE uni1EC0 uni1EC2 uni1EC4 uni1EC6 uni1EC8 uni1ECA - 416 e o egrave eacute ecircumflex edieresis eth ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe ohorn uni01D2 oslashacute uni1E15 uni1E17 uni1E19 uni1E1B uni1E4D uni1E4F uni1E51 uni1E53 uni1EB9 uni1EBB uni1EBD uni1EBF uni1EC1 uni1EC3 uni1EC5 uni1EC7 uni1ECD uni1ECF uni1ED1 uni1ED3 uni1ED5 uni1ED7 uni1ED9 uni1EDB uni1EDD uni1EDF uni1EE1 uni1EE3 - 268 c.sc g.sc o.sc q.sc ccedilla.sc ograve.sc oacute.sc ocircumflex.sc otilde.sc odieresis.sc oslash.sc cacute.sc ccircumflex.sc cdotaccent.sc ccaron.sc gcircumflex.sc gbreve.sc gdotaccent.sc uni0123.sc omacron.sc obreve.sc ohungarumlaut.sc oe.sc uni01D2.sc oslashacute.sc - 25 zero zero.slash zero.prop - 55 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 uni1E13 - 0 {} -36 {} -29 {} -27 {} -21 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -14 {} -21 {} -21 {} -10 {} -15 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 9 {} 0 {} 0 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} -13 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 29 {} 27 {} 35 {} 0 {} -40 {} 0 {} 0 {} 0 {} -56 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -11 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -13 {} 0 {} -25 {} 0 {} 0 {} 0 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -40 {} -32 {} -47 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 66 {} -18 {} 16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} -32 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} -11 {} -50 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -45 {} -36 {} -29 {} -49 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 82 {} -14 {} 0 {} -11 {} 0 {} -13 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -14 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -58 {} -14 {} 0 {} 0 {} 0 {} 0 {} -8 {} -LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "" "http://scripts.sil.org/OFL" -GaspTable: 1 65535 15 1 -Encoding: UnicodeBmp -UnicodeInterp: none -NameList: AGL For New Fonts -WidthSeparation: 78 -BeginPrivate: 0 -EndPrivate -Grid --1000 711.0078125 m 1 - 2000 711.0078125 l 1025 --1000 486.03515625 m 1 - 2000 486.03515625 l 1025 --249.0234375 -196.77734375 m 25 - -249.0234375 887.20703125 l 1025 --1000 626.953125 m 1 - 2000 626.953125 l 1025 -247.0703125 -221.6796875 m 25 - 492.1875 -221.6796875 l 1025 --1000 806.640625 m 1 - 2000 806.640625 l 1025 -EndSplineSet -EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: four -Encoding: 52 52 19 -Width: 532 -Flags: W -HStem: -6 21G<357 388> 170 56<115 334 411 480> 609 20G<393 401> -VStem: 334 77<-5 170 226 512> -LayerCount: 2 -Fore -SplineSet -396 629 m 0 - 406 629 411 619 411 611 c 2 - 411 226 l 25 - 469 226 l 18 - 475 226 482 207 482 186 c 0 - 482 177 481 173 479 170 c 1 - 411 170 l 25 - 411 -1 l 1 - 411 -1 407 -6 369 -6 c 0 - 346 -6 334 -5 334 2 c 2 - 334 170 l 25 - 59 170 l 1 - 52 174 49 182 49 188 c 1 - 367 604 l 2 - 373 612 388 629 396 629 c 0 -334 512 m 25 - 115 226 l 25 - 334 226 l 25 - 334 512 l 25 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" four.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" four.onum -Substitution2: "'ordn' Ordinals lookup 0-1" four.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: four.onum -Encoding: 65557 -1 452 -Width: 444 -Flags: W -HStem: 6 59<84 261 338 416> -VStem: 261 77<-184 6 64 311> -LayerCount: 2 -Fore -SplineSet -299 -186 m 0 - 274 -186 261 -179 261 -170 c 2 - 261 1 l 1 - 260 6 255 6 252 6 c 2 - 21 6 l 1 - 13 12 7 26 7 34 c 1 - 303 432 l 2 - 309 440 317 443 325 443 c 0 - 331 443 338 439 338 434 c 2 - 338 72 l 2 - 338 67 341 65 347 64 c 1 - 400 64 l 2 - 412 64 417 53 417 22 c 0 - 417 16 414 9 411 6 c 1 - 344 6 l 2 - 340 6 338 3 338 -2 c 2 - 338 -176 l 1 - 338 -176 332 -186 299 -186 c 0 -261 71 m 2 - 263 302 l 2 - 263 305 260 311 258 311 c 1 - 258 311 258 310 257 309 c 2 - 85 76 l 2 - 84 75 84 74 84 73 c 0 - 84 69 87 64 91 64 c 2 - 252 64 l 1 - 255 65 260 65 261 71 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: four.ordn -Encoding: 65745 -1 897 -Width: 374 -Flags: W -HStem: 360 47<89 219 278 327> 657 20G<271 275> -VStem: 219 60<246 360 407 576> -LayerCount: 2 -Fore -SplineSet -278 249 m 1 - 278 249 276 246 241 246 c 0 - 231 246 219 247 219 253 c 10 - 219 360 l 25 - 43 360 l 1 - 37 360 28 379 28 384 c 1 - 250 670 l 2 - 254 675 267 677 273 677 c 0 - 277 677 278 675 278 670 c 10 - 278 407 l 25 - 323 407 l 2 - 327 407 328 403 328 399 c 0 - 328 374 324 360 324 360 c 9 - 278 360 l 25 - 278 249 l 1 -219 570 m 2 - 219 572 216 576 215 576 c 1 - 215 576 216 576 215 575 c 2 - 90 415 l 2 - 89 414 89 414 89 413 c 0 - 89 410 92 407 94 407 c 10 - 219 407 l 25 - 219 570 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/four.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/four.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: four.prop -Encoding: 65755 -1 926 -Width: 481 -Flags: HW -LayerCount: 2 -Fore -Refer: 19 52 N 1 0 0 1 -39 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/fraction.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/fraction.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/fraction.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/fraction.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: fraction -Encoding: 8260 8260 920 -Width: 503 -Flags: W -HStem: -2 21G<42 57> -LayerCount: 2 -Fore -SplineSet -481 704 m 1 - 72 14 l 2 - 68 7 62 -2 53 -2 c 0 - 32 -2 22 10 22 10 c 1 - 432 700 l 2 - 435 706 441 714 447 714 c 0 - 463 714 477 707 481 704 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: f.sc -Encoding: 65598 -1 750 -Width: 422 -Flags: W -HStem: -3 28<44 100 183 244> 198 33<179 297> 404 31<183 343> 412 28<44 100> -VStem: 104 75<37 198 232 397> 315 27<147 189 242 284> 366 30<344 380> -LayerCount: 2 -Fore -SplineSet -140 436 m 0xee - 208 436 293 442 371 442 c 1 - 377 407 388 378 396 347 c 1 - 393 345 388 344 382 344 c 0 - 376 344 367 345 366 348 c 0 - 351 398 325 404 289 404 c 2 - 229 404 l 0xee - 221 404 185 404 183 397 c 0 - 179 387 179 371 179 353 c 2 - 179 235 l 2 - 179 232 193 231 208 231 c 2 - 243 231 l 2 - 306 231 303 235 315 279 c 0 - 316 282 322 284 328 284 c 0 - 334 284 340 282 343 279 c 1 - 343 150 l 1 - 341 149 335 147 329 147 c 0 - 323 147 317 149 315 152 c 0 - 305 187 303 189 297 193 c 0 - 290 197 252 198 227 198 c 0 - 208 198 179 198 179 192 c 2 - 179 81 l 2 - 179 62 180 45 183 35 c 0 - 185 28 233 25 241 25 c 1 - 245 21 245 1 241 -3 c 1 - 211 -1 169 1 141 1 c 0 - 107 1 75 -3 47 -3 c 1 - 43 1 43 21 47 25 c 1 - 55 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 55 412 47 412 c 1 - 43 416 43 436 47 440 c 1xde - 76 438 112 436 140 436 c 0xee -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.short.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.short.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/f.short.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/f.short.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: f.short -Encoding: 65550 -1 445 -Width: 300 -Flags: W -HStem: -3 28<25 89 175 242> 382 40<40 94 169 288> 622 59<210 294> -VStem: 94 75<32 382 422 533> -LayerCount: 2 -Fore -SplineSet -263 681 m 0 - 292 681 294 679 309 669 c 1 - 313 665 319 652 319 642 c 0 - 319 607 293 603 280 603 c 0 - 270 603 262 607 251 613 c 0 - 240 619 236 622 223 622 c 0 - 193 622 167 592 168 531 c 2 - 169 422 l 1 - 285 422 l 2 - 290 422 289 417 289 411 c 0 - 289 402 285 391 276 382 c 1 - 169 382 l 1 - 169 113 l 2 - 169 84 169 57 174 41 c 0 - 177 30 228 25 240 25 c 1 - 244 20 245 2 240 -3 c 1 - 200 -1 169 2 131 2 c 0 - 93 2 68 -1 28 -3 c 1 - 23 2 24 20 28 25 c 1 - 40 25 86 30 89 41 c 0 - 94 57 94 84 94 113 c 2 - 94 382 l 1 - 37 382 l 2 - 34 382 33 388 33 391 c 0 - 33 395 57 421 58 422 c 1 - 74 422 83 422 94 422 c 1 - 94 433 94 428 94 428 c 2 - 94 570 203 681 263 681 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gbreve -Encoding: 287 287 220 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 484 0 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" gbreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gbreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gbreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gbreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gbreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gbreve -Encoding: 286 286 219 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 621 -3 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gbreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gbreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gbreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gbreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gbreve.sc -Encoding: 65677 -1 829 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 536 24 2 -Refer: 751 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gcaron -Encoding: 487 487 942 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 470 24 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcaron -Encoding: 486 486 941 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 242 0 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gcircumflex -Encoding: 285 285 218 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 475 24 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" gcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gcircumflex -Encoding: 284 284 217 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 625 -1 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gcircumflex.sc -Encoding: 65676 -1 828 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 532 49 2 -Refer: 751 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: gdotaccent -Encoding: 289 289 222 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 471 44 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" gdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Gdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Gdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Gdotaccent -Encoding: 288 288 221 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 623 0 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: gdotaccent.sc -Encoding: 65678 -1 830 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 530 23 2 -Refer: 751 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/germandbls.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/germandbls.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/germandbls.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/germandbls.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: germandbls -Encoding: 223 223 156 -Width: 524 -Flags: W -HStem: -10 30<28 83 181 240 339 410> 382 40<40 94> 645 32<216 318> -VStem: 94 75<32 382 422 533> 242 57<307 368> 360 73<477 610> 433 66<55 149> -LayerCount: 2 -Fore -SplineSet -261 677 m 0xfc - 353 677 433 640 433 548 c 0xfc - 433 499 405 465 375 437 c 0 - 338 404 298 380 298 351 c 0 - 298 311 348 283 394 259 c 0 - 440 235 499 201 499 134 c 0 - 499 57 444 -10 370 -10 c 0 - 310 -10 265 15 255 32 c 1 - 255 36 256 41 256 45 c 0 - 258 71 265 89 288 89 c 0 - 306 89 315 67 328 48 c 0 - 338 33 350 21 372 21 c 0 - 407 21 433 51 433 100 c 0xfa - 433 144 394 165 351 188 c 0 - 299 216 242 245 242 317 c 0 - 242 358 281 383 314 420 c 0 - 339 447 360 482 360 536 c 0 - 360 599 326 645 264 645 c 0 - 177 645 169 544 169 464 c 0 - 169 113 l 2 - 169 84 169 57 174 41 c 0 - 177 30 228 25 240 25 c 1 - 244 20 245 2 240 -3 c 1 - 200 -1 169 2 131 2 c 0 - 93 2 68 -1 28 -3 c 1 - 23 2 24 20 28 25 c 1 - 40 25 86 30 89 41 c 0 - 94 57 94 84 94 113 c 2 - 94 382 l 1 - 37 382 l 2 - 34 382 33 388 33 391 c 0 - 33 395 57 421 58 422 c 1 - 74 422 83 422 94 422 c 1 - 94 423 94 424 94 428 c 0 - 94 547 183 677 261 677 c 0xfc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" germandbls.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/germandbls.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/germandbls.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/germandbls.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/germandbls.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: germandbls.sc -Encoding: 65660 -1 812 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 763 -1 N 1 0 0 1 329 0 2 -Refer: 763 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/g.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/g.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/g.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/g.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: g -Encoding: 103 103 70 -Width: 455 -Flags: W -HStem: -222 38<154 288> -4 69<159 340> 134 29<173 258> 365 50<380 433> 399 29<167 254> -VStem: 22 77<-138 -59> 49 75<72 113 213 353> 301 75<211 357> 378 67<-101 -10> -LayerCount: 2 -Fore -SplineSet -210 399 m 27xeb80 - 154 399 124 341 124 285 c 27 - 124 225 158 163 218 163 c 27 - 272 163 301 220 301 274 c 27 - 301 335 271 399 210 399 c 27xeb80 -249 -4 m 0 - 231 -4 165 -5 158 -9 c 0 - 136 -22 100 -49 100 -74 c 0xe580 - 100 -137 147 -184 230 -184 c 0 - 297 -184 378 -133 378 -79 c 0 - 378 -51 342 -4 249 -4 c 0 -294 65 m 0 - 371 65 445 18 445 -37 c 0 - 445 -117 327 -221 191 -222 c 0 - 112 -223 22 -183 22 -103 c 0xf580 - 22 -60 93 -18 126 -1 c 1 - 92 10 46 41 46 90 c 1 - 63 110 112 145 130 156 c 1 - 82 182 49 233 49 281 c 0 - 49 358 120 429 214 429 c 0xeb80 - 256 429 285 414 303 407 c 0 - 322 400 316 402 325 400 c 1 - 430 415 l 1 - 437 413 439 409 439 405 c 0 - 439 397 427 371 417 365 c 1xf380 - 393 366 353 369 353 369 c 2 - 350 369 349 368 349 366 c 1 - 354 361 376 322 376 277 c 0 - 376 209 305 134 211 134 c 0 - 194 134 166 139 156 143 c 1 - 138 133 120 116 120 100 c 0 - 120 90 140 65 179 65 c 0 - 243 65 251 65 294 65 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" g.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_G.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_G.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_G.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_G.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: G -Encoding: 71 71 38 -Width: 703 -Flags: W -HStem: -6 32<311 481> 259 28<449 517 612 677> 619 32<307 475> -VStem: 47 97<207 437> 522 84<63 252> 573 33<474 526> -LayerCount: 2 -Fore -SplineSet -522 171 m 2xf8 - 522 200 523 227 518 243 c 0 - 515 254 463 259 451 259 c 1 - 447 264 446 282 451 287 c 1 - 491 285 527 282 565 282 c 0 - 603 282 635 285 675 287 c 1 - 680 282 679 264 675 259 c 1 - 663 259 614 254 611 243 c 0 - 606 227 606 200 606 171 c 2 - 606 171 606 112 606 102 c 0xf8 - 606 81 616 72 616 62 c 0 - 616 56 614 54 597 45 c 0 - 555 23 502 -6 373 -6 c 0 - 180 -6 47 141 47 314 c 0 - 47 497 185 651 377 651 c 0 - 441 651 512 647 584 631 c 1 - 584 631 606 496 606 486 c 1 - 607 480 595 474 585 474 c 0 - 579 474 576 475 573 477 c 1xf4 - 567 507 545 619 382 619 c 0 - 237 619 144 472 144 335 c 0 - 144 183 226 26 397 26 c 0 - 448 26 487 43 516 58 c 0 - 522 61 522 65 522 72 c 0 - 522 171 l 2xf8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gradient.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gradient.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gradient.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gradient.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: gradient -Encoding: 8711 8711 418 -Width: 666 -Flags: W -HStem: 566 61<144 562> -LayerCount: 2 -Fore -SplineSet -144 561 m 2 - 347 152 l 1 - 351 149 354 149 358 155 c 2 - 562 557 l 1 - 564 564 560 566 555 566 c 2 - 147 566 l 2 - 143 566 143 565 144 561 c 2 -322 27 m 1 - 27 613 l 1 - 27 613 33 619 35 627 c 1 - 632 627 l 1 - 636 621 637 617 641 610 c 1 - 339 27 l 1 - 322 27 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb.cap -Encoding: 65564 -1 459 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 130 -VStem: -345 181 -LayerCount: 2 -Fore -SplineSet --164 720 m 0 - -164 717 -167 711 -170 711 c 0 - -187 711 -345 778 -345 812 c 0 - -345 824 -338 841 -300 841 c 0 - -292 841 -286 840 -282 838 c 0 - -248 813 -164 727 -164 720 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/gravecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: gravecomb -Encoding: 768 768 332 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 156 -VStem: -342 156 -LayerCount: 2 -Fore -SplineSet --307 643 m 0 - -293 643 -281 636 -280 635 c 0 - -249 596 -186 505 -186 499 c 0 - -186 493 -187 486 -194 486 c 0 - -204 486 -342 583 -342 614 c 0 - -342 619 -341 643 -307 643 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/grave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/grave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/grave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/grave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: grave -Encoding: 96 96 63 -Width: 333 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 455 25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greaterequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greaterequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greaterequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greaterequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: greaterequal -Encoding: 8805 8805 429 -Width: 503 -Flags: W -HStem: 6 55<74 457> -LayerCount: 2 -Fore -SplineSet -72 472 m 0 - 72 490 84 519 88 519 c 0 - 89 519 91 518 93 517 c 2 - 454 334 l 2 - 464 329 471 322 471 311 c 0 - 471 294 469 280 454 272 c 2 - 88 86 l 2 - 83 84 82 80 77 93 c 0 - 71 108 66 129 66 133 c 0 - 66 137 69 139 69 139 c 1 - 393 303 l 1 - 75 464 l 1 - 75 464 72 465 72 472 c 0 -70 15 m 0 - 70 16 74 61 85 61 c 2 - 459 61 l 2 - 461 61 465 60 465 53 c 0 - 465 45 462 29 457 13 c 0 - 455 7 450 6 450 6 c 1 - 77 6 l 1 - 77 6 70 5 70 15 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greater.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greater.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greater.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greater.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: greater -Encoding: 62 62 29 -Width: 481 -Flags: W -HStem: 400 20G<66 69> -LayerCount: 2 -Fore -SplineSet -47 34 m 0 - 47 38 50 40 50 40 c 1 - 373 204 l 1 - 56 365 l 1 - 56 365 53 366 53 373 c 0 - 53 391 64 420 68 420 c 0 - 69 420 71 419 73 418 c 2 - 435 235 l 2 - 445 230 451 223 451 212 c 0 - 451 195 450 181 435 173 c 2 - 68 -13 l 2 - 66 -14 64 -15 63 -15 c 0 - 57 -15 47 26 47 34 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" greater.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greater.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greater.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/greater.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/greater.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: greater.sc -Encoding: 65590 -1 742 -Width: 475 -Flags: HW -LayerCount: 2 -Fore -Refer: 29 62 N 1 0 0 1 -2 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/g.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/g.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/g.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/g.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: g.sc -Encoding: 65599 -1 751 -Width: 550 -Flags: W -HStem: -5 32<234 384> 171 28<337 390 471 517> 412 32<235 381> -VStem: 48 84<125 309> 394 74<45 160> -LayerCount: 2 -Fore -SplineSet -394 117 m 2 - 394 136 393 151 390 161 c 0 - 388 168 348 171 340 171 c 1 - 336 175 336 195 340 199 c 1 - 370 197 403 195 431 195 c 0 - 459 195 485 197 515 199 c 1 - 519 195 519 175 515 171 c 1 - 507 171 473 167 471 160 c 0 - 468 149 468 134 468 114 c 2 - 468 114 468 74 468 67 c 0 - 468 53 474 48 474 41 c 0 - 474 37 472 35 459 29 c 0 - 428 13 389 -5 292 -5 c 0 - 146 -5 48 96 48 214 c 0 - 48 339 150 444 294 444 c 0 - 342 444 393 440 447 426 c 1 - 447 426 466 335 466 328 c 1 - 466 322 457 319 448 319 c 0 - 443 319 440 320 438 322 c 1 - 434 342 418 412 303 412 c 0 - 201 412 132 326 132 228 c 0 - 132 121 192 27 308 27 c 0 - 342 27 368 35 388 45 c 0 - 392 47 394 51 394 55 c 0 - 394 117 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guillemotleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guillemotleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guillemotleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guillemotleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotleft -Encoding: 171 171 105 -Width: 470 -Flags: HW -LayerCount: 2 -Fore -SplineSet -202 240 m 0 - 202 250 203 249 207 258 c 1 - 335 335 410 412 411 413 c 1 - 427 408 431 404 433 401 c 1 - 427 380 333 281 288 241 c 1 - 333 201 427 102 433 81 c 1 - 431 78 427 74 411 69 c 1 - 410 70 335 148 207 225 c 1 - 205 228 202 234 202 240 c 0 -26 240 m 0 - 26 250 27 249 31 258 c 1 - 159 335 234 412 235 413 c 1 - 251 408 255 404 257 401 c 1 - 251 380 157 281 112 241 c 1 - 157 201 251 102 257 81 c 1 - 255 78 251 74 235 69 c 1 - 234 70 159 148 31 225 c 1 - 29 228 26 234 26 240 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guillemotright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guillemotright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guillemotright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guillemotright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: guillemotright -Encoding: 187 187 120 -Width: 470 -Flags: HW -LayerCount: 2 -Fore -SplineSet -271 240 m 0 - 271 234 268 228 266 225 c 1 - 138 148 63 70 62 69 c 1 - 46 74 42 78 40 81 c 1 - 46 102 140 201 185 241 c 1 - 140 281 46 380 40 401 c 1 - 42 404 46 408 62 413 c 1 - 63 412 138 335 266 258 c 1 - 270 249 271 250 271 240 c 0 -446 240 m 0 - 446 234 443 228 441 225 c 1 - 313 148 238 70 237 69 c 1 - 221 74 218 78 216 81 c 1 - 222 102 315 201 360 241 c 1 - 315 281 222 380 216 401 c 1 - 218 404 221 408 237 413 c 1 - 238 412 313 335 441 258 c 1 - 445 249 446 250 446 240 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guilsinglleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guilsinglleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guilsinglleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guilsinglleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: guilsinglleft -Encoding: 8249 8249 405 -Width: 301 -Flags: W -VStem: 29 231 -LayerCount: 2 -Fore -SplineSet -238 413 m 1 - 260 407 261 399 261 395 c 0 - 261 387 257 383 201 330 c 0 - 179 309 134 260 115 241 c 1 - 200 153 l 1 - 252 101 260 100 260 89 c 0 - 260 77 243 74 237 71 c 1 - 236 73 180 129 36 222 c 1 - 31 224 29 229 29 235 c 0 - 29 245 30 254 37 262 c 1 - 165 339 237 412 238 413 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guilsinglright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guilsinglright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/guilsinglright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/guilsinglright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: guilsinglright -Encoding: 8250 8250 406 -Width: 300 -Flags: W -VStem: 43 230 -LayerCount: 2 -Fore -SplineSet -65 71 m 1 - 43 77 43 85 43 89 c 0 - 43 100 53 104 102 153 c 1 - 187 241 l 1 - 168 260 123 309 101 330 c 0 - 43 386 42 387 42 395 c 0 - 42 407 58 410 64 413 c 1 - 66 411 138 339 265 262 c 1 - 272 254 273 245 273 235 c 0 - 273 229 271 224 266 222 c 1 - 142 142 77 84 65 71 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: hbar -Encoding: 295 295 228 -Width: 503 -Flags: W -HStem: -3 28<18 82 168 231 282 345 432 495> 371 57<235 320> 513 34<23 292> 613 25<22 78> 658 20<142 165> -VStem: 87 75<32 339 354 607> 351 75<32 339> -LayerCount: 2 -Fore -SplineSet -28 547 m 1 - 56 547 273 547 287 547 c 0 - 291 547 293 543 293 539 c 3 - 293 534 291 521 287 513 c 1 - 259 513 41 513 27 513 c 0 - 23 513 22 520 22 524 c 3 - 22 529 24 540 28 547 c 1 -EndSplineSet -Refer: 71 104 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" hbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Hbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Hbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Hbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Hbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: Hbar -Encoding: 294 294 227 -Width: 708 -Flags: W -HStem: -3 31<42 112 206 276 433 503 598 668> 317 33<203 508> 459 37<79 629> 615 31<42 112 206 276 433 503 598 668> -VStem: 117 85<35 311 354 609> 508 85<35 313 354 609> -LayerCount: 2 -Fore -SplineSet -84 459 m 0 - 80 459 79 467 79 472 c 3 - 79 478 79 487 85 496 c 1 - 624 496 l 0 - 628 496 629 488 629 483 c 3 - 629 477 629 468 623 459 c 1 - 595 459 98 459 84 459 c 0 -EndSplineSet -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: hbar.sc -Encoding: 65681 -1 833 -Width: 567 -Flags: W -HStem: -3 28<48 103 186 241 333 388 471 526> 210 33<183 391> 313 26<28 495> 412 28<48 103 186 241 333 388 471 526> -VStem: 107 75<37 206 243 401> 391 75<37 208 243 401> -LayerCount: 2 -Fore -SplineSet -494 313 m 1 - 472 313 41 313 30 313 c 1 - 27 313 26 333 31 340 c 1 - 53 340 483 340 494 340 c 1 - 497 340 497 320 494 313 c 1 -EndSplineSet -Refer: 752 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: hcircumflex -Encoding: 293 293 226 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 371 -1 2 -Refer: 71 104 N 1 0 0 1 1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" hcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Hcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Hcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Hcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Hcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Hcircumflex -Encoding: 292 292 225 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 608 -1 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hcircumflex.sc -Encoding: 65680 -1 832 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 517 46 2 -Refer: 752 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: h -Encoding: 104 104 71 -Width: 503 -Flags: W -HStem: -3 28<18 82 168 231 282 345 432 495> 371 57<235 320> 613 25<22 78> 658 20G<142 165> -VStem: 87 75<32 339 354 607> 351 75<32 339> -LayerCount: 2 -Fore -SplineSet -300 428 m 0 - 405 428 426 363 426 221 c 2 - 426 113 l 2 - 426 84 426 57 431 41 c 0 - 434 30 481 25 493 25 c 1 - 497 20 498 2 493 -3 c 1 - 453 -1 426 2 388 2 c 0 - 350 2 325 -1 285 -3 c 1 - 280 2 281 20 285 25 c 1 - 297 25 343 30 346 41 c 0 - 351 57 351 84 351 113 c 2 - 351 211 l 2 - 351 332 331 371 255 371 c 0 - 219 371 162 326 162 317 c 2 - 162 113 l 2 - 162 84 162 57 167 41 c 0 - 170 30 217 25 229 25 c 1 - 233 20 234 2 229 -3 c 1 - 189 -1 162 2 124 2 c 0 - 86 2 61 -1 21 -3 c 1 - 16 2 17 20 21 25 c 1 - 33 25 79 30 82 41 c 0 - 87 57 87 84 87 113 c 2 - 87 545 l 2 - 87 558 87 584 82 596 c 0 - 76 610 50 613 23 613 c 1 - 22 613 20 638 24 639 c 1 - 73 644 121 659 162 678 c 1 - 167 678 173 669 173 662 c 1 - 173 662 162 631 162 577 c 2 - 162 577 162 364 162 356 c 0 - 162 355 163 354 165 354 c 0 - 166 354 167 355 168 356 c 0 - 188 377 253 428 300 428 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" h.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_H.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_H.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_H.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_H.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: H -Encoding: 72 72 39 -Width: 708 -Flags: W -HStem: -3 31<42 112 206 276 433 503 598 668> 317 33<203 508> 615 31<42 112 206 276 433 503 598 668> -VStem: 117 85<35 311 354 609> 508 85<35 313 354 609> -LayerCount: 2 -Fore -SplineSet -160 642 m 0 - 198 642 234 644 274 646 c 1 - 279 641 278 620 274 615 c 1 - 262 615 209 611 206 600 c 0 - 201 584 202 556 202 527 c 2 - 202 356 l 1 - 202 354 204 354 204 354 c 1 - 252 353 302 351 357 351 c 0 - 403 351 462 353 506 354 c 1 - 506 354 508 355 508 357 c 0 - 508 527 l 2 - 508 556 508 584 503 600 c 0 - 500 611 448 615 436 615 c 1 - 432 620 431 641 436 646 c 1 - 476 644 513 642 551 642 c 0 - 589 642 625 644 665 646 c 1 - 670 641 669 620 665 615 c 1 - 653 615 601 611 598 600 c 0 - 593 584 593 556 593 527 c 2 - 593 116 l 2 - 593 87 593 60 598 44 c 0 - 601 33 653 28 665 28 c 1 - 669 23 670 2 665 -3 c 1 - 625 -1 589 2 551 2 c 0 - 513 2 476 -1 436 -3 c 1 - 431 2 432 23 436 28 c 1 - 448 28 500 33 503 44 c 0 - 508 60 508 87 508 116 c 2 - 508 310 l 1 - 508 312 506 313 506 313 c 1 - 460 314 407 317 357 317 c 0 - 221 317 207 314 203 312 c 1 - 202 311 202 310 202 310 c 1 - 202 116 l 2 - 202 87 201 60 206 44 c 0 - 209 33 262 28 274 28 c 1 - 278 23 279 2 274 -3 c 1 - 234 -1 198 2 160 2 c 0 - 122 2 84 -1 44 -3 c 1 - 39 2 40 23 44 28 c 1 - 56 28 109 33 112 44 c 0 - 117 60 117 87 117 116 c 2 - 117 527 l 2 - 117 556 117 584 112 600 c 0 - 109 611 56 615 44 615 c 1 - 40 620 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: hookabovecomb.cap -Encoding: 65575 -1 470 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 57<-283 -239> 831 21<-262 -225> -VStem: -285 47<717 758> -219 51<773 830> -LayerCount: 2 -Fore -SplineSet --246 831 m 0 - -259 831 -264 820 -270 809 c 0 - -276 797 -283 788 -297 788 c 0 - -309 788 -319 796 -319 813 c 0 - -319 817 -318 821 -316 825 c 1 - -305 838 -279 852 -234 852 c 0 - -200 852 -168 839 -168 807 c 0 - -168 777 -203 767 -214 760 c 0 - -225 753 -238 744 -238 731 c 0 - -238 726 -235 722 -232 718 c 1 - -234 715 -240 711 -244 711 c 1 - -253 712 -285 719 -285 737 c 0 - -285 749 -273 761 -252 768 c 0 - -238 773 -219 782 -219 802 c 0 - -219 820 -230 831 -246 831 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hookabovecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: hookabovecomb -Encoding: 777 777 341 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 628 28<-264 -215> -VStem: -313 45<574 624> -284 41<495 540> -210 40<566 627> -LayerCount: 2 -Fore -SplineSet --223 656 m 0xd0 - -189 656 -170 635 -170 606 c 0 - -170 574 -198 552 -220 542 c 0 - -238 534 -243 530 -243 518 c 0 - -243 510 -238 502 -235 499 c 1 - -235 494 -246 485 -251 485 c 1 - -257 487 -284 498 -284 518 c 0xb0 - -284 542 -255 554 -240 561 c 0 - -220 570 -210 580 -210 597 c 0 - -210 613 -219 628 -237 628 c 0 - -257 628 -269 619 -269 593 c 0 - -269 578 -286 573 -298 573 c 0 - -305 573 -313 577 -313 582 c 0 - -313 615 -265 656 -223 656 c 0xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/h.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/h.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/h.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/h.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,58 +0,0 @@ -StartChar: h.sc -Encoding: 65600 -1 752 -Width: 567 -Flags: W -HStem: -3 28<44 99 183 238 330 385 468 523> 210 33<180 388> 412 28<44 99 183 238 330 385 468 523> -VStem: 104 75<37 206 243 401> 388 75<37 208 243 401> -LayerCount: 2 -Fore -SplineSet -141 437 m 0 - 170 437 205 438 235 440 c 1 - 239 436 239 416 235 412 c 1 - 227 412 185 409 183 402 c 0 - 180 392 179 374 179 355 c 2 - 179 245 l 1 - 179 244 181 243 181 243 c 1 - 213 242 247 241 285 241 c 0 - 316 241 357 242 387 243 c 1 - 387 243 388 245 388 246 c 0 - 388 355 l 2 - 388 374 388 392 385 402 c 0 - 383 409 340 412 332 412 c 1 - 328 416 328 436 332 440 c 1 - 362 438 398 437 427 437 c 0 - 456 437 491 438 521 440 c 1 - 525 436 525 416 521 412 c 1 - 513 412 470 408 468 401 c 0 - 465 390 463 374 463 354 c 2 - 463 84 l 2 - 463 64 465 47 468 36 c 0 - 470 29 513 25 521 25 c 1 - 525 21 525 1 521 -3 c 1 - 491 -1 456 1 427 1 c 0 - 398 1 362 -1 332 -3 c 1 - 328 1 328 21 332 25 c 1 - 340 25 383 28 385 35 c 0 - 388 45 388 63 388 82 c 2 - 388 206 l 1 - 388 207 387 208 387 208 c 1 - 356 209 319 210 285 210 c 0 - 192 210 183 208 180 207 c 1 - 179 206 l 1 - 179 82 l 2 - 179 63 180 45 183 35 c 0 - 185 28 227 25 235 25 c 1 - 239 21 239 1 235 -3 c 1 - 205 -1 170 1 141 1 c 0 - 112 1 77 -1 47 -3 c 1 - 43 1 43 21 47 25 c 1 - 55 25 98 29 100 36 c 0 - 103 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 103 390 100 401 c 0 - 98 408 55 412 47 412 c 1 - 43 416 43 436 47 440 c 1 - 77 438 112 437 141 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: hungarumlaut -Encoding: 733 733 331 -Width: 375 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 482 25 2 -Refer: 333 769 N 1 0 0 1 361 25 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hyphen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hyphen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/hyphen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/hyphen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: hyphen -Encoding: 45 45 13 -Width: 368 -Flags: W -HStem: 205 62<78 307> -VStem: 57 255 -LayerCount: 2 -Fore -SplineSet -69 255 m 1 - 69 255 273 266 305 267 c 0 - 309 267 312 266 312 258 c 0 - 312 241 307 222 299 205 c 1 - 253 202 152 198 63 194 c 0 - 58 194 57 196 57 205 c 0 - 57 224 62 240 69 255 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: iacute -Encoding: 237 237 170 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 394 -4 2 -Refer: 238 305 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" iacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Iacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Iacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Iacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Iacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Iacute -Encoding: 205 205 138 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 455 0 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: iacute.sc -Encoding: 65642 -1 794 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 376 18 2 -Refer: 753 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ibreve -Encoding: 301 301 234 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 404 0 2 -Refer: 238 305 N 1 0 0 1 7 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ibreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ibreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ibreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ibreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ibreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ibreve -Encoding: 300 300 233 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 414 -3 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ibreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ibreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ibreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ibreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ibreve.sc -Encoding: 65684 -1 836 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 396 21 2 -Refer: 753 -1 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: icircumflex -Encoding: 238 238 171 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 406 -5 2 -Refer: 238 305 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" icircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Icircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Icircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Icircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Icircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Icircumflex -Encoding: 206 206 139 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 417 -23 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/icircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: icircumflex.sc -Encoding: 65643 -1 795 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 396 46 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: idieresis -Encoding: 239 239 172 -Width: 265 -Flags: HW -LayerCount: 2 -Fore -Refer: 238 305 N 1 0 0 1 0 0 2 -Refer: 472 -1 N 1 0 0 1 -15 28 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" idieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idieresis -Encoding: 207 207 140 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 0 0 3 -Refer: 473 -1 N 1 0 0 1 -1 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/idieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/idieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/idieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/idieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: idieresis.sc -Encoding: 65644 -1 796 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 387 23 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Idotaccent -Encoding: 304 304 237 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 408 0 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" Idotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Idotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Idotaccent.sc -Encoding: 65686 -1 838 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 393 36 2 -Refer: 753 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.fi.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.fi.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.fi.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.fi.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: i.fi -Encoding: 65767 -1 957 -Width: 277 -Flags: HW -LayerCount: 2 -Fore -SplineSet -0 409 m 1 - 40 409 l 2 - 106 409 154 414 186 423 c 0 - 191 424 l 0 - 194 424 195 422 196 416 c 128 - 197 410 197 406 196 403 c 1 - 193 377 191 354 191 333 c 2 - 191 113 l 2 - 191 75 193 51 196 41 c 0 - 197 36 205 33 220 30 c 128 - 235 27 248 25 257 25 c 1 - 259 22 260 18 260 11 c 128 - 260 4 259 0 257 -3 c 1 - 190 0 156 2 153 2 c 0 - 142 2 131 1 120 1 c 128 - 109 1 97 0 83 -1 c 128 - 69 -2 58 -3 49 -3 c 1 - 47 0 46 4 46 11 c 128 - 46 18 47 22 49 25 c 1 - 58 25 71 27 86 30 c 128 - 101 33 110 36 111 41 c 0 - 114 51 116 75 116 113 c 2 - 116 298 l 2 - 116 319 111 336 102 351 c 1 - 95 363 71 369 31 369 c 2 - 0 369 l 1 - 0 409 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: i -Encoding: 105 105 72 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 381 44 2 -Refer: 238 305 N 1 0 0 1 0 0 2 -Substitution2: "'ccmp' Turkish i-1" i.TRK -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" i.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_I.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_I.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_I.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_I.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: I -Encoding: 73 73 40 -Width: 316 -Flags: W -HStem: -3 28<42 111 207 276> 618 28<42 111 207 276> -VStem: 117 85<32 612> -LayerCount: 2 -Fore -SplineSet -160 642 m 0 - 198 642 234 644 274 646 c 1 - 279 641 278 623 274 618 c 1 - 262 618 209 614 206 603 c 0 - 201 587 202 559 202 530 c 2 - 202 113 l 2 - 202 84 201 57 206 41 c 0 - 209 30 262 25 274 25 c 1 - 278 20 279 2 274 -3 c 1 - 234 -1 198 2 160 2 c 0 - 122 2 84 -1 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: igrave -Encoding: 236 236 169 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 362 -4 2 -Refer: 238 305 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" igrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Igrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Igrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Igrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Igrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Igrave -Encoding: 204 204 137 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 381 0 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/igrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/igrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/igrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/igrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: igrave.sc -Encoding: 65641 -1 793 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 398 18 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ij.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ij.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ij.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ij.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij -Encoding: 307 307 240 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 105 N 1 0 0 1 0 0 2 -Refer: 73 106 N 1 0 0 1 229 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ij.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_I_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_I_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_I_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_I_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: IJ -Encoding: 306 306 239 -Width: 557 -Flags: HW -LayerCount: 2 -Fore -Refer: 40 73 N 1 0 0 1 -1 0 2 -Refer: 41 74 N 1 0 0 1 252 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ij.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ij.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ij.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ij.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ij.sc -Encoding: 65688 -1 840 -Width: 490 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 754 -1 N 1 0 0 1 218 0 2 -Refer: 753 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: imacron -Encoding: 299 299 232 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 387 26 2 -Refer: 238 305 N 1 0 0 1 8 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" imacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Imacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Imacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Imacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Imacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Imacron -Encoding: 298 298 231 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 417 27 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/imacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/imacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/imacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/imacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: imacron.sc -Encoding: 65683 -1 835 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 396 32 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/infinity.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/infinity.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/infinity.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/infinity.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: infinity -Encoding: 8734 8734 426 -Width: 869 -Flags: W -HStem: 42 56<168 297 583 699> 354 59<170 288 573 700> -VStem: 53 67<151 302> 747 69<148 302> -LayerCount: 2 -Fore -SplineSet -628 358 m 0 - 568 358 510 279 476 240 c 0 - 475 239 474 238 475 237 c 0 - 520 180 576 98 643 98 c 0 - 708 98 747 163 747 228 c 0 - 747 297 697 358 628 358 c 0 -120 224 m 0 - 120 156 169 95 237 95 c 0 - 301 95 353 168 395 213 c 0 - 396 214 396 214 395 215 c 0 - 363 253 298 354 230 354 c 0 - 164 354 120 290 120 224 c 0 -242 412 m 0 - 337 412 406 326 446 279 c 0 - 447 277 451 276 452 278 c 0 - 493 330 559 412 654 412 c 0 - 747 412 816 329 816 236 c 0 - 816 129 730 42 623 42 c 0 - 495 42 429 176 418 176 c 2 - 417 176 l 1 - 365 114 306 40 210 40 c 0 - 117 40 53 125 53 218 c 0 - 53 324 136 412 242 412 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.dotless.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.dotless.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.dotless.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.dotless.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: iogonek.dotless -Encoding: 65563 -1 458 -Width: 261 -Flags: W -HStem: -219 58<108 180> -3 28<29 85 206 243> 404 20G<172 176> -VStem: 51 53<-157 -85> 98 75<36 358> -LayerCount: 2 -Fore -SplineSet -31 -3 m 1xf0 - 26 2 26 25 31 25 c 0 - 43 25 88 34 91 45 c 0 - 97 69 98 99 98 113 c 2 - 98 298 l 2 - 98 306 97 337 84 351 c 1 - 63 377 27 367 27 373 c 0 - 27 374 28 396 33 397 c 0 - 77 404 132 412 168 423 c 0 - 169 423 172 424 173 424 c 0 - 179 424 179 408 178 403 c 0 - 174 372 173 366 173 333 c 2 - 173 132 l 2xe8 - 173 100 174 71 181 45 c 0 - 184 34 231 25 239 25 c 0 - 244 25 244 3 242 -3 c 1 - 231 -2 215 -2 206 -1 c 1 - 163 -27 104 -77 104 -119 c 0 - 104 -134 111 -161 144 -161 c 0 - 194 -161 217 -124 223 -124 c 0 - 224 -124 227 -129 227 -137 c 0 - 227 -142 226 -150 223 -154 c 0 - 202 -182 164 -219 120 -219 c 0 - 65 -219 51 -170 51 -144 c 0 - 51 -91 112 -33 164 1 c 1 - 156 1 148 2 138 2 c 0 - 98 2 71 -1 31 -3 c 1xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: iogonek -Encoding: 303 303 236 -Width: 261 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 386 44 2 -Refer: 458 -1 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" iogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Iogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Iogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Iogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Iogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: Iogonek -Encoding: 302 302 235 -Width: 320 -Flags: W -HStem: -219 58<124 195> -3 28<41 104 224 277> 618 28<41 103 218 277> -VStem: 66 53<-157 -85> 117 85<36 607> -LayerCount: 2 -Fore -SplineSet -162 642 m 0xe8 - 205 642 236 644 275 646 c 1 - 276 643 277 637 277 632 c 0 - 277 626 276 618 273 618 c 0 - 265 618 214 609 211 598 c 0 - 204 572 202 542 202 507 c 2 - 202 136 l 2xe8 - 202 101 204 71 211 45 c 0 - 214 34 265 25 273 25 c 0 - 276 25 277 17 277 11 c 0 - 277 6 276 0 275 -3 c 1 - 257 -2 240 -1 224 0 c 1 - 181 -25 119 -76 119 -119 c 0 - 119 -134 126 -161 159 -161 c 0 - 209 -161 232 -124 238 -124 c 0 - 239 -124 242 -129 242 -137 c 0 - 242 -142 241 -150 238 -154 c 0 - 217 -182 180 -219 136 -219 c 0 - 81 -219 66 -170 66 -144 c 0xf0 - 66 -91 128 -32 180 2 c 1 - 174 2 169 2 162 2 c 0 - 117 2 90 -1 45 -3 c 1 - 43 -1 41 6 41 12 c 0 - 41 18 43 25 45 25 c 0 - 57 25 105 33 110 45 c 1 - 116 67 117 114 117 132 c 2 - 117 511 l 2 - 117 529 116 576 110 598 c 1 - 105 610 57 618 45 618 c 0 - 43 618 41 625 41 631 c 0 - 41 637 43 644 45 646 c 1 - 90 644 117 642 162 642 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/iogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/iogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: iogonek.sc -Encoding: 65685 -1 837 -Width: 283 -Flags: W -HStem: -218 58<113 185> -3 28<45 100 183 238> 412 28<45 100 183 238> -VStem: 56 53<-156 -76> 104 76<37 401> -LayerCount: 2 -Fore -SplineSet -142 437 m 0xe8 - 171 437 205 438 235 440 c 1 - 239 436 239 416 235 412 c 1 - 227 412 185 408 183 401 c 0 - 180 390 180 374 180 354 c 2 - 180 84 l 2xe8 - 180 64 180 47 183 36 c 0 - 185 29 227 25 235 25 c 1 - 239 21 239 1 235 -3 c 1 - 221 -2 197 -1 183 -0 c 1 - 148 -16 108 -75 108 -118 c 0 - 108 -133 115 -160 148 -160 c 0 - 198 -160 222 -123 228 -123 c 0 - 229 -123 232 -128 232 -136 c 0 - 232 -141 231 -149 228 -153 c 0 - 207 -181 169 -218 125 -218 c 0 - 70 -218 56 -169 56 -143 c 0xf0 - 56 -90 108 -29 141 1 c 1 - 137 1 139 1 136 1 c 0 - 107 1 78 -1 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 113 437 142 437 c 0xe8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: i.sc -Encoding: 65601 -1 753 -Width: 283 -Flags: W -HStem: -3 28<45 100 183 238> 412 28<45 100 183 238> -VStem: 104 76<37 401> -LayerCount: 2 -Fore -SplineSet -142 437 m 0 - 171 437 205 438 235 440 c 1 - 239 436 239 416 235 412 c 1 - 227 412 185 408 183 401 c 0 - 180 390 180 374 180 354 c 2 - 180 84 l 2 - 180 64 180 47 183 36 c 0 - 185 29 227 25 235 25 c 1 - 239 21 239 1 235 -3 c 1 - 205 -1 171 1 142 1 c 0 - 113 1 78 -1 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 113 437 142 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: itilde -Encoding: 297 297 230 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 393 -2 2 -Refer: 238 305 N 1 0 0 1 8 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" itilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Itilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Itilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Itilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Itilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Itilde -Encoding: 296 296 229 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 410 -7 2 -Refer: 40 73 N 1 0 0 1 -0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/itilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/itilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/itilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/itilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: itilde.sc -Encoding: 65682 -1 834 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 383 20 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: i.TRK -Encoding: 65763 -1 948 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 72 105 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" i.TRK.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/i._T_R_K.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: i.TRK.sc -Encoding: 65764 -1 949 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 838 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: jcircumflex -Encoding: 309 309 242 -Width: 233 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 385 -5 2 -Refer: 320 567 N 1 0 0 1 3 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" jcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Jcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Jcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Jcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Jcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Jcircumflex -Encoding: 308 308 241 -Width: 305 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 408 -1 2 -Refer: 41 74 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/jcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: jcircumflex.sc -Encoding: 65689 -1 841 -Width: 272 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 391 46 2 -Refer: 754 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.fj.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.fj.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.fj.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.fj.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: j.fj -Encoding: 65769 -1 959 -Width: 259 -Flags: HW -LayerCount: 2 -Back -SplineSet -0 409.1796875 m 1 - 39.55078125 409.1796875 l 2 - 105.305664062 409.1796875 154.133789062 413.737304688 186.03515625 422.8515625 c 0 - 190.91796875 423.828125 l 0 - 193.522460938 423.828125 195.231445312 421.061523438 196.044921875 415.52734375 c 128 - 196.858398438 409.993164062 196.77734375 405.924804688 195.80078125 403.3203125 c 1 - 192.545898438 377.278320312 190.91796875 353.840820312 190.91796875 333.0078125 c 2 - 190.91796875 113.28125 l 2 - 190.91796875 75.5205078125 192.545898438 51.4326171875 195.80078125 41.015625 c 0 - 197.102539062 36.4580078125 205.322265625 32.71484375 220.458984375 29.78515625 c 128 - 235.595703125 26.85546875 247.883789062 25.390625 257.32421875 25.390625 c 1 - 259.27734375 22.7861328125 260.334960938 18.06640625 260.498046875 11.23046875 c 128 - 260.661132812 4.39453125 259.602539062 -0.3251953125 257.32421875 -2.9296875 c 1 - 190.592773438 0.3251953125 155.76171875 1.953125 152.83203125 1.953125 c 0 - 141.438476562 1.953125 130.452148438 1.708984375 119.873046875 1.220703125 c 128 - 109.293945312 0.732421875 97.16796875 0 83.49609375 -0.9765625 c 128 - 69.82421875 -1.953125 58.4306640625 -2.6044921875 49.31640625 -2.9296875 c 1 - 47.0380859375 -0.3251953125 45.9794921875 4.39453125 46.142578125 11.23046875 c 128 - 46.3056640625 18.06640625 47.36328125 22.7861328125 49.31640625 25.390625 c 1 - 58.7568359375 25.390625 71.044921875 26.85546875 86.181640625 29.78515625 c 128 - 101.318359375 32.71484375 109.538085938 36.4580078125 110.83984375 41.015625 c 0 - 114.094726562 51.4326171875 115.72265625 75.5205078125 115.72265625 113.28125 c 2 - 115.72265625 297.8515625 l 2 - 115.72265625 318.359375 111.165039062 335.9375 102.05078125 350.5859375 c 1 - 94.8896484375 362.956054688 71.1259765625 369.140625 30.76171875 369.140625 c 2 - 0 369.140625 l 1 - 0 409.1796875 l 1 -EndSplineSet -Fore -SplineSet -0 409 m 2 - 40 409 l 2 - 108 409 157 414 186 423 c 0 - 186 423 187 423 189 423 c 128 - 191 423 192 424 192 424 c 0 - 196 423 197 416 196 403 c 1 - 193 377 191 354 191 333 c 2 - 191 316 l 1 - 191 66 l 2 - 191 -4 178 -61 151 -109 c 0 - 129 -149 100 -181 65 -203 c 0 - 51 -212 37 -220 22 -226 c 1 - 20 -225 15 -220 9 -211 c 0 - 7 -208 7 -206 9 -204 c 1 - 22 -195 34 -187 42 -179 c 0 - 66 -158 84 -132 95 -102 c 0 - 109 -64 116 -15 116 44 c 2 - 116 303 l 2 - 116 322 112 338 104 349 c 0 - 95 363 71 369 33 369 c 2 - 0 369 l 2 - 0 409 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: j -Encoding: 106 106 73 -Width: 233 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 362 44 2 -Refer: 320 567 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" j.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_J.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_J.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_J.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_J.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: J -Encoding: 74 74 41 -Width: 305 -Flags: W -HStem: -222 46<-40 65> 618 28<37 106 202 271> -VStem: 111 85<-52 612> -LayerCount: 2 -Fore -SplineSet -154 642 m 0 - 192 642 229 644 269 646 c 1 - 274 641 273 623 269 618 c 1 - 257 618 204 614 201 603 c 0 - 196 587 196 559 196 530 c 2 - 196 118 l 2 - 196 -126 100 -222 -32 -222 c 0 - -47 -222 -82 -213 -94 -204 c 1 - -99 -199 -102 -189 -102 -182 c 0 - -102 -152 -86 -127 -55 -127 c 0 - -37 -127 -21 -143 -8 -155 c 0 - 3 -165 19 -176 36 -176 c 0 - 77 -176 111 -123 111 113 c 2 - 111 530 l 2 - 111 559 111 587 106 603 c 0 - 103 614 51 618 39 618 c 1 - 35 623 34 641 39 646 c 1 - 79 644 116 642 154 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/j.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/j.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: j.sc -Encoding: 65602 -1 754 -Width: 272 -Flags: W -HStem: -151 41<-3 72> 412 28<41 96 178 233> -VStem: 99 76<-43 401> -LayerCount: 2 -Fore -SplineSet -137 437 m 0 - 166 437 200 438 230 440 c 1 - 234 436 234 416 230 412 c 1 - 222 412 180 408 178 401 c 0 - 175 390 175 373 175 353 c 2 - 175 74 l 2 - 175 -63 109 -151 5 -151 c 0 - -11 -151 -31 -143 -40 -136 c 1 - -43 -132 -46 -124 -46 -119 c 0 - -46 -97 -33 -79 -12 -79 c 0 - 0 -79 10 -88 20 -97 c 0 - 28 -104 38 -110 47 -110 c 0 - 68 -110 99 -76 99 80 c 2 - 99 354 l 2 - 99 374 99 390 96 401 c 0 - 94 408 51 412 43 412 c 1 - 39 416 39 436 43 440 c 1 - 73 438 108 437 137 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/k.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/k.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/k.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/k.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: k -Encoding: 107 107 74 -Width: 505 -Flags: W -HStem: -3 28<18 82 168 231 432 501> 387 28<284 332 408 469> 613 25<22 78> 658 20G<142 165> -VStem: 87 75<32 199 229 607> -LayerCount: 2 -Fore -SplineSet -162 113 m 2 - 162 84 162 57 167 41 c 0 - 170 30 217 25 229 25 c 1 - 233 20 234 2 229 -3 c 1 - 189 -1 162 2 124 2 c 0 - 86 2 61 -1 21 -3 c 1 - 16 2 17 20 21 25 c 1 - 33 25 79 30 82 41 c 0 - 87 57 87 84 87 113 c 2 - 87 545 l 2 - 87 559 87 584 82 596 c 0 - 76 610 50 613 23 613 c 1 - 22 613 20 638 24 639 c 1 - 73 644 121 659 162 678 c 1 - 167 678 173 669 173 662 c 1 - 173 662 162 631 162 577 c 2 - 162 229 l 1 - 179 235 210 261 243 289 c 0 - 294 332 332 360 332 370 c 0 - 332 385 295 386 286 387 c 1 - 281 394 282 413 287 415 c 1 - 315 412 350 410 381 410 c 0 - 414 410 446 412 467 415 c 1 - 471 409 470 391 467 387 c 1 - 453 387 413 379 392 364 c 0 - 381 356 292 292 234 243 c 1 - 307 164 387 72 410 52 c 0 - 435 31 474 24 499 25 c 1 - 501 22 503 7 500 2 c 1 - 493 -1 463 -4 437 -4 c 0 - 379 -4 332 23 317 39 c 2 - 317 39 233 129 177 190 c 0 - 173 195 162 199 162 199 c 1 - 162 113 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" k.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_K.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_K.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_K.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_K.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -StartChar: K -Encoding: 75 75 42 -Width: 641 -Flags: W -HStem: -3 31<42 112 206 276 576 646> 615 31<42 112 206 276 393 449 540 614> -VStem: 117 85<35 300 333 609> -LayerCount: 2 -Fore -SplineSet -160 642 m 0 - 198 642 234 644 274 646 c 1 - 279 641 278 620 274 615 c 1 - 262 615 209 611 206 600 c 0 - 201 584 202 556 202 527 c 2 - 202 333 l 1 - 223 346 272 393 312 432 c 0 - 388 507 406 526 436 564 c 0 - 442 572 450 585 450 595 c 0 - 450 619 404 616 395 616 c 1 - 392 622 392 637 395 646 c 1 - 431 644 471 641 507 641 c 0 - 550 641 574 644 613 646 c 1 - 615 640 616 616 611 616 c 0 - 602 615 547 616 514 580 c 0 - 430 488 373 437 288 355 c 1 - 286 352 286 351 288 348 c 1 - 382 239 463 141 538 70 c 0 - 562 48 591 29 645 25 c 1 - 650 20 645 -1 644 -3 c 1 - 579 -3 525 1 505 8 c 0 - 491 13 466 23 439 50 c 0 - 418 71 329 171 219 297 c 0 - 217 300 214 300 210 300 c 0 - 207 300 204 299 202 298 c 1 - 202 116 l 2 - 202 87 201 60 206 44 c 0 - 209 33 262 28 274 28 c 1 - 278 23 279 2 274 -3 c 1 - 234 -1 198 2 160 2 c 0 - 122 2 84 -1 44 -3 c 1 - 39 2 40 23 44 28 c 1 - 56 28 109 33 112 44 c 0 - 117 60 117 87 117 116 c 2 - 117 527 l 2 - 117 556 117 584 112 600 c 0 - 109 611 56 615 44 615 c 1 - 40 620 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,46 +0,0 @@ -StartChar: kgreenlandic -Encoding: 312 312 245 -Width: 520 -Flags: W -HStem: -3 28<33 96 183 246 446 515> 363 25<32 92> 387 28<298 347 422 484> 410 20G<154 176> -VStem: 102 75<32 199 229 357> -LayerCount: 2 -Fore -SplineSet -177 350 m 2xd8 - 177 229 l 1 - 194 235 224 261 257 289 c 0 - 308 332 347 360 347 370 c 0 - 347 385 309 386 300 387 c 1 - 295 394 297 413 302 415 c 1xa8 - 330 412 365 410 396 410 c 0x98 - 429 410 461 412 482 415 c 1 - 486 409 485 391 482 387 c 1xa8 - 468 387 428 379 407 364 c 0 - 396 356 306 292 248 243 c 1 - 321 164 401 72 424 52 c 0 - 449 31 489 24 514 25 c 1 - 516 22 518 7 515 2 c 1 - 508 -1 477 -4 451 -4 c 0 - 393 -4 346 23 331 39 c 2 - 331 39 248 129 192 190 c 0 - 188 195 177 199 177 199 c 1 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 231 25 243 25 c 1 - 247 20 248 2 243 -3 c 1 - 203 -1 177 2 139 2 c 0 - 101 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 295 l 2 - 102 308 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 177 360 177 350 c 2xd8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" kgreenlandic.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/kgreenlandic.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: kgreenlandic.sc -Encoding: 65691 -1 843 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 755 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/k.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/k.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/k.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/k.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -StartChar: k.sc -Encoding: 65603 -1 755 -Width: 503 -Flags: W -HStem: -3 28<44 100 183 238 445 488> 412 28<45 100 183 238 304 351 418 472> -VStem: 104 75<37 193 225 401> -LayerCount: 2 -Fore -SplineSet -401 68 m 0 - 418 52 451 30 487 25 c 1 - 491 21 487 -1 486 -3 c 1 - 441 -3 397 1 383 6 c 0 - 373 9 354 17 335 36 c 0 - 321 50 266 105 191 191 c 0 - 190 193 187 193 184 193 c 0 - 182 193 180 193 179 192 c 1 - 179 84 l 2 - 179 64 180 47 183 36 c 0 - 185 29 227 25 235 25 c 1 - 239 21 239 1 235 -3 c 1 - 205 -1 170 1 141 1 c 0 - 112 1 77 -1 47 -3 c 1 - 43 1 43 21 47 25 c 1 - 55 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 55 412 47 412 c 1 - 43 416 43 436 47 440 c 1 - 77 438 112 437 141 437 c 0 - 170 437 205 438 235 440 c 1 - 239 436 239 416 235 412 c 1 - 227 412 185 408 183 401 c 0 - 180 390 179 374 179 354 c 2 - 179 225 l 1 - 193 234 227 263 254 289 c 0 - 302 336 309 341 344 376 c 0 - 348 380 352 389 352 396 c 0 - 352 413 312 411 306 411 c 1 - 303 416 303 432 306 440 c 1 - 330 438 369 436 393 436 c 0 - 422 436 445 438 471 440 c 1 - 473 435 475 411 471 411 c 0 - 465 410 429 412 405 389 c 0 - 346 333 309 296 251 241 c 0 - 246 237 248 233 252 230 c 0 - 315 158 351 115 401 68 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lacute -Encoding: 314 314 247 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 414 0 2 -Refer: 75 108 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" lacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Lacute -Encoding: 313 313 246 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 473 0 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: lacute.sc -Encoding: 65692 -1 844 -Width: 432 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 437 18 2 -Refer: 756 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: lcaron -Encoding: 318 318 251 -Width: 266 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 510 20 2 -Refer: 75 108 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" lcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: Lcaron -Encoding: 317 317 250 -Width: 568 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 717 -7 2 -Refer: 43 76 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: lcaron.sc -Encoding: 65694 -1 846 -Width: 434 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 567 -135 2 -Refer: 756 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: ldot -Encoding: 320 320 253 -Width: 376 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 561 -248 2 -Refer: 75 108 N 1 0 0 1 0 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ldot.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ldot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ldot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ldot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ldot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ldot -Encoding: 319 319 252 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 686 -229 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ldot.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ldot.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ldot.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ldot.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ldot.sc -Encoding: 65695 -1 847 -Width: 435 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 587 -285 2 -Refer: 756 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lessequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lessequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lessequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lessequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: lessequal -Encoding: 8804 8804 428 -Width: 504 -Flags: W -HStem: 6 55<44 426> -LayerCount: 2 -Fore -SplineSet -423 61 m 1 - 423 61 432 62 430 50 c 0 - 423 3 418 9 415 6 c 1 - 42 6 l 1 - 42 6 33 5 35 19 c 0 - 37 33 38 36 44 56 c 0 - 46 62 51 61 51 61 c 1 - 423 61 l 1 -438 133 m 0 - 438 126 428 84 422 84 c 0 - 421 84 419 85 417 86 c 2 - 51 272 l 2 - 36 280 33 294 33 311 c 0 - 33 322 41 329 51 334 c 2 - 411 517 l 2 - 413 518 415 519 416 519 c 0 - 419 519 426 509 433 473 c 0 - 434 467 430 464 430 464 c 1 - 111 303 l 1 - 435 139 l 1 - 435 139 438 138 438 133 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/less.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/less.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/less.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/less.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: less -Encoding: 60 60 27 -Width: 480 -Flags: W -HStem: 400 20G<412 414> -LayerCount: 2 -Fore -SplineSet -434 34 m 0 - 434 27 424 -15 418 -15 c 0 - 417 -15 415 -14 413 -13 c 2 - 47 173 l 2 - 32 181 29 195 29 212 c 0 - 29 223 37 230 47 235 c 2 - 407 418 l 2 - 409 419 411 420 412 420 c 0 - 415 420 422 410 429 374 c 0 - 430 368 426 365 426 365 c 1 - 107 204 l 1 - 431 40 l 1 - 431 40 434 39 434 34 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" less.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/less.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/less.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/less.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/less.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: less.sc -Encoding: 65588 -1 740 -Width: 476 -Flags: HW -LayerCount: 2 -Fore -Refer: 27 60 N 1 0 0 1 -3 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/l.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/l.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/l.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/l.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: l -Encoding: 108 108 75 -Width: 249 -Flags: W -HStem: -3 28<18 82 168 231> 613 25<22 78> 658 20G<142 165> -VStem: 87 75<32 607> -LayerCount: 2 -Fore -SplineSet -87 545 m 2 - 87 559 87 584 82 596 c 0 - 76 610 50 613 23 613 c 1 - 22 613 20 638 24 639 c 1 - 73 644 121 659 162 678 c 1 - 167 678 173 669 173 662 c 1 - 173 662 162 631 162 577 c 2 - 162 113 l 2 - 162 84 162 57 167 41 c 0 - 170 30 217 25 229 25 c 1 - 233 20 234 2 229 -3 c 1 - 189 -1 162 2 124 2 c 0 - 86 2 61 -1 21 -3 c 1 - 16 2 17 20 21 25 c 1 - 33 25 79 30 82 41 c 0 - 87 57 87 84 87 113 c 2 - 87 545 l 2 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" l.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_L.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_L.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_L.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_L.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: L -Encoding: 76 76 43 -Width: 550 -Flags: W -HStem: -3 28<42 111> 0 33<208 428> 618 28<42 111 207 276> -VStem: 117 85<43 612> -LayerCount: 2 -Fore -SplineSet -202 113 m 2xb0 - 202 98 201 48 207 43 c 0 - 220 33 236 33 277 33 c 2 - 332 33 l 2 - 369 33 420 41 447 60 c 0 - 471 77 492 106 508 158 c 0 - 509 162 515 164 522 164 c 0 - 532 164 543 161 546 158 c 1 - 527 105 501 39 494 -4 c 1 - 388 -4 291 0 161 0 c 0x70 - 115 0 82 -3 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 - 198 642 234 644 274 646 c 1 - 279 641 278 623 274 618 c 1 - 262 618 209 614 206 603 c 0 - 201 587 202 559 202 530 c 2 - 202 113 l 2xb0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lira.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lira.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lira.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lira.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: lira -Encoding: 8356 8356 919 -Width: 467 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 64<233 353> 48 55<98 176> 256 35<67 371> 334 35<67 371> 576 45<232 325> -VStem: 123 75<370 497> 146 73<184 333> 418 13<125 132> -LayerCount: 2 -Fore -SplineSet -77 291 m 1x39 - 93 291 362 291 373 291 c 1 - 387 280 370 260 364 256 c 1 - 55 256 l 17 - 49 262 68 291 77 291 c 1x39 -308 621 m 0 - 342 621 355 614 378 598 c 1 - 382 594 388 580 388 570 c 0 - 388 535 368 523 351 523 c 1 - 330 523 314 546 299 560 c 0 - 284 574 278 576 265 576 c 0 - 214 576 198 515 198 448 c 0x7d - 198 376 219 321 219 266 c 0 - 219 193 156 117 132 95 c 1 - 146 102 155 103 166 103 c 0x7b - 220 103 233 57 320 57 c 0 - 374 57 409 118 418 136 c 1 - 419 136 431 128 431 120 c 0 - 431 116 430 111 428 105 c 0 - 417 74 361 -8 285 -8 c 0xbb - 202 -8 165 48 114 48 c 0 - 84 48 77 10 60 -6 c 1 - 52 -6 44 7 44 16 c 0 - 44 44 78 77 93 92 c 0 - 120 119 146 178 146 226 c 0x7b - 146 247 124 359 123 390 c 0x7d - 119 523 216 621 308 621 c 0 -77 369 m 1 - 93 369 362 369 373 369 c 1 - 387 358 370 338 364 334 c 1 - 55 334 l 17 - 49 340 68 369 77 369 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/logicalnot.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/logicalnot.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/logicalnot.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/logicalnot.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: logicalnot -Encoding: 172 172 106 -Width: 573 -Flags: W -HStem: 355 55<48 445> -VStem: 445 59<155 355> -LayerCount: 2 -Fore -SplineSet -504 410 m 17 - 504 165 l 17 - 503 164 478 150 458 150 c 0 - 458 150 448 151 445 157 c 1 - 445 178 445 278 445 355 c 9 - 50 355 l 1 - 50 355 44 355 44 365 c 1 - 44 365 49 410 59 410 c 2 - 504 410 l 17 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/longs.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/longs.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/longs.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/longs.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: longs -Encoding: 383 383 932 -Width: 266 -Flags: W -HStem: -3 28<25 89 175 242> 382 40<40 94> 622 59<210 294> -VStem: 94 75<32 382 422 533> -LayerCount: 2 -Fore -SplineSet -169 422 m 1 - 169 113 l 2 - 169 84 169 57 174 41 c 0 - 177 30 228 25 240 25 c 1 - 244 20 245 2 240 -3 c 1 - 200 -1 169 2 131 2 c 0 - 93 2 68 -1 28 -3 c 1 - 23 2 24 20 28 25 c 1 - 40 25 86 30 89 41 c 0 - 94 57 94 84 94 113 c 2 - 94 382 l 1 - 37 382 l 2 - 34 382 33 388 33 391 c 0 - 33 395 57 421 58 422 c 1 - 74 422 83 422 94 422 c 1 - 94 433 94 428 94 428 c 2 - 94 570 203 681 263 681 c 0 - 292 681 294 679 309 669 c 1 - 313 665 319 652 319 642 c 0 - 319 607 293 603 280 603 c 0 - 270 603 262 607 251 613 c 0 - 240 619 236 622 223 622 c 0 - 193 622 168 591 169 530 c 2 - 169 422 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/l.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/l.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/l.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/l.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: l.sc -Encoding: 65604 -1 756 -Width: 432 -Flags: W -HStem: 0 32<48 100 183 343> 412 28<45 100 183 238> -VStem: 103 76<39 401> -LayerCount: 2 -Fore -SplineSet -179 85 m 2 - 179 75 179 42 183 39 c 0 - 192 32 202 32 230 32 c 2 - 268 32 l 2 - 293 32 325 36 344 48 c 0 - 361 59 373 78 384 112 c 0 - 385 115 391 116 396 116 c 0 - 403 116 411 114 413 112 c 1 - 400 74 383 27 378 -4 c 1 - 302 -4 232 0 138 0 c 0 - 105 0 75 -3 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 103 64 103 84 c 2 - 103 354 l 2 - 103 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 113 437 142 437 c 0 - 171 437 205 438 235 440 c 1 - 239 436 239 416 235 412 c 1 - 227 412 185 408 183 401 c 0 - 180 390 179 374 179 354 c 2 - 179 85 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: lslash -Encoding: 322 322 255 -Width: 249 -Flags: W -HStem: -3 28<18 82 168 231> 613 25<22 78> 658 20<142 165> -VStem: 87 75<32 607> -LayerCount: 2 -Fore -SplineSet -34 254 m 1 - 28 260 15 277 19 281 c 9 - 212 413 l 1 - 217 408 231 391 227 387 c 9 - 34 254 l 1 -EndSplineSet -Refer: 75 108 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" lslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Lslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Lslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Lslash -Encoding: 321 321 254 -Width: 550 -Flags: W -HStem: -3 28<42 111> 0 33<208 428> 618 28<42 111 207 276> -VStem: 117 85<43 612> -LayerCount: 2 -Fore -SplineSet -375 437 m 1x30 - 380 432 396 409 392 406 c 9 - 49 174 l 1 - 43 180 29 199 33 202 c 9 - 375 437 l 1x30 -EndSplineSet -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/lslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/lslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: lslash.sc -Encoding: 65696 -1 848 -Width: 436 -VWidth: 0 -Flags: W -HStem: 0 32<52 105 188 347> 412 28<50 105 187 242> -VStem: 107 76<39 401> -LayerCount: 2 -Fore -SplineSet -265 309 m 1 - 269 305 283 285 280 283 c 9 - 41 117 l 1 - 36 122 24 139 27 141 c 9 - 265 309 l 1 -EndSplineSet -Refer: 756 -1 N 1 0 0 1 4 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/macron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/macron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/macron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/macron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: macron -Encoding: 175 175 108 -Width: 330 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 420 62 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/m.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/m.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/m.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/m.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -StartChar: m -Encoding: 109 109 76 -Width: 771 -Flags: W -HStem: -3 28<33 96 183 246 291 354 440 504 549 612 698 762> 363 25<32 92> 371 57<243 330 501 587> -VStem: 102 75<32 343> 360 75<32 339> 617 75<32 340> -LayerCount: 2 -Fore -SplineSet -312 428 m 0xbc - 370 428 407 406 423 347 c 1 - 466 386 520 428 567 428 c 0 - 672 428 693 363 693 221 c 2 - 693 113 l 2 - 693 84 693 57 698 41 c 0 - 701 30 747 25 759 25 c 1 - 763 20 764 2 759 -3 c 1 - 719 -1 693 2 655 2 c 0 - 617 2 591 -1 551 -3 c 1 - 546 2 547 20 551 25 c 1 - 563 25 610 30 613 41 c 0 - 618 57 617 84 617 113 c 2 - 617 218 l 2 - 617 315 605 371 526 371 c 0 - 478 371 430 322 430 315 c 0 - 430 314 431 305 431 303 c 0 - 434 284 435 251 435 233 c 2 - 435 113 l 2 - 435 84 435 57 440 41 c 0 - 443 30 489 25 501 25 c 1 - 505 20 506 2 501 -3 c 1 - 461 -1 435 2 397 2 c 0 - 359 2 333 -1 293 -3 c 1 - 288 2 289 20 293 25 c 1 - 305 25 352 30 355 41 c 0 - 360 57 360 84 360 113 c 2 - 360 213 l 2 - 360 332 338 371 268 371 c 0xbc - 224 371 177 330 177 317 c 2 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 231 25 243 25 c 1 - 247 20 248 2 243 -3 c 1 - 203 -1 177 2 139 2 c 0 - 101 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 291 l 2 - 102 304 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 178 371 178 363 c 0xdc - 178 362 178 359 180 359 c 0 - 181 359 182 360 183 361 c 0 - 207 382 259 428 312 428 c 0xbc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" m.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_M.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_M.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_M.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_M.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: M -Encoding: 77 77 44 -Width: 885 -Flags: W -HStem: -3 28<24 100 167 244 618 682 785 853> 618 28<57 119 770 833> -VStem: 117 44<37 283> 130 43<363 570> 677 84<318 571> 692 79<36 374> -LayerCount: 2 -Fore -SplineSet -159 642 m 0xd0 - 192 642 217 644 238 646 c 1 - 258 584 376 317 445 143 c 0 - 446 141 448 141 449 141 c 0 - 450 141 452 142 453 145 c 0 - 511 293 546 384 603 529 c 0 - 621 574 646 646 646 646 c 1 - 677 644 704 643 723 643 c 0 - 757 643 808 644 832 646 c 1 - 833 643 835 618 835 618 c 17 - 821 618 771 611 766 601 c 0 - 762 592 761 575 761 563 c 0xd8 - 763 496 768 264 771 137 c 0 - 772 99 774 65 783 42 c 0 - 788 28 843 25 851 25 c 1 - 856 16 854 0 853 -3 c 1 - 814 -1 780 2 737 2 c 0 - 692 2 664 -1 619 -3 c 1 - 617 -1 615 17 619 25 c 1 - 631 25 671 29 683 36 c 0 - 690 40 692 63 692 77 c 0xc4 - 692 91 690 119 690 134 c 0 - 686 275 683 394 677 552 c 0 - 677 556 675 571 668 571 c 0 - 666 571 665 569 663 564 c 8 - 583 363 532 236 457 48 c 0 - 453 39 431 0 420 -2 c 0 - 417 -3 414 -1 411 0 c 1 - 173 570 l 1xd8 - 169 357 160 83 160 73 c 0 - 160 64 161 51 164 43 c 0 - 170 28 234 25 242 25 c 1 - 247 19 244 0 243 -3 c 1 - 204 -1 183 2 140 2 c 0 - 95 2 71 -1 26 -3 c 1 - 24 -1 22 17 26 25 c 1 - 38 25 96 30 105 43 c 0 - 114 56 116 71 117 92 c 0xe0 - 126 326 130 541 130 559 c 0 - 130 573 130 587 126 598 c 0 - 122 610 70 618 58 618 c 1 - 56 618 56 644 58 646 c 1 - 103 644 114 642 159 642 c 0xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/minus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/minus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/minus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/minus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ -StartChar: minus -Encoding: 8722 8722 422 -Width: 596 -Flags: W -HStem: 213 55<80 520> -LayerCount: 2 -Fore -SplineSet -513 213 m 1 - 356 213 240 213 72 213 c 1 - 60 213 73 263 87 268 c 9 - 526 268 l 17 - 540 268 527 220 513 213 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/minute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/minute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/minute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/minute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: minute -Encoding: 8242 8242 402 -Width: 156 -Flags: W -HStem: 482 200 -VStem: 48 85<576 664> 60 73<576 673> -LayerCount: 2 -Fore -SplineSet -108 683 m 0xa0 - 118 683 133 679 133 659 c 0xc0 - 133 613 98 546 70 490 c 0 - 67 484 64 482 60 482 c 0xa0 - 54 482 48 487 48 494 c 0xc0 - 48 497 52 597 60 650 c 0 - 62 662 89 683 108 683 c 0xa0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/m.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/m.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/m.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/m.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: m.sc -Encoding: 65605 -1 757 -Width: 682 -Flags: W -HStem: -3 28<34 94 145 206 445 499 585 649> 377 60<487 533> 412 28<58 111 574 627> -VStem: 101 43<38 260> 114 42<171 375> 493 76<137 377> 506 74<32 336> -LayerCount: 2 -Fore -SplineSet -626 440 m 1xa8 - 627 437 629 412 629 412 c 17 - 619 412 578 407 574 400 c 0 - 571 394 570 384 570 376 c 0xac - 572 331 577 183 580 99 c 0 - 581 74 580 52 586 36 c 0 - 589 27 642 25 647 25 c 1 - 651 17 649 0 648 -3 c 1 - 619 -1 575 1 543 1 c 0 - 509 1 481 -1 447 -3 c 1 - 445 -1 443 18 447 25 c 1 - 456 25 490 27 499 32 c 0 - 504 35 506 51 506 60 c 0xa2 - 506 69 505 88 505 98 c 0 - 502 191 498 260 493 364 c 0 - 493 367 492 377 487 377 c 0 - 486 377 485 375 484 372 c 0 - 432 234 394 142 343 17 c 0 - 341 11 332 0 321 -2 c 0 - 319 -2 316 -1 314 0 c 1 - 156 375 l 1xcc - 152 234 144 64 144 57 c 0 - 144 51 144 42 146 37 c 0 - 150 27 198 25 204 25 c 1 - 208 20 206 0 205 -3 c 1 - 177 -1 158 1 127 1 c 0 - 94 1 68 -1 35 -3 c 1 - 33 -1 31 18 35 25 c 1 - 43 25 88 28 94 37 c 0 - 100 46 100 55 101 69 c 0xd0 - 109 224 114 361 114 373 c 0 - 114 382 115 391 112 398 c 0 - 109 406 66 412 57 412 c 1 - 55 412 58 438 60 440 c 1xa8 - 93 438 106 437 139 437 c 0xc8 - 163 437 194 438 210 440 c 1 - 223 398 296 229 342 112 c 0 - 343 111 344 111 345 111 c 0 - 346 111 347 112 348 114 c 0 - 386 215 407 263 445 361 c 0 - 457 391 472 440 472 440 c 1xa8 - 496 438 518 437 533 437 c 0xc8 - 559 437 606 438 626 440 c 1xa8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/mu.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/mu.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/mu.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/mu.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: mu -Encoding: 181 181 114 -Width: 528 -Flags: W -HStem: -222 21G<123 134> -9 71<163 244 401 459> 407 20G<110 121 347 357> -VStem: 93 75<244 413> 93 42<106 292> 329 75<244 413> -LayerCount: 2 -Fore -SplineSet -141 218 m 0xf4 - 141 141 155 62 190 62 c 0 - 255 62 305 152 329 222 c 1 - 329 245 329 269 329 291 c 0 - 329 304 330 370 329 407 c 1 - 334 415 341 427 353 427 c 0 - 363 427 404 404 404 391 c 0 - 404 373 396 327 382 240 c 0 - 380 230 372 190 372 190 c 1 - 372 121 395 64 440 64 c 0 - 465 64 483 85 490 94 c 1 - 493 94 496 90 499 85 c 0 - 501 81 502 77 502 74 c 0 - 489 31 450 -4 411 -4 c 0 - 364 -3 350 113 348 139 c 1 - 319 71 264 -9 196 -9 c 0 - 155 -9 140 70 135 99 c 1xec - 137 75 130 -87 151 -202 c 1 - 146 -210 140 -222 128 -222 c 0 - 118 -222 76 -199 76 -186 c 0 - 76 -168 85 97 97 199 c 1 - 97 222 93 269 93 291 c 0 - 93 304 94 370 93 407 c 1 - 98 415 104 427 116 427 c 0 - 126 427 168 404 168 391 c 0 - 168 373 165 327 146 240 c 0 - 145 234 141 218 141 218 c 0xf4 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/multiply.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/multiply.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/multiply.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/multiply.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: multiply -Encoding: 215 215 148 -Width: 453 -Flags: W -HStem: 399 20G<73 79 375 381> -LayerCount: 2 -Fore -SplineSet -194 241 m 1 - 54 382 l 1 - 54 396 68 419 77 419 c 0 - 80 419 82 419 84 417 c 2 - 84 417 227 278 229 276 c 9 - 371 417 l 2 - 372 418 374 419 377 419 c 0 - 386 419 398 390 398 380 c 1 - 398 380 265 247 262 244 c 1 - 263 243 398 103 398 103 c 1 - 398 88 388 63 377 63 c 0 - 375 63 371 64 370 65 c 2 - 370 65 228 208 227 209 c 1 - 225 207 81 64 81 64 c 2 - 80 63 77 62 75 62 c 0 - 66 62 54 93 54 103 c 1 - 54 103 190 237 194 241 c 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" multiply.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/multiply.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/multiply.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/multiply.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/multiply.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: multiply.sc -Encoding: 65652 -1 804 -Width: 400 -VWidth: 0 -Flags: W -HStem: 173 69<179 202> -VStem: 166 70<205 230> -LayerCount: 2 -Fore -SplineSet -86 64 m 0 - 79 64 59 91 59 101 c 1 - 165 204 l 2 - 166 205 166 206 166 207 c 0 - 166 209 165 211 164 212 c 1 - 62 315 l 1 - 62 329 85 351 91 351 c 0 - 93 351 94 349 96 347 c 2 - 198 244 l 2 - 199 243 201 242 202 242 c 0 - 204 243 l 1 - 307 346 l 2 - 309 348 310 349 312 349 c 0 - 319 349 340 322 340 312 c 1 - 237 210 l 2 - 236 209 236 208 236 207 c 0 - 236 205 l 2 - 339 103 l 1 - 339 88 323 65 315 65 c 0 - 311 65 310 66 308 68 c 2 - 205 171 l 2 - 204 172 202 173 201 173 c 0 - 199 173 198 172 197 171 c 2 - 91 67 l 2 - 89 65 88 64 86 64 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: nacute -Encoding: 324 324 257 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 547 -2 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" nacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Nacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Nacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Nacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Nacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Nacute -Encoding: 323 323 256 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 643 0 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: nacute.sc -Encoding: 65697 -1 849 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 567 18 2 -Refer: 758 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/napostrophe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/napostrophe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/napostrophe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/napostrophe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: napostrophe -Encoding: 329 329 950 -Width: 519 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 222 0 2 -Refer: 77 110 N 1 0 0 1 2 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ncaron -Encoding: 328 328 261 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 529 2 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ncaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ncaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ncaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ncaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ncaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ncaron -Encoding: 327 327 260 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 45 78 N 1 0 0 1 0 0 3 -Refer: 474 -1 N 1 0 0 1 235 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ncaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ncaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ncaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ncaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ncaron.sc -Encoding: 65699 -1 851 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 521 21 2 -Refer: 758 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/n.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/n.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/n.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/n.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: n -Encoding: 110 110 77 -Width: 519 -Flags: W -HStem: -3 28<33 96 183 246 297 360 446 510> 363 25<32 92> 371 57<250 334> -VStem: 102 75<32 339> 366 75<32 339> -LayerCount: 2 -Fore -SplineSet -315 428 m 0xb8 - 420 428 441 363 441 221 c 2 - 441 113 l 2 - 441 84 441 57 446 41 c 0 - 449 30 495 25 507 25 c 1 - 511 20 512 2 507 -3 c 1 - 467 -1 441 2 403 2 c 0 - 365 2 339 -1 299 -3 c 1 - 294 2 295 20 299 25 c 1 - 311 25 358 30 361 41 c 0 - 366 57 366 84 366 113 c 2 - 366 211 l 2 - 366 332 346 371 270 371 c 0xb8 - 234 371 177 326 177 317 c 2 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 231 25 243 25 c 1 - 247 20 248 2 243 -3 c 1 - 203 -1 177 2 139 2 c 0 - 101 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 291 l 2 - 102 304 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1xd8 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 178 366 178 358 c 0 - 178 357 178 354 180 354 c 0 - 181 354 182 355 183 356 c 0 - 203 377 268 428 315 428 c 0xb8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" n.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_N.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_N.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_N.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_N.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: N -Encoding: 78 78 45 -Width: 757 -Flags: W -HStem: -3 28<38 109 188 257> 619 28<38 112 510 579 659 730> -VStem: 126 45<46 555> 597 45<162 599> -LayerCount: 2 -Fore -SplineSet -140 645 m 0 - 169 645 200 645 214 646 c 1 - 264 568 489 313 597 162 c 1 - 597 219 l 0 - 597 532 l 2 - 597 567 597 584 587 600 c 0 - 581 610 529 619 513 619 c 1 - 508 626 509 641 511 647 c 1 - 550 645 580 643 623 643 c 0 - 668 643 683 645 728 647 c 1 - 731 642 733 630 728 619 c 1 - 716 619 658 612 651 600 c 0 - 642 585 642 570 642 533 c 2 - 642 136 l 2 - 642 79 642 52 644 1 c 1 - 643 -4 634 -5 631 -5 c 0 - 626 -5 611 1 597 18 c 2 - 171 556 l 1 - 171 112 l 2 - 171 77 171 61 181 45 c 0 - 187 35 238 25 254 25 c 1 - 259 18 258 3 256 -3 c 1 - 217 -1 188 2 145 2 c 0 - 100 2 85 -1 40 -3 c 1 - 37 2 35 14 40 25 c 1 - 52 25 109 33 116 45 c 0 - 125 60 126 74 126 111 c 2 - 126 535 l 2 - 126 572 125 587 116 602 c 0 - 109 614 52 621 40 621 c 1 - 35 632 37 644 40 649 c 1 - 85 647 108 645 140 645 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: nine -Encoding: 57 57 24 -Width: 532 -Flags: W -HStem: -6 28<98 132> 240 48<208 331> 600 32<215 307> -VStem: 72 83<348 520> 377 84<320 509> -LayerCount: 2 -Fore -SplineSet -373 327 m 1 - 376 348 377 371 377 394 c 0 - 377 482 340 600 262 600 c 0 - 200 600 155 534 155 446 c 0 - 155 363 189 288 277 288 c 0 - 305 288 341 292 373 327 c 1 -94 22 m 1 - 176 48 321 111 365 284 c 1 - 331 256 283 240 250 240 c 0 - 113 240 72 358 72 428 c 0 - 72 537 159 632 270 632 c 0 - 388 632 461 516 461 411 c 0 - 461 311 429 219 367 152 c 0 - 298 76 187 15 105 -6 c 1 - 96 -6 94 16 94 22 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" nine.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" nine.onum -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: nine.onum -Encoding: 65562 -1 457 -Width: 446 -Flags: W -HStem: 63 48<165 275> 403 38<171 272> -VStem: 38 88<155 338> 327 88<147 328> -LayerCount: 2 -Fore -SplineSet -224 441 m 0 - 326 441 415 346 415 237 c 0 - 415 31 226 -118 78 -186 c 1 - 68 -183 60 -168 60 -158 c 1 - 159 -109 256 -17 301 103 c 1 - 278 83 241 63 203 63 c 0 - 99 63 38 151 38 247 c 0 - 38 356 120 441 224 441 c 0 -216 403 m 0 - 172 403 126 354 126 266 c 0 - 126 183 146 111 224 111 c 0 - 275 111 303 136 315 148 c 1 - 323 179 327 212 327 246 c 0 - 327 334 287 403 216 403 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/nine.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/nine.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: nine.prop -Encoding: 65760 -1 931 -Width: 481 -Flags: HW -LayerCount: 2 -Fore -Refer: 24 57 N 1 0 0 1 -27 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/notelement.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/notelement.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/notelement.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/notelement.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: notelement -Encoding: 8713 8713 420 -Width: 482 -Flags: W -HStem: 10 46<199 430> 187 46<106 215 291 386> 365 46<170 312 389 431> -VStem: 48 59<129 296> -LayerCount: 2 -Fore -SplineSet -394 211 m 0 - 394 185 386 188 385 187 c 1 - 266 187 l 1 - 198 62 l 1 - 209 58 220 56 233 56 c 2 - 417 56 l 1 - 417 56 432 53 432 19 c 0 - 432 10 425 10 425 10 c 1 - 235 10 l 2 - 213 10 193 14 174 21 c 1 - 150 -22 l 1 - 150 -22 150 -24 146 -24 c 0 - 143 -24 127 -21 114 -5 c 0 - 110 -1 113 2 113 2 c 1 - 134 41 l 1 - 81 77 48 140 48 211 c 0 - 48 317 120 411 226 411 c 2 - 338 411 l 1 - 363 456 l 1 - 363 456 363 459 367 459 c 0 - 379 459 389 450 397 441 c 0 - 402 436 400 432 400 432 c 1 - 389 411 l 1 - 425 411 l 1 - 425 411 432 411 432 399 c 0 - 432 369 417 365 417 365 c 1 - 364 365 l 1 - 291 232 l 1 - 386 232 l 1 - 386 231 394 228 394 211 c 0 -160 87 m 1 - 215 187 l 1 - 111 187 l 2 - 110 187 106 186 106 184 c 0 - 106 178 120 124 160 87 c 1 -240 232 m 1 - 312 365 l 1 - 226 365 l 2 - 164 365 117 298 106 237 c 0 - 106 234 108 232 111 232 c 2 - 240 232 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/notequal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/notequal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/notequal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/notequal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: notequal -Encoding: 8800 8800 427 -Width: 564 -Flags: W -HStem: 114 55<63 199 280 505> 253 55<63 276 358 505> -LayerCount: 2 -Fore -SplineSet -358 308 m 1 - 503 308 l 2 - 507 308 511 310 511 303 c 0 - 511 294 507 280 501 259 c 0 - 499 253 495 253 495 253 c 1 - 327 253 l 1 - 280 169 l 1 - 503 169 l 2 - 507 169 511 171 511 164 c 0 - 511 155 507 141 501 120 c 0 - 499 114 495 114 495 114 c 1 - 250 114 l 1 - 194 13 l 1 - 194 13 194 11 190 11 c 0 - 187 11 170 14 157 30 c 0 - 153 34 156 37 156 37 c 1 - 199 114 l 1 - 61 114 l 1 - 61 114 54 114 54 124 c 0 - 54 128 55 141 62 164 c 0 - 64 170 69 169 69 169 c 1 - 229 169 l 1 - 276 253 l 1 - 61 253 l 1 - 61 253 54 253 54 263 c 0 - 54 267 55 280 62 303 c 0 - 64 309 69 308 69 308 c 1 - 306 308 l 1 - 355 396 l 1 - 355 396 355 399 359 399 c 0 - 365 399 378 397 391 382 c 0 - 396 377 394 372 394 372 c 1 - 358 308 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/n.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/n.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/n.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/n.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: n.sc -Encoding: 65606 -1 758 -Width: 583 -Flags: W -HStem: -3 28<43 101 156 214> 413 28<43 101 376 433 490 548> -VStem: 107 43<39 361> 441 43<135 400> -LayerCount: 2 -Fore -SplineSet -125 438 m 0 - 146 438 170 439 180 440 c 1 - 214 387 364 225 441 135 c 1 - 441 355 l 2 - 441 378 440 389 433 400 c 0 - 429 407 390 413 379 413 c 1 - 375 419 376 436 378 441 c 1 - 406 439 432 438 463 438 c 0 - 495 438 515 439 547 441 c 1 - 550 437 551 423 547 413 c 1 - 539 413 495 408 490 400 c 0 - 484 390 484 380 484 355 c 2 - 484 91 l 2 - 484 53 484 33 486 -1 c 1 - 484 -4 473 -5 471 -5 c 0 - 465 -5 458 2 450 11 c 2 - 150 361 l 1 - 150 83 l 2 - 150 60 149 49 156 38 c 0 - 160 31 201 25 212 25 c 1 - 216 19 215 2 213 -3 c 1 - 185 -1 158 1 127 1 c 0 - 95 1 77 -1 45 -3 c 1 - 42 1 41 15 45 25 c 1 - 53 25 96 30 101 38 c 0 - 107 48 107 58 107 82 c 2 - 107 357 l 2 - 107 381 107 391 101 401 c 0 - 96 409 53 415 45 415 c 1 - 41 425 42 439 45 443 c 1 - 78 441 102 438 125 438 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ntilde -Encoding: 241 241 174 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 500 0 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ntilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ntilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ntilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ntilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ntilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ntilde -Encoding: 209 209 142 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 603 -7 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ntilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ntilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ntilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ntilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ntilde.sc -Encoding: 65646 -1 798 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 502 20 2 -Refer: 758 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/numbersign.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/numbersign.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/numbersign.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/numbersign.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: numbersign -Encoding: 35 35 3 -Width: 468 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: 174 48<58 383> 360 48<84 410> -LayerCount: 2 -Fore -SplineSet -404 360 m 1 - 249 360 249 360 83 360 c 1 - 71 360 78 404 91 408 c 9 - 410 408 l 17 - 424 408 417 366 404 360 c 1 -377 174 m 1 - 222 174 221 174 55 174 c 1 - 43 174 52 218 65 222 c 9 - 383 222 l 17 - 397 222 390 180 377 174 c 1 -365 516 m 1 - 295 75 l 2 - 294 71 286 62 271 62 c 0 - 261 62 260 66 260 66 c 1 - 331 506 l 1 - 334 515 333 519 352 519 c 0 - 361 519 362 518 365 516 c 1 -208 516 m 1 - 136 75 l 2 - 135 71 129 62 114 62 c 0 - 104 62 103 66 103 66 c 1 - 173 506 l 1 - 176 515 176 519 195 519 c 0 - 204 519 205 518 208 516 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oacute -Encoding: 243 243 176 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 521 -4 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" oacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oacute -Encoding: 211 211 144 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 646 0 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oacute.sc -Encoding: 65648 -1 800 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 518 21 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: obreve -Encoding: 335 335 267 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 499 0 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" obreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Obreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Obreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Obreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Obreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Obreve -Encoding: 334 334 266 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 613 -3 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/obreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/obreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/obreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/obreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: obreve.sc -Encoding: 65702 -1 854 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 529 24 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ocircumflex -Encoding: 244 244 177 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 505 -5 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ocircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ocircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ocircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ocircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ocircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ocircumflex -Encoding: 212 212 145 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 616 -1 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ocircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ocircumflex.sc -Encoding: 65649 -1 801 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 538 49 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: odieresis -Encoding: 246 246 179 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 493 2 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" odieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Odieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Odieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Odieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Odieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Odieresis -Encoding: 214 214 147 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 46 79 N 1 0 0 1 0 0 3 -Refer: 473 -1 N 1 0 0 1 200 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/odieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/odieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/odieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/odieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: odieresis.sc -Encoding: 65651 -1 803 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 528 26 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oe.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oe.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oe.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oe.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: oe -Encoding: 339 339 271 -Width: 759 -Flags: W -HStem: -8 62<527 653> -7 32<209 313> 242 36<453 634> 396 32<185 290 514 592> -VStem: 40 84<118 306> 373 75<140 238> 635 83<279 360> -LayerCount: 2 -Fore -SplineSet -555 393 m 0x3e - 473 393 451 278 453 278 c 0 - 462 278 602 278 612 278 c 0 - 624 278 634 283 635 301 c 0 - 636 324 615 393 555 393 c 0x3e -237 396 m 0 - 154 396 124 312 124 228 c 0 - 124 133 172 25 260 25 c 0x7e - 343 25 373 110 373 193 c 0 - 373 288 324 396 237 396 c 0 -607 55 m 0xbe - 661 55 702 91 715 106 c 0 - 716 106 723 101 723 93 c 0 - 723 88 720 80 717 75 c 0 - 699 47 650 -8 574 -8 c 0xbe - 504 -8 447 24 413 76 c 1 - 376 25 317 -7 250 -7 c 0x7e - 121 -7 40 86 40 208 c 0 - 40 334 130 429 248 429 c 0 - 328 429 390 394 425 338 c 1 - 464 394 520 428 571 428 c 0 - 688 428 718 334 718 295 c 0 - 718 267 713 250 694 249 c 0 - 667 248 487 243 448 242 c 1 - 448 98 537 55 607 55 c 0xbe -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" oe.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_O_E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_O_E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_O_E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_O_E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,77 +0,0 @@ -StartChar: OE -Encoding: 338 338 270 -Width: 993 -Flags: W -HStem: -7 30<307 484> 0 33<628 845> 305 36<621 794> 398 20G<833 840> 609 32<625 844> 618 33<277 468> -VStem: 48 97<207 437> 536 85<65 303 341 563> 822 31<225 283 363 418> 891 31<511 558> -LayerCount: 2 -Back -SplineSet -349.609375 618.1640625 m 0 - 321.2890625 618.1640625 295.491210938 612.711914062 272.216796875 601.806640625 c 0 - 248.942382812 590.901367188 229.573242188 576.497070312 214.111328125 558.59375 c 0 - 198.649414062 540.690429688 185.546875 519.694335938 174.8046875 495.60546875 c 0 - 164.0625 471.516601562 156.331054688 446.614257812 151.611328125 420.8984375 c 0 - 146.891601562 395.182617188 144.53125 368.815429688 144.53125 341.796875 c 0 - 144.53125 303.385742188 149.821289062 265.461914062 160.400390625 228.02734375 c 0 - 170.979492188 190.592773438 185.872070312 156.575195312 205.078125 125.9765625 c 0 - 224.284179688 95.3779296875 249.104492188 70.6376953125 279.541015625 51.7578125 c 0 - 309.977539062 32.8779296875 343.424804688 23.4375 379.8828125 23.4375 c 1024 -364.2578125 -9.765625 m 0 - 321.614257812 -9.765625 281.005859375 -1.5458984375 242.431640625 14.892578125 c 0 - 203.857421875 31.3310546875 170.247070312 53.8740234375 141.6015625 82.51953125 c 0 - 112.956054688 111.165039062 90.1689453125 146.159179688 73.2421875 187.5 c 0 - 56.3154296875 228.840820312 47.8515625 273.112304688 47.8515625 320.3125 c 0 - 47.8515625 365.234375 56.3154296875 408.122070312 73.2421875 448.974609375 c 0 - 90.1689453125 489.827148438 112.874023438 524.983398438 141.357421875 554.443359375 c 0 - 169.840820312 583.903320312 203.532226562 607.421875 242.431640625 625 c 0 - 281.331054688 642.578125 321.940429688 651.3671875 364.2578125 651.3671875 c 1024 -EndSplineSet -Fore -SplineSet -580 0 m 8x7bc0 - 535 0 493 -1 465 -3 c 0 - 450 -4 378 -7 354 -7 c 0 - 182 -7 48 137 48 320 c 0 - 48 503 194 651 359 651 c 0xb7c0 - 383 651 516 641 579 642 c 0 - 671 642 788 648 894 648 c 1 - 901 599 913 560 922 516 c 1 - 919 513 911 511 904 511 c 0 - 897 511 892 513 891 518 c 0 - 870 596 829 609 777 609 c 2 - 693 609 l 0 - 681 609 629 609 626 599 c 0 - 621 583 621 555 621 529 c 2 - 621 347 l 2 - 621 342 642 341 663 341 c 2 - 715 341 l 2 - 809 341 805 347 822 411 c 0 - 823 416 830 418 837 418 c 0 - 844 418 851 416 854 413 c 1 - 854 229 l 1 - 852 227 845 225 838 225 c 0 - 831 225 824 227 822 232 c 0 - 807 288 804 291 795 297 c 0 - 784 304 728 305 691 305 c 0 - 664 305 621 305 621 296 c 2 - 621 110 l 2 - 621 95 621 48 627 43 c 0 - 640 33 655 33 696 33 c 2 - 743 33 l 2 - 789 33 839 43 866 60 c 0 - 897 79 912 116 928 158 c 0 - 929 162 934 164 941 164 c 0 - 951 164 963 161 966 158 c 1 - 947 105 920 39 913 -4 c 1 - 807 -4 710 0 580 0 c 8x7bc0 -349 618 m 0 - 207 618 145 473 145 342 c 0 - 145 191 228 23 379 23 c 0 - 433 23 491 28 513 62 c 0 - 536 97 536 130 536 183 c 2 - 536 483 l 2 - 536 517 530 549 502 579 c 0 - 470 613 417 618 349 618 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oe.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oe.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oe.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oe.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oe.sc -Encoding: 65704 -1 856 -Width: 957 -Flags: HW -LayerCount: 2 -Fore -Refer: 749 -1 N 1 0 0 1 495 0 2 -Refer: 759 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/o.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/o.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/o.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/o.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: o -Encoding: 111 111 78 -Width: 497 -Flags: W -HStem: -7 32<209 313> 396 32<185 289> -VStem: 40 84<118 306> 373 84<114 302> -LayerCount: 2 -Fore -SplineSet -237 396 m 0 - 154 396 124 312 124 228 c 0 - 124 133 172 25 260 25 c 0 - 343 25 373 110 373 193 c 0 - 373 288 324 396 237 396 c 0 -248 429 m 0 - 377 429 457 338 457 216 c 0 - 457 90 368 -7 250 -7 c 0 - 121 -7 40 86 40 208 c 0 - 40 334 130 429 248 429 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" o.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_O.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_O.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_O.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_O.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: O -Encoding: 79 79 46 -Width: 730 -Flags: W -HStem: -10 33<305 455> 618 33<274 427> -VStem: 48 97<209 437> 586 97<205 433> -LayerCount: 2 -Fore -SplineSet -350 618 m 0 - 204 618 145 473 145 342 c 0 - 145 191 229 23 380 23 c 0 - 526 23 586 170 586 302 c 0 - 586 453 501 618 350 618 c 0 -364 651 m 0 - 536 651 683 514 683 320 c 0 - 683 137 536 -10 364 -10 c 0 - 192 -10 48 127 48 320 c 0 - 48 503 192 651 364 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: ogonek -Encoding: 731 731 329 -Width: 279 -Flags: HW -LayerCount: 2 -Fore -Refer: 350 808 N 1 0 0 1 376 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ograve -Encoding: 242 242 175 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 497 -4 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ograve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ograve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ograve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ograve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ograve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ograve -Encoding: 210 210 143 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 572 0 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ograve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ograve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ograve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ograve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ograve.sc -Encoding: 65647 -1 799 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 547 21 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: ohorn -Encoding: 417 417 477 -Width: 503 -Flags: W -HStem: -7 32<208 312> 346 26<420 456> 396 32<184 289> -VStem: 39 84<118 306> 372 84<114 304> 441 81<392 461> -LayerCount: 2 -Fore -SplineSet -236 396 m 0xf8 - 153 396 123 312 123 228 c 0 - 123 133 171 25 259 25 c 0 - 342 25 372 110 372 193 c 0 - 372 288 323 396 236 396 c 0xf8 -336 412 m 0 - 369 398 412 372 430 372 c 0 - 444 372 455 375 458 392 c 0 - 461 408 437 421 441 444 c 0 - 444 463 469 473 490 469 c 0 - 500 467 506 465 513 461 c 1 - 520 451 528 435 523 409 c 0xf4 - 513 354 461 346 447 346 c 0 - 442 346 427 346 419 349 c 1 - 440 318 456 266 456 216 c 0 - 456 90 367 -7 249 -7 c 0 - 120 -7 39 86 39 208 c 0 - 39 334 129 429 247 429 c 0 - 280 429 304 426 336 412 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ohorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ohorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ohorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ohorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: Ohorn -Encoding: 416 416 476 -Width: 750 -Flags: W -HStem: -10 33<304 454> 548 30<597 649> 618 33<273 427> -VStem: 47 97<209 437> 585 97<205 434> 654 61<586 644> -LayerCount: 2 -Fore -SplineSet -349 618 m 0xf8 - 203 618 144 473 144 342 c 0 - 144 191 228 23 379 23 c 0 - 525 23 585 170 585 302 c 0 - 585 453 500 618 349 618 c 0xf8 -596 549 m 1 - 649 491 682 412 682 320 c 0xf8 - 682 137 535 -10 363 -10 c 0 - 191 -10 47 127 47 320 c 0 - 47 503 191 651 363 651 c 0 - 416 651 468 637 512 614 c 0 - 546 596 587 578 616 578 c 0 - 640 578 654 591 654 609 c 0 - 654 626 629 635 629 658 c 0 - 629 677 651 691 673 691 c 0 - 683 691 688 691 696 688 c 1 - 705 679 715 664 715 638 c 0xf4 - 715 582 650 548 610 548 c 0 - 609 548 600 548 596 549 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: ohungarumlaut -Encoding: 337 337 269 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 599 -4 2 -Refer: 333 769 N 1 0 0 1 478 -4 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ohungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ohungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ohungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ohungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ohungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ohungarumlaut -Encoding: 336 336 268 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 471 -1 N 1 0 0 1 240 23 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ohungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ohungarumlaut.sc -Encoding: 65703 -1 855 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 612 21 2 -Refer: 333 769 N 1 0 0 1 491 21 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: omacron -Encoding: 333 333 265 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 508 26 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" omacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Omacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Omacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Omacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Omacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Omacron -Encoding: 332 332 264 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 616 27 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/omacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/omacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/omacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/omacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: omacron.sc -Encoding: 65701 -1 853 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 537 35 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onedotenleader.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onedotenleader.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onedotenleader.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onedotenleader.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: onedotenleader -Encoding: 8228 8228 398 -Width: 205 -Flags: W -HStem: -14 113<59 145> -VStem: 47 111<-1 88> -LayerCount: 2 -Fore -SplineSet -47 44 m 0 - 47 75 71 100 102 100 c 0 - 133 100 158 75 158 44 c 0 - 158 13 133 -14 102 -14 c 0 - 71 -14 47 13 47 44 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: one -Encoding: 49 49 16 -Width: 532 -Flags: W -HStem: -3 28<170 235 324 388> 607 20G<313 319> -VStem: 241 77<32 545> -LayerCount: 2 -Fore -SplineSet -241 113 m 2 - 241 508 l 2 - 241 536 235 545 221 545 c 0 - 206 545 168 531 152 525 c 1 - 147 529 143 535 143 542 c 0 - 143 544 142 547 145 548 c 0 - 225 584 311 627 314 627 c 2 - 316 627 l 2 - 322 627 325 616 326 611 c 1 - 326 611 318 577 318 517 c 2 - 318 113 l 2 - 318 84 318 57 323 41 c 0 - 326 30 374 25 386 25 c 1 - 390 20 391 2 386 -3 c 1 - 346 -1 315 2 277 2 c 0 - 239 2 213 -1 173 -3 c 1 - 168 2 169 20 173 25 c 1 - 185 25 232 30 235 41 c 0 - 240 57 241 84 241 113 c 2 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" one.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" one.onum -Substitution2: "'ordn' Ordinals lookup 0-1" one.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onehalf.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onehalf.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onehalf.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onehalf.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: onehalf -Encoding: 189 189 122 -Width: 732 -Flags: W -HStem: -1 54<505 663> 245 21<53 99 183 231> 339 44<493 592> -VStem: 112 61<282 542> 608 63<212 323> -LayerCount: 2 -Fore -SplineSet -556 383 m 0 - 624 383 672 340 672 278 c 0 - 672 246 656 215 627 180 c 0 - 601 149 552 101 505 53 c 1 - 622 53 l 2 - 662 53 675 95 681 105 c 0 - 682 107 683 107 686 108 c 0 - 689 108 696 107 699 103 c 1 - 688 75 677 31 663 -1 c 1 - 437 -1 l 1 - 431 -1 423 7 425 11 c 1 - 462 51 515 98 554 148 c 0 - 586 188 608 230 608 269 c 0 - 608 310 585 339 544 339 c 0 - 500 339 477 312 459 291 c 1 - 455 287 441 303 442 308 c 1 - 464 347 511 383 556 383 c 0 -173 521 m 2 - 173 328 l 2 - 173 308 175 295 180 280 c 0 - 182 273 221 267 229 267 c 1 - 234 262 230 247 229 245 c 1 - 191 246 184 248 146 248 c 0 - 108 248 94 246 56 245 c 1 - 51 248 52 263 56 267 c 1 - 68 267 101 274 104 281 c 0 - 109 294 112 316 112 326 c 2 - 112 508 l 2 - 112 527 106 542 96 542 c 0 - 85 542 69 534 49 527 c 1 - 43 530 38 539 36 545 c 1 - 55 557 85 574 168 623 c 1 - 175 621 181 614 181 607 c 1 - 181 607 173 559 173 521 c 2 -551 619 m 1 - 214 2 l 2 - 211 -4 199 -15 183 -12 c 0 - 173 -10 172 -4 172 -4 c 1 - 513 621 l 1 - 514 623 526 632 543 629 c 0 - 549 628 551 622 551 619 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: one.onum -Encoding: 65554 -1 449 -Width: 300 -Flags: W -HStem: -3 28<53 109 211 268> 347 32<41 89> -VStem: 122 75<36 358> -LayerCount: 2 -Fore -SplineSet -197 342 m 2 - 197 111 l 2 - 197 87 200 65 205 45 c 0 - 208 34 256 25 264 25 c 0 - 267 25 268 17 268 11 c 0 - 268 6 267 0 266 -3 c 1 - 227 -1 197 2 160 2 c 0 - 120 2 96 -1 56 -3 c 1 - 51 2 51 25 56 25 c 0 - 68 25 111 33 115 46 c 0 - 121 66 122 85 122 101 c 2 - 122 326 l 2 - 122 334 122 358 103 358 c 0 - 90 358 47 347 45 347 c 0 - 40 347 37 371 40 379 c 1 - 94 395 157 421 193 432 c 0 - 194 432 196 433 197 433 c 0 - 203 433 203 417 202 412 c 0 - 198 381 197 375 197 342 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: one.ordn -Encoding: 65742 -1 894 -Width: 293 -Flags: W -HStem: 246 27<66 121 193 243> 656 20G<183 188> -VStem: 126 62<289 592> -LayerCount: 2 -Fore -SplineSet -70 572 m 1 - 65 575 59 588 59 593 c 0 - 59 594 59 597 61 598 c 0 - 123 635 182 676 184 676 c 2 - 186 676 l 2 - 191 676 193 662 194 657 c 1 - 194 657 188 636 188 597 c 2 - 188 346 l 2 - 188 325 187 306 192 288 c 0 - 194 281 235 273 240 273 c 0 - 242 273 243 262 243 256 c 0 - 243 252 243 248 242 246 c 1 - 213 248 184 250 155 250 c 0 - 126 250 97 248 68 246 c 1 - 64 250 64 273 68 273 c 0 - 76 273 120 281 122 288 c 0 - 125 301 126 311 126 324 c 2 - 126 550 l 2 - 126 589 123 592 117 592 c 0 - 108 592 82 578 70 572 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/one.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/one.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: one.prop -Encoding: 65752 -1 923 -Width: 315 -Flags: HW -LayerCount: 2 -Fore -Refer: 16 49 N 1 0 0 1 -111 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onequarter.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onequarter.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/onequarter.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/onequarter.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,53 +0,0 @@ -StartChar: onequarter -Encoding: 188 188 121 -Width: 682 -Flags: W -HStem: 104 44<432 543 604 637> 245 21<50 96 180 228> -VStem: 109 61<282 542> 543 58<-3 104 147 298> -LayerCount: 2 -Fore -SplineSet -592 397 m 0 - 598 397 601 391 601 386 c 8 - 601 291 601 233 601 143 c 1 - 608 143 625 143 635 143 c 1 - 644 135 649 118 641 104 c 1 - 627 104 610 104 604 104 c 9 - 604 0 l 1 - 602 -2 588 -3 574 -3 c 0 - 561 -3 548 -2 543 2 c 9 - 543 104 l 1 - 382 104 l 1 - 377 105 373 108 372 119 c 1 - 572 386 l 2 - 576 391 584 397 592 397 c 0 -543 147 m 9 - 543 147 543 289 543 298 c 1 - 503 247 476 204 432 147 c 1 - 439 147 535 147 543 147 c 9 -170 521 m 2 - 170 328 l 2 - 170 308 172 295 177 280 c 0 - 179 273 218 267 226 267 c 1 - 231 262 228 247 227 245 c 1 - 189 246 181 248 143 248 c 0 - 105 248 91 246 53 245 c 1 - 48 248 49 263 53 267 c 1 - 65 267 99 274 102 281 c 0 - 107 294 109 316 109 326 c 2 - 109 508 l 2 - 109 527 103 542 93 542 c 0 - 82 542 66 534 46 527 c 1 - 40 530 35 539 33 545 c 1 - 52 557 82 574 165 623 c 1 - 172 621 178 614 178 607 c 1 - 178 607 170 559 170 521 c 2 -182 -12 m 0 - 172 -10 171 -4 171 -4 c 1 - 512 621 l 1 - 513 623 525 632 542 629 c 0 - 548 628 550 622 550 619 c 1 - 213 2 l 2 - 210 -4 198 -15 182 -12 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ordfeminine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ordfeminine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ordfeminine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ordfeminine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: ordfeminine -Encoding: 170 170 104 -Width: 336 -Flags: W -HStem: 243 36<112 169 239 288> 514 29<123 186> -VStem: 46 56<287 365> 56 55<445 488> 206 52<293 396 412 501> -LayerCount: 2 -Fore -SplineSet -147 279 m 0xe8 - 170 279 206 305 206 312 c 2 - 206 396 l 17 - 187 390 156 381 144 376 c 0 - 120 366 102 352 102 327 c 0 - 102 302 122 279 147 279 c 0xe8 -184 543 m 0 - 222 543 258 503 258 451 c 2 - 258 312 l 2 - 258 293 262 279 278 279 c 0 - 290 279 299 287 301 288 c 1 - 303 288 304 285 304 283 c 0 - 304 279 302 274 300 271 c 1 - 292 263 264 244 249 244 c 0 - 229 244 212 267 208 288 c 1 - 200 280 148 243 125 243 c 0 - 80 243 46 277 46 321 c 0xe8 - 46 348 65 369 80 375 c 0 - 118 389 178 409 198 418 c 0 - 205 421 206 423 206 435 c 2 - 206 453 l 2 - 206 483 185 514 148 514 c 0 - 125 514 115 502 110 476 c 0 - 106 453 96 443 79 443 c 0 - 64 443 56 458 56 472 c 0xd8 - 56 475 58 485 61 488 c 1 - 82 508 134 543 184 543 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ordmasculine.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ordmasculine.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ordmasculine.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ordmasculine.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: ordmasculine -Encoding: 186 186 119 -Width: 378 -Flags: W -HStem: 241 23<160 233> 518 23<146 222> -VStem: 37 67<315 467> 274 67<316 469> -LayerCount: 2 -Fore -SplineSet -183 518 m 0 - 126 518 104 456 104 401 c 0 - 104 337 135 265 199 265 c 0 - 253 265 274 328 274 382 c 0 - 274 445 246 518 183 518 c 0 -191 541 m 0 - 276 541 342 475 342 394 c 0 - 342 313 276 241 191 241 c 0 - 106 241 37 309 37 390 c 0 - 37 473 104 541 191 541 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/o.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/o.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/o.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/o.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: o.sc -Encoding: 65607 -1 759 -Width: 567 -Flags: W -HStem: -9 32<232 354> 412 32<213 335> -VStem: 47 84<131 311> 437 84<125 305> -LayerCount: 2 -Fore -SplineSet -273 412 m 0 - 173 412 131 317 131 231 c 0 - 131 131 191 23 294 23 c 0 - 394 23 437 118 437 205 c 0 - 437 305 376 412 273 412 c 0 -47 218 m 0 - 47 343 154 444 283 444 c 0 - 412 444 521 351 521 218 c 0 - 521 93 412 -9 283 -9 c 0 - 154 -9 47 85 47 218 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: oslashacute -Encoding: 511 511 503 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 523 -4 2 -Refer: 181 248 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" oslashacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oslashacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oslashacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oslashacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oslashacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Oslashacute -Encoding: 510 510 502 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 658 0 2 -Refer: 149 216 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslashacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: oslashacute.sc -Encoding: 65737 -1 889 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 563 20 2 -Refer: 805 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: oslash -Encoding: 248 248 181 -Width: 497 -Flags: W -HStem: -8 21G<122 138> -7 32<210 314> 396 32<186 290> 407 20G<351 367> -VStem: 41 84<118 306> 374 84<114 302> -LayerCount: 2 -Fore -SplineSet -126 -8 m 17x9c - 118 -4 97 7 100 13 c 9 - 363 427 l 17 - 370 424 393 413 390 407 c 9 - 126 -8 l 17x9c -EndSplineSet -Refer: 78 111 N 1 0 0 1 1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" oslash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oslash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oslash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Oslash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Oslash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Oslash -Encoding: 216 216 149 -Width: 730 -Flags: W -HStem: -10 33<305 455> 618 33<274 427> 632 20G<539 556> -VStem: 48 97<209 437> 586 97<205 433> -LayerCount: 2 -Fore -SplineSet -552 651 m 17xb8 - 561 649 584 636 580 630 c 9 - 172 -13 l 17 - 163 -10 140 4 144 10 c 9 - 552 651 l 17xb8 -EndSplineSet -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/oslash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/oslash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: oslash.sc -Encoding: 65653 -1 805 -Width: 567 -Flags: W -HStem: -11 21G<131 147> -9 32<232 354> 412 32<213 335> -VStem: 47 84<131 311> 437 84<125 305> -LayerCount: 2 -Fore -SplineSet -395 444 m 17xb8 - 401 443 417 434 414 430 c 9 - 134 -11 l 17 - 128 -9 112 1 115 5 c 9 - 395 444 l 17xb8 -EndSplineSet -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: otilde -Encoding: 245 245 178 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 495 -1 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" otilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Otilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Otilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Otilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Otilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Otilde -Encoding: 213 213 146 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 613 -8 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/otilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/otilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/otilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/otilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: otilde.sc -Encoding: 65650 -1 802 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 525 22 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/paragraph.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/paragraph.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/paragraph.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/paragraph.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: paragraph -Encoding: 182 182 115 -Width: 472 -Flags: W -HStem: -4 26<153 210 363 422> 2 33<262 311> 281 39<259 313> 292 39<354 382> 597 36<259 314> 609 28<361 415> -VStem: 33 226<383 543> 221 38<42 280> 314 39<42 285 331 596> -LayerCount: 2 -Fore -SplineSet -314 325 m 1x2980 - 314 360 314 579 314 592 c 1 - 310 596 296 597 286 597 c 0 - 276 597 265 597 259 591 c 9 - 259 591 259 420 259 320 c 1 - 265 320 310 322 314 325 c 1x2980 -313 285 m 17 - 299 284 275 282 259 281 c 9 - 259 216 259 178 259 113 c 16 - 259 84 259 57 262 41 c 0 - 263 34 282 35 286 35 c 0x6180 - 293 35 311 35 312 41 c 0 - 315 57 314 84 314 113 c 2 - 313 285 l 17 -353 292 m 1x1680 - 353 223 353 182 353 113 c 16 - 353 84 352 57 357 41 c 0 - 360 30 409 22 421 22 c 1 - 423 22 423 -2 421 -4 c 1x9680 - 359 -2 352 2 290 2 c 0x4280 - 245 2 193 -2 154 -4 c 1 - 152 2 151 18 156 22 c 1 - 164 22 213 30 216 41 c 0 - 221 57 221 84 221 113 c 2 - 221 280 l 17x8180 - 96 280 33 390 33 458 c 0 - 33 564 120 637 200 637 c 0 - 258 637 237 633 295 633 c 0x8a80 - 360 633 413 638 413 638 c 1 - 418 633 417 612 412 609 c 1 - 397 609 361 602 356 590 c 0 - 354 583 354 577 354 527 c 0 - 354 467 354 350 354 331 c 1 - 359 330 401 344 401 344 c 1 - 406 344 411 342 411 338 c 0 - 410 328 390 305 383 302 c 0 - 372 297 361 293 353 292 c 1x1680 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenleft -Encoding: 40 40 8 -Width: 255 -Flags: W -VStem: 36 71<120 437> -LayerCount: 2 -Fore -SplineSet -107 278 m 0 - 107 125 158 -46 250 -127 c 1 - 251 -127 238 -142 231 -146 c 1 - 117 -56 36 89 36 278 c 0 - 36 468 117 612 231 702 c 1 - 238 698 251 683 250 683 c 1 - 158 602 107 432 107 278 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" parenleft.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenleft.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenleft.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenleft.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenleft.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenleft.sc -Encoding: 65583 -1 735 -Width: 252 -VWidth: 1039 -Flags: W -VStem: 53 63<84 332> -LayerCount: 2 -Fore -SplineSet -116 208 m 0 - 116 103 151 -14 213 -70 c 1 - 214 -70 205 -81 200 -84 c 1 - 114 -22 53 78 53 208 c 0 - 53 339 114 437 200 499 c 1 - 205 496 214 485 213 485 c 1 - 151 429 116 313 116 208 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenright -Encoding: 41 41 9 -Width: 255 -Flags: W -VStem: 148 71<120 437> -LayerCount: 2 -Fore -SplineSet -220 278 m 0 - 220 89 138 -56 24 -146 c 1 - 17 -142 5 -127 6 -127 c 1 - 98 -46 148 125 148 278 c 0 - 148 432 98 602 6 683 c 1 - 5 683 17 698 24 702 c 1 - 138 612 220 468 220 278 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" parenright.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenright.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenright.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/parenright.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/parenright.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: parenright.sc -Encoding: 65584 -1 736 -Width: 252 -VWidth: 1039 -Flags: W -VStem: 137 63<85 333> -LayerCount: 2 -Fore -SplineSet -137 209 m 0 - 137 314 102 430 40 486 c 1 - 39 486 48 497 52 500 c 1 - 139 438 200 340 200 209 c 0 - 200 79 139 -21 52 -83 c 1 - 48 -80 39 -69 40 -69 c 1 - 102 -13 137 104 137 209 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/partialdiff.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/partialdiff.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/partialdiff.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/partialdiff.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: partialdiff -Encoding: 8706 8706 416 -Width: 470 -Flags: W -HStem: 0 31<188 281> 322 36<169 285> 578 41<113 250> -VStem: 49 72<98 263> 340 75<135 440> -LayerCount: 2 -Fore -SplineSet -340 212 m 0 - 340 272 290 322 217 322 c 0 - 154 322 121 251 121 194 c 0 - 121 119 157 31 241 31 c 0 - 297 31 340 101 340 212 c 0 -202 0 m 0 - 106 0 49 81 49 170 c 0 - 49 270 113 358 230 358 c 0 - 273 358 323 336 337 331 c 0 - 342 329 346 338 345 346 c 1 - 345 403 317 518 255 556 c 0 - 227 573 199 578 174 578 c 0 - 138 578 105 564 74 539 c 1 - 72 542 65 547 65 555 c 0 - 65 571 111 619 216 619 c 0 - 343 619 415 458 415 288 c 0 - 415 145 375 0 202 0 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/percent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/percent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/percent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/percent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: percent -Encoding: 37 37 5 -Width: 651 -Flags: W -HStem: -7 24<441 509> 282 23<428 496> 317 24<159 226> 606 23<146 213> -VStem: 39 62<398 558> 265 64<390 557> 320 62<74 232> 546 64<65 233> -LayerCount: 2 -Fore -SplineSet -182 606 m 0xfd - 124 606 102 542 102 484 c 0 - 102 417 142 342 191 342 c 0 - 248 342 265 408 265 465 c 0 - 265 530 234 606 182 606 c 0xfd -186 630 m 0 - 271 630 329 558 329 473 c 0 - 329 395 275 317 186 317 c 0 - 105 317 39 387 39 473 c 0 - 39 560 99 630 186 630 c 0 -464 282 m 0 - 406 282 383 218 383 160 c 0xfb - 383 93 425 18 474 18 c 0 - 531 18 546 84 546 141 c 0 - 546 206 516 282 464 282 c 0 -468 306 m 0 - 553 306 610 233 610 148 c 0 - 610 70 557 -7 467 -7 c 0 - 386 -7 320 62 320 148 c 0 - 320 235 381 306 468 306 c 0 -584 609 m 1 - 112 0 l 2 - 108 -5 92 -12 80 -12 c 0 - 66 -12 63 -3 62 -1 c 1 - 533 609 l 2 - 538 615 547 621 553 621 c 0 - 581 621 575 618 584 609 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/periodcentered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/periodcentered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/periodcentered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/periodcentered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: periodcentered -Encoding: 183 183 116 -Width: 218 -Flags: W -HStem: 200 114<66 153> -VStem: 53 113<213 302> -LayerCount: 2 -Fore -SplineSet -53 258 m 0 - 53 289 78 314 109 314 c 0 - 140 314 166 289 166 258 c 0 - 166 227 140 200 109 200 c 0 - 78 200 53 227 53 258 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/period.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/period.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/period.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/period.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: period -Encoding: 46 46 936 -Width: 202 -Flags: W -HStem: -11 107<59 143> -VStem: 47 107<1 85> -LayerCount: 2 -Fore -SplineSet -47 44 m 0 - 47 73 73 97 102 97 c 0 - 131 97 154 73 154 44 c 0 - 154 15 131 -11 102 -11 c 0 - 73 -11 47 15 47 44 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" period.sc -Substitution2: "'c2sc' Capitals to Small Capitals in Latin lookup 0 subtable" period.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/period.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/period.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/period.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/period.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: period.sc -Encoding: 65762 -1 938 -Width: 212 -VWidth: 0 -Flags: W -HStem: -10 95<67 145> -VStem: 59 95<-1 77> -LayerCount: 2 -Fore -SplineSet -59 38 m 0 - 59 63 81 85 106 85 c 0 - 131 85 153 63 153 38 c 0 - 153 13 131 -10 106 -10 c 0 - 81 -10 59 13 59 38 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/perthousand.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/perthousand.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/perthousand.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/perthousand.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: perthousand -Encoding: 8240 8240 401 -Width: 973 -Flags: W -HStem: -7 24<445 513 771 838> 282 23<432 500 758 826> 317 24<163 230> 606 23<150 217> -VStem: 43 62<398 558> 269 64<389 557> 324 62<74 232> 550 65<68 233> 651 62<74 233> 877 64<65 233> -LayerCount: 2 -Fore -SplineSet -794 282 m 0xf9c0 - 736 282 713 218 713 160 c 0 - 713 93 755 18 804 18 c 0 - 861 18 877 84 877 141 c 0 - 877 206 846 282 794 282 c 0xf9c0 -798 306 m 0 - 883 306 941 233 941 148 c 0 - 941 70 888 -7 798 -7 c 0 - 717 -7 651 62 651 148 c 0 - 651 235 711 306 798 306 c 0 -186 606 m 0 - 128 606 104 542 104 484 c 0 - 104 417 146 342 195 342 c 0 - 252 342 269 408 269 465 c 0xfdc0 - 269 530 238 606 186 606 c 0 -189 630 m 0 - 274 630 333 558 333 473 c 0 - 333 395 279 317 189 317 c 0 - 108 317 43 387 43 473 c 0 - 43 560 102 630 189 630 c 0 -468 282 m 0 - 410 282 387 218 387 160 c 0xfbc0 - 387 93 429 18 478 18 c 0 - 535 18 550 84 550 141 c 0 - 550 206 520 282 468 282 c 0 -472 306 m 0 - 557 306 615 233 615 148 c 0 - 615 70 561 -7 471 -7 c 0 - 390 -7 324 62 324 148 c 0 - 324 235 385 306 472 306 c 0 -588 609 m 1 - 116 0 l 2 - 112 -5 96 -12 84 -12 c 0 - 70 -12 67 -3 66 -1 c 1 - 537 609 l 2 - 542 615 551 621 557 621 c 0 - 585 621 579 618 588 609 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/p.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/p.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/p.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/p.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: p -Encoding: 112 112 79 -Width: 498 -Flags: W -HStem: -221 28<15 79 165 228> -8 34<192 306> 363 25<14 74> 370 58<216 310> -VStem: 84 75<-186 3 51 354> 378 82<136 294> -LayerCount: 2 -Fore -SplineSet -284 428 m 0xdc - 405 428 460 311 460 227 c 0 - 460 101 342 -8 232 -8 c 0 - 207 -8 179 -2 163 3 c 1 - 163 3 159 -2 159 -10 c 2 - 159 -104 l 2 - 159 -133 159 -161 164 -177 c 0 - 167 -188 214 -192 226 -192 c 1 - 230 -197 231 -216 226 -221 c 1 - 186 -219 159 -216 121 -216 c 0 - 83 -216 58 -219 18 -221 c 1 - 13 -216 14 -197 18 -192 c 1 - 30 -192 76 -188 79 -177 c 0 - 84 -161 84 -133 84 -104 c 2 - 84 295 l 2 - 84 308 84 334 79 346 c 0 - 72 363 23 363 16 363 c 1 - 14 365 12 384 16 389 c 1xec - 66 396 117 409 156 430 c 1 - 161 430 166 419 166 414 c 1 - 165 407 159 382 159 374 c 0 - 159 373 159 370 161 370 c 0 - 162 370 163 371 164 372 c 0 - 188 393 245 428 284 428 c 0xdc -242 370 m 0xdc - 202 370 159 346 159 332 c 2 - 159 98 l 2 - 159 47 216 26 250 26 c 0 - 331 26 378 111 378 190 c 0 - 378 306 316 370 242 370 c 0xdc -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" p.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_P.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_P.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_P.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_P.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: P -Encoding: 80 80 47 -Width: 535 -Flags: W -HStem: -3 28<41 111 207 276> 271 27<246 338> 612 31<43 113 206 332> -VStem: 116 85<32 602> 416 90<375 542> -LayerCount: 2 -Fore -SplineSet -506 468 m 0 - 506 349 419 271 291 271 c 0 - 280 271 259 274 249 279 c 0 - 246 281 235 289 235 301 c 0 - 235 303 236 307 240 306 c 1 - 251 303 262 299 277 299 c 0 - 355 299 416 353 416 451 c 0 - 416 548 363 612 255 612 c 0 - 243 612 210 612 206 603 c 0 - 201 591 201 558 201 529 c 2 - 201 113 l 2 - 201 84 201 57 206 41 c 0 - 209 30 261 25 273 25 c 1 - 277 20 278 2 273 -3 c 1 - 233 -1 197 2 159 2 c 0 - 121 2 84 -1 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 108 30 111 41 c 0 - 116 57 116 84 116 113 c 2 - 116 530 l 2 - 116 559 116 587 111 603 c 0 - 108 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 121 642 159 642 c 0 - 197 642 240 644 298 644 c 0 - 402 644 506 581 506 468 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/plus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/plus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/plus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/plus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: plus -Encoding: 43 43 11 -Width: 529 -Flags: W -HStem: 213 55<35 236 291 495> -VStem: 236 55<7 213 268 470> -LayerCount: 2 -Fore -SplineSet -236 463 m 1 - 252 469 271 474 278 474 c 0 - 288 474 291 468 291 468 c 1 - 291 268 l 25 - 369 268 412 268 490 268 c 16 - 494 268 499 264 499 256 c 0 - 499 240 491 221 483 213 c 1 - 291 213 l 25 - 291 213 291 91 291 16 c 1 - 279 7 259 5 249 5 c 0 - 242 5 236 10 236 14 c 2 - 236 213 l 25 - 36 213 l 1 - 36 213 30 213 30 223 c 0 - 30 227 35 260 45 268 c 1 - 236 268 l 9 - 236 268 236 444 236 463 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/plusminus.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/plusminus.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/plusminus.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/plusminus.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,35 +0,0 @@ -StartChar: plusminus -Encoding: 177 177 110 -Width: 535 -Flags: W -HStem: 6 55<38 498> 298 55<38 239 294 498> -VStem: 239 55<92 298 353 555> -LayerCount: 2 -Fore -SplineSet -48 61 m 1 - 126 61 447 61 493 61 c 0 - 497 61 502 57 502 49 c 0 - 502 33 494 14 486 6 c 1 - 39 6 l 1 - 39 6 33 6 33 16 c 0 - 33 20 38 53 48 61 c 1 -48 353 m 1 - 239 353 l 9 - 239 353 239 529 239 548 c 1 - 255 554 274 559 281 559 c 0 - 291 559 294 553 294 553 c 1 - 294 353 l 25 - 372 353 415 353 493 353 c 16 - 497 353 502 349 502 341 c 0 - 502 325 494 306 486 298 c 1 - 294 298 l 25 - 294 298 294 176 294 101 c 1 - 282 92 262 90 252 90 c 0 - 245 90 239 95 239 99 c 2 - 239 298 l 25 - 39 298 l 1 - 39 298 33 298 33 308 c 0 - 33 312 38 345 48 353 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/propersubset.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/propersubset.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/propersubset.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/propersubset.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: propersubset -Encoding: 8834 8834 430 -Width: 496 -Flags: W -HStem: 0 55<176 432> 346 57<173 432> -VStem: 51 64<119 283> -LayerCount: 2 -Fore -SplineSet -433 55 m 1 - 433 55 439 56 439 47 c 0 - 439 39 437 23 432 7 c 0 - 430 1 425 0 425 0 c 1 - 243 0 l 2 - 134 0 51 92 51 201 c 0 - 51 307 127 402 233 402 c 0 - 311 402 433 401 433 401 c 1 - 433 401 439 402 439 393 c 0 - 439 385 437 369 432 353 c 0 - 430 347 425 346 425 346 c 1 - 233 346 l 2 - 160 346 115 274 115 201 c 0 - 115 126 166 55 241 55 c 2 - 433 55 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/proportional.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/proportional.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/proportional.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/proportional.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: proportional -Encoding: 8733 8733 425 -Width: 698 -Flags: W -HStem: 40 55<173 296 590 641> 354 59<170 288 574 633> -VStem: 53 68<149 302> -LayerCount: 2 -Fore -SplineSet -121 224 m 0 - 121 156 169 95 237 95 c 0 - 301 95 353 168 395 213 c 0 - 396 214 396 214 395 215 c 0 - 363 253 298 354 230 354 c 0 - 164 354 121 290 121 224 c 0 -624 42 m 1 - 496 42 430 176 419 176 c 2 - 418 176 l 1 - 366 114 308 40 211 40 c 0 - 118 40 53 125 53 218 c 0 - 53 324 136 412 242 412 c 0 - 337 412 406 326 446 279 c 0 - 447 277 451 276 452 278 c 0 - 489 324 546 394 625 409 c 1 - 627 409 l 2 - 633 409 635 403 635 394 c 0 - 635 379 629 358 629 358 c 1 - 569 358 510 279 476 240 c 0 - 475 239 474 238 475 237 c 0 - 520 180 576 98 643 98 c 0 - 649 98 650 94 650 89 c 0 - 650 74 633 45 624 42 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/p.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/p.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/p.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/p.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: p.sc -Encoding: 65608 -1 760 -Width: 437 -Flags: W -HStem: -3 28<45 100 184 239> 177 31<212 293> 407 30<47 100 165 283> -VStem: 104 76<37 400> 327 78<241 373> -LayerCount: 2 -Fore -SplineSet -405 320 m 0 - 405 230 344 177 247 177 c 0 - 230 177 221 182 215 186 c 0 - 213 188 202 200 202 204 c 0 - 202 208 204 211 205 212 c 1 - 213 210 232 208 242 208 c 0 - 296 208 327 244 327 306 c 0 - 327 368 291 407 217 407 c 0 - 209 407 187 406 184 400 c 0 - 181 392 180 373 180 353 c 2 - 180 83 l 2 - 180 63 181 47 184 36 c 0 - 186 29 228 25 236 25 c 1 - 240 21 240 1 236 -3 c 1 - 206 -1 172 1 143 1 c 0 - 114 1 78 -1 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 116 436 145 436 c 0 - 174 436 206 438 250 438 c 0 - 318 438 405 397 405 320 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Q.alt01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Q.alt01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Q.alt01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Q.alt01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: Q.alt01 -Encoding: 65552 -1 447 -Width: 717 -Flags: W -HStem: -216 62<869 1093> -144 27<1173 1195> 600 52<266 436> -VStem: 46 96<203 440> 574 96<195 435> -LayerCount: 2 -Fore -SplineSet -142 327 m 0 - 142 184 222 37 365 37 c 0 - 500 37 574 177 574 312 c 0 - 574 454 494 600 352 600 c 0 - 217 600 142 462 142 327 c 0 -479 16 m 1 - 549 0 551 0 626 -30 c 0 - 656 -42 855 -154 993 -154 c 0 - 1073 -154 1172 -122 1186 -116 c 1 - 1188 -116 l 2 - 1193 -116 1196 -131 1196 -139 c 0 - 1196 -142 1196 -144 1195 -144 c 0 - 1152 -166 1097 -216 947 -216 c 0 - 839 -216 632 -105 527 -68 c 0 - 437 -36 351 -25 255 8 c 1 - 133 46 46 176 46 320 c 0 - 46 503 186 651 358 651 c 0 - 530 651 670 503 670 320 c 0 - 670 172 584 46 479 16 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: q -Encoding: 113 113 80 -Width: 485 -Flags: W -HStem: -222 28<272 335 422 485> -7 59<190 281> 393 35<202 309> -VStem: 38 82<126 283> 341 75<-187 49 67 368> -LayerCount: 2 -Fore -SplineSet -250 393 m 0 - 158 393 120 289 120 229 c 0 - 120 114 182 52 263 52 c 0 - 302 52 341 76 341 91 c 2 - 341 324 l 2 - 341 366 293 393 250 393 c 0 -279 428 m 0 - 308 428 364 403 396 403 c 0 - 402 403 409 404 415 406 c 1 - 421 406 428 390 428 385 c 1 - 419 365 416 332 416 312 c 2 - 416 -105 l 2 - 416 -134 416 -162 421 -178 c 0 - 424 -189 470 -193 482 -193 c 1 - 486 -198 487 -217 482 -222 c 1 - 442 -220 416 -217 378 -217 c 0 - 340 -217 314 -220 274 -222 c 1 - 269 -217 270 -198 274 -193 c 1 - 286 -193 333 -189 336 -178 c 0 - 341 -162 341 -134 341 -105 c 2 - 341 39 l 2 - 341 44 339 53 334 49 c 0 - 319 36 254 -7 212 -7 c 0 - 100 -7 38 107 38 194 c 0 - 38 328 175 428 279 428 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" q.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Q.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Q.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Q.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Q.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: Q -Encoding: 81 81 48 -Width: 729 -Flags: W -HStem: -133 54<566 698> 618 33<274 427> -VStem: 48 97<210 437> 586 97<202 433> -LayerCount: 2 -Fore -SplineSet -350 618 m 0 - 204 618 145 473 145 342 c 0 - 145 191 229 23 380 23 c 0 - 526 23 586 170 586 302 c 0 - 586 453 501 618 350 618 c 0 -364 651 m 0 - 536 651 683 514 683 320 c 0 - 683 171 585 45 455 4 c 1 - 549 -41 568 -79 669 -79 c 0 - 708 -79 731 -75 738 -73 c 1 - 744 -73 753 -76 756 -80 c 0 - 757 -81 757 -82 757 -83 c 1 - 703 -111 655 -133 595 -133 c 0 - 491 -133 413 -32 286 0 c 0 - 150 34 48 157 48 320 c 0 - 48 503 192 651 364 651 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/q.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/q.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/q.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/q.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: q.sc -Encoding: 65609 -1 761 -Width: 567 -Flags: W -HStem: -91 48<415 534> 412 32<212 338> -VStem: 48 84<132 312> 438 83<135 307> -LayerCount: 2 -Fore -SplineSet -572 -47 m 1 - 532 -72 497 -91 453 -91 c 0 - 376 -91 319 -22 225 0 c 0 - 125 23 48 108 48 219 c 0 - 48 344 155 444 284 444 c 0 - 413 444 521 353 521 223 c 0 - 521 123 446 39 346 12 c 1 - 416 -17 433 -43 508 -43 c 0 - 537 -43 555 -36 560 -34 c 1 - 565 -34 572 -42 572 -47 c 1 -274 412 m 0 - 174 412 132 318 132 232 c 0 - 132 132 192 26 295 26 c 0 - 395 26 438 121 438 207 c 0 - 438 307 377 412 274 412 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/questiondown.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/questiondown.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/questiondown.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/questiondown.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: questiondown -Encoding: 191 191 124 -Width: 336 -Flags: W -HStem: -218 92<164 280> -218 71<155 261> 312 107<185 269> -VStem: 40 49<-114 -13> 174 107<324 408> 221 28<174 254> -LayerCount: 2 -Fore -SplineSet -281 365 m 0x38 - 281 336 256 312 227 312 c 0 - 198 312 174 336 174 365 c 0 - 174 394 198 420 227 420 c 0 - 256 420 281 394 281 365 c 0x38 -249 243 m 1xb4 - 254 222 257 180 257 154 c 0 - 257 82 210 56 174 33 c 0 - 126 3 89 -19 89 -66 c 0 - 89 -117 124 -146 161 -146 c 0x78 - 213 -146 220 -126 245 -126 c 0 - 259 -126 288 -143 288 -175 c 0 - 288 -190 284 -204 279 -211 c 1 - 269 -216 253 -218 232 -218 c 0 - 168 -218 40 -151 40 -37 c 0 - 40 29 66 70 139 112 c 0 - 165 128 209 162 215 173 c 0 - 224 189 221 219 221 241 c 1 - 225 249 227 253 236 254 c 1 - 241 252 246 249 249 243 c 1xb4 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" questiondown.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/questiondown.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/questiondown.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/questiondown.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/questiondown.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: questiondown.sc -Encoding: 65628 -1 780 -Width: 294 -Flags: W -HStem: -11 48<111 196> 323 107<141 225> -VStem: 45 44<48 122> 130 107<334 419> 183 22<243 281> -LayerCount: 2 -Fore -SplineSet -237 376 m 0xf0 - 237 347 212 323 183 323 c 0xe8 - 154 323 130 347 130 376 c 0xf0 - 130 405 154 431 183 431 c 0xe8 - 212 431 237 405 237 376 c 0xf0 -205 275 m 1 - 208 262 211 242 211 225 c 0 - 211 180 170 158 152 148 c 0 - 122 131 89 114 89 85 c 0 - 89 54 109 37 132 37 c 0 - 149 37 161 45 172 55 c 0 - 182 64 189 74 204 74 c 0 - 219 74 241 63 241 29 c 0 - 241 9 228 2 223 -2 c 1 - 217 -5 202 -11 189 -11 c 0 - 149 -11 45 19 45 112 c 0 - 45 164 74 183 119 209 c 0 - 136 219 173 235 177 242 c 0 - 183 252 183 259 183 273 c 1 - 185 278 185 280 191 281 c 1 - 194 280 203 279 205 275 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/question.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/question.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/question.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/question.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: question -Encoding: 63 63 30 -Width: 347 -Flags: W -HStem: -11 107<73 158> 535 92<63 179> 556 71<81 188> -VStem: 62 107<1 85> 94 28<156 236> 254 49<422 523> -LayerCount: 2 -Fore -SplineSet -62 44 m 0x94 - 62 73 87 97 116 97 c 0 - 145 97 169 73 169 44 c 0 - 169 15 145 -11 116 -11 c 0 - 87 -11 62 15 62 44 c 0x94 -98 535 m 0xd4 - 84 535 55 552 55 584 c 0 - 55 599 58 613 63 620 c 1 - 73 625 89 627 110 627 c 0 - 174 627 303 560 303 446 c 0 - 303 380 277 339 204 297 c 0 - 178 281 134 247 128 236 c 0 - 119 220 122 190 122 168 c 1 - 118 160 115 156 106 155 c 1 - 101 157 97 160 94 166 c 1xcc - 89 187 86 229 86 255 c 0 - 86 327 133 353 169 376 c 0 - 217 406 254 429 254 476 c 0 - 254 527 219 556 182 556 c 0xb4 - 130 556 123 535 98 535 c 0xd4 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" question.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/question.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/question.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/question.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/question.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: question.sc -Encoding: 65591 -1 743 -Width: 295 -Flags: W -HStem: -11 107<71 155> 383 48<100 185> -VStem: 59 107<1 85> 91 23<139 177> 207 44<298 372> -LayerCount: 2 -Fore -SplineSet -59 44 m 0xe8 - 59 73 84 97 113 97 c 0 - 142 97 166 73 166 44 c 0 - 166 15 142 -11 113 -11 c 0 - 84 -11 59 15 59 44 c 0xe8 -91 145 m 1xd8 - 88 158 85 179 85 195 c 0 - 85 240 126 261 144 271 c 0 - 175 288 207 306 207 335 c 0 - 207 366 187 383 164 383 c 0 - 147 383 135 375 124 365 c 0 - 114 356 107 346 92 346 c 0 - 77 346 55 357 55 391 c 0 - 55 411 68 418 73 422 c 1 - 79 425 93 431 106 431 c 0 - 146 431 251 401 251 308 c 0 - 251 256 222 237 177 211 c 0 - 161 201 123 185 119 178 c 0 - 114 168 114 161 114 147 c 1 - 112 142 109 140 104 139 c 1 - 101 140 93 141 91 145 c 1xd8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblbase -Encoding: 8222 8222 394 -Width: 370 -Flags: HW -LayerCount: 2 -Fore -Refer: 393 8221 N 1 0 0 1 -15 -568 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedbl.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedbl.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedbl.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedbl.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: quotedbl -Encoding: 34 34 2 -Width: 273 -Flags: W -HStem: 462 221<72 100 190 218> -VStem: 38 76<511 669> 155 76<511 669> -LayerCount: 2 -Fore -SplineSet -206 683 m 0 - 218 683 223 680 231 670 c 1 - 231 642 224 531 218 480 c 1 - 215 474 206 466 198 462 c 1 - 195 462 191 464 189 468 c 1 - 168 538 155 587 155 614 c 0 - 155 641 175 683 206 683 c 0 -89 683 m 0 - 101 683 106 680 114 670 c 1 - 114 642 107 531 101 480 c 1 - 98 474 89 466 81 462 c 1 - 78 462 74 464 72 468 c 1 - 51 538 38 587 38 614 c 0 - 38 641 58 683 89 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: quotedblleft -Encoding: 8220 8220 392 -Width: 370 -Flags: HW -LayerCount: 2 -Fore -Refer: 389 8216 N 1 0 0 1 165 0 2 -Refer: 389 8216 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotedblright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotedblright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotedblright -Encoding: 8221 8221 393 -Width: 370 -Flags: HW -LayerCount: 2 -Fore -Refer: 392 8220 N -1 0 -0 -1 395 1160 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quoteleft.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quoteleft.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quoteleft.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quoteleft.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: quoteleft -Encoding: 8216 8216 389 -Width: 205 -Flags: HW -HStem: 423 315 -VStem: 15 84<508 628.96> -LayerCount: 2 -Fore -SplineSet -43 534 m 0 - 43 644 161 711 172 711 c 0 - 182 711 190 703 195 690 c 1 - 124 648 113 595 113 584 c 0 - 113 566 129 553 142 537 c 0 - 153 525 161 514 161 500 c 0 - 161 472 121 449 84 449 c 0 - 76 449 69 451 61 453 c 1 - 50 469 43 505 43 534 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotereversed.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotereversed.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotereversed.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotereversed.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotereversed -Encoding: 8219 8219 946 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 390 8217 N -1 0 0 1 205 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quoteright.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quoteright.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quoteright.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quoteright.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quoteright -Encoding: 8217 8217 390 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 389 8216 N -1 -0 0 -1 229 1162 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesinglbase.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesinglbase.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesinglbase.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesinglbase.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: quotesinglbase -Encoding: 8218 8218 391 -Width: 205 -Flags: HW -LayerCount: 2 -Fore -Refer: 390 8217 N 1 0 0 1 -15 -568 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: quotesingle -Encoding: 39 39 7 -Width: 156 -Flags: W -HStem: 462 221<72 100> -VStem: 38 76<511 669> -LayerCount: 2 -Fore -SplineSet -89 683 m 0 - 101 683 106 680 114 670 c 1 - 114 642 107 531 101 480 c 1 - 98 474 89 466 81 462 c 1 - 78 462 74 464 72 468 c 1 - 51 538 38 587 38 614 c 0 - 38 641 58 683 89 683 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" quotesingle.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/quotesingle.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: quotesingle.sc -Encoding: 65582 -1 734 -Width: 179 -VWidth: 1039 -Flags: W -HStem: 288 199<81 106> -VStem: 54 67<329 477> -LayerCount: 2 -Fore -SplineSet -99 487 m 0 - 110 487 114 486 121 479 c 1 - 121 456 115 362 110 320 c 1 - 107 310 99 295 92 288 c 1 - 89 288 86 292 84 299 c 1 - 65 361 54 403 54 427 c 0 - 54 451 72 487 99 487 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: racute -Encoding: 341 341 273 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 499 1 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" racute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Racute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Racute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Racute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Racute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Racute -Encoding: 340 340 272 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 576 0 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/racute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/racute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/racute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/racute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: racute.sc -Encoding: 65705 -1 857 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 487 18 2 -Refer: 762 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/radical.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/radical.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/radical.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/radical.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: radical -Encoding: 8730 8730 424 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -SplineSet -10 164 m 1 - -4 170 -11 178 -11 182 c 0 - -11 189 1 195 12 201 c 0 - 47 221 124 272 138 284 c 0 - 146 291 160 291 163 283 c 1 - 171 251 186 221 188 216 c 2 - 302 -30 l 1 - 310 12 440 772 440 772 c 1 - 477 772 l 1 - 477 772 339 -24 315 -149 c 1 - 300 -167 289 -169 283 -169 c 0 - 279 -169 274 -168 273 -164 c 2 - 101 215 l 1 - 10 164 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: rcaron -Encoding: 345 345 277 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 458 5 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" rcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Rcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Rcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Rcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Rcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Rcaron -Encoding: 344 344 276 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 170 0 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/rcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/rcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/rcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/rcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: rcaron.sc -Encoding: 65707 -1 859 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 447 21 2 -Refer: 762 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/registered.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/registered.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/registered.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/registered.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: registered -Encoding: 174 174 107 -Width: 643 -Flags: W -HStem: 130 31<242 402> 266 14<199 229 279 309 439 467> 393 18<277 307> 523 16<200 229 279 333> 633 31<242 402> -VStem: 55 32<314 481> 231 46<287 393 411 519> 357 47<421 514> 559 30<317 478> -LayerCount: 2 -Fore -SplineSet -315 540 m 0 - 353 540 404 515 404 468 c 0 - 404 438 378 410 350 400 c 1 - 372 364 393 336 420 303 c 0 - 433 288 444 282 467 280 c 1 - 469 278 466 267 466 266 c 1 - 438 266 408 268 400 271 c 0 - 394 273 383 276 373 289 c 0 - 367 297 330 348 304 388 c 0 - 302 392 298 393 292 393 c 0 - 292 393 281 393 277 393 c 1 - 277 317 l 1 - 277 305 277 294 279 287 c 0 - 280 282 303 280 308 280 c 1 - 310 278 310 268 308 266 c 1 - 291 267 271 268 255 268 c 0 - 239 268 218 267 201 266 c 1 - 199 268 199 278 201 280 c 1 - 206 280 228 282 229 287 c 0 - 231 294 231 304 231 317 c 2 - 231 490 l 2 - 231 502 231 513 229 520 c 0 - 228 525 206 527 201 527 c 1 - 199 529 199 539 201 541 c 1 - 218 540 241 539 257 539 c 0 - 273 539 291 540 315 540 c 0 -357 458 m 0 - 357 495 346 523 300 523 c 0 - 295 523 281 523 279 519 c 0 - 277 514 277 501 277 488 c 2 - 277 411 l 1 - 277 411 288 411 295 411 c 16 - 330 411 357 426 357 458 c 0 -87 397 m 0 - 87 267 192 161 322 161 c 0 - 452 161 559 267 559 397 c 0 - 559 527 452 633 322 633 c 0 - 192 633 87 527 87 397 c 0 -55 397 m 0 - 55 544 174 664 321 664 c 0 - 468 664 589 544 589 397 c 0 - 589 250 468 130 321 130 c 0 - 174 130 55 250 55 397 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/r.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/r.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/r.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/r.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: r -Encoding: 114 114 81 -Width: 374 -Flags: W -HStem: -3 28<33 96 183 268> 352 75<246 306> 363 25<32 92> -VStem: 102 75<33 314 322 357> -LayerCount: 2 -Fore -SplineSet -296 427 m 0xd0 - 321 427 347 414 356 398 c 1 - 358 392 360 383 360 372 c 0 - 360 336 337 321 327 321 c 0 - 313 321 302 333 291 340 c 0 - 282 346 273 352 255 352 c 0xd0 - 213 352 177 286 177 264 c 2 - 177 113 l 2 - 177 84 177 57 182 41 c 0 - 185 30 254 25 266 25 c 1 - 270 20 271 2 266 -3 c 1 - 226 -1 183 2 145 2 c 0 - 107 2 75 -1 35 -3 c 1 - 30 2 31 20 35 25 c 1 - 47 25 94 30 97 41 c 0 - 102 57 102 84 102 113 c 2 - 102 295 l 2 - 102 308 102 334 97 346 c 0 - 90 363 41 363 34 363 c 1 - 32 365 30 384 34 389 c 1xb0 - 84 396 134 409 173 430 c 1 - 178 430 184 419 184 414 c 1 - 183 407 177 335 177 324 c 0 - 177 320 180 321 181 322 c 0 - 200 364 252 427 296 427 c 0xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" r.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_R.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_R.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_R.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_R.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: R -Encoding: 82 82 49 -Width: 606 -Flags: W -HStem: -3 28<42 111 207 276 573 632> 295 30<202 282> 612 31<43 113 206 332> -VStem: 116 85<32 295 325 602> 405 91<404 552> -LayerCount: 2 -Fore -SplineSet -298 644 m 0 - 387 644 496 586 496 475 c 0 - 496 405 428 335 363 313 c 1 - 415 227 457 169 521 84 c 0 - 549 47 577 29 631 25 c 1 - 636 20 631 -1 630 -3 c 1 - 565 -3 521 2 501 9 c 0 - 487 14 461 22 438 52 c 0 - 423 72 345 187 283 283 c 0 - 277 292 267 295 253 295 c 0 - 253 295 211 295 202 295 c 1 - 202 113 l 1 - 202 84 201 57 206 41 c 0 - 209 30 262 25 274 25 c 1 - 278 20 279 2 274 -3 c 1 - 234 -1 198 2 160 2 c 0 - 122 2 84 -1 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 116 530 l 2 - 116 559 116 587 111 603 c 0 - 108 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 121 642 159 642 c 0 - 197 642 240 644 298 644 c 0 -405 466 m 0 - 405 551 363 612 255 612 c 0 - 243 612 210 612 206 603 c 0 - 201 591 201 558 201 529 c 2 - 202 325 l 1 - 202 325 235 325 254 325 c 0 - 330 325 405 380 405 466 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: ring -Encoding: 730 730 328 -Width: 268 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 384 4 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/r.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/r.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/r.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/r.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: r.sc -Encoding: 65610 -1 762 -Width: 484 -Flags: W -HStem: -3 28<45 100 184 239 435 486> 195 28<180 224> 407 30<47 100 165 278> -VStem: 104 76<37 195 224 401> 314 81<256 380> -LayerCount: 2 -Fore -SplineSet -145 436 m 0 - 174 436 205 438 249 438 c 0 - 328 438 396 390 396 315 c 0 - 396 253 347 223 292 206 c 1 - 335 149 360 119 408 62 c 0 - 429 38 456 26 485 22 c 1 - 489 18 485 -1 484 -3 c 1 - 437 -3 411 0 397 5 c 0 - 387 8 358 14 336 40 c 0 - 325 53 266 125 222 188 c 0 - 218 194 211 195 201 195 c 0 - 201 195 186 195 180 195 c 1 - 180 82 l 1 - 180 63 181 45 184 35 c 0 - 186 28 228 25 236 25 c 1 - 240 21 240 1 236 -3 c 1 - 206 -1 172 1 143 1 c 0 - 114 1 78 -1 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 116 436 145 436 c 0 -180 224 m 1 - 180 224 202 224 216 224 c 16 - 273 224 314 262 314 311 c 0 - 314 367 291 407 217 407 c 0 - 209 407 187 407 184 401 c 0 - 181 393 180 373 180 354 c 2 - 180 224 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: sacute -Encoding: 347 347 279 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 488 -3 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" sacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Sacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Sacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Sacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Sacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Sacute -Encoding: 346 346 278 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 543 0 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: sacute.sc -Encoding: 65708 -1 860 -Width: 379 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 451 20 2 -Refer: 763 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: scaron -Encoding: 353 353 285 -Width: 360 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 441 1 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" scaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scaron -Encoding: 352 352 284 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 128 0 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scaron.sc -Encoding: 65711 -1 863 -Width: 379 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 435 22 2 -Refer: 763 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scedilla -Encoding: 351 351 283 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 432 -2 2 -Refer: 82 115 N 1 0 0 1 1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" scedilla.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scedilla.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scedilla.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scedilla.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scedilla.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scedilla -Encoding: 350 350 282 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 466 -1 N 1 0 0 1 28 -4 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scedilla.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scedilla.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scedilla.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scedilla.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scedilla.sc -Encoding: 65710 -1 862 -Width: 379 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 430 0 2 -Refer: 763 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: scircumflex -Encoding: 349 349 281 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 440 -5 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" scircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Scircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Scircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Scircumflex -Encoding: 348 348 280 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 499 -1 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/scircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: scircumflex.sc -Encoding: 65709 -1 861 -Width: 379 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 431 48 2 -Refer: 763 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/second.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/second.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/second.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/second.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: second -Encoding: 8243 8243 403 -Width: 265 -Flags: W -HStem: 482 200 -VStem: 48 85<576 664> 60 73<576 673> 157 85<576 663> 170 72<576 673> -LayerCount: 2 -Fore -SplineSet -219 683 m 0x88 - 229 683 242 679 242 659 c 0x90 - 242 613 209 546 181 490 c 0 - 178 484 174 482 170 482 c 0x88 - 164 482 157 487 157 494 c 0x90 - 157 497 162 597 170 650 c 0 - 172 662 200 683 219 683 c 0x88 -108 683 m 0 - 118 683 133 679 133 659 c 0xc0 - 133 613 98 546 70 490 c 0 - 67 484 64 482 60 482 c 0xa0 - 54 482 48 487 48 494 c 0xc0 - 48 497 52 597 60 650 c 0xa0 - 62 662 89 683 108 683 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/section.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/section.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/section.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/section.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: section -Encoding: 167 167 101 -Width: 430 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -76 49<110 233> 589 49<199 322> -VStem: 37 53<345 459> 117 45<482 538> 270 45<24 80> 342 53<103 217> -LayerCount: 2 -Fore -SplineSet -297 638 m 0 - 188 638 117 573 117 495 c 0 - 117 425 185 370 232 327 c 0 - 285 278 342 213 342 132 c 0 - 342 89 324 69 303 32 c 0 - 303 32 280 14 270 -3 c 24 - 264 -14 266 -22 264 -34 c 17 - 301 -9 395 103 395 175 c 0 - 395 259 332 327 281 374 c 0 - 235 416 162 491 162 536 c 0 - 162 573 211 589 241 589 c 0 - 256 589 264 585 272 581 c 0 - 282 576 291 569 308 569 c 0 - 324 569 343 590 343 604 c 0 - 343 610 342 620 337 630 c 1 - 323 636 311 638 297 638 c 0 -135 -76 m 0 - 244 -76 314 -12 314 66 c 0 - 314 136 246 191 199 234 c 0 - 146 283 90 349 90 430 c 0 - 90 473 108 492 129 529 c 0 - 129 529 152 547 162 564 c 24 - 168 575 166 584 168 596 c 17 - 131 571 37 459 37 387 c 0 - 37 303 99 235 150 188 c 0 - 196 146 270 70 270 25 c 0 - 270 -12 220 -27 190 -27 c 0 - 175 -27 167 -24 159 -20 c 0 - 149 -15 141 -8 124 -8 c 0 - 108 -8 89 -29 89 -43 c 0 - 89 -49 90 -58 95 -68 c 1 - 109 -74 121 -76 135 -76 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/semicolon.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/semicolon.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/semicolon.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/semicolon.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: semicolon -Encoding: 59 59 26 -Width: 226 -Flags: W -HStem: 313 107<72 156> -VStem: 66 101<25 109 325 410> 99 68<-26 63> -LayerCount: 2 -Fore -SplineSet -124 120 m 0xc0 - 132 120 142 117 149 113 c 1 - 156 101 167 82 167 45 c 0xc0 - 167 -11 102 -109 52 -136 c 1 - 45 -136 37 -121 37 -115 c 1 - 57 -100 99 -69 99 -7 c 0xa0 - 99 25 66 34 66 72 c 0 - 66 93 89 120 124 120 c 0xc0 -60 368 m 0 - 60 397 85 421 114 421 c 0 - 143 421 167 397 167 368 c 0 - 167 339 143 313 114 313 c 0 - 85 313 60 339 60 368 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" semicolon.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/semicolon.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/semicolon.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/semicolon.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/semicolon.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,24 +0,0 @@ -StartChar: semicolon.sc -Encoding: 65587 -1 739 -Width: 251 -Flags: W -HStem: 313 107<84 168> -VStem: 79 101<25 109 325 410> 111 68<-26 63> -LayerCount: 2 -Fore -SplineSet -72 368 m 0xc0 - 72 397 98 421 127 421 c 0 - 156 421 180 397 180 368 c 0 - 180 339 156 313 127 313 c 0 - 98 313 72 339 72 368 c 0xc0 -137 120 m 0 - 145 120 155 117 162 113 c 1 - 169 101 180 82 180 45 c 0xc0 - 180 -11 114 -109 64 -136 c 1 - 57 -136 50 -121 50 -115 c 1 - 70 -100 111 -69 111 -7 c 0xa0 - 111 25 79 34 79 72 c 0 - 79 93 102 120 137 120 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: seven -Encoding: 55 55 22 -Width: 532 -Flags: W -HStem: -5 21G<168 178> 547 71<115 410> -LayerCount: 2 -Fore -SplineSet -398 618 m 2 - 423 618 459 621 465 621 c 0 - 471 621 471 617 471 612 c 0 - 471 599 456 574 443 547 c 2 - 186 -2 l 1 - 184 -4 181 -5 176 -5 c 0 - 161 -5 133 4 133 13 c 1 - 234 165 410 547 410 547 c 9 - 162 547 l 2 - 123 547 107 524 92 472 c 0 - 91 467 86 466 80 466 c 0 - 76 466 65 469 61 472 c 1 - 78 525 95 587 102 618 c 9 - 398 618 l 2 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" seven.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" seven.onum -Substitution2: "'ordn' Ordinals lookup 0-1" seven.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: seven.onum -Encoding: 65560 -1 455 -Width: 411 -Flags: W -HStem: 353 72<72 343> -VStem: 27 24<288 316> -LayerCount: 2 -Fore -SplineSet -342 425 m 2 - 367 425 399 428 405 428 c 0 - 411 428 412 424 412 419 c 0 - 412 406 403 385 386 354 c 2 - 103 -186 l 1 - 100 -187 98 -187 96 -187 c 0 - 83 -187 72 -171 72 -158 c 0 - 72 -155 72 -151 74 -148 c 2 - 343 354 l 1 - 260 354 184 353 108 353 c 0 - 73 353 59 307 52 287 c 1 - 44 286 35 285 27 293 c 1 - 31 338 34 369 36 413 c 0 - 36 421 45 425 54 425 c 2 - 342 425 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: seven.ordn -Encoding: 65748 -1 900 -Width: 333 -Flags: W -HStem: 607 61<91 274> -VStem: 51 23<542 575> -LayerCount: 2 -Fore -SplineSet -283 668 m 2 - 301 668 323 671 327 671 c 0 - 331 671 332 667 332 664 c 0 - 332 655 325 641 313 620 c 2 - 111 240 l 1 - 109 239 107 239 106 239 c 0 - 94 239 85 249 85 258 c 0 - 85 260 85 263 86 265 c 2 - 274 607 l 1 - 119 607 l 2 - 89 607 79 555 74 542 c 1 - 67 541 58 539 51 546 c 1 - 54 581 59 625 60 659 c 0 - 60 665 66 668 72 668 c 2 - 283 668 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/seven.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/seven.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: seven.prop -Encoding: 65758 -1 929 -Width: 441 -Flags: HW -LayerCount: 2 -Fore -Refer: 22 55 N 1 0 0 1 -37 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/s.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/s.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/s.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/s.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: s -Encoding: 115 115 82 -Width: 360 -Flags: W -HStem: -11 31<125 218> 396 30<144 230> -VStem: 40 26<84 115> 49 75<284 372> 242 79<54 141> 275 26<302 339> -LayerCount: 2 -Fore -SplineSet -190 427 m 0xd8 - 228 427 247 419 290 414 c 1 - 297 384 301 342 302 307 c 0 - 302 303 297 302 292 302 c 0 - 287 302 280 303 275 307 c 1 - 265 343 235 396 193 396 c 0 - 146 396 124 370 124 335 c 0xd4 - 124 284 165 269 209 243 c 0 - 253 217 321 186 321 124 c 0 - 321 45 250 -11 171 -11 c 0 - 126 -11 100 0 57 8 c 1 - 49 29 40 84 40 109 c 1 - 44 112 53 115 58 115 c 0 - 61 115 63 115 66 113 c 1xe8 - 78 72 120 21 172 21 c 0 - 212 21 242 46 242 91 c 0 - 242 151 180 170 123 203 c 0 - 84 225 49 256 49 308 c 0 - 49 380 118 427 190 427 c 0xd8 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" s.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_S.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_S.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_S.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_S.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: S -Encoding: 83 83 50 -Width: 490 -Flags: W -HStem: -10 33<177 308> 617 33<188 304> -VStem: 48 36<122 180> 63 78<444 558> 363 85<88 209> -LayerCount: 2 -Fore -SplineSet -255 650 m 0xd8 - 316 650 338 638 402 623 c 1 - 410 572 414 510 416 484 c 0 - 417 477 403 474 396 474 c 0 - 393 474 388 475 385 478 c 1 - 379 527 331 617 248 617 c 0 - 168 617 142 556 142 509 c 0xd8 - 142 431 214 398 278 357 c 0 - 342 316 448 266 448 169 c 0 - 448 62 348 -10 244 -10 c 0 - 178 -10 116 9 68 19 c 1 - 56 77 48 158 48 170 c 1 - 54 176 64 182 73 182 c 0 - 80 182 83 178 84 173 c 0xe8 - 92 136 129 23 246 23 c 0 - 309 23 363 67 363 143 c 0 - 363 224 300 244 233 283 c 0 - 158 327 63 380 63 479 c 0 - 63 583 157 650 255 650 c 0xd8 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: six -Encoding: 54 54 21 -Width: 532 -Flags: W -HStem: -6 32<225 318> 338 48<201 324> 604 28<401 434> -VStem: 71 84<117 306> 378 83<108 278> -LayerCount: 2 -Fore -SplineSet -159 299 m 1 - 156 278 155 255 155 232 c 0 - 155 144 193 26 271 26 c 0 - 333 26 378 92 378 180 c 0 - 378 263 343 338 255 338 c 0 - 227 338 191 334 159 299 c 1 -282 386 m 0 - 419 386 461 268 461 198 c 0 - 461 89 374 -6 263 -6 c 0 - 145 -6 71 110 71 215 c 0 - 71 315 103 407 165 474 c 0 - 234 550 345 611 427 632 c 1 - 436 632 438 610 438 604 c 1 - 356 578 211 515 167 342 c 1 - 201 370 249 386 282 386 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" six.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" six.onum -Substitution2: "'ordn' Ordinals lookup 0-1" six.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: six.onum -Encoding: 65559 -1 454 -Width: 470 -Flags: W -HStem: -7 38<190 291> 323 48<187 297> -VStem: 47 88<106 287> 336 88<97 280> -LayerCount: 2 -Fore -SplineSet -259 371 m 0 - 363 371 424 284 424 188 c 0 - 424 79 342 -7 238 -7 c 0 - 136 -7 47 88 47 197 c 0 - 47 403 236 552 384 620 c 1 - 395 618 402 603 402 593 c 1 - 303 544 206 452 161 332 c 1 - 184 352 221 371 259 371 c 0 -238 323 m 0 - 187 323 158 298 146 286 c 1 - 138 255 135 222 135 188 c 0 - 135 100 175 31 246 31 c 0 - 290 31 336 81 336 169 c 0 - 336 252 316 323 238 323 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: six.ordn -Encoding: 65747 -1 899 -Width: 369 -Flags: W -HStem: 245 27<152 230> 457 40<141 231> 659 20G<214 283> -VStem: 50 63<302 457> 261 64<304 429> -LayerCount: 2 -Fore -SplineSet -113 375 m 0 - 113 319 142 272 191 272 c 0 - 229 272 261 303 261 359 c 0 - 261 412 236 457 174 457 c 0 - 149 457 126 435 123 430 c 0 - 117 420 114 406 113 375 c 0 -185 245 m 0 - 107 245 50 295 50 376 c 0 - 50 522 151 633 276 679 c 1 - 289 676 293 669 296 658 c 1 - 217 626 152 566 124 471 c 0 - 122 466 124 463 127 466 c 0 - 138 481 179 497 201 497 c 0 - 272 497 325 442 325 376 c 0 - 325 300 264 245 185 245 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/six.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/six.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: six.prop -Encoding: 65757 -1 928 -Width: 482 -Flags: HW -LayerCount: 2 -Fore -Refer: 21 54 N 1 0 0 1 -21 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: slash -Encoding: 47 47 14 -Width: 403 -Flags: HW -LayerCount: 2 -Fore -SplineSet -360 743 m 0 - 368 743 372 737 373 734 c 1 - 85 -12 l 2 - 82 -19 69 -34 47 -34 c 0 - 32 -34 29 -27 29 -27 c 1 - 321 729 l 1 - 322 732 337 743 360 743 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" slash.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/slash.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/slash.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/slash.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/slash.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: slash.sc -Encoding: 65585 -1 737 -Width: 353 -VWidth: 1039 -Flags: W -VStem: 28 286 -LayerCount: 2 -Fore -SplineSet -314 501 m 1 - 75 -9 l 2 - 73 -14 62 -24 43 -24 c 0 - 31 -24 28 -20 28 -20 c 1 - 277 490 l 1 - 282 500 281 505 301 505 c 0 - 311 505 311 502 314 501 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/space.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/space.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/space.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/space.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: space -Encoding: 32 32 0 -Width: 211 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/s.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/s.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/s.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/s.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: s.sc -Encoding: 65611 -1 763 -Width: 379 -Flags: W -HStem: -7 28<146 240> 410 33<146 241> -VStem: 62 63<297 386> 266 70<47 132> 285 24<323 361> -LayerCount: 2 -Fore -SplineSet -192 443 m 0xf0 - 233 443 255 435 298 422 c 1 - 309 387 310 346 310 328 c 0 - 310 323 304 323 302 323 c 0 - 300 323 286 323 285 330 c 0xe8 - 281 362 242 410 194 410 c 0 - 147 410 125 380 125 349 c 0 - 125 296 182 267 224 240 c 0 - 266 213 336 175 336 111 c 0 - 336 35 262 -7 190 -7 c 0 - 144 -7 101 8 68 17 c 1 - 57 56 46 113 46 121 c 0 - 46 124 54 125 60 125 c 0 - 70 125 75 122 78 119 c 1 - 82 99 127 21 192 21 c 0 - 226 21 266 38 266 89 c 0 - 266 129 211 159 169 188 c 0 - 124 218 62 258 62 324 c 0 - 62 393 133 443 192 443 c 0xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sterling.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sterling.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/sterling.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/sterling.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: sterling -Encoding: 163 163 97 -Width: 465 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -8 64<232 352> 48 55<97 175> 299 35<66 370> 576 45<231 324> -VStem: 122 75<337 497> 145 73<184 340> 417 13<125 132> -LayerCount: 2 -Fore -SplineSet -307 621 m 0x7a - 341 621 354 614 377 598 c 1 - 381 594 387 580 387 570 c 0 - 387 535 367 523 350 523 c 1 - 329 523 313 546 298 560 c 0 - 283 574 277 576 264 576 c 0 - 213 576 197 515 197 448 c 0x7a - 197 376 218 321 218 266 c 0 - 218 193 155 117 131 95 c 1 - 145 102 154 103 165 103 c 0x76 - 219 103 232 57 319 57 c 0 - 373 57 408 118 417 136 c 1 - 418 136 430 128 430 120 c 0 - 430 116 429 111 427 105 c 0 - 416 74 360 -8 284 -8 c 0xb6 - 201 -8 164 48 113 48 c 0 - 83 48 76 10 59 -6 c 1 - 51 -6 43 7 43 16 c 0 - 43 44 77 77 92 92 c 0 - 119 119 145 178 145 226 c 0x76 - 145 247 123 359 122 390 c 0 - 118 523 215 621 307 621 c 0x7a -76 334 m 1 - 92 334 361 334 372 334 c 1 - 386 323 369 303 363 299 c 1 - 54 299 l 17 - 48 305 67 334 76 334 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/summation.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/summation.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/summation.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/summation.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,44 +0,0 @@ -StartChar: summation -Encoding: 8721 8721 421 -Width: 606 -Flags: W -HStem: -3 33<33 63> 2 44<144 484> 612 30<33 68> -VStem: 498 30<511 556> -LayerCount: 2 -Fore -SplineSet -217 46 m 0x70 - 250 46 288 47 320 47 c 0 - 357 47 451 49 479 64 c 0 - 498 74 519 106 535 158 c 0 - 536 162 542 164 549 164 c 0 - 559 164 570 161 573 158 c 1 - 554 105 528 39 521 -4 c 1 - 415 -4 241 2 152 2 c 0x70 - 87 2 37 -3 37 -3 c 1 - 35 -1 33 7 33 15 c 0 - 33 23 35 30 37 30 c 0xb0 - 48 30 68 50 77 62 c 2 - 276 310 l 2 - 278 313 278 315 275 319 c 0 - 262 339 163 478 88 578 c 0 - 75 595 49 612 37 612 c 0 - 35 612 33 619 33 626 c 0 - 33 633 35 641 37 643 c 1 - 37 643 85 641 150 641 c 0 - 241 641 395 648 501 648 c 1 - 508 600 519 560 528 516 c 1 - 525 513 519 511 512 511 c 0 - 505 511 499 513 498 518 c 0 - 483 574 457 588 447 593 c 0 - 430 601 392 602 358 602 c 2 - 313 602 l 2 - 293 602 263 603 236 603 c 0 - 202 603 173 601 171 593 c 1 - 355 350 l 1 - 357 344 359 337 359 331 c 0 - 359 326 357 322 354 319 c 0 - 266 221 144 88 144 57 c 0 - 144 50 151 46 217 46 c 0x70 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: tbar -Encoding: 359 359 291 -Width: 303 -Flags: W -HStem: -7 53<172 246> 262 39<22 286> 382 40<27 81 156 286> -VStem: 21 266 81 75<61 382 422 508> -LayerCount: 2 -Fore -SplineSet -27 301 m 1xf0 - 55 301 267 301 281 301 c 0 - 285 301 287 296 287 291 c 3 - 287 285 285 271 281 262 c 1 - 253 262 40 262 26 262 c 0 - 22 262 21 269 21 274 c 3 - 21 280 21 292 27 301 c 1xf0 -EndSplineSet -Refer: 83 116 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" tbar.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Tbar.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Tbar.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Tbar.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Tbar.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: Tbar -Encoding: 358 358 290 -Width: 611 -Flags: W -HStem: -3 28<189 258 354 423> 304 36<152 464> 611 34<94 264 349 516> -VStem: 12 32<488 544> 264 85<32 611> 566 32<488 544> -LayerCount: 2 -Fore -SplineSet -462 304 m 1 - 434 304 167 304 153 304 c 1 - 149 304 148 331 154 340 c 1 - 182 340 448 340 462 340 c 1 - 466 340 466 313 462 304 c 1 -EndSplineSet -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tbar.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tbar.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tbar.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tbar.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: tbar.sc -Encoding: 65714 -1 866 -Width: 478 -VWidth: 0 -Flags: W -HStem: -3 28<143 198 280 335> 188 26<117 365> 407 32<85 201 277 393> -VStem: 23 31<319 368> 201 76<37 407> 424 31<319 368> -LayerCount: 2 -Fore -SplineSet -363 188 m 1 - 341 188 129 188 118 188 c 1 - 115 188 114 207 119 214 c 1 - 141 214 352 214 363 214 c 1 - 366 214 366 195 363 188 c 1 -EndSplineSet -Refer: 764 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: tcaron -Encoding: 357 357 289 -Width: 303 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 547 10 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" tcaron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Tcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Tcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Tcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Tcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Tcaron -Encoding: 356 356 288 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 171 14 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tcaron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tcaron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tcaron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tcaron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: tcaron.sc -Encoding: 65713 -1 865 -Width: 478 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 475 21 2 -Refer: 764 -1 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/t.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/t.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/t.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/t.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: t -Encoding: 116 116 83 -Width: 303 -Flags: W -HStem: -7 53<172 246> 382 40<27 81 156 286> -VStem: 81 75<61 382 422 508> -LayerCount: 2 -Fore -SplineSet -156 422 m 1 - 282 422 l 2 - 287 422 287 417 287 411 c 0 - 287 402 282 391 273 382 c 1 - 156 382 l 1 - 156 126 l 2 - 156 74 178 46 221 46 c 0 - 250 46 277 63 284 68 c 1 - 286 67 287 65 287 62 c 0 - 287 56 284 48 283 47 c 0 - 269 31 231 -7 183 -7 c 0 - 133 -7 81 15 81 99 c 2 - 81 382 l 1 - 24 382 l 2 - 21 382 20 388 20 391 c 0 - 20 395 44 421 45 422 c 1 - 61 422 70 422 81 422 c 1 - 81 433 81 475 81 483 c 1 - 100 504 139 546 141 549 c 1 - 146 554 156 554 156 550 c 2 - 156 422 l 1 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" t.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_T.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_T.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_T.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_T.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: T -Encoding: 84 84 51 -Width: 611 -Flags: W -HStem: -3 28<189 258 354 423> 611 34<94 264 349 516> -VStem: 12 32<488 544> 264 85<32 611> 566 32<488 544> -LayerCount: 2 -Fore -SplineSet -496 646 m 0 - 512 646 543 654 555 660 c 0 - 565 665 567 665 573 662 c 1 - 580 602 588 546 599 494 c 1 - 596 491 589 486 580 487 c 0 - 575 487 568 489 566 492 c 1 - 552 560 522 611 473 611 c 2 - 349 611 l 1 - 349 113 l 2 - 349 84 349 57 354 41 c 0 - 357 30 409 25 421 25 c 1 - 425 20 426 2 421 -3 c 1 - 381 -1 345 2 307 2 c 0 - 269 2 231 -1 191 -3 c 1 - 186 2 187 20 191 25 c 1 - 203 25 256 30 259 41 c 0 - 264 57 264 84 264 113 c 2 - 264 611 l 1 - 138 611 l 2 - 89 611 58 560 44 492 c 1 - 42 489 35 487 30 487 c 0 - 21 486 15 491 12 494 c 1 - 23 546 30 602 37 662 c 1 - 43 665 54 662 60 659 c 0 - 72 653 98 646 114 646 c 0 - 199 646 405 646 496 646 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_T_h.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_T_h.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_T_h.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_T_h.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,69 +0,0 @@ -StartChar: T_h -Encoding: 65549 -1 444 -Width: 1011 -Flags: W -HStem: -3 28<190 254 367 427 527 590 676 740 790 854 940 1004> 371 57<744 828> 601 38<74 260 359 511> 636 20G<26 36> 658 20G<663 671> -VStem: 10 33<509 562> 267 85<36 592> 596 75<32 339 354 578> 859 75<32 339> -LayerCount: 2 -Fore -SplineSet -596 518 m 2xef80 - 596 581 558 601 483 601 c 0 - 406 601 362 594 360 586 c 0 - 352 559 352 525 352 488 c 2 - 352 136 l 2 - 352 101 353 71 360 45 c 0 - 363 34 415 25 423 25 c 0 - 426 25 427 17 427 11 c 0 - 427 6 426 0 425 -3 c 1 - 386 -1 355 2 312 2 c 0 - 267 2 239 -1 194 -3 c 1 - 192 -1 190 6 190 12 c 0 - 190 18 192 25 194 25 c 0 - 206 25 255 33 260 45 c 1 - 266 67 267 114 267 132 c 2 - 267 485 l 2 - 267 524 266 572 258 586 c 0 - 254 594 229 601 152 601 c 0xef80 - 77 601 62 586 43 514 c 0 - 42 510 38 509 33 509 c 0 - 24 509 13 513 10 516 c 1 - 28 655 l 1xdf80 - 44 651 82 645 96 645 c 0 - 183 644 232 639 310 639 c 0 - 388 639 455 639 524 645 c 0 - 580 650 661 678 665 678 c 2 - 668 678 l 2 - 674 678 680 667 681 662 c 1 - 681 662 671 631 671 577 c 2 - 671 577 671 364 671 356 c 0 - 671 355 672 354 674 354 c 0 - 675 354 676 355 677 356 c 0 - 697 377 762 428 809 428 c 0 - 914 428 935 363 935 221 c 2 - 935 113 l 2 - 935 84 934 57 939 41 c 0 - 942 30 989 25 1001 25 c 1 - 1005 20 1006 2 1001 -3 c 1 - 961 -1 934 2 896 2 c 0 - 858 2 833 -1 793 -3 c 1 - 788 2 789 20 793 25 c 1 - 805 25 851 30 854 41 c 0 - 859 57 859 84 859 113 c 2 - 859 211 l 2 - 859 332 840 371 764 371 c 0 - 728 371 671 326 671 317 c 2 - 671 113 l 2 - 671 84 671 57 676 41 c 0 - 679 30 725 25 737 25 c 1 - 741 20 742 2 737 -3 c 1 - 697 -1 671 2 633 2 c 0 - 595 2 569 -1 529 -3 c 1 - 524 2 525 20 529 25 c 1 - 541 25 588 30 591 41 c 0 - 596 57 596 84 596 113 c 2 - 596 518 l 2xef80 -EndSplineSet -LCarets2: 1 479 -Ligature2: "'liga' Standard Ligatures lookup 0-1" T h -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: thorn -Encoding: 254 254 187 -Width: 483 -Flags: W -HStem: -221 28<1 64 150 214> -8 34<177 291> 370 58<201 295> 613 25<4 61> 658 20G<124 147> -VStem: 70 75<-186 3 51 354 370 607> 364 82<136 294> -LayerCount: 2 -Fore -SplineSet -269 428 m 0 - 390 428 446 311 446 227 c 0 - 446 101 327 -8 217 -8 c 0 - 192 -8 165 -2 149 3 c 1 - 149 3 145 -2 145 -10 c 2 - 145 -104 l 2 - 145 -133 145 -161 150 -177 c 0 - 153 -188 199 -192 211 -192 c 1 - 215 -197 216 -216 211 -221 c 1 - 171 -219 145 -216 107 -216 c 0 - 69 -216 43 -219 3 -221 c 1 - -2 -216 -1 -197 3 -192 c 1 - 15 -192 62 -188 65 -177 c 0 - 70 -161 70 -133 70 -104 c 2 - 70 545 l 2 - 70 559 70 584 65 596 c 0 - 59 610 32 613 5 613 c 1 - 4 613 2 638 6 639 c 1 - 55 644 104 659 145 678 c 1 - 150 678 156 669 156 662 c 1 - 156 662 145 631 145 577 c 2 - 145 577 145 383 145 375 c 0 - 145 374 145 370 147 370 c 0 - 148 370 149 371 150 372 c 0 - 174 393 230 428 269 428 c 0 -227 370 m 0 - 187 370 145 346 145 332 c 2 - 145 98 l 2 - 145 47 202 26 236 26 c 0 - 317 26 364 111 364 190 c 0 - 364 306 301 370 227 370 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" thorn.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Thorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Thorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Thorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Thorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Thorn -Encoding: 222 222 155 -Width: 535 -Flags: W -HStem: -3 28<42 111 207 276> 125 27<246 338> 459 38<220 352> 618 28<42 111 207 276> -VStem: 117 85<32 429 469 612> 416 90<228 396> -LayerCount: 2 -Fore -SplineSet -160 642 m 0 - 198 642 234 644 274 646 c 1 - 279 641 278 623 274 618 c 1 - 262 618 209 614 206 603 c 0 - 201 587 202 559 202 530 c 2 - 202 469 l 17 - 238 494 300 497 317 497 c 0 - 396 497 506 434 506 321 c 0 - 506 202 419 125 291 125 c 0 - 280 125 259 128 249 133 c 0 - 246 135 235 142 235 154 c 0 - 235 156 236 160 240 159 c 1 - 251 156 262 152 277 152 c 0 - 355 152 416 207 416 305 c 0 - 416 402 361 459 281 459 c 0 - 269 459 224 453 209 430 c 0 - 202 419 202 381 202 352 c 0 - 202 113 l 2 - 202 84 201 57 206 41 c 0 - 209 30 262 25 274 25 c 1 - 278 20 279 2 274 -3 c 1 - 234 -1 198 2 160 2 c 0 - 122 2 84 -1 44 -3 c 1 - 39 2 40 20 44 25 c 1 - 56 25 109 30 112 41 c 0 - 117 57 117 84 117 113 c 2 - 117 530 l 2 - 117 559 117 587 112 603 c 0 - 109 614 56 618 44 618 c 1 - 40 623 39 641 44 646 c 1 - 84 644 122 642 160 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/thorn.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/thorn.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/thorn.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/thorn.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: thorn.sc -Encoding: 65659 -1 811 -Width: 439 -Flags: W -HStem: -3 28<45 100 184 239> 97 31<212 293> 327 30<183 283> 412 28<45 100 184 239> -VStem: 104 77<37 326 354 401> 327 78<161 293> -LayerCount: 2 -Fore -SplineSet -182 354 m 1 - 193 355 206 357 250 357 c 0 - 318 357 405 317 405 240 c 0 - 405 150 344 97 247 97 c 0 - 230 97 221 101 215 105 c 0 - 213 107 202 120 202 124 c 0 - 202 128 204 131 205 132 c 1 - 213 130 232 128 242 128 c 0 - 296 128 327 164 327 226 c 0 - 327 288 291 327 217 327 c 0 - 209 327 187 326 184 320 c 0 - 181 312 180 292 180 272 c 0 - 181 84 l 2 - 181 63 181 47 184 36 c 0 - 186 29 228 25 236 25 c 1 - 240 21 240 1 236 -3 c 1 - 206 -1 172 1 143 1 c 0 - 114 1 78 -1 48 -3 c 1 - 44 1 44 21 48 25 c 1 - 56 25 99 29 101 36 c 0 - 104 47 104 64 104 84 c 2 - 104 354 l 2 - 104 374 104 390 101 401 c 0 - 99 408 56 412 48 412 c 1 - 44 416 44 436 48 440 c 1 - 78 438 115 436 143 437 c 0 - 172 437 206 438 236 440 c 1 - 240 436 240 416 236 412 c 1 - 228 412 186 408 184 401 c 0 - 181 390 182 361 182 354 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,34 +0,0 @@ -StartChar: three -Encoding: 51 51 18 -Width: 532 -Flags: W -HStem: -5 39<183 302> 311 29<176 224> 575 52<193 298> -VStem: 330 73<435 543> 365 84<122 262> -LayerCount: 2 -Fore -SplineSet -275 627 m 0xf0 - 325 627 403 582 403 502 c 0xf0 - 403 439 346 391 312 370 c 1 - 368 362 449 309 449 213 c 0 - 449 79 323 -5 201 -5 c 0 - 175 -5 133 2 102 18 c 1 - 96 22 82 39 82 55 c 0 - 82 83 102 102 123 102 c 0 - 150 102 162 75 178 59 c 0 - 197 40 224 34 250 34 c 0 - 302 34 365 74 365 186 c 0xe8 - 365 265 304 323 240 323 c 0 - 219 323 194 314 182 311 c 1 - 178 316 176 322 176 330 c 0 - 176 334 176 337 178 340 c 1 - 256 358 330 400 330 484 c 0 - 330 536 290 575 234 575 c 0 - 172 575 134 518 125 511 c 1 - 119 511 113 523 113 532 c 1 - 143 577 199 627 275 627 c 0xf0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" three.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" three.onum -Substitution2: "'ordn' Ordinals lookup 0-1" three.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: three.onum -Encoding: 65556 -1 451 -Width: 381 -Flags: W -HStem: -186 49<46 165> 123 35<91 135> 380 62<137 227> -VStem: 243 73<266 364> 258 86<-33 95> -LayerCount: 2 -Fore -SplineSet -223 441 m 0xf0 - 267 441 316 400 316 339 c 0xf0 - 316 282 267 209 227 188 c 1 - 274 184 344 127 344 44 c 0 - 344 -76 179 -186 70 -186 c 0 - 56 -186 44 -184 30 -178 c 1 - 25 -168 24 -158 24 -152 c 0 - 24 -138 44 -117 60 -117 c 0 - 90 -117 94 -137 126 -137 c 0 - 206 -137 258 -61 258 24 c 0xe8 - 258 77 222 134 169 134 c 0 - 140 134 114 128 99 123 c 1 - 92 124 91 133 91 141 c 0 - 91 145 93 153 95 158 c 1 - 165 179 243 243 243 309 c 0 - 243 353 218 380 179 380 c 0 - 124 380 88 340 74 326 c 0 - 72 324 70 322 67 322 c 0 - 64 322 58 333 58 338 c 0 - 58 339 59 345 60 347 c 0 - 92 399 152 441 223 441 c 0xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: three.ordn -Encoding: 65744 -1 896 -Width: 354 -Flags: W -HStem: 245 27<124 208> 455 28<106 152> 634 43<111 199> -VStem: 210 57<530 623> 240 65<309 426> -LayerCount: 2 -Fore -SplineSet -183 677 m 0xf0 - 220 677 267 646 267 591 c 0xf0 - 267 543 235 515 209 501 c 1 - 222 501 306 457 306 386 c 0 - 306 292 234 245 149 245 c 0 - 106 245 72 256 58 271 c 1 - 56 276 54 284 54 289 c 0 - 54 307 65 319 81 319 c 0 - 118 319 107 272 163 272 c 0 - 212 272 240 304 240 363 c 0xe8 - 240 412 204 460 156 460 c 0 - 141 460 121 457 110 455 c 1 - 107 459 105 467 105 474 c 0 - 105 478 105 479 107 483 c 1 - 154 492 210 516 210 577 c 0 - 210 604 191 634 154 634 c 0 - 113 634 93 612 87 604 c 1 - 83 604 77 616 77 621 c 1 - 97 650 129 677 183 677 c 0xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/three.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/three.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: three.prop -Encoding: 65754 -1 925 -Width: 448 -Flags: HW -LayerCount: 2 -Fore -Refer: 18 51 N 1 0 0 1 -49 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/threequarters.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/threequarters.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/threequarters.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/threequarters.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,56 +0,0 @@ -StartChar: threequarters -Encoding: 190 190 123 -Width: 683 -Flags: W -HStem: 104 44<433 544 604 638> 243 27<101 179> 593 38<96 172> -VStem: 185 55<502 583> 208 62<305 419> 544 58<-3 104 147 298> -LayerCount: 2 -Fore -SplineSet -593 397 m 0xe4 - 599 397 602 391 602 386 c 8 - 602 291 602 233 602 143 c 1 - 609 143 626 143 636 143 c 1 - 645 135 650 118 642 104 c 1 - 628 104 610 104 604 104 c 9 - 604 0 l 1 - 602 -2 589 -3 575 -3 c 0 - 562 -3 549 -2 544 2 c 9 - 544 104 l 1 - 383 104 l 1 - 378 105 374 108 373 119 c 1 - 573 386 l 2 - 577 391 585 397 593 397 c 0xe4 -544 147 m 9 - 544 147 544 289 544 298 c 1 - 504 247 477 204 433 147 c 1 - 440 147 536 147 544 147 c 9 -154 631 m 0 - 195 631 239 606 239 556 c 0xf4 - 239 513 204 485 183 475 c 1 - 208 475 271 441 271 377 c 0 - 271 291 196 243 111 243 c 0 - 90 243 56 249 46 258 c 1 - 46 258 34 268 34 281 c 0 - 34 301 48 313 64 313 c 0 - 81 313 88 297 100 285 c 0 - 110 275 123 271 138 271 c 0 - 179 271 208 299 208 359 c 0xec - 208 407 174 443 138 443 c 0 - 120 443 104 437 99 436 c 1 - 97 438 95 442 94 447 c 0 - 93 450 93 454 94 456 c 1 - 142 466 185 495 185 543 c 0xf4 - 185 568 160 593 135 593 c 0 - 99 593 72 563 66 557 c 1 - 61 559 57 571 58 572 c 1 - 72 593 102 631 154 631 c 0 -556 619 m 1 - 219 2 l 2 - 216 -4 204 -15 188 -12 c 0 - 178 -10 176 -4 176 -4 c 1 - 518 621 l 1 - 519 623 531 632 548 629 c 0 - 554 628 556 622 556 619 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: tildecomb.cap -Encoding: 65568 -1 463 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 43<-229 -130> 756 43<-351 -254> -VStem: -378 275 -LayerCount: 2 -Fore -SplineSet --297 799 m 0 - -270 799 -252 789 -232 778 c 0 - -211 766 -187 755 -172 755 c 0 - -133 755 -116 787 -109 791 c 1 - -105 791 -103 785 -103 781 c 0 - -103 769 -110 756 -117 747 c 0 - -135 725 -158 711 -184 711 c 0 - -211 711 -229 721 -249 732 c 0 - -270 744 -289 756 -309 756 c 0 - -348 756 -365 722 -372 718 c 1 - -376 718 -378 725 -378 729 c 0 - -378 741 -371 755 -364 764 c 0 - -346 786 -323 799 -297 799 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tildecomb.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: tildecomb -Encoding: 771 771 335 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 44<-232 -143> 532 44<-343 -254> -VStem: -366 249 -LayerCount: 2 -Fore -SplineSet --294 576 m 0 - -270 576 -252 565 -234 554 c 0 - -215 542 -192 530 -178 530 c 0 - -143 530 -130 564 -123 568 c 1 - -117 568 -117 564 -117 560 c 0 - -117 547 -125 531 -131 522 c 0 - -148 500 -168 486 -191 486 c 0 - -215 486 -232 497 -250 508 c 0 - -269 520 -290 532 -308 532 c 0 - -343 532 -351 498 -358 494 c 1 - -364 494 -366 501 -366 505 c 0 - -366 518 -360 532 -354 541 c 0 - -337 563 -317 576 -294 576 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/tilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/tilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: tilde -Encoding: 732 732 330 -Width: 346 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 415 6 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/trademark.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/trademark.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/trademark.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/trademark.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -StartChar: trademark -Encoding: 8482 8482 935 -Width: 858 -Flags: W -HStem: 335 18<150 185 243 280 363 402 439 478 671 701 758 794> 596 24<99 188 240 329 381 412 752 783> -VStem: 62 18<541 567> 188 52<360 596> 349 18<541 567> 414 22<361 575> 706 43<361 580> -LayerCount: 2 -Fore -SplineSet -782 620 m 1 - 783 619 784 603 784 603 c 17 - 777 603 755 600 752 596 c 0 - 750 592 749 584 749 579 c 0 - 750 550 750 458 752 402 c 0 - 753 385 753 371 758 360 c 0 - 761 354 788 353 792 353 c 1 - 795 349 794 336 793 335 c 1 - 772 336 754 337 732 337 c 0 - 709 337 695 336 672 335 c 1 - 671 336 670 349 672 353 c 1 - 678 353 695 354 701 357 c 0 - 705 359 706 370 706 376 c 0 - 706 382 705 393 705 400 c 0 - 703 462 705 503 702 572 c 0 - 702 574 701 580 697 580 c 0 - 696 580 696 579 695 577 c 8 - 652 492 627 440 588 357 c 0 - 586 353 574 336 568 335 c 0 - 566 335 566 336 564 336 c 1 - 440 575 l 1 - 438 481 437 378 437 374 c 0 - 437 370 436 364 438 360 c 0 - 441 353 473 353 477 353 c 1 - 480 350 478 336 477 335 c 1 - 456 336 445 337 423 337 c 0 - 400 337 386 336 363 335 c 1 - 362 336 362 349 364 353 c 1 - 370 353 397 354 402 360 c 0 - 407 366 407 373 408 382 c 0 - 413 486 414 569 414 577 c 0 - 414 583 414 589 412 594 c 0 - 410 599 387 603 381 603 c 1 - 380 603 380 619 381 620 c 1 - 404 619 410 618 433 618 c 0 - 451 618 463 619 474 620 c 1 - 484 593 546 486 582 410 c 0 - 583 409 583 409 584 409 c 0 - 585 409 586 410 587 411 c 0 - 617 476 635 511 664 574 c 0 - 673 594 684 620 684 620 c 1 - 701 619 716 618 726 618 c 0 - 744 618 769 619 782 620 c 1 -215 620 m 0 - 256 620 266 620 313 620 c 0 - 321 620 338 623 344 626 c 0 - 349 628 351 628 354 627 c 1 - 358 601 360 566 366 544 c 1 - 364 543 361 541 356 541 c 0 - 353 541 350 542 349 543 c 1 - 342 573 326 596 301 596 c 2 - 240 596 l 1 - 240 392 l 2 - 240 379 240 366 243 359 c 0 - 245 354 272 353 278 353 c 1 - 280 351 281 337 278 335 c 1 - 257 336 235 337 215 337 c 0 - 195 337 172 336 151 335 c 1 - 148 337 149 351 151 353 c 1 - 157 353 184 354 186 359 c 0 - 189 366 188 379 188 392 c 2 - 188 596 l 1 - 127 596 l 2 - 102 596 86 573 79 543 c 1 - 78 542 74 541 71 541 c 0 - 66 541 64 543 62 544 c 1 - 68 566 71 601 75 627 c 1 - 78 628 83 627 86 626 c 0 - 92 623 107 620 115 620 c 0 - 159 620 174 620 215 620 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/t.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/t.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/t.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/t.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: t.sc -Encoding: 65612 -1 764 -Width: 478 -Flags: W -HStem: -3 28<143 198 280 335> 407 32<85 201 277 393> -VStem: 23 31<319 368> 201 76<37 407> 424 31<319 368> -LayerCount: 2 -Fore -SplineSet -376 439 m 0 - 387 439 409 445 418 449 c 0 - 425 453 428 454 432 451 c 1 - 438 409 445 359 455 322 c 1 - 452 320 446 317 438 318 c 0 - 434 318 426 319 424 321 c 1 - 414 366 394 407 361 407 c 2 - 277 407 l 1 - 277 83 l 2 - 277 63 277 47 280 36 c 0 - 282 29 325 25 333 25 c 1 - 337 21 337 1 333 -3 c 1 - 303 -1 268 1 240 1 c 0 - 212 1 176 -1 146 -3 c 1 - 142 1 142 21 146 25 c 1 - 154 25 196 29 198 36 c 0 - 201 47 201 63 201 83 c 2 - 201 407 l 1 - 116 407 l 2 - 83 407 65 366 55 321 c 1 - 53 319 44 318 40 318 c 0 - 32 317 26 320 23 322 c 1 - 33 359 41 409 47 451 c 1 - 51 454 58 451 62 449 c 0 - 71 445 91 439 102 439 c 0 - 163 439 311 439 376 439 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: two -Encoding: 50 50 17 -Width: 532 -Flags: W -HStem: 0 71<160 404> 563 63<182 302> -VStem: 80 19<486 492> 346 83<369 518> -LayerCount: 2 -Fore -SplineSet -467 146 m 1 - 447 98 420 18 414 0 c 9 - 414 0 83 0 76 0 c 1 - 72 2 66 10 66 14 c 1 - 148 105 242 216 299 299 c 0 - 339 358 346 397 346 445 c 0 - 346 512 300 563 238 563 c 0 - 160 563 111 499 99 479 c 1 - 91 479 80 491 80 495 c 1 - 87 519 157 627 260 627 c 0 - 354 627 429 547 429 464 c 0 - 429 408 407 358 373 316 c 0 - 304 231 204 120 160 71 c 9 - 354 71 l 2 - 393 71 415 95 436 146 c 0 - 438 151 441 152 447 152 c 0 - 451 152 463 149 467 146 c 1 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" two.prop -Substitution2: "'onum' Oldstyle Figures lookup 3-1" two.onum -Substitution2: "'ordn' Ordinals lookup 0-1" two.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: two.onum -Encoding: 65555 -1 450 -Width: 425 -Flags: W -HStem: 0 69<164 344> 372 69<147 252> -VStem: 270 77<263 354> 359 26<95 133> -LayerCount: 2 -Fore -SplineSet -239 441 m 0 - 305 441 347 390 347 332 c 0 - 347 285 310 228 260 176 c 1 - 164 80 l 2 - 161 77 162 69 167 69 c 2 - 283 68 l 2 - 341 68 341 84 359 122 c 0 - 361 127 368 133 374 133 c 0 - 378 133 382 130 386 125 c 1 - 376 75 367 51 359 -1 c 1 - 226 0 l 1 - 44 0 l 1 - 38 2 36 10 36 16 c 1 - 144 120 270 233 270 306 c 0 - 270 330 254 372 193 372 c 0 - 132 372 105 343 72 307 c 0 - 70 305 67 303 64 303 c 0 - 60 303 55 313 55 316 c 0 - 55 319 55 322 56 323 c 0 - 73 359 126 441 239 441 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -StartChar: two.ordn -Encoding: 65743 -1 895 -Width: 402 -Flags: W -HStem: 249 62<137 309> 623 53<134 234> -VStem: 249 67<495 608> 322 26<333 375> -LayerCount: 2 -Fore -SplineSet -175 623 m 0 - 110 623 89 566 82 566 c 0 - 77 566 69 577 69 584 c 0 - 69 586 69 588 70 589 c 0 - 85 616 135 676 207 676 c 0 - 275 676 316 624 316 573 c 0 - 316 470 205 384 137 317 c 0 - 134 314 135 311 139 311 c 2 - 271 311 l 2 - 313 311 317 353 322 370 c 0 - 323 373 330 375 334 375 c 0 - 341 375 347 372 349 370 c 1 - 341 332 329 288 323 249 c 1 - 225 250 l 1 - 225 250 73 249 68 249 c 1 - 63 256 60 261 59 277 c 1 - 121 339 249 475 249 553 c 0 - 249 604 221 623 175 623 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/two.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/two.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: two.prop -Encoding: 65753 -1 924 -Width: 467 -Flags: HW -LayerCount: 2 -Fore -Refer: 17 50 N 1 0 0 1 -34 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uacute -Encoding: 250 250 183 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 527 -4 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uacute -Encoding: 218 218 151 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 668 0 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uacute.sc -Encoding: 65655 -1 807 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 546 18 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ubreve -Encoding: 365 365 297 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 509 0 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ubreve.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ubreve.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ubreve.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ubreve.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ubreve.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ubreve -Encoding: 364 364 296 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 604 -3 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ubreve.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ubreve.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ubreve.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ubreve.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ubreve.sc -Encoding: 65717 -1 869 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 524 21 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ucircumflex -Encoding: 251 251 184 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 502 -5 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ucircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ucircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ucircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ucircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ucircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ucircumflex -Encoding: 219 219 152 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 607 -1 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ucircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ucircumflex.sc -Encoding: 65656 -1 808 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 533 46 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: udieresis -Encoding: 252 252 185 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 483 2 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" udieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Udieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Udieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Udieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Udieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Udieresis -Encoding: 220 220 153 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 52 85 N 1 0 0 1 0 0 3 -Refer: 473 -1 N 1 0 0 1 191 16 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/udieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/udieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/udieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/udieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: udieresis.sc -Encoding: 65657 -1 809 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 526 23 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/u.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/u.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/u.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/u.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: u -Encoding: 117 117 84 -Width: 502 -Flags: W -HStem: -7 55<191 279> 20 26<427 484> 385 25<14 65 277 327> 410 20G<132 152 395 415> -VStem: 79 75<90 377> 341 75<71 377> -LayerCount: 2 -Fore -SplineSet -341 312 m 2x9c - 341 325 342 350 334 365 c 0 - 324 383 292 385 279 385 c 1 - 276 388 275 405 279 410 c 1xac - 329 412 378 419 413 430 c 1 - 418 430 423 411 423 406 c 1 - 419 398 417 371 417 343 c 2 - 417 298 l 0 - 417 138 l 2 - 417 127 417 90 423 63 c 0 - 428 44 478 47 481 46 c 0 - 483 45 484 38 484 35 c 0 - 484 33 481 20 476 20 c 0x5c - 425 17 350 -8 349 -8 c 0 - 344 -8 341 1 341 8 c 2 - 341 53 l 2 - 341 58 339 58 339 58 c 1 - 312 29 251 -7 201 -7 c 0 - 97 -7 79 106 79 188 c 2 - 79 312 l 2 - 79 325 79 350 71 365 c 0 - 61 383 29 385 16 385 c 1 - 13 388 12 405 16 410 c 1xac - 66 412 115 419 150 430 c 1 - 155 430 161 415 161 410 c 1 - 157 402 154 371 154 343 c 2 - 154 301 l 0 - 154 199 l 2 - 154 95 184 48 252 48 c 0 - 295 48 341 79 341 102 c 2 - 341 312 l 2x9c -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" u.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_U.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_U.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_U.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_U.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,38 +0,0 @@ -StartChar: U -Encoding: 85 85 52 -Width: 706 -Flags: W -HStem: -4 57<275 465> 618 28<26 95 192 261 474 542 617 690> -VStem: 101 85<155 612> 557 45<153 599> -LayerCount: 2 -Fore -SplineSet -144 642 m 0 - 182 642 218 644 258 646 c 1 - 263 641 262 623 258 618 c 1 - 246 618 194 614 191 603 c 0 - 186 587 186 559 186 530 c 2 - 186 289 l 2 - 186 208 203 148 234 109 c 0 - 265 71 310 53 368 53 c 0 - 469 53 554 100 557 268 c 2 - 557 532 l 2 - 557 567 557 584 547 600 c 0 - 541 610 493 619 477 619 c 1 - 472 626 473 641 475 647 c 1 - 514 645 540 643 583 643 c 0 - 628 643 643 645 688 647 c 1 - 691 642 693 630 688 619 c 1 - 676 619 619 612 612 600 c 0 - 603 585 602 570 602 533 c 2 - 602 270 l 2 - 602 75 499 -4 347 -4 c 0 - 277 -4 216 20 173 61 c 0 - 128 104 101 167 101 245 c 2 - 101 530 l 2 - 101 559 101 587 96 603 c 0 - 93 614 41 618 29 618 c 1 - 25 623 24 641 29 646 c 1 - 69 644 106 642 144 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ugrave -Encoding: 249 249 182 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 468 -4 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ugrave.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ugrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ugrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ugrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ugrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ugrave -Encoding: 217 217 150 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 575 0 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ugrave.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ugrave.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ugrave.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ugrave.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ugrave.sc -Encoding: 65654 -1 806 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 503 18 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: uhorn -Encoding: 432 432 479 -Width: 496 -Flags: W -HStem: -7 55<187 275> 20 26<423 480> 381 25<10 61 273 322> 406 20G<129 149> -VStem: 75 75<90 373> 338 75<71 373> 435 81<430 516> -LayerCount: 2 -Fore -SplineSet -413 343 m 2xae - 413 298 l 0 - 413 138 l 2 - 413 127 414 90 420 63 c 0 - 425 44 474 47 477 46 c 0 - 479 45 480 38 480 35 c 0 - 480 33 477 20 472 20 c 0x6e - 421 17 346 -8 345 -8 c 0 - 340 -8 338 1 338 8 c 2 - 338 53 l 2 - 338 58 336 58 336 58 c 1 - 309 29 247 -7 197 -7 c 0 - 93 -7 75 106 75 188 c 2 - 75 309 l 2 - 75 322 75 346 67 361 c 0 - 57 379 25 381 12 381 c 1 - 9 384 8 401 12 406 c 1xae - 62 408 111 415 146 426 c 1 - 151 426 157 411 157 406 c 1x1e - 153 398 150 371 150 343 c 2 - 150 301 l 0 - 150 199 l 2 - 150 95 180 48 248 48 c 0 - 291 48 338 79 338 102 c 2 - 338 309 l 2 - 338 322 338 346 330 361 c 0 - 320 379 288 381 275 381 c 1 - 272 384 271 401 275 406 c 1 - 325 408 368 412 404 421 c 0 - 420 425 446 431 452 446 c 0 - 458 461 431 476 435 499 c 0 - 438 518 463 528 484 524 c 0 - 494 522 500 520 507 516 c 1 - 514 506 522 490 517 464 c 0 - 508 420 445 400 431 396 c 0 - 418 392 413 371 413 343 c 2xae -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uhorn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uhorn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uhorn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uhorn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,42 +0,0 @@ -StartChar: Uhorn -Encoding: 431 431 478 -Width: 706 -Flags: W -HStem: -4 57<276 466> 618 28<27 96 193 262 475 543> -VStem: 102 85<155 612> 558 47<153 591> 678 61<650 700> -LayerCount: 2 -Fore -SplineSet -635 607 m 0 - 626 605 617 598 614 592 c 0 - 608 580 605 570 605 533 c 2 - 605 270 l 2 - 605 75 500 -4 348 -4 c 0 - 278 -4 217 20 174 61 c 0 - 129 104 102 167 102 245 c 2 - 102 530 l 2 - 102 559 102 587 97 603 c 0 - 94 614 42 618 30 618 c 1 - 26 623 25 641 30 646 c 1 - 70 644 107 642 145 642 c 0 - 183 642 219 644 259 646 c 1 - 264 641 263 623 259 618 c 1 - 247 618 195 614 192 603 c 0 - 187 587 187 559 187 530 c 2 - 187 289 l 2 - 187 208 204 148 235 109 c 0 - 266 71 311 53 369 53 c 0 - 470 53 555 100 558 268 c 2 - 558 532 l 2 - 558 567 558 584 548 600 c 0 - 542 610 494 619 478 619 c 1 - 473 626 474 641 476 647 c 1 - 515 645 541 643 584 643 c 0 - 633 643 678 648 678 666 c 0 - 678 683 652 692 652 715 c 0 - 652 734 674 748 696 748 c 0 - 706 748 712 747 720 744 c 1 - 729 735 738 720 738 694 c 0 - 738 638 680 617 635 607 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uhungarumlaut -Encoding: 369 369 301 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 581 -4 2 -Refer: 333 769 N 1 0 0 1 459 -4 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uhungarumlaut.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uhungarumlaut.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uhungarumlaut.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uhungarumlaut.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uhungarumlaut.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uhungarumlaut -Encoding: 368 368 300 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 471 -1 N 1 0 0 1 213 23 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uhungarumlaut.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uhungarumlaut.sc -Encoding: 65719 -1 871 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 621 18 2 -Refer: 333 769 N 1 0 0 1 500 18 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: umacron -Encoding: 363 363 295 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 498 26 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" umacron.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Umacron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Umacron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Umacron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Umacron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Umacron -Encoding: 362 362 294 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 607 27 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/umacron.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/umacron.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/umacron.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/umacron.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: umacron.sc -Encoding: 65716 -1 868 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 527 32 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/underscore.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/underscore.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/underscore.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/underscore.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: underscore -Encoding: 95 95 62 -Width: 493 -Flags: W -HStem: -42 55<18 465> -LayerCount: 2 -Fore -SplineSet -14 -32 m 1 - 14 -32 18 13 28 13 c 2 - 467 13 l 2 - 469 13 471 12 471 8 c 0 - 471 -1 467 -15 461 -36 c 0 - 459 -42 455 -42 455 -42 c 1 - 21 -42 l 1 - 21 -42 14 -42 14 -32 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00A0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00A0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00A0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00A0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni00A0 -Encoding: 160 160 94 -Width: 211 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00AD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00AD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00AD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00AD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni00AD -Encoding: 173 173 952 -Width: 369 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 383 8208 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,28 +0,0 @@ -StartChar: uni00B2 -Encoding: 178 178 111 -Width: 349 -Flags: W -HStem: 248 54<118 277> 588 44<106 206> -VStem: 222 63<461 572> -LayerCount: 2 -Fore -SplineSet -313 352 m 1 - 302 324 291 280 277 248 c 1 - 50 248 l 1 - 44 248 36 256 38 260 c 1 - 77 303 135 354 175 408 c 0 - 202 445 222 482 222 518 c 0 - 222 559 199 588 158 588 c 0 - 114 588 91 561 73 540 c 1 - 69 536 55 552 56 557 c 1 - 78 596 124 632 169 632 c 0 - 237 632 285 589 285 527 c 0 - 285 495 270 464 241 429 c 0 - 215 398 165 350 118 302 c 1 - 236 302 l 2 - 276 302 288 344 294 354 c 0 - 295 356 296 356 299 357 c 0 - 302 357 310 356 313 352 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni00B3 -Encoding: 179 179 112 -Width: 310 -Flags: W -HStem: 243 27<105 183> 593 38<100 176> -VStem: 188 55<502 583> 212 62<305 419> -LayerCount: 2 -Fore -SplineSet -158 631 m 0xe0 - 199 631 243 606 243 556 c 0xe0 - 243 513 208 485 187 475 c 1 - 212 475 274 441 274 377 c 0 - 274 291 200 243 115 243 c 0 - 94 243 60 249 50 258 c 1 - 50 258 38 268 38 281 c 0 - 38 301 52 313 68 313 c 0 - 85 313 92 297 104 285 c 0 - 114 275 127 271 142 271 c 0 - 183 271 212 299 212 359 c 0xd0 - 212 407 178 443 142 443 c 0 - 124 443 108 437 103 436 c 1 - 101 438 99 442 98 446 c 0 - 97 450 97 454 98 456 c 1 - 146 466 188 495 188 543 c 0 - 188 568 164 593 139 593 c 0 - 103 593 76 563 70 557 c 1 - 65 559 61 571 62 572 c 1 - 76 593 106 631 158 631 c 0xe0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni00B9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni00B9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni00B9 -Encoding: 185 185 118 -Width: 285 -Flags: W -HStem: 247 24<56 113 203 253> -VStem: 120 72<287 555> -LayerCount: 2 -Fore -SplineSet -120 506 m 2 - 120 551 113 556 102 556 c 0 - 90 556 67 547 47 540 c 1 - 41 543 38 551 38 557 c 0 - 38 560 39 563 41 564 c 0 - 145 607 185 637 188 637 c 2 - 189 637 l 2 - 195 637 200 617 201 614 c 1 - 201 614 192 573 192 535 c 2 - 192 332 l 2 - 192 312 193 302 200 286 c 0 - 203 279 243 272 251 272 c 1 - 254 272 254 251 251 247 c 1 - 213 248 195 250 157 250 c 0 - 119 250 98 248 60 247 c 1 - 55 250 55 271 60 271 c 0 - 72 271 111 278 114 285 c 0 - 119 298 120 320 120 330 c 2 - 120 506 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0122.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0122.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0122.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0122.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0122 -Encoding: 290 290 223 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 617 0 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0123.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0123.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0123.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0123.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0123 -Encoding: 291 291 224 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 345 786 N 1 0 0 1 472 -15 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0123.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0123.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0123.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0123.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0123.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0123.sc -Encoding: 65679 -1 831 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 345 786 N 1 0 0 1 536 25 2 -Refer: 751 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0136.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0136.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0136.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0136.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0136 -Encoding: 310 310 243 -Width: 641 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 596 0 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0137.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0137.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0137.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0137.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0137 -Encoding: 311 311 244 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 501 0 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0137.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0137.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0137.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0137.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0137.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0137.sc -Encoding: 65690 -1 842 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 494 0 2 -Refer: 755 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013B -Encoding: 315 315 248 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 560 0 2 -Refer: 43 76 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni013C -Encoding: 316 316 249 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 377 0 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni013C.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013C.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013C.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni013C.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni013C.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni013C.sc -Encoding: 65693 -1 845 -Width: 432 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 466 0 2 -Refer: 756 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0145.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0145.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0145.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0145.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0145 -Encoding: 325 325 258 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 627 0 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0146.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0146.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0146.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0146.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0146 -Encoding: 326 326 259 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 517 0 2 -Refer: 77 110 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0146.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0146.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0146.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0146.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0146.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0146.sc -Encoding: 65698 -1 850 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 536 0 2 -Refer: 758 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0156.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0156.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0156.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0156.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0156 -Encoding: 342 342 274 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 605 0 2 -Refer: 49 82 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0157.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0157.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0157.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0157.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0157 -Encoding: 343 343 275 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 387 0 2 -Refer: 81 114 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0157.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0157.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0157.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0157.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0157.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0157.sc -Encoding: 65706 -1 858 -Width: 484 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 498 0 2 -Refer: 762 -1 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0162.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0162.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0162.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0162.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0162 -Encoding: 354 354 286 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 466 -1 N 1 0 0 1 81 3 2 -Refer: 51 84 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0163.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0163.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0163.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0163.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0163 -Encoding: 355 355 287 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 423 4 2 -Refer: 83 116 N 1 0 0 1 1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0163.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0163.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0163.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0163.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0163.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0163.sc -Encoding: 65712 -1 864 -Width: 478 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 484 6 2 -Refer: 764 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0189.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0189.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0189.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0189.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni0189 -Encoding: 393 393 315 -Width: 700 -Flags: HW -LayerCount: 2 -Fore -Refer: 141 208 N 1 0 0 1 7 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CD -Encoding: 461 461 480 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 184 0 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01CE -Encoding: 462 462 481 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 460 0 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01CE.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CE.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CE.sc -Encoding: 65726 -1 878 -Width: 489 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 503 23 2 -Refer: 745 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01CF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01CF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01CF -Encoding: 463 463 482 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 33 0 2 -Refer: 40 73 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01D0 -Encoding: 464 464 483 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 402 0 2 -Refer: 238 305 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01D0.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D0.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D0.sc -Encoding: 65727 -1 879 -Width: 283 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 394 21 2 -Refer: 753 -1 N 1 0 0 1 3 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D1 -Encoding: 465 465 484 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 232 0 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01D2 -Encoding: 466 466 485 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 510 0 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01D2.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D2.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D2.sc -Encoding: 65728 -1 880 -Width: 567 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 521 23 2 -Refer: 759 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D3 -Encoding: 467 467 486 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 225 0 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01D4 -Encoding: 468 468 487 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 542 0 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01D4.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D4.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D4.sc -Encoding: 65729 -1 881 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 535 21 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D5 -Encoding: 469 469 488 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 606 152 2 -Refer: 153 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01D6 -Encoding: 470 470 489 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 497 166 2 -Refer: 185 252 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01D6.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D6.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D6.sc -Encoding: 65730 -1 882 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 533 188 2 -Refer: 809 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D7 -Encoding: 471 471 490 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 689 139 2 -Refer: 153 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01D8 -Encoding: 472 472 491 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 540 151 2 -Refer: 185 252 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01D8.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D8.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D8.sc -Encoding: 65731 -1 883 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 576 173 2 -Refer: 809 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01D9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01D9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01D9 -Encoding: 473 473 492 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 224 113 2 -Refer: 153 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01DA -Encoding: 474 474 493 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 500 154 2 -Refer: 185 252 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01DA.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DA.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DA.sc -Encoding: 65732 -1 884 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 536 176 2 -Refer: 809 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DB -Encoding: 475 475 494 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 526 157 2 -Refer: 153 220 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni01DC -Encoding: 476 476 495 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 427 151 2 -Refer: 185 252 N 1 0 0 1 -1 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01DC.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01DC.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01DC.sc -Encoding: 65733 -1 885 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 465 173 2 -Refer: 809 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni01E2 -Encoding: 482 482 496 -Width: 875 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 827 14 2 -Refer: 131 198 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni01E3 -Encoding: 483 483 497 -Width: 637 -VWidth: 0 -Flags: W -HStem: -8 53<135 206> -8 62<405 531> 242 36<331 512> 393 35<162 254 384 476> 486 45<124 500> -VStem: 36 81<63 163> 51 79<288 346> 259 67<139 215> 513 83<279 360> -LayerCount: 2 -Fore -SplineSet -123 495 m 0x3980 - 123 497 124 531 135 531 c 2 - 501 531 l 2 - 503 531 506 530 506 524 c 0 - 506 519 505 511 500 493 c 0 - 498 487 493 486 493 486 c 1 - 129 486 l 1 - 129 486 123 485 123 495 c 0x3980 -EndSplineSet -Refer: 163 230 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni01E3.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni01E3.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni01E3.sc -Encoding: 65734 -1 886 -Width: 919 -Flags: W -HStem: -3 28<7 57 118 169 283 336 426 483 505 559 642 791> 163 37<170 281> 199 33<637 755> 404 31<641 801> 412 28<503 559> 498 41<306 706> -VStem: 562 75<38 199 233 397> 774 27<243 284> 825 29<344 379> -LayerCount: 2 -Fore -SplineSet -698 498 m 1x8780 - 617 498 437 498 306 498 c 1 - 288 502 300 533 316 539 c 9 - 468 539 556 539 708 539 c 1 - 720 534 716 509 698 498 c 1x8780 -EndSplineSet -Refer: 787 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0202.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0202.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0202.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0202.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0202 -Encoding: 514 514 939 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 945 785 N 1 0 0 1 568 225 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0203.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0203.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0203.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0203.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0203 -Encoding: 515 515 940 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 945 785 N 1 0 0 1 464 2 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0218.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0218.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0218.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0218.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0218 -Encoding: 536 536 316 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 509 0 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0219.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0219.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0219.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0219.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0219 -Encoding: 537 537 317 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 438 0 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0219.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0219.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0219.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0219.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0219.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0219.sc -Encoding: 65738 -1 890 -Width: 379 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 423 0 2 -Refer: 763 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni021A -Encoding: 538 538 318 -Width: 612 -Flags: W -HStem: -222 177<295 361> -3 28<190 259 355 424> 611 34<95 265 350 517> -VStem: 13 32<488 544> 265 85<32 611> 320 62<-167 -89> 567 32<488 544> -LayerCount: 2 -Fore -SplineSet -284 -99 m 0xf6 - 284 -75 302 -45 361 -45 c 1 - 373 -55 382 -81 382 -97 c 0 - 382 -164 331 -203 302 -220 c 0 - 301 -221 299 -222 295 -222 c 0 - 282 -222 275 -218 275 -215 c 0 - 275 -210 320 -180 320 -157 c 0 - 320 -131 284 -128 284 -99 c 0xf6 -EndSplineSet -Refer: 51 84 N 1 0 0 1 1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni021B -Encoding: 539 539 319 -Width: 304 -Flags: W -HStem: -222 177<127 193> -7 53<173 247> 382 40<28 82 157 286> -VStem: 82 75<61 382 422 508> 152 62<-167 -89> -LayerCount: 2 -Fore -SplineSet -116 -99 m 0xe8 - 116 -75 134 -45 193 -45 c 1 - 205 -55 215 -81 215 -97 c 0 - 215 -164 164 -203 135 -220 c 0 - 134 -221 131 -222 127 -222 c 0 - 114 -222 107 -218 107 -215 c 0 - 107 -210 152 -180 152 -157 c 0 - 152 -131 116 -128 116 -99 c 0xe8 -EndSplineSet -Refer: 83 116 N 1 0 0 1 1 0 2 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni021B.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021B.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021B.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni021B.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni021B.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni021B.sc -Encoding: 65739 -1 891 -Width: 478 -Flags: HW -LayerCount: 2 -Fore -Refer: 348 806 N 1 0 0 1 499 0 2 -Refer: 764 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0232.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0232.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0232.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0232.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0232 -Encoding: 562 562 504 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 561 14 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0233.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0233.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0233.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0233.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni0233 -Encoding: 563 563 505 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 516 12 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uni0233.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0233.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0233.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0233.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0233.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0233.sc -Encoding: 65740 -1 892 -Width: 443 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 492 32 2 -Refer: 769 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0237.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0237.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0237.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0237.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: uni0237 -Encoding: 567 567 320 -Width: 233 -Flags: W -HStem: 363 25<19 79> 410 20G<141 163> -VStem: 90 75<-67 357> -LayerCount: 2 -Fore -SplineSet -90 44 m 2 - 90 295 l 2 - 90 308 90 334 85 346 c 0 - 78 363 28 363 21 363 c 1 - 19 365 17 384 21 389 c 1 - 71 396 122 409 161 430 c 1 - 166 430 172 419 172 414 c 1 - 171 407 165 363 165 350 c 2 - 165 316 l 0 - 165 66 l 1 - 165 -122 62 -199 -4 -226 c 1 - -9 -223 -15 -216 -17 -211 c 0 - -18 -209 -18 -205 -17 -204 c 1 - 39 -164 90 -118 90 44 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BB -Encoding: 699 699 321 -Width: 166 -Flags: HW -LayerCount: 2 -Fore -Refer: 345 786 N 1 0 0 1 329 -21 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02BC -Encoding: 700 700 322 -Width: 145 -Flags: HW -LayerCount: 2 -Fore -Refer: 346 789 N 1 0 0 1 299 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni02BE -Encoding: 702 702 943 -Width: 190 -VWidth: 0 -Flags: W -HStem: 428 33<31 78> 648 33<29 79> -VStem: 111 50<490 622> -LayerCount: 2 -Fore -SplineSet -33 461 m 1 - 79 461 111 505 111 555 c 0 - 111 609 83 648 29 648 c 1 - 26 654 24 669 32 682 c 1 - 104 682 161 624 161 556 c 0 - 161 488 101 428 30 428 c 1 - 27 437 28 447 33 461 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02BF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02BF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni02BF -Encoding: 703 703 944 -Width: 190 -VWidth: 0 -Flags: W -HStem: 428 33<113 159> 648 33<112 161> -VStem: 29 50<490 622> -LayerCount: 2 -Fore -SplineSet -157 461 m 1 - 162 447 163 437 160 428 c 1 - 89 428 29 488 29 556 c 0 - 29 624 86 682 158 682 c 1 - 166 669 164 654 161 648 c 1 - 107 648 79 609 79 555 c 0 - 79 505 111 461 157 461 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02C0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02C0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni02C0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni02C0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni02C0 -Encoding: 704 704 323 -Width: 202 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 343 -38 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0302.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0302.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0302.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0302.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0302.cap -Encoding: 65566 -1 461 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 129 -VStem: -361 223 -LayerCount: 2 -Fore -SplineSet --249 840 m 0 - -245 840 -241 836 -237 832 c 0 - -198 790 -180 773 -138 728 c 1 - -138 722 -142 711 -147 711 c 1 - -164 722 -249 773 -249 773 c 25 - -249 773 -325 726 -351 711 c 1 - -356 711 -361 722 -361 728 c 1 - -319 772 -301 788 -261 832 c 0 - -257 836 -253 840 -249 840 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0302.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0302.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0302.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0302.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0302 -Encoding: 770 770 334 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 150 -VStem: -356 205 -LayerCount: 2 -Fore -SplineSet --254 636 m 0 - -250 636 -246 632 -243 627 c 0 - -210 573 -189 548 -151 498 c 1 - -151 491 -157 485 -162 485 c 1 - -199 515 -254 560 -254 560 c 25 - -254 560 -312 512 -346 485 c 1 - -351 485 -356 491 -356 498 c 1 - -318 548 -298 573 -265 627 c 0 - -262 632 -258 636 -254 636 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0304.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0304.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0304.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0304.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: uni0304.cap -Encoding: 65569 -1 464 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 41<-373 -128> -LayerCount: 2 -Fore -SplineSet --133 711 m 1 - -178 711 -300 711 -373 711 c 1 - -383 715 -376 746 -367 752 c 9 - -367 752 -212 752 -127 752 c 1 - -120 747 -123 722 -133 711 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0304.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0304.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0304.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0304.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -StartChar: uni0304 -Encoding: 772 772 336 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 41<-366 -143> -LayerCount: 2 -Fore -SplineSet --147 486 m 1 - -192 486 -293 486 -366 486 c 1 - -376 490 -369 521 -360 527 c 9 - -275 527 -227 527 -142 527 c 1 - -135 522 -137 497 -147 486 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0305.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0305.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0305.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0305.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0305.cap -Encoding: 65574 -1 469 -Width: 546 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 337 773 N 1 0 0 1 566 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0305.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0305.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0305.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0305.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,19 +0,0 @@ -StartChar: uni0305 -Encoding: 773 773 337 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 722 62<-578 -1> -LayerCount: 2 -Fore -SplineSet --581 731 m 0 - -581 733 -578 783 -567 783 c 2 - 1 783 l 2 - 3 783 7 782 7 774 c 0 - 7 756 0 733 -1 729 c 0 - -3 723 -9 722 -9 722 c 1 - -575 722 l 1 - -575 722 -581 721 -581 731 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0306.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0306.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0306.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0306.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0306.cap -Encoding: 65570 -1 465 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 45<-309 -189> -VStem: -355 21<794 810> -164 21<794 810> -LayerCount: 2 -Fore -SplineSet --164 816 m 1 - -154 816 -143 807 -143 800 c 0 - -143 798 -143 796 -144 794 c 0 - -158 743 -202 711 -249 711 c 0 - -296 711 -340 743 -354 794 c 0 - -355 796 -355 798 -355 800 c 0 - -355 807 -344 816 -334 816 c 1 - -321 778 -292 756 -249 756 c 0 - -206 756 -177 778 -164 816 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0306.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0306.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0306.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0306.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0306 -Encoding: 774 774 338 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 45<-310 -196> -VStem: -359 21<584 601> -168 21<583 601> -LayerCount: 2 -Fore -SplineSet --253 530 m 0 - -212 530 -178 559 -168 601 c 0 - -168 603 -166 604 -164 604 c 0 - -158 604 -146 596 -146 591 c 0 - -146 590 -147 585 -147 583 c 0 - -156 531 -200 485 -253 485 c 0 - -306 485 -349 528 -358 584 c 0 - -358 586 -359 590 -359 591 c 0 - -359 596 -348 604 -342 604 c 0 - -340 604 -338 603 -338 601 c 0 - -328 559 -294 530 -253 530 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0307.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0307.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0307.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0307.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni0307.cap -Encoding: 65572 -1 467 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 0 225 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0307.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0307.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0307.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0307.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -StartChar: uni0307 -Encoding: 775 775 339 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 98<-290 -208> -VStem: -298 98<495 576> -LayerCount: 2 -Fore -SplineSet --298 535 m 0 - -298 562 -276 584 -249 584 c 0 - -222 584 -200 562 -200 535 c 0 - -200 508 -222 486 -249 486 c 0 - -276 486 -298 508 -298 535 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.cap -Encoding: 65578 -1 473 -Width: 333 -GlyphClass: 4 -Flags: W -HStem: 695 98<37 118 213 294> -VStem: 28 98<704 785> 205 98<704 785> -LayerCount: 2 -Fore -SplineSet -205 744 m 0 - 205 771 227 793 254 793 c 0 - 281 793 303 771 303 744 c 0 - 303 717 281 695 254 695 c 0 - 227 695 205 717 205 744 c 0 -28 744 m 0 - 28 771 50 793 77 793 c 0 - 104 793 126 771 126 744 c 0 - 126 717 104 695 77 695 c 0 - 50 695 28 717 28 744 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308 -Encoding: 776 776 340 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 90<-372 -296 -194 -117> -VStem: -380 92<494 568> -201 92<494 568> -LayerCount: 2 -Fore -SplineSet --154 576 m 0 - -130 576 -109 554 -109 530 c 0 - -109 506 -131 486 -155 486 c 0 - -179 486 -201 507 -201 531 c 0 - -201 555 -178 576 -154 576 c 0 --333 576 m 0 - -309 576 -288 554 -288 530 c 0 - -288 506 -310 486 -334 486 c 0 - -358 486 -380 507 -380 531 c 0 - -380 555 -357 576 -333 576 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.narrow.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.narrow.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0308.narrow.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0308.narrow.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0308.narrow -Encoding: 65577 -1 472 -Width: 300 -GlyphClass: 4 -Flags: W -HStem: 457 96<31 112 188 268> -VStem: 22 98<466 544> 179 98<466 544> -LayerCount: 2 -Fore -SplineSet -229 553 m 0 - 255 553 276 530 276 504 c 0 - 276 478 254 457 228 457 c 0 - 202 457 179 479 179 505 c 0 - 179 531 203 553 229 553 c 0 -72 553 m 0 - 98 553 120 530 120 504 c 0 - 120 478 97 457 71 457 c 0 - 45 457 22 479 22 505 c 0 - 22 531 46 553 72 553 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030A.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030A.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030A.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030A.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A.cap -Encoding: 65567 -1 462 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 711 33<-287 -212> 853 33<-288 -211> -VStem: -336 32<761 836> -196 32<761 837> -LayerCount: 2 -Fore -SplineSet --304 799 m 0 - -304 769 -278 744 -249 744 c 0 - -220 744 -196 769 -196 799 c 0 - -196 829 -220 853 -249 853 c 0 - -278 853 -304 829 -304 799 c 0 --336 799 m 0 - -336 847 -296 886 -249 886 c 0 - -202 886 -164 847 -164 799 c 0 - -164 751 -202 711 -249 711 c 0 - -296 711 -336 751 -336 799 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni030A -Encoding: 778 778 342 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 33<-286 -212> 628 33<-288 -211> -VStem: -335 32<536 612> -196 32<536 612> -LayerCount: 2 -Fore -SplineSet --303 574 m 0 - -303 544 -278 520 -249 520 c 0 - -220 520 -196 544 -196 574 c 0 - -196 604 -220 628 -249 628 c 0 - -278 628 -303 604 -303 574 c 0 --335 574 m 0 - -335 622 -296 661 -249 661 c 0 - -202 661 -164 622 -164 574 c 0 - -164 526 -202 486 -249 486 c 0 - -296 486 -335 526 -335 574 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030B.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030B.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030B.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030B.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B.cap -Encoding: 65576 -1 471 -Width: 382 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 366 -19 2 -Refer: 460 -1 N 1 0 0 1 515 -19 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni030B -Encoding: 779 779 343 -Width: 0 -GlyphClass: 4 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 -72 0 2 -Refer: 333 769 N 1 0 0 1 49 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030C.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030C.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030C.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030C.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni030C.cap -Encoding: 65579 -1 474 -Width: 255 -GlyphClass: 4 -Flags: W -HStem: 710 129 -VStem: 21 223 -LayerCount: 2 -Fore -SplineSet -133 710 m 0 - 129 710 125 714 121 718 c 0 - 82 760 63 778 21 823 c 1 - 21 829 26 839 31 839 c 1 - 48 828 133 777 133 777 c 25 - 133 777 209 824 235 839 c 1 - 240 839 245 829 245 823 c 1 - 203 779 185 762 145 718 c 0 - 141 714 137 710 133 710 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni030C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni030C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni030C -Encoding: 780 780 344 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 485 150 -VStem: -352 205 -LayerCount: 2 -Fore -SplineSet --249 485 m 0 - -253 485 -257 489 -260 494 c 0 - -293 548 -314 573 -352 623 c 1 - -352 630 -346 636 -341 636 c 1 - -303 603 -249 555 -249 555 c 25 - -249 555 -195 603 -157 636 c 1 - -152 636 -146 630 -146 623 c 1 - -184 573 -205 548 -238 494 c 0 - -241 489 -245 485 -249 485 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0311.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0311.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0311.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0311.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,23 +0,0 @@ -StartChar: uni0311 -Encoding: 785 785 945 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 560 45<-310 -196> -VStem: -359 21<488 506> -168 21<488 507> -LayerCount: 2 -Fore -SplineSet --253 560 m 0 - -294 560 -328 531 -338 489 c 0 - -338 487 -340 486 -342 486 c 0 - -348 486 -359 494 -359 499 c 0 - -359 500 -358 504 -358 506 c 0 - -349 562 -306 604 -253 604 c 0 - -200 604 -156 559 -147 507 c 0 - -147 505 -146 500 -146 499 c 0 - -146 494 -158 486 -164 486 c 0 - -166 486 -168 487 -168 489 c 0 - -178 531 -212 560 -253 560 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0312.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0312.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0312.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0312.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0312 -Encoding: 786 786 345 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 486 177<-278 -212> -VStem: -300 62<530 608> -LayerCount: 2 -Fore -SplineSet --201 540 m 0 - -201 516 -219 486 -278 486 c 1 - -290 496 -300 522 -300 538 c 0 - -300 605 -244 648 -220 661 c 0 - -219 662 -216 663 -212 663 c 0 - -199 663 -192 659 -192 656 c 0 - -192 651 -237 622 -237 599 c 0 - -237 573 -201 569 -201 540 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0314.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0314.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0314.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0314.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: uni0314 -Encoding: 788 788 934 -Width: 0 -VWidth: 976 -GlyphClass: 4 -Flags: W -HStem: 481 13<-205 -190> -VStem: -291 50<520 600> -LayerCount: 2 -Fore -SplineSet --229 664 m 0 - -212 664 -184 645 -184 633 c 3 - -184 631 -185 629 -187 628 c 0 - -203 614 -241 595 -241 549 c 0 - -241 526 -219 502 -188 494 c 1 - -188 486 -196 481 -200 481 c 0 - -210 481 -291 497 -291 588 c 0 - -291 625 -259 664 -229 664 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0315.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0315.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0315.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0315.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0315 -Encoding: 789 789 346 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: 450 208 -VStem: -239 57<517 614> -LayerCount: 2 -Fore -SplineSet --218 658 m 0 - -211 658 -202 655 -196 652 c 1 - -190 642 -183 630 -183 598 c 0 - -183 549 -212 493 -251 450 c 1 - -257 450 -270 456 -270 461 c 1 - -252 483 -239 511 -239 540 c 0 - -239 586 -267 584 -267 617 c 0 - -267 635 -248 658 -218 658 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0326.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0326.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0326.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0326.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni0326 -Encoding: 806 806 348 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -224 179 -VStem: -266 62<-161 -86> -LayerCount: 2 -Fore -SplineSet --245 -45 m 0 - -233 -45 -222 -49 -214 -54 c 1 - -208 -63 -204 -79 -204 -94 c 0 - -204 -152 -251 -203 -301 -224 c 1 - -309 -222 -316 -213 -316 -209 c 1 - -302 -202 -266 -174 -266 -145 c 0 - -266 -124 -300 -128 -300 -88 c 0 - -300 -79 -289 -45 -245 -45 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0327.cap.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0327.cap.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0327.cap.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0327.cap.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327.cap -Encoding: 65571 -1 466 -Width: 459 -GlyphClass: 4 -Flags: W -HStem: -170 27<167 241> -65 39<215 247> -VStem: 252 43<-136 -69> -LayerCount: 2 -Fore -SplineSet -215 -26 m 1 - 244 -26 l 2 - 274 -26 295 -53 295 -83 c 0 - 295 -137 247 -170 187 -170 c 0 - 173 -170 154 -165 147 -160 c 1 - 146 -154 144 -151 144 -144 c 0 - 144 -136 153 -128 160 -128 c 0 - 174 -128 183 -143 202 -143 c 0 - 234 -143 252 -124 252 -104 c 0 - 252 -77 232 -65 217 -65 c 0 - 204 -65 199 -68 187 -73 c 0 - 185 -73 173 -64 175 -59 c 0 - 186 -41 203 -17 212 0 c 1 - 236 0 l 1 - 215 -26 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0327.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0327.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0327.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0327.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni0327 -Encoding: 807 807 349 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -148 23<-290 -227> -60 33<-249 -222> -VStem: -218 36<-119 -63> -LayerCount: 2 -Fore -SplineSet --249 -26 m 1 - -225 -26 l 2 - -200 -26 -182 -49 -182 -74 c 0 - -182 -120 -222 -148 -273 -148 c 0 - -285 -148 -301 -144 -307 -140 c 1 - -308 -135 -310 -132 -310 -126 c 0 - -310 -119 -302 -112 -296 -112 c 0 - -284 -112 -276 -125 -260 -125 c 0 - -233 -125 -218 -110 -218 -93 c 0 - -218 -70 -235 -60 -248 -60 c 0 - -259 -60 -263 -62 -273 -66 c 0 - -275 -66 -285 -58 -283 -54 c 0 - -274 -39 -260 -18 -252 -4 c 1 - -231 -4 l 1 - -249 -26 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0328.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0328.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0328.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0328.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni0328 -Encoding: 808 808 350 -Width: 0 -GlyphClass: 4 -Flags: W -HStem: -213 58<-270 -199> -VStem: -327 53<-152 -79> -LayerCount: 2 -Fore -SplineSet --177 41 m 0 - -160 41 -136 36 -148 24 c 0 - -170 3 -274 -51 -274 -113 c 0 - -274 -128 -267 -155 -234 -155 c 0 - -184 -155 -161 -118 -155 -118 c 0 - -154 -118 -150 -123 -150 -131 c 0 - -150 -136 -152 -143 -155 -147 c 0 - -176 -175 -214 -213 -258 -213 c 0 - -313 -213 -327 -164 -327 -138 c 0 - -327 -74 -205 41 -177 41 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni032E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni032E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni032E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni032E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni032E -Encoding: 814 814 954 -Width: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 0 -664 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0331.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0331.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni0331.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni0331.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni0331 -Encoding: 817 817 953 -Width: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 0 -615 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni04D9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni04D9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni04D9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni04D9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni04D9 -Encoding: 1241 1241 933 -Width: 435 -VWidth: 976 -Flags: W -HStem: -6 36<164 264> 152 41<115 316> 363 62<116 247> -VStem: 36 79<81 179> 318 77<106 284> -LayerCount: 2 -Fore -SplineSet -202 -6 m 0 - 74 -6 36 99 36 165 c 0 - 36 193 44 193 65 193 c 2 - 311 193 l 2 - 317 193 318 194 318 198 c 0 - 318 267 277 363 174 363 c 0 - 102 363 65 327 59 324 c 0 - 58 324 52 329 52 337 c 0 - 52 342 55 349 59 354 c 0 - 80 384 132 426 198 426 c 0 - 304 426 396 334 396 216 c 0 - 396 75 308 -6 202 -6 c 0 -212 30 m 0 - 291 30 316 125 316 146 c 0 - 316 149 316 152 311 152 c 2 - 120 152 l 2 - 116 152 115 148 115 144 c 0 - 115 114 147 30 212 30 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E00.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E00.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E00.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E00.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E00 -Encoding: 7680 7680 506 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 553 -708 2 -Refer: 32 65 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E01.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E01.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E01.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E01.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E01 -Encoding: 7681 7681 507 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 462 -708 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E02.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E02.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E02.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E02.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E02 -Encoding: 7682 7682 351 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 518 0 2 -Refer: 33 66 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E03.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E03.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E03.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E03.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E03 -Encoding: 7683 7683 352 -Width: 486 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 368 251 2 -Refer: 65 98 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E04.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E04.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E04.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E04.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E04 -Encoding: 7684 7684 508 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 137 -27 2 -Refer: 33 66 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E05.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E05.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E05.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E05.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E05 -Encoding: 7685 7685 509 -Width: 486 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 481 -36 2 -Refer: 65 98 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E06.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E06.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E06.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E06.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E06 -Encoding: 7686 7686 510 -Width: 582 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 536 -590 2 -Refer: 33 66 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E07.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E07.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E07.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E07.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E07 -Encoding: 7687 7687 511 -Width: 486 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 477 -595 2 -Refer: 65 98 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E08.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E08.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E08.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E08.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E08 -Encoding: 7688 7688 512 -Width: 658 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 706 0 2 -Refer: 132 199 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E09.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E09.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E09.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E09.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E09 -Encoding: 7689 7689 513 -Width: 413 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 501 -3 2 -Refer: 164 231 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0A -Encoding: 7690 7690 353 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 576 0 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0B -Encoding: 7691 7691 354 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 640 251 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0C -Encoding: 7692 7692 514 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 170 -27 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0D -Encoding: 7693 7693 515 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 524 -36 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0E -Encoding: 7694 7694 516 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 570 -590 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E0F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E0F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E0F -Encoding: 7695 7695 517 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 540 -593 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E10.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E10.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E10.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E10.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E10 -Encoding: 7696 7696 518 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 466 -1 N 1 0 0 1 86 3 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E11.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E11.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E11.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E11.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E11 -Encoding: 7697 7697 519 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 475 3 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E12.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E12.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E12.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E12.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E12 -Encoding: 7698 7698 520 -Width: 693 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 574 -669 2 -Refer: 35 68 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E13.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E13.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E13.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E13.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E13 -Encoding: 7699 7699 521 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 521 -672 2 -Refer: 67 100 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E14.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E14.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E14.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E14.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E14 -Encoding: 7700 7700 522 -Width: 573 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 495 93 2 -Refer: 207 274 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E15.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E15.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E15.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E15.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E15 -Encoding: 7701 7701 523 -Width: 419 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 459 87 2 -Refer: 208 275 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E16.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E16.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E16.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E16.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E16 -Encoding: 7702 7702 524 -Width: 573 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 542 93 2 -Refer: 207 274 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E17.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E17.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E17.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E17.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E17 -Encoding: 7703 7703 525 -Width: 419 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 464 87 2 -Refer: 208 275 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E18.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E18.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E18.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E18.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E18 -Encoding: 7704 7704 526 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 563 -670 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E19.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E19.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E19.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E19.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E19 -Encoding: 7705 7705 527 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 472 -674 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1A -Encoding: 7706 7706 528 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 529 -642 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1B -Encoding: 7707 7707 529 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 457 -646 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1E -Encoding: 7710 7710 355 -Width: 522 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 538 0 2 -Refer: 37 70 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E1F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E1F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E1F -Encoding: 7711 7711 356 -Width: 300 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 489 252 2 -Refer: 69 102 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E20.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E20.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E20.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E20.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E20 -Encoding: 7712 7712 530 -Width: 703 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 623 14 2 -Refer: 38 71 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E21.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E21.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E21.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E21.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E21 -Encoding: 7713 7713 531 -Width: 455 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 469 12 2 -Refer: 70 103 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E22.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E22.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E22.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E22.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E22 -Encoding: 7714 7714 357 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 606 0 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E23.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E23.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E23.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E23.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E23 -Encoding: 7715 7715 358 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 388 251 2 -Refer: 71 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E24.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E24.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E24.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E24.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E24 -Encoding: 7716 7716 532 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 214 -27 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E25.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E25.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E25.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E25.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E25 -Encoding: 7717 7717 533 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 510 -30 2 -Refer: 71 104 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E26.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E26.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E26.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E26.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E26 -Encoding: 7718 7718 534 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 190 16 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E27.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E27.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E27.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E27.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E27 -Encoding: 7719 7719 535 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 -54 16 2 -Refer: 71 104 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E28.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E28.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E28.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E28.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E28 -Encoding: 7720 7720 536 -Width: 708 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 466 -1 N 1 0 0 1 -61 3 2 -Refer: 39 72 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E29.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E29.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E29.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E29.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E29 -Encoding: 7721 7721 537 -Width: 503 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 349 807 N 1 0 0 1 385 6 2 -Refer: 71 104 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2A -Encoding: 7722 7722 538 -Width: 708 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 609 -665 2 -Refer: 39 72 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2B -Encoding: 7723 7723 539 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 510 -665 2 -Refer: 71 104 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2C -Encoding: 7724 7724 540 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 401 -639 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2D -Encoding: 7725 7725 541 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 382 -639 2 -Refer: 72 105 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2E -Encoding: 7726 7726 542 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 468 105 2 -Refer: 140 207 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E2F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E2F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E2F -Encoding: 7727 7727 543 -Width: 265 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 419 120 2 -Refer: 172 239 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E30.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E30.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E30.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E30.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E30 -Encoding: 7728 7728 544 -Width: 641 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 666 0 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E31.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E31.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E31.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E31.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E31 -Encoding: 7729 7729 545 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 426 248 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E32.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E32.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E32.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E32.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E32 -Encoding: 7730 7730 546 -Width: 641 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 222 -27 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E33.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E33.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E33.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E33.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E33 -Encoding: 7731 7731 547 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 507 -646 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E34.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E34.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E34.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E34.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E34 -Encoding: 7732 7732 548 -Width: 641 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 600 -590 2 -Refer: 42 75 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E35.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E35.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E35.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E35.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E35 -Encoding: 7733 7733 549 -Width: 505 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 527 -590 2 -Refer: 74 107 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E36.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E36.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E36.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E36.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E36 -Encoding: 7734 7734 550 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 161 -28 2 -Refer: 43 76 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E37.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E37.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E37.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E37.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E37 -Encoding: 7735 7735 551 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 373 -30 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E38.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E38.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E38.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E38.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E38 -Encoding: 7736 7736 552 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 419 14 2 -Refer: 550 7734 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E39.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E39.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E39.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E39.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E39 -Encoding: 7737 7737 553 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 384 263 2 -Refer: 551 7735 N 1 0 0 1 13 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3A -Encoding: 7738 7738 554 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 555 -591 2 -Refer: 43 76 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3B -Encoding: 7739 7739 555 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 382 -590 2 -Refer: 75 108 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3C -Encoding: 7740 7740 556 -Width: 550 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 548 -670 2 -Refer: 43 76 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3D -Encoding: 7741 7741 557 -Width: 249 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 378 -669 2 -Refer: 75 108 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3E -Encoding: 7742 7742 558 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 763 0 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E3F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E3F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E3F -Encoding: 7743 7743 559 -Width: 771 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 680 -2 2 -Refer: 76 109 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E40.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E40.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E40.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E40.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E40 -Encoding: 7744 7744 359 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 697 0 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E41.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E41.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E41.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E41.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E41 -Encoding: 7745 7745 360 -Width: 771 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 640 1 2 -Refer: 76 109 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E42.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E42.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E42.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E42.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E42 -Encoding: 7746 7746 560 -Width: 885 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 303 -27 2 -Refer: 44 77 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E43.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E43.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E43.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E43.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E43 -Encoding: 7747 7747 561 -Width: 771 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 647 -36 2 -Refer: 76 109 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E44.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E44.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E44.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E44.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E44 -Encoding: 7748 7748 562 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 618 0 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E45.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E45.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E45.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E45.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E45 -Encoding: 7749 7749 563 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 536 1 2 -Refer: 77 110 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E46.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E46.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E46.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E46.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E46 -Encoding: 7750 7750 564 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 245 -29 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E47.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E47.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E47.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E47.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E47 -Encoding: 7751 7751 565 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 523 -36 2 -Refer: 77 110 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E48.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E48.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E48.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E48.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E48 -Encoding: 7752 7752 566 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 654 -592 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E49.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E49.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E49.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E49.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E49 -Encoding: 7753 7753 567 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 542 -590 2 -Refer: 77 110 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4A -Encoding: 7754 7754 568 -Width: 757 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 640 -671 2 -Refer: 45 78 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4B -Encoding: 7755 7755 569 -Width: 519 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 530 -669 2 -Refer: 77 110 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4C -Encoding: 7756 7756 570 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 625 108 2 -Refer: 146 213 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4D -Encoding: 7757 7757 571 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 490 123 2 -Refer: 178 245 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4E -Encoding: 7758 7758 572 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 209 129 2 -Refer: 146 213 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E4F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E4F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E4F -Encoding: 7759 7759 573 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 498 127 2 -Refer: 178 245 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E50.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E50.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E50.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E50.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E50 -Encoding: 7760 7760 574 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 618 93 2 -Refer: 264 332 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E51.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E51.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E51.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E51.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E51 -Encoding: 7761 7761 575 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 501 87 2 -Refer: 265 333 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E52.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E52.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E52.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E52.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E52 -Encoding: 7762 7762 576 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 614 93 2 -Refer: 264 332 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E53.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E53.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E53.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E53.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E53 -Encoding: 7763 7763 577 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 484 87 2 -Refer: 265 333 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E54.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E54.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E54.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E54.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E54 -Encoding: 7764 7764 578 -Width: 535 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 550 0 2 -Refer: 47 80 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E55.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E55.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E55.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E55.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E55 -Encoding: 7765 7765 579 -Width: 498 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 522 -2 2 -Refer: 79 112 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E56.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E56.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E56.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E56.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E56 -Encoding: 7766 7766 361 -Width: 535 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 522 0 2 -Refer: 47 80 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E57.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E57.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E57.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E57.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E57 -Encoding: 7767 7767 362 -Width: 498 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 496 1 2 -Refer: 79 112 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E58.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E58.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E58.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E58.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E58 -Encoding: 7768 7768 580 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 527 0 2 -Refer: 49 82 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E59.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E59.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E59.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E59.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E59 -Encoding: 7769 7769 581 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 461 4 2 -Refer: 81 114 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5A -Encoding: 7770 7770 582 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 202 -29 2 -Refer: 49 82 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5B -Encoding: 7771 7771 583 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 390 -36 2 -Refer: 81 114 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5C -Encoding: 7772 7772 584 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 464 -1 N 1 0 0 1 505 14 2 -Refer: 582 7770 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5D -Encoding: 7773 7773 585 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 467 16 2 -Refer: 583 7771 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5E -Encoding: 7774 7774 586 -Width: 606 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 585 -592 2 -Refer: 49 82 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E5F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E5F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E5F -Encoding: 7775 7775 587 -Width: 374 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 410 -590 2 -Refer: 81 114 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E60.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E60.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E60.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E60.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E60 -Encoding: 7776 7776 363 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 511 0 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E61.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E61.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E61.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E61.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E61 -Encoding: 7777 7777 364 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 443 0 2 -Refer: 82 115 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E62.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E62.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E62.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E62.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E62 -Encoding: 7778 7778 588 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 101 -34 2 -Refer: 50 83 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E63.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E63.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E63.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E63.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E63 -Encoding: 7779 7779 589 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 423 -36 2 -Refer: 82 115 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E64.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E64.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E64.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E64.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E64 -Encoding: 7780 7780 590 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 486 119 2 -Refer: 278 346 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E65.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E65.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E65.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E65.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E65 -Encoding: 7781 7781 591 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 409 91 2 -Refer: 279 347 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E66.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E66.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E66.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E66.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E66 -Encoding: 7782 7782 592 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 514 131 2 -Refer: 284 352 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E67.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E67.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E67.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E67.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni1E67 -Encoding: 7783 7783 593 -Width: 360 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 438 148 2 -Refer: 285 353 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E68.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E68.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E68.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E68.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E68 -Encoding: 7784 7784 594 -Width: 490 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 511 0 2 -Refer: 588 7778 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E69.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E69.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E69.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E69.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E69 -Encoding: 7785 7785 595 -Width: 360 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 444 0 2 -Refer: 589 7779 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6A -Encoding: 7786 7786 365 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 579 4 2 -Refer: 51 84 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6B -Encoding: 7787 7787 366 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 400 93 2 -Refer: 83 116 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6C -Encoding: 7788 7788 596 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 164 -27 2 -Refer: 51 84 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6D -Encoding: 7789 7789 597 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 413 -36 2 -Refer: 83 116 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6E -Encoding: 7790 7790 598 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 562 -590 2 -Refer: 51 84 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E6F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E6F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E6F -Encoding: 7791 7791 599 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 433 -594 2 -Refer: 83 116 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E70.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E70.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E70.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E70.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E70 -Encoding: 7792 7792 600 -Width: 611 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 563 -669 2 -Refer: 51 84 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E71.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E71.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E71.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E71.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E71 -Encoding: 7793 7793 601 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 419 -673 2 -Refer: 83 116 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E72.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E72.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E72.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E72.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E72 -Encoding: 7794 7794 602 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 593 -639 2 -Refer: 52 85 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E73.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E73.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E73.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E73.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E73 -Encoding: 7795 7795 603 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 503 -646 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E74.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E74.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E74.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E74.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E74 -Encoding: 7796 7796 604 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 589 -638 2 -Refer: 52 85 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E75.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E75.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E75.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E75.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E75 -Encoding: 7797 7797 605 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 499 -646 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E76.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E76.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E76.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E76.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E76 -Encoding: 7798 7798 606 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 616 -666 2 -Refer: 52 85 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E77.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E77.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E77.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E77.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E77 -Encoding: 7799 7799 607 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 508 -674 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E78.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E78.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E78.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E78.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E78 -Encoding: 7800 7800 608 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 616 110 2 -Refer: 292 360 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E79.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E79.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E79.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E79.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E79 -Encoding: 7801 7801 609 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 472 113 2 -Refer: 293 361 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7A -Encoding: 7802 7802 610 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 196 126 2 -Refer: 294 362 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7B -Encoding: 7803 7803 611 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 487 122 2 -Refer: 295 363 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7C -Encoding: 7804 7804 612 -Width: 623 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 573 14 2 -Refer: 53 86 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7D -Encoding: 7805 7805 613 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 482 -1 2 -Refer: 85 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7E -Encoding: 7806 7806 614 -Width: 623 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 163 -33 2 -Refer: 53 86 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E7F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E7F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E7F -Encoding: 7807 7807 615 -Width: 461 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 481 -36 2 -Refer: 85 118 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E86.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E86.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E86.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E86.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E86 -Encoding: 7814 7814 622 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 710 0 2 -Refer: 54 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E87.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E87.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E87.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E87.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E87 -Encoding: 7815 7815 623 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 614 0 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E88.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E88.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E88.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E88.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E88 -Encoding: 7816 7816 624 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 299 -32 2 -Refer: 54 87 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E89.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E89.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E89.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E89.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E89 -Encoding: 7817 7817 625 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 604 -36 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8A -Encoding: 7818 7818 626 -Width: 652 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 595 0 2 -Refer: 55 88 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8B -Encoding: 7819 7819 627 -Width: 464 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 495 0 2 -Refer: 87 120 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8C -Encoding: 7820 7820 628 -Width: 652 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 179 16 2 -Refer: 55 88 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8D -Encoding: 7821 7821 629 -Width: 464 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 483 3 2 -Refer: 87 120 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8E -Encoding: 7822 7822 630 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 557 4 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E8F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E8F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E8F -Encoding: 7823 7823 631 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 489 0 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E90.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E90.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E90.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E90.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E90 -Encoding: 7824 7824 632 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 566 -1 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E91.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E91.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E91.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E91.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E91 -Encoding: 7825 7825 633 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 478 25 2 -Refer: 89 122 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E92.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E92.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E92.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E92.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E92 -Encoding: 7826 7826 634 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 180 -24 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E93.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E93.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E93.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E93.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E93 -Encoding: 7827 7827 635 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 469 -36 2 -Refer: 89 122 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E94.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E94.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E94.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E94.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E94 -Encoding: 7828 7828 636 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 572 -587 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E95.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E95.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E95.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E95.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E95 -Encoding: 7829 7829 637 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 464 -587 2 -Refer: 89 122 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E96.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E96.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E96.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E96.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E96 -Encoding: 7830 7830 638 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 336 772 N 1 0 0 1 511 -590 2 -Refer: 71 104 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E97.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E97.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E97.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E97.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E97 -Encoding: 7831 7831 639 -Width: 303 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 364 96 2 -Refer: 83 116 N 1 0 0 1 -27 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E98.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E98.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E98.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E98.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E98 -Encoding: 7832 7832 640 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 612 0 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E99.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E99.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1E99.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1E99.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1E99 -Encoding: 7833 7833 641 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 494 0 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA0 -Encoding: 7840 7840 642 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 152 -27 2 -Refer: 32 65 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA1 -Encoding: 7841 7841 643 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 467 -36 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA2 -Encoding: 7842 7842 644 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 590 0 2 -Refer: 32 65 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EA3 -Encoding: 7843 7843 645 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 458 3 2 -Refer: 64 97 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA4 -Encoding: 7844 7844 646 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 0.74 0 0 0.79 639 208 2 -Refer: 461 -1 N 1 0 0 1 563 -22 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA5 -Encoding: 7845 7845 647 -Width: 441 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 0.9 0 0 0.73 571 207 2 -Refer: 334 770 N 1 0 0 1 467 -5 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA6 -Encoding: 7846 7846 648 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 0.74 0 0 0.79 363 209 2 -Refer: 461 -1 N 1 0 0 1 563 -22 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA7 -Encoding: 7847 7847 649 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 0.9 0 0 0.73 303 207 2 -Refer: 334 770 N 1 0 0 1 467 -5 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA8 -Encoding: 7848 7848 650 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 707 36 2 -Refer: 461 -1 N 1 0 0 1 563 -22 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EA9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EA9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EA9 -Encoding: 7849 7849 651 -Width: 418 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 588 49 2 -Refer: 334 770 N 1 0 0 1 467 -5 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAA -Encoding: 7850 7850 652 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 0.95 0 0 0.8 541 254 2 -Refer: 461 -1 N 1 0 0 0.91 563 42 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAB -Encoding: 7851 7851 653 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 0.9 454 185 2 -Refer: 334 770 N 1 0 0 0.83 467 78 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAC -Encoding: 7852 7852 654 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 568 -1 2 -Refer: 642 7840 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EAD -Encoding: 7853 7853 655 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 470 -5 2 -Refer: 643 7841 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAE -Encoding: 7854 7854 656 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 0.74 0 0 0.79 530 214 2 -Refer: 465 -1 N 1 0 0 1 564 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EAF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EAF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EAF -Encoding: 7855 7855 657 -Width: 420 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 0.8 0 0 0.8 412 178 2 -Refer: 338 774 N 1 0 0 1 461 0 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB0 -Encoding: 7856 7856 658 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 0.74 0 0 0.79 472 214 2 -Refer: 465 -1 N 1 0 0 1 562 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni1EB1 -Encoding: 7857 7857 659 -Width: 420 -VWidth: 0 -Flags: W -HStem: -8 53<135 207 316 379> 389 37<155 263> 485 45<151 265> -VStem: 36 81<63 163> 51 79<288 345> 102 21<584 601> 268 74<66 218 240 353> 293 21<583 601> -LayerCount: 2 -Fore -SplineSet -135 691 m 0xe0 - 146 691 155 686 156 685 c 0 - 181 654 232 582 232 577 c 0 - 232 572 230 567 225 567 c 0 - 217 567 106 644 106 669 c 0 - 106 673 108 691 135 691 c 0xe0 -EndSplineSet -Refer: 338 774 N 1 0 0 1 461 0 2 -Refer: 64 97 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB2 -Encoding: 7858 7858 660 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 566 55 2 -Refer: 465 -1 N 1 0 0 1 560 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB3 -Encoding: 7859 7859 661 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 459 87 2 -Refer: 192 259 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EB4 -Encoding: 7860 7860 662 -Width: 612 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 0.95 0 0 0.8 541 254 2 -Refer: 465 -1 N 1 0 0 1 560 -17 2 -Refer: 32 65 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB5 -Encoding: 7861 7861 663 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 451 128 2 -Refer: 192 259 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB6 -Encoding: 7862 7862 664 -Width: 612 -Flags: HW -LayerCount: 2 -Fore -Refer: 465 -1 N 1 0 0 1 566 -3 2 -Refer: 642 7840 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB7 -Encoding: 7863 7863 665 -Width: 420 -Flags: HW -LayerCount: 2 -Fore -Refer: 338 774 N 1 0 0 1 461 0 2 -Refer: 643 7841 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB8 -Encoding: 7864 7864 666 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 147 -28 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EB9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EB9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EB9 -Encoding: 7865 7865 667 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 469 -36 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBA -Encoding: 7866 7866 668 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 527 0 2 -Refer: 36 69 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBB -Encoding: 7867 7867 669 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 478 3 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBC -Encoding: 7868 7868 670 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 519 0 2 -Refer: 36 69 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EBD -Encoding: 7869 7869 671 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 469 2 2 -Refer: 68 101 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EBE -Encoding: 7870 7870 672 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 0.74 0 0 0.79 602 208 2 -Refer: 461 -1 N 1 0 0 1 526 -22 2 -Refer: 36 69 N 1 0 0 1 -1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EBF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EBF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EBF -Encoding: 7871 7871 673 -Width: 457 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 0.9 0 0 0.73 576 207 2 -Refer: 334 770 N 1 0 0 1 472 -5 2 -Refer: 68 101 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC0 -Encoding: 7872 7872 674 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 0.74 0 0 0.79 327 209 2 -Refer: 461 -1 N 1 0 0 1 527 -22 2 -Refer: 36 69 N 1 0 0 1 -1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC1 -Encoding: 7873 7873 675 -Width: 434 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 0.9 0 0 0.73 308 207 2 -Refer: 334 770 N 1 0 0 1 472 -5 2 -Refer: 68 101 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC2 -Encoding: 7874 7874 676 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 694 36 2 -Refer: 461 -1 N 1 0 0 1 533 -22 2 -Refer: 36 69 N 1 0 0 1 -1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC3 -Encoding: 7875 7875 677 -Width: 413 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 593 49 2 -Refer: 334 770 N 1 0 0 1 472 -5 2 -Refer: 68 101 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC4 -Encoding: 7876 7876 678 -Width: 572 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 0.95 0 0 0.8 512 254 2 -Refer: 461 -1 N 1 0 0 0.91 535 42 2 -Refer: 36 69 N 1 0 0 1 -1 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1EC5 -Encoding: 7877 7877 679 -Width: 419 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 0.9 461 185 2 -Refer: 334 770 N 1 0 0 0.83 474 78 2 -Refer: 68 101 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC6 -Encoding: 7878 7878 680 -Width: 573 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 537 -1 2 -Refer: 666 7864 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC7 -Encoding: 7879 7879 681 -Width: 419 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 472 3 2 -Refer: 667 7865 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC8 -Encoding: 7880 7880 682 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 409 0 2 -Refer: 40 73 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EC9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EC9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EC9 -Encoding: 7881 7881 683 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 379 3 2 -Refer: 238 305 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECA -Encoding: 7882 7882 684 -Width: 316 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 15 -27 2 -Refer: 40 73 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECB -Encoding: 7883 7883 685 -Width: 263 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 386 -36 2 -Refer: 72 105 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECC -Encoding: 7884 7884 686 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 221 -34 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECD -Encoding: 7885 7885 687 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 498 -36 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECE -Encoding: 7886 7886 688 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 612 0 2 -Refer: 46 79 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ECF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ECF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ECF -Encoding: 7887 7887 689 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 494 3 2 -Refer: 78 111 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED0 -Encoding: 7888 7888 690 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 0.74 0 0 0.79 688 208 2 -Refer: 461 -1 N 1 0 0 1 613 -22 2 -Refer: 46 79 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED1 -Encoding: 7889 7889 691 -Width: 505 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 0.9 0 0 0.73 609 207 2 -Refer: 334 770 N 1 0 0 1 505 -5 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED2 -Encoding: 7890 7890 692 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 0.74 0 0 0.79 413 209 2 -Refer: 461 -1 N 1 0 0 1 613 -22 2 -Refer: 46 79 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED3 -Encoding: 7891 7891 693 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 0.9 0 0 0.73 341 207 2 -Refer: 334 770 N 1 0 0 1 505 -5 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED4 -Encoding: 7892 7892 694 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 774 36 2 -Refer: 461 -1 N 1 0 0 1 613 -22 2 -Refer: 46 79 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED5 -Encoding: 7893 7893 695 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 626 49 2 -Refer: 334 770 N 1 0 0 1 505 -5 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED6 -Encoding: 7894 7894 696 -Width: 730 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 0.95 0 0 0.8 590 254 2 -Refer: 461 -1 N 1 0 0 0.91 613 42 2 -Refer: 46 79 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: uni1ED7 -Encoding: 7895 7895 697 -Width: 497 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 0.9 493 185 2 -Refer: 334 770 N 1 0 0 0.83 506 78 2 -Refer: 78 111 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ED8 -Encoding: 7896 7896 698 -Width: 730 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 616 -1 2 -Refer: 686 7884 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1ED9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1ED9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1ED9 -Encoding: 7897 7897 699 -Width: 497 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 505 3 2 -Refer: 687 7885 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDA -Encoding: 7898 7898 700 -Width: 750 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 658 -1 2 -Refer: 476 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDB -Encoding: 7899 7899 701 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 520 -4 2 -Refer: 477 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDC -Encoding: 7900 7900 702 -Width: 750 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 599 -1 2 -Refer: 476 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDD.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDD.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDD.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDD.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDD -Encoding: 7901 7901 703 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 489 -6 2 -Refer: 477 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDE -Encoding: 7902 7902 704 -Width: 750 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 621 0 2 -Refer: 476 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EDF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EDF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EDF -Encoding: 7903 7903 705 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 497 4 2 -Refer: 477 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE0 -Encoding: 7904 7904 706 -Width: 750 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 612 -8 2 -Refer: 476 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE1 -Encoding: 7905 7905 707 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 494 -1 2 -Refer: 477 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE2.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE2.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE2.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE2.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE2 -Encoding: 7906 7906 708 -Width: 750 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 220 -34 2 -Refer: 476 416 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE3.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE3.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE3.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE3.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE3 -Encoding: 7907 7907 709 -Width: 503 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 498 -36 2 -Refer: 477 417 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE4 -Encoding: 7908 7908 710 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 205 -28 2 -Refer: 52 85 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE5 -Encoding: 7909 7909 711 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 505 -36 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE6 -Encoding: 7910 7910 712 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 624 0 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE7 -Encoding: 7911 7911 713 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 487 3 2 -Refer: 84 117 N 1 0 0 1 -1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE8 -Encoding: 7912 7912 714 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 669 0 2 -Refer: 478 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EE9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EE9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EE9 -Encoding: 7913 7913 715 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 523 -4 2 -Refer: 479 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEA.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEA.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEA.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEA.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEA -Encoding: 7914 7914 716 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 576 0 2 -Refer: 478 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEB.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEB.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEB.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEB.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEB -Encoding: 7915 7915 717 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 464 -4 2 -Refer: 479 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEC.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEC.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEC.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEC.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEC -Encoding: 7916 7916 718 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 624 0 2 -Refer: 478 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EED.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EED.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EED.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EED.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EED -Encoding: 7917 7917 719 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 484 3 2 -Refer: 479 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEE.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEE.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEE.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEE.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEE -Encoding: 7918 7918 720 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 607 -7 2 -Refer: 478 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EEF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EEF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EEF -Encoding: 7919 7919 721 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 495 -1 2 -Refer: 479 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF0.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF0.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF0.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF0.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF0 -Encoding: 7920 7920 722 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 205 -28 2 -Refer: 478 431 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF1.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF1.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF1.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF1.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF1 -Encoding: 7921 7921 723 -Width: 496 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 505 -36 2 -Refer: 479 432 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF4.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF4.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF4.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF4.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF4 -Encoding: 7924 7924 726 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 468 -1 N 1 0 0 1 154 -27 2 -Refer: 56 89 N 1 0 0 1 1 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF5.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF5.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF5.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF5.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF5 -Encoding: 7925 7925 727 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 347 803 N 1 0 0 1 512 -93 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF6.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF6.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF6.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF6.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF6 -Encoding: 7926 7926 728 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 470 -1 N 1 0 0 1 561 0 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF7.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF7.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF7.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF7.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF7 -Encoding: 7927 7927 729 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 341 777 N 1 0 0 1 496 3 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF8.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF8.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF8.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF8.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF8 -Encoding: 7928 7928 730 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 544 0 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF9.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF9.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni1EF9.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni1EF9.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uni1EF9 -Encoding: 7929 7929 731 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 480 2 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2000.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2000.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2000.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2000.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2000 -Encoding: 8192 8192 367 -Width: 502 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2001.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2001.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2001.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2001.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2001 -Encoding: 8193 8193 368 -Width: 1005 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2002.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2002.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2002.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2002.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2002 -Encoding: 8194 8194 369 -Width: 502 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2003.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2003.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2003.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2003.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2003 -Encoding: 8195 8195 370 -Width: 1005 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2004.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2004.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2004.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2004.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2004 -Encoding: 8196 8196 371 -Width: 333 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2005.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2005.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2005.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2005.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2005 -Encoding: 8197 8197 372 -Width: 250 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2006.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2006.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2006.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2006.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2006 -Encoding: 8198 8198 373 -Width: 166 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2007.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2007.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2007.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2007.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2007 -Encoding: 8199 8199 374 -Width: 301 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2008.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2008.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2008.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2008.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2008 -Encoding: 8200 8200 375 -Width: 314 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2009.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2009.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2009.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2009.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2009 -Encoding: 8201 8201 376 -Width: 166 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200A.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200A.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200A.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200A.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200A -Encoding: 8202 8202 377 -Width: 100 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200B.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200B.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200B.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200B.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200B -Encoding: 8203 8203 378 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200C.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200C.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200C.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200C.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200C -Encoding: 8204 8204 379 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200D.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200D.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200D.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200D.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200D -Encoding: 8205 8205 380 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200E -Encoding: 8206 8206 381 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni200F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni200F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni200F -Encoding: 8207 8207 382 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2010.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2010.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2010.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2010.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2010 -Encoding: 8208 8208 383 -Width: 369 -Flags: W -HStem: 194 61<59 211> 205 62<165 310> -VStem: 58 255 -LayerCount: 2 -Fore -SplineSet -58 205 m 0x60 - 58 252 66 255 69 255 c 2 - 70 255 l 1xa0 - 306 267 l 1 - 307 267 l 2 - 309 267 312 266 312 258 c 0 - 312 210 300 205 300 205 c 1x60 - 64 194 l 1xa0 - 64 194 58 193 58 205 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2011.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2011.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2011.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2011.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2011 -Encoding: 8209 8209 384 -Width: 369 -Flags: W -HStem: 194 61<59 211> 205 62<165 310> -VStem: 58 255 -LayerCount: 2 -Fore -SplineSet -58 205 m 0x60 - 58 252 66 255 69 255 c 2 - 70 255 l 1xa0 - 306 267 l 1 - 307 267 l 2 - 309 267 312 266 312 258 c 0 - 312 210 300 205 300 205 c 1x60 - 64 194 l 1xa0 - 64 194 58 193 58 205 c 0x60 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2015.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2015.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2015.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2015.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -StartChar: uni2015 -Encoding: 8213 8213 388 -Width: 1118 -Flags: W -HStem: 205 61<62 1051> -LayerCount: 2 -Fore -SplineSet -59 214 m 0 - 59 216 61 266 72 266 c 2 - 1052 266 l 1 - 1052 266 1060 266 1060 257 c 0 - 1060 239 1052 216 1051 212 c 0 - 1049 206 1044 205 1044 205 c 1 - 64 205 l 1 - 64 205 59 204 59 214 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni201F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni201F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni201F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni201F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni201F -Encoding: 8223 8223 947 -Width: 370 -Flags: HW -LayerCount: 2 -Fore -Refer: 393 8221 N -1 0 0 1 370 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni202F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni202F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni202F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni202F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni202F -Encoding: 8239 8239 400 -Width: 166 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2038.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2038.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2038.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2038.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,20 +0,0 @@ -StartChar: uni2038 -Encoding: 8248 8248 404 -Width: 415 -Flags: W -HStem: -35 143 -VStem: 88 229 -LayerCount: 2 -Fore -SplineSet -307 -35 m 0 - 294 -35 236 11 201 46 c 1 - 170 10 110 -35 97 -35 c 0 - 88 -35 88 -19 88 -19 c 1 - 95 -9 154 31 189 98 c 1 - 192 106 193 107 198 107 c 0 - 217 107 208 93 255 40 c 0 - 272 20 315 -15 317 -18 c 1 - 317 -22 313 -35 307 -35 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni203E.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni203E.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni203E.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni203E.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: uni203E -Encoding: 8254 8254 407 -Width: 844 -Flags: HW -LayerCount: 2 -Fore -Refer: 337 773 N 1 0 0 1 711 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2042.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2042.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2042.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2042.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uni2042 -Encoding: 8258 8258 951 -Width: 856 -Flags: HW -LayerCount: 2 -Fore -Refer: 10 42 N 1 0 0 1 436 -393 2 -Refer: 10 42 N 1 0 0 1 0 -393 2 -Refer: 10 42 N 1 0 0 1 218 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni205F.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni205F.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni205F.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni205F.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni205F -Encoding: 8287 8287 408 -Width: 287 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2060.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2060.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2060.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2060.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uni2060 -Encoding: 8288 8288 409 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2070.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2070.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2070.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2070.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni2070 -Encoding: 8304 8304 902 -Width: 362 -VWidth: 455 -Flags: W -HStem: 452 26<151 211> 803 26<151 213> -VStem: 36 67<543 738> 259 67<543 739> -LayerCount: 2 -Fore -SplineSet -104 642 m 0 - 104 553 137 479 182 479 c 0 - 227 479 259 556 259 645 c 0 - 259 734 227 803 182 803 c 0 - 137 803 104 731 104 642 c 0 -36 641 m 0 - 36 744 100 829 181 829 c 0 - 262 829 326 744 326 641 c 0 - 326 538 262 452 181 452 c 0 - 100 452 36 538 36 641 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2074.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2074.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2074.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2074.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: uni2074 -Encoding: 8308 8308 903 -Width: 304 -VWidth: 456 -Flags: W -HStem: 553 41<59 166 225 274> -VStem: 166 59<451 553 594 731> -LayerCount: 2 -Fore -SplineSet -194 451 m 0 - 168 451 166 454 166 459 c 2 - 166 551 l 1 - 165 554 163 553 161 553 c 2 - 23 553 l 1 - 18 559 16 575 15 589 c 1 - 88 677 137 750 202 825 c 0 - 206 829 212 832 217 832 c 0 - 221 832 225 830 225 826 c 2 - 225 598 l 2 - 225 595 226 595 230 594 c 1 - 266 594 l 2 - 271 594 274 593 274 561 c 0 - 274 557 269 553 269 553 c 1 - 229 553 l 2 - 226 553 225 552 225 549 c 2 - 225 458 l 1 - 225 458 226 451 194 451 c 0 -166 598 m 1 - 166 727 l 2 - 166 729 164 731 163 731 c 1 - 163 731 164 731 163 730 c 2 - 60 601 l 2 - 59 600 59 600 59 599 c 0 - 59 596 60 594 63 594 c 2 - 161 594 l 1 - 163 595 165 594 166 598 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2075.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2075.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2075.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2075.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni2075 -Encoding: 8309 8309 904 -Width: 311 -VWidth: 455 -Flags: W -HStem: 451 29<112 187> 645 50<94 187> 773 53<105 255> -VStem: 211 62<503 623> -LayerCount: 2 -Fore -SplineSet -94 826 m 0 - 139 828 228 825 250 831 c 1 - 253 827 256 819 256 805 c 0 - 256 792 252 783 247 773 c 1 - 103 767 109 779 107 767 c 2 - 94 691 l 1 - 112 693 126 694 150 694 c 0 - 219 694 273 640 273 578 c 0 - 273 504 228 451 129 451 c 0 - 103 451 56 461 41 482 c 1 - 40 486 39 487 39 491 c 0 - 39 507 55 518 66 518 c 0 - 96 518 115 480 146 480 c 0 - 200 480 211 527 211 561 c 0 - 211 612 183 645 133 645 c 0 - 85 645 73 641 67 641 c 0 - 64 641 62 643 58 649 c 1 - 87 825 86 826 94 826 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2076.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2076.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2076.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2076.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2076 -Encoding: 8310 8310 905 -Width: 318 -VWidth: 456 -Flags: W -HStem: 451 29<125 197> 636 38<120 199> -VStem: 34 62<504 638> 219 62<500 618> -LayerCount: 2 -Fore -SplineSet -97 566 m 0 - 97 517 120 480 165 480 c 0 - 198 480 219 514 219 563 c 0 - 219 599 198 636 151 636 c 0 - 128 636 110 618 103 602 c 0 - 99 593 97 580 97 566 c 0 -161 451 m 0 - 90 451 34 499 34 584 c 3 - 34 698 131 793 245 833 c 1 - 255 830 264 814 264 808 c 1 - 192 780 130 730 104 647 c 0 - 102 643 104 640 107 643 c 0 - 117 656 140 674 187 674 c 0 - 229 674 281 632 281 570 c 0 - 281 503 233 451 161 451 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2077.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2077.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2077.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2077.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2077 -Encoding: 8311 8311 906 -Width: 298 -VWidth: 455 -Flags: W -HStem: 775 54<70 242> -VStem: 38 25<732 766> -LayerCount: 2 -Fore -SplineSet -256 829 m 2 - 272 829 292 831 296 831 c 0 - 300 831 300 828 300 825 c 0 - 300 817 294 806 283 787 c 2 - 87 447 l 1 - 85 446 83 446 82 446 c 0 - 71 446 64 456 64 468 c 0 - 64 470 64 472 65 474 c 2 - 242 775 l 1 - 190 775 145 775 97 775 c 0 - 69 775 68 741 63 730 c 1 - 57 729 44 729 38 735 c 1 - 41 766 41 791 42 821 c 0 - 42 826 49 829 54 829 c 2 - 256 829 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2078.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2078.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2078.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2078.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: uni2078 -Encoding: 8312 8312 907 -Width: 303 -VWidth: 455 -Flags: W -HStem: 448 29<124 186> 626 45<132 172> 803 28<122 176> -VStem: 42 62<490 601> 57 54<692 798> 192 53<687 795> 202 62<491 596> -LayerCount: 2 -Fore -SplineSet -57 738 m 3xe8 - 57 788 96 831 147 831 c 3 - 204 831 245 798 245 742 c 3xec - 245 703 214 672 190 659 c 0 - 187 658 186 658 189 656 c 0 - 228 635 265 594 265 552 c 0 - 265 493 214 448 152 448 c 0 - 90 448 42 483 42 545 c 0xf2 - 42 593 87 627 108 639 c 0 - 110 640 110 643 108 644 c 0 - 71 669 57 697 57 738 c 3xe8 -110 747 m 3 - 110 700 142 682 162 672 c 0 - 163 671 163 671 164 671 c 0 - 166 671 166 672 168 673 c 0 - 188 690 192 722 192 740 c 3 - 192 778 172 803 148 803 c 0 - 127 803 110 784 110 747 c 3 -104 557 m 0xf2 - 104 512 122 478 155 478 c 0 - 189 478 202 511 202 546 c 0 - 202 586 165 613 145 624 c 0 - 143 625 142 626 140 626 c 0 - 139 626 138 626 137 625 c 0 - 120 610 104 592 104 557 c 0xf2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2079.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2079.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2079.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2079.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2079 -Encoding: 8313 8313 908 -Width: 319 -VWidth: 456 -Flags: W -HStem: 610 38<125 204> 804 29<127 199> -VStem: 43 62<666 784> 228 62<646 780> -LayerCount: 2 -Fore -SplineSet -228 718 m 0 - 228 767 204 804 159 804 c 0 - 126 804 105 770 105 721 c 0 - 105 685 126 648 173 648 c 0 - 196 648 215 667 222 683 c 0 - 226 692 228 704 228 718 c 0 -163 833 m 0 - 234 833 290 785 290 700 c 3 - 290 586 193 491 79 451 c 1 - 69 454 61 471 61 477 c 1 - 133 505 194 554 220 637 c 0 - 222 641 220 645 217 642 c 0 - 207 629 185 610 138 610 c 0 - 96 610 43 652 43 714 c 0 - 43 781 91 833 163 833 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2080.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2080.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2080.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2080.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,22 +0,0 @@ -StartChar: uni2080 -Encoding: 8320 8320 909 -Width: 388 -VWidth: -111 -Flags: W -HStem: -114 26<165 224> 236 26<165 227> -VStem: 50 67<-24 171> 272 67<-23 172> -LayerCount: 2 -Fore -SplineSet -117 75 m 0 - 117 -14 150 -88 195 -88 c 0 - 240 -88 272 -11 272 78 c 0 - 272 167 240 236 195 236 c 0 - 150 236 117 164 117 75 c 0 -50 74 m 0 - 50 177 113 263 194 263 c 0 - 275 263 340 177 340 74 c 0 - 340 -29 275 -114 194 -114 c 0 - 113 -114 50 -29 50 74 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2081.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2081.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2081.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2081.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: uni2081 -Encoding: 8321 8321 910 -Width: 261 -VWidth: -110 -Flags: W -HStem: -114 23<59 98 174 211> -VStem: 106 59<-81 187> -LayerCount: 2 -Fore -SplineSet -53 168 m 1 - 48 171 42 185 42 189 c 0 - 42 190 42 192 44 193 c 0 - 109 230 160 265 162 265 c 2 - 164 265 l 2 - 169 265 171 252 172 248 c 1 - 172 248 165 228 165 194 c 2 - 165 -42 l 2 - 165 -61 165 -77 173 -81 c 0 - 193 -91 204 -91 207 -91 c 0 - 209 -91 211 -99 211 -104 c 0 - 211 -108 210 -112 209 -114 c 1 - 183 -112 164 -110 138 -110 c 0 - 112 -110 88 -112 62 -114 c 1 - 58 -110 58 -91 62 -91 c 0 - 69 -91 83 -89 99 -81 c 0 - 107 -77 106 -57 106 -46 c 2 - 106 150 l 2 - 106 184 104 187 99 187 c 0 - 91 187 64 174 53 168 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2082.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2082.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2082.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2082.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni2082 -Encoding: 8322 8322 911 -Width: 349 -VWidth: -110 -Flags: W -HStem: -111 54<118 272> -29 20G<293 298> 214 51<110 204> -VStem: 219 62<106 200> -LayerCount: 2 -Fore -SplineSet -148 214 m 0 - 96 214 72 161 66 161 c 0 - 61 161 54 174 54 180 c 0 - 54 182 54 183 55 184 c 0 - 69 208 108 265 187 265 c 0 - 249 265 281 214 281 179 c 0 - 281 89 180 8 118 -52 c 0 - 115 -55 116 -58 120 -58 c 2 - 231 -58 l 2 - 269 -58 273 -32 282 -13 c 0 - 283 -11 291 -10 296 -10 c 0 - 300 -10 304 -11 304 -13 c 1 - 297 -46 289 -77 284 -111 c 1 - 188 -110 l 1 - 188 -110 61 -111 56 -111 c 1 - 51 -105 48 -100 47 -86 c 1 - 105 -32 219 97 219 151 c 0 - 219 191 190 214 148 214 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2083.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2083.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2083.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2083.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: uni2083 -Encoding: 8323 8323 912 -Width: 330 -VWidth: -111 -Flags: W -HStem: -115 29<114 194> 62 30<103 148> 224 40<106 192> -VStem: 201 56<127 216> 220 62<-59 49> -LayerCount: 2 -Fore -SplineSet -175 264 m 0xf0 - 210 264 257 229 257 181 c 0xf0 - 257 139 228 116 196 102 c 1 - 226 102 282 67 282 6 c 0 - 282 -76 202 -115 138 -115 c 0 - 99 -115 59 -103 44 -84 c 1 - 43 -81 42 -78 42 -75 c 0 - 42 -59 59 -49 68 -49 c 0 - 104 -49 112 -86 150 -86 c 0 - 185 -86 220 -67 220 -3 c 0xe8 - 220 40 182 70 148 70 c 0 - 137 70 124 67 108 62 c 1 - 105 66 103 74 103 80 c 0 - 103 84 103 88 104 92 c 1 - 146 101 201 124 201 171 c 0 - 201 201 187 224 144 224 c 0 - 110 224 81 183 77 178 c 1 - 72 178 61 197 64 201 c 0 - 82 228 115 264 175 264 c 0xf0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2084.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2084.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2084.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2084.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,39 +0,0 @@ -StartChar: uni2084 -Encoding: 8324 8324 913 -Width: 333 -VWidth: -110 -Flags: W -HStem: -14 41<76 184 242 292> -VStem: 184 59<-115 -14 27 165> -LayerCount: 2 -Fore -SplineSet -212 -115 m 0 - 186 -115 184 -112 184 -107 c 2 - 184 -16 l 1 - 183 -13 181 -14 179 -14 c 2 - 41 -14 l 1 - 36 -8 33 8 32 22 c 1 - 105 110 155 184 220 259 c 0 - 224 263 229 266 234 266 c 0 - 238 266 242 264 242 260 c 2 - 242 31 l 2 - 242 28 244 28 248 27 c 1 - 283 27 l 2 - 288 27 292 26 292 -6 c 0 - 292 -10 286 -14 286 -14 c 1 - 246 -14 l 2 - 243 -14 242 -15 242 -18 c 2 - 242 -108 l 1 - 242 -108 244 -115 212 -115 c 0 -184 31 m 1 - 184 160 l 2 - 184 162 182 165 181 165 c 1 - 181 165 182 165 181 164 c 2 - 77 34 l 2 - 76 33 76 33 76 32 c 0 - 76 29 78 27 81 27 c 2 - 179 27 l 1 - 181 28 183 27 184 31 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2085.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2085.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2085.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2085.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -StartChar: uni2085 -Encoding: 8325 8325 914 -Width: 334 -VWidth: -111 -Flags: W -HStem: -115 29<119 194> 78 50<101 194> 207 53<112 262> -VStem: 218 62<-63 56> -LayerCount: 2 -Fore -SplineSet -101 260 m 0 - 146 262 235 259 257 265 c 1 - 260 261 263 252 263 238 c 0 - 263 225 259 217 254 207 c 1 - 110 201 116 212 114 200 c 2 - 101 125 l 1 - 119 127 133 128 157 128 c 0 - 226 128 280 74 280 12 c 0 - 280 -62 235 -115 136 -115 c 0 - 110 -115 63 -105 48 -84 c 1 - 47 -80 46 -79 46 -75 c 0 - 46 -59 62 -49 73 -49 c 0 - 103 -49 122 -86 153 -86 c 0 - 207 -86 218 -40 218 -6 c 0 - 218 45 190 78 140 78 c 0 - 92 78 80 74 74 74 c 0 - 71 74 68 77 64 83 c 1 - 93 259 93 260 101 260 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2086.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2086.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2086.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2086.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2086 -Encoding: 8326 8326 915 -Width: 346 -VWidth: -110 -Flags: W -HStem: -115 29<138 210> 69 38<133 212> -VStem: 47 62<-62 72> 231 62<-66 52> -LayerCount: 2 -Fore -SplineSet -109 0 m 0 - 109 -49 133 -86 178 -86 c 0 - 211 -86 231 -52 231 -3 c 0 - 231 33 211 69 164 69 c 0 - 141 69 122 51 115 35 c 0 - 111 26 109 14 109 0 c 0 -174 -115 m 0 - 103 -115 47 -67 47 18 c 3 - 47 132 144 227 258 267 c 1 - 268 264 276 247 276 241 c 1 - 204 213 143 164 117 81 c 0 - 115 77 117 73 120 76 c 0 - 130 89 152 107 199 107 c 0 - 241 107 294 66 294 4 c 0 - 294 -63 246 -115 174 -115 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2087.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2087.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2087.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2087.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2087 -Encoding: 8327 8327 916 -Width: 339 -VWidth: -111 -Flags: W -HStem: 209 54<83 255> -VStem: 51 25<165 199> -LayerCount: 2 -Fore -SplineSet -269 263 m 2 - 285 263 305 265 309 265 c 0 - 313 265 312 262 312 259 c 0 - 312 251 307 240 296 221 c 2 - 100 -119 l 1 - 98 -120 96 -120 95 -120 c 0 - 84 -120 77 -111 77 -99 c 0 - 77 -97 77 -95 78 -93 c 2 - 255 209 l 1 - 203 209 157 209 109 209 c 0 - 81 209 81 175 76 164 c 1 - 70 163 57 163 51 169 c 1 - 54 200 54 225 55 255 c 0 - 55 260 61 263 66 263 c 2 - 269 263 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2088.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2088.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2088.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2088.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,37 +0,0 @@ -StartChar: uni2088 -Encoding: 8328 8328 917 -Width: 327 -VWidth: -111 -Flags: W -HStem: -118 29<137 199> 60 45<145 185> 236 28<135 189> -VStem: 55 62<-76 35> 69 54<126 232> 205 53<120 228> 215 62<-76 29> -LayerCount: 2 -Fore -SplineSet -69 172 m 3xe8 - 69 222 109 265 160 265 c 3 - 217 265 258 232 258 176 c 3xec - 258 137 227 106 203 93 c 0 - 200 92 199 92 202 90 c 0 - 241 69 277 27 277 -15 c 0 - 277 -74 227 -118 165 -118 c 0 - 103 -118 55 -83 55 -21 c 0xf2 - 55 27 100 60 121 72 c 0 - 123 73 123 76 121 77 c 0 - 84 102 69 131 69 172 c 3xe8 -123 181 m 3 - 123 134 155 115 175 105 c 0 - 176 104 176 104 177 104 c 0 - 179 104 179 105 181 106 c 0 - 201 123 205 156 205 174 c 3 - 205 212 185 236 161 236 c 0 - 140 236 123 218 123 181 c 3 -117 -10 m 0xf2 - 117 -55 135 -89 168 -89 c 0 - 202 -89 215 -56 215 -21 c 0 - 215 19 177 47 157 58 c 0 - 155 59 154 60 152 60 c 0 - 151 60 150 60 149 59 c 0 - 132 44 117 25 117 -10 c 0xf2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2089.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2089.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2089.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2089.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,27 +0,0 @@ -StartChar: uni2089 -Encoding: 8329 8329 918 -Width: 341 -VWidth: -110 -Flags: W -HStem: 44 38<130 209> 237 29<132 204> -VStem: 48 62<99 218> 232 62<80 214> -LayerCount: 2 -Fore -SplineSet -232 151 m 0 - 232 200 209 237 164 237 c 0 - 131 237 110 203 110 154 c 0 - 110 118 131 82 178 82 c 0 - 201 82 220 100 227 116 c 0 - 231 125 232 137 232 151 c 0 -168 267 m 0 - 239 267 295 219 295 134 c 3 - 295 20 198 -75 84 -115 c 1 - 74 -112 65 -96 65 -90 c 1 - 137 -62 199 -13 225 70 c 0 - 227 74 225 78 222 75 c 0 - 212 62 190 44 143 44 c 0 - 101 44 48 85 48 147 c 0 - 48 214 96 267 168 267 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2213.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2213.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uni2213.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uni2213.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: uni2213 -Encoding: 8723 8723 423 -Width: 583 -Flags: W -HStem: 216 56<68 267 321 518> 510 56<65 516> -VStem: 267 55<14 216 271 469> -LayerCount: 2 -Fore -SplineSet -513 565 m 1 - 513 565 523 566 521 554 c 0 - 514 507 508 513 505 510 c 1 - 67 510 l 1 - 67 510 60 509 62 523 c 0 - 67 558 69 565 75 565 c 2 - 513 565 l 1 -321 213 m 2 - 321 25 l 1 - 321 25 321 16 277 10 c 0 - 274 10 273 9 271 9 c 0 - 264 9 267 13 267 17 c 2 - 267 211 l 2 - 267 213 266 216 261 216 c 2 - 66 216 l 1 - 66 216 61 216 61 226 c 0 - 61 230 61 243 68 266 c 0 - 70 272 75 271 75 271 c 1 - 262 271 l 2 - 265 271 267 274 267 276 c 2 - 267 462 l 1 - 267 462 265 467 271 469 c 0 - 294 476 308 477 312 477 c 0 - 322 477 321 471 321 471 c 1 - 321 275 l 2 - 321 272 322 271 325 271 c 2 - 521 271 l 2 - 525 271 528 273 528 266 c 0 - 528 257 525 243 519 222 c 0 - 517 216 512 216 512 216 c 1 - 325 216 l 2 - 322 216 321 215 321 213 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uniFEFF.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uniFEFF.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uniFEFF.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uniFEFF.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,6 +0,0 @@ -StartChar: uniFEFF -Encoding: 65279 65279 475 -Width: 0 -Flags: HW -LayerCount: 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/universal.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/universal.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/universal.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/universal.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,50 +0,0 @@ -StartChar: universal -Encoding: 8704 8704 415 -Width: 709 -Flags: W -HStem: 340 49<288 453> 618 28<24 76 203 255 474 528 634 685> -LayerCount: 2 -Fore -SplineSet -479 397 m 2 - 526 512 l 2 - 535 534 543 551 543 569 c 0 - 543 578 540 587 536 596 c 0 - 528 612 489 618 477 618 c 0 - 472 618 472 641 477 646 c 1 - 513 644 533 641 569 641 c 0 - 614 641 645 644 684 646 c 1 - 685 643 686 635 686 630 c 0 - 686 624 685 618 682 618 c 0 - 674 618 633 614 619 589 c 0 - 599 554 587 527 571 490 c 2 - 376 19 l 2 - 365 -7 355 -14 342 -14 c 0 - 338 -14 334 -12 332 -8 c 2 - 132 502 l 2 - 117 540 105 569 88 594 c 0 - 77 610 40 618 28 618 c 0 - 26 618 24 625 24 631 c 0 - 24 637 26 644 28 646 c 1 - 73 644 99 641 144 641 c 0 - 187 641 215 644 254 646 c 1 - 256 640 257 618 252 618 c 0 - 244 618 203 617 200 598 c 0 - 199 593 199 589 199 584 c 0 - 199 562 209 544 218 518 c 2 - 264 394 l 2 - 265 392 266 392 270 392 c 0 - 303 390 334 389 366 389 c 0 - 402 389 438 390 474 393 c 0 - 476 393 479 396 479 397 c 2 -453 334 m 2 - 454 335 452 338 450 338 c 0 - 424 340 399 340 373 340 c 0 - 347 340 320 340 290 338 c 0 - 289 338 288 337 288 336 c 2 - 364 148 l 2 - 365 146 366 145 368 145 c 0 - 372 145 379 150 380 153 c 2 - 453 334 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -StartChar: uogonek -Encoding: 371 371 303 -Width: 495 -Flags: W -HStem: -222 58<335 407> -7 60<190 272> 20 26<422 474> 404 20G<156 159 408 411> -VStem: 81 74<91 358> 278 53<-160 -86> 333 74<80 358> -LayerCount: 2 -Fore -SplineSet -407 333 m 2xde - 407 138 l 2 - 407 127 408 90 414 63 c 0 - 419 44 469 47 472 46 c 0 - 474 45 475 38 475 35 c 0 - 475 33 472 20 467 20 c 0xbe - 460 20 454 19 447 18 c 0 - 409 12 331 -71 331 -122 c 0 - 331 -137 338 -164 371 -164 c 0 - 421 -164 444 -127 450 -127 c 0 - 451 -127 455 -132 455 -140 c 0 - 455 -145 453 -153 450 -157 c 0 - 429 -185 392 -222 348 -222 c 0 - 293 -222 278 -172 278 -146 c 0 - 278 -104 333 -27 376 2 c 1 - 359 -3 341 -8 341 -8 c 0 - 336 -8 333 1 333 8 c 2 - 333 58 l 2 - 333 63 331 62 331 62 c 1 - 304 33 253 -7 203 -7 c 0 - 99 -7 81 107 81 175 c 2 - 81 298 l 2 - 81 306 80 337 67 351 c 1 - 46 377 11 367 11 373 c 0 - 11 374 12 396 17 397 c 0 - 61 404 115 412 151 423 c 0 - 152 423 155 424 156 424 c 0 - 162 424 162 408 161 403 c 0 - 157 372 155 364 155 331 c 2 - 155 199 l 2 - 155 100 183 53 251 53 c 0 - 294 53 333 95 333 115 c 2 - 333 298 l 2 - 333 306 332 337 319 351 c 1 - 298 377 263 367 263 373 c 0 - 263 374 264 396 269 397 c 0 - 313 404 367 412 403 423 c 0 - 404 423 407 424 408 424 c 0 - 414 424 414 408 413 403 c 0 - 409 372 407 366 407 333 c 2xde -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uogonek.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uogonek.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uogonek.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uogonek.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uogonek.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: Uogonek -Encoding: 370 370 302 -Width: 706 -Flags: W -HStem: -219 58<360 431> -4 57<275 438> 618 28<26 95 192 261 474 542 617 690> -VStem: 101 85<155 612> 303 53<-157 -81> 557 45<153 599> -LayerCount: 2 -Fore -SplineSet -144 642 m 0 - 182 642 218 644 258 646 c 1 - 263 641 262 623 258 618 c 1 - 246 618 194 614 191 603 c 0 - 186 587 186 559 186 530 c 2 - 186 289 l 2 - 186 208 203 148 234 109 c 0 - 265 71 310 53 368 53 c 0 - 469 53 554 100 557 268 c 1 - 557 532 l 2 - 557 567 557 584 547 600 c 0 - 541 610 493 619 477 619 c 1 - 472 626 473 641 475 647 c 1 - 514 645 540 643 583 643 c 0 - 628 643 643 645 688 647 c 1 - 691 642 693 630 688 619 c 1 - 676 619 619 612 612 600 c 0 - 603 585 602 570 602 533 c 2 - 602 270 l 2 - 602 144 564 85 489 28 c 0 - 462 7 355 -66 355 -119 c 0 - 355 -134 363 -161 396 -161 c 0 - 446 -161 469 -124 475 -124 c 0 - 476 -124 479 -129 479 -137 c 0 - 479 -142 478 -149 475 -153 c 0 - 454 -181 416 -219 372 -219 c 0 - 317 -219 303 -170 303 -144 c 0 - 303 -91 357 -30 409 2 c 1 - 393 -3 364 -4 347 -4 c 0 - 277 -4 216 20 173 61 c 0 - 128 104 101 167 101 245 c 2 - 101 530 l 2 - 101 559 101 587 96 603 c 0 - 93 614 41 618 29 618 c 1 - 25 623 24 641 29 646 c 1 - 69 644 106 642 144 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uogonek.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uogonek.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uogonek.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uogonek.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,45 +0,0 @@ -StartChar: uogonek.sc -Encoding: 65720 -1 872 -Width: 550 -Flags: W -HStem: -218 58<274 346> -4 50<215 345> 412 28<33 87 168 222 357 410 468 520> -VStem: 90 75<102 401> 217 53<-156 -81> 418 42<100 399> -LayerCount: 2 -Fore -SplineSet -460 181 m 2 - 460 102 436 57 384 21 c 0 - 341 -9 270 -77 270 -118 c 0 - 270 -133 277 -160 310 -160 c 0 - 360 -160 383 -123 389 -123 c 0 - 390 -123 394 -128 394 -136 c 0 - 394 -141 392 -149 389 -153 c 0 - 368 -181 330 -218 286 -218 c 0 - 231 -218 217 -169 217 -143 c 0 - 217 -93 270 -35 320 -0 c 1 - 304 -3 288 -4 271 -4 c 0 - 166 -4 90 60 90 164 c 2 - 90 353 l 2 - 90 373 90 390 87 401 c 0 - 85 408 43 412 35 412 c 1 - 31 416 31 436 35 440 c 1 - 65 438 99 437 128 437 c 0 - 157 437 190 438 220 440 c 1 - 224 436 224 416 220 412 c 1 - 212 412 170 409 168 402 c 0 - 165 392 165 374 165 354 c 2 - 165 200 l 2 - 165 95 210 46 289 46 c 0 - 357 46 418 78 418 187 c 2 - 418 356 l 2 - 418 379 417 390 410 400 c 0 - 406 407 369 413 358 413 c 1 - 354 419 356 436 358 441 c 1 - 386 439 409 437 440 437 c 0 - 472 437 487 439 519 441 c 1 - 522 437 523 423 519 413 c 1 - 511 413 473 407 468 399 c 0 - 462 389 460 380 460 355 c 2 - 460 181 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: uring -Encoding: 367 367 299 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 500 -1 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" uring.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uring.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uring.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Uring.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Uring.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Uring -Encoding: 366 366 298 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 462 -1 N 1 0 0 1 608 0 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uring.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uring.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/uring.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/uring.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: uring.sc -Encoding: 65718 -1 870 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 342 778 N 1 0 0 1 518 21 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/u.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/u.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/u.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/u.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: u.sc -Encoding: 65613 -1 765 -Width: 551 -Flags: W -HStem: -4 50<215 369> 412 28<33 87 168 222 357 410 468 520> -VStem: 90 75<102 401> 418 42<101 399> -LayerCount: 2 -Fore -SplineSet -460 181 m 2 - 460 49 383 -4 271 -4 c 0 - 166 -4 90 60 90 164 c 2 - 90 353 l 2 - 90 373 90 390 87 401 c 0 - 85 408 43 412 35 412 c 1 - 31 416 31 436 35 440 c 1 - 65 438 99 437 128 437 c 0 - 157 437 190 438 220 440 c 1 - 224 436 224 416 220 412 c 1 - 212 412 170 409 168 402 c 0 - 165 392 165 374 165 354 c 2 - 165 200 l 2 - 165 95 210 46 289 46 c 0 - 357 46 418 78 418 187 c 2 - 418 356 l 2 - 418 379 417 390 410 400 c 0 - 406 407 369 413 358 413 c 1 - 354 419 356 436 358 441 c 1 - 386 439 409 437 440 437 c 0 - 472 437 487 439 519 441 c 1 - 522 437 523 423 519 413 c 1 - 511 413 473 407 468 399 c 0 - 462 389 460 380 460 355 c 2 - 460 181 l 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: utilde -Encoding: 361 361 293 -Width: 502 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 499 -1 2 -Refer: 84 117 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" utilde.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Utilde.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Utilde.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Utilde.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Utilde.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Utilde -Encoding: 360 360 292 -Width: 706 -Flags: HW -LayerCount: 2 -Fore -Refer: 463 -1 N 1 0 0 1 606 -7 2 -Refer: 52 85 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/utilde.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/utilde.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/utilde.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/utilde.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: utilde.sc -Encoding: 65715 -1 867 -Width: 551 -Flags: HW -LayerCount: 2 -Fore -Refer: 335 771 N 1 0 0 1 507 20 2 -Refer: 765 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/v.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/v.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/v.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/v.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: v -Encoding: 118 118 85 -Width: 461 -Flags: W -HStem: -11 21G<222 227> 392 28<1 52 146 197 288 339 413 461> -LayerCount: 2 -Fore -SplineSet -100 415 m 0 - 137 415 159 418 198 420 c 1 - 200 414 199 392 194 392 c 1 - 187 392 146 390 146 375 c 0 - 146 374 146 373 147 371 c 0 - 254 107 l 1 - 254 107 304 237 341 329 c 0 - 346 341 347 353 347 360 c 0 - 347 380 323 392 290 392 c 1 - 285 392 285 415 290 420 c 1 - 320 418 329 415 369 415 c 0 - 406 415 421 418 460 420 c 1 - 464 414 461 392 457 392 c 1 - 449 392 408 385 396 358 c 0 - 338 220 306 145 249 6 c 0 - 246 -2 230 -11 224 -11 c 0 - 220 -11 216 -9 215 -7 c 0 - 152 143 110 262 56 372 c 0 - 46 393 14 392 2 392 c 1 - 0 397 -2 410 2 420 c 1 - 42 418 60 415 100 415 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" v.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_V.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_V.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_V.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_V.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: V -Encoding: 86 86 53 -Width: 623 -Flags: W -HStem: -2 21G<294 303> 618 28<-8 46 177 229 436 487 586 637> -LayerCount: 2 -Fore -SplineSet -107 642 m 0 - 150 642 189 644 228 646 c 1 - 230 640 230 619 226 618 c 1 - 218 618 167 613 167 586 c 0 - 167 577 173 553 185 520 c 0 - 217 432 327 134 330 126 c 1 - 336 139 427 361 486 511 c 16 - 495 533 503 561 503 579 c 0 - 503 610 451 617 439 617 c 1 - 434 619 434 641 439 646 c 1 - 475 644 505 642 541 642 c 0 - 586 642 597 644 636 646 c 1 - 639 641 637 618 634 618 c 1 - 626 618 589 613 572 593 c 0 - 560 579 538 531 523 494 c 0 - 452 314 409 213 333 31 c 0 - 322 5 309 -2 296 -2 c 0 - 292 -2 289 10 287 14 c 0 - 221 188 174 314 101 502 c 0 - 86 540 73 571 56 596 c 0 - 45 612 6 618 -6 618 c 1 - -8 618 -8 644 -6 646 c 1 - 39 644 62 642 107 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/v.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/v.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/v.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/v.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,33 +0,0 @@ -StartChar: v.sc -Encoding: 65614 -1 766 -Width: 460 -Flags: W -HStem: -2 21G<218 224> 412 28<8 56 149 195 301 347 411 456> -LayerCount: 2 -Fore -SplineSet -90 437 m 0 - 119 437 168 438 194 440 c 1 - 196 435 197 413 193 412 c 1 - 188 412 146 410 146 391 c 0 - 146 370 195 255 245 120 c 0 - 247 113 250 118 251 122 c 0 - 292 220 305 256 339 342 c 16 - 345 357 352 375 352 387 c 0 - 352 408 311 412 303 412 c 1 - 299 414 299 436 303 440 c 1 - 327 438 361 437 385 437 c 0 - 415 437 430 438 456 440 c 1 - 459 436 457 412 454 412 c 1 - 449 412 420 409 408 396 c 0 - 400 387 385 354 375 329 c 0 - 326 208 298 143 245 21 c 0 - 238 3 228 -2 219 -2 c 0 - 216 -2 214 6 213 9 c 0 - 168 126 137 208 87 334 c 0 - 77 359 68 380 56 397 c 0 - 49 408 17 412 9 412 c 1 - 7 412 7 438 9 440 c 1 - 39 438 60 437 90 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wacute -Encoding: 7811 7811 619 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 646 -3 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wacute -Encoding: 7810 7810 618 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 750 0 2 -Refer: 54 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,11 +0,0 @@ -StartChar: wcircumflex -Encoding: 373 373 305 -Width: 704 -VWidth: 0 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 645 -5 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" wcircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wcircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wcircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wcircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wcircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wcircumflex -Encoding: 372 372 304 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 717 -30 2 -Refer: 54 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wcircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wcircumflex.sc -Encoding: 65721 -1 873 -Width: 646 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 589 46 2 -Refer: 767 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wdieresis -Encoding: 7813 7813 621 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 613 3 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wdieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wdieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wdieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wdieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wdieresis -Encoding: 7812 7812 620 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 292 16 2 -Refer: 54 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/w.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/w.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/w.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/w.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: w -Encoding: 119 119 86 -Width: 704 -Flags: W -HStem: -11 21G<220 227 469 475> 392 28<0 50 148 197 261 303 410 456 526 580 653 704> -VStem: 330 74<298 370> -LayerCount: 2 -Fore -SplineSet -99 415 m 0 - 136 415 158 418 197 420 c 1 - 199 414 199 394 195 392 c 1 - 187 392 146 390 146 369 c 0 - 146 368 148 362 151 354 c 0 - 163 323 196 243 251 114 c 1 - 301 240 330 310 330 319 c 0 - 330 326 320 354 307 373 c 0 - 296 389 276 392 264 392 c 1 - 259 395 259 415 264 420 c 1 - 304 418 313 415 353 415 c 0 - 390 415 415 418 454 420 c 1 - 456 414 457 396 453 392 c 1 - 423 392 405 383 405 360 c 0 - 405 357 405 355 407 350 c 0 - 415 324 442 256 496 117 c 1 - 534 212 568 295 582 336 c 0 - 586 347 587 355 587 359 c 0 - 587 387 551 390 529 392 c 1 - 525 395 524 415 529 420 c 1 - 569 418 574 415 614 415 c 0 - 651 415 664 418 703 420 c 1 - 704 417 706 397 700 392 c 1 - 692 392 646 385 634 356 c 0 - 580 220 549 142 492 6 c 0 - 489 -2 478 -11 472 -11 c 0 - 466 -11 461 -9 460 -7 c 2 - 352 275 l 1 - 246 8 l 2 - 245 5 233 -11 222 -11 c 0 - 218 -11 214 -9 213 -7 c 0 - 152 144 119 224 55 370 c 0 - 46 391 14 392 2 392 c 1 - -1 398 -1 414 2 420 c 1 - 42 418 59 415 99 415 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" w.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_W.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_W.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_W.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_W.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,41 +0,0 @@ -StartChar: W -Encoding: 87 87 54 -Width: 878 -Flags: W -HStem: -2 21G<251 260 605 613> 618 28<-6 45 170 221 682 736 837 884> -LayerCount: 2 -Fore -SplineSet -115 642 m 0 - 158 642 181 644 220 646 c 1 - 222 640 222 619 218 618 c 1 - 210 618 160 613 160 586 c 1 - 160 580 166 556 175 522 c 0 - 197 441 247 283 288 145 c 1 - 334 296 407 518 436 614 c 0 - 442 633 460 646 471 646 c 0 - 475 646 477 642 482 631 c 1 - 489 610 573 341 638 147 c 1 - 680 296 704 374 740 512 c 0 - 746 535 751 562 751 580 c 0 - 751 611 697 618 685 618 c 1 - 680 620 680 641 685 646 c 1 - 721 644 755 642 791 642 c 0 - 836 642 844 644 883 646 c 1 - 886 641 884 618 881 618 c 1 - 873 618 839 610 819 593 c 0 - 805 581 796 559 784 519 c 0 - 730 334 696 206 644 31 c 0 - 639 13 620 -2 607 -2 c 0 - 603 -2 598 10 597 14 c 1 - 549 155 438 497 438 496 c 1 - 383 316 343 204 291 31 c 0 - 286 13 266 -2 253 -2 c 0 - 249 -2 245 10 244 14 c 0 - 187 195 147 328 87 520 c 0 - 75 559 71 581 52 599 c 0 - 38 612 8 618 -4 618 c 1 - -6 618 -6 644 -4 646 c 1 - 41 644 70 642 115 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: wgrave -Encoding: 7809 7809 617 -Width: 704 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 589 -3 2 -Refer: 86 119 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wgrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wgrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Wgrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Wgrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Wgrave -Encoding: 7808 7808 616 -Width: 878 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 671 0 2 -Refer: 54 87 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/w.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/w.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/w.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/w.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: w.sc -Encoding: 65615 -1 767 -Width: 646 -Flags: W -HStem: -2 21G<193 199 440 446> 412 28<3 53 146 193 480 525 595 633> -LayerCount: 2 -Fore -SplineSet -95 437 m 0 - 125 437 165 438 192 440 c 1 - 194 435 195 413 191 412 c 1 - 185 412 143 410 143 391 c 1 - 143 376 184 251 223 134 c 1 - 224 127 226 131 227 135 c 0 - 259 235 282 297 317 410 c 0 - 322 426 332 439 341 439 c 0 - 344 439 351 438 355 428 c 1 - 362 413 416 260 462 135 c 1 - 463 133 467 131 468 135 c 0 - 495 233 501 254 525 346 c 0 - 529 362 530 376 530 388 c 0 - 530 409 490 412 482 412 c 1 - 478 414 478 436 482 440 c 1 - 507 438 542 437 567 437 c 0 - 598 437 605 438 632 440 c 1 - 635 436 633 412 630 412 c 1 - 625 412 604 408 594 402 c 0 - 583 396 568 375 561 348 c 0 - 529 223 508 149 474 32 c 0 - 469 17 451 -2 442 -2 c 0 - 439 -2 433 7 432 10 c 0 - 388 129 372 175 324 305 c 1 - 324 308 321 308 320 305 c 1 - 282 190 261 133 226 29 c 0 - 221 14 204 -2 195 -2 c 0 - 192 -2 190 6 189 9 c 0 - 149 130 119 217 77 346 c 0 - 68 372 66 387 53 399 c 0 - 43 408 13 412 4 412 c 1 - 2 412 2 438 4 440 c 1 - 35 438 64 437 95 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/x.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/x.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/x.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/x.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,47 +0,0 @@ -StartChar: x -Encoding: 120 120 87 -Width: 464 -Flags: W -HStem: -3 28<11 75 145 197 255 297 403 458> 392 28<22 80 178 219 260 315 371 439> -LayerCount: 2 -Fore -SplineSet -120 415 m 0 - 160 415 197 418 219 420 c 1 - 220 416 222 398 217 392 c 1 - 201 392 178 390 178 375 c 0 - 178 372 180 368 183 363 c 2 - 247 261 l 1 - 273 302 316 353 316 373 c 0 - 316 393 268 391 262 392 c 1 - 260 393 259 416 262 420 c 1 - 302 418 320 415 360 415 c 0 - 395 415 425 418 439 420 c 1 - 440 415 440 392 438 392 c 1 - 419 391 375 387 362 370 c 0 - 327 321 274 245 265 234 c 1 - 275 219 382 61 382 61 c 2 - 402 33 429 25 457 25 c 1 - 459 25 459 1 456 -3 c 1 - 420 -1 400 2 364 2 c 0 - 322 2 298 -1 256 -3 c 1 - 253 4 254 25 257 25 c 1 - 271 26 298 31 298 43 c 0 - 298 45 297 47 296 49 c 2 - 296 49 245 132 219 171 c 1 - 200 143 175 108 148 65 c 0 - 143 57 143 52 143 47 c 0 - 143 28 174 27 196 25 c 1 - 198 25 199 2 195 -3 c 1 - 157 -1 141 2 103 2 c 0 - 66 2 48 -1 11 -3 c 1 - 9 5 10 20 13 25 c 1 - 44 30 84 33 106 63 c 2 - 106 63 196 194 201 201 c 1 - 193 213 88 370 88 370 c 2 - 77 386 42 392 22 392 c 1 - 20 392 20 414 23 420 c 1 - 55 417 82 415 120 415 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" x.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_X.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_X.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_X.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_X.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: X -Encoding: 88 88 55 -Width: 652 -Flags: W -HStem: -3 28<-8 56 151 223 407 457 587 654> 618 28<31 85 229 282 423 484 580 633> -LayerCount: 2 -Fore -SplineSet -156 642 m 0 - 204 642 242 644 281 646 c 1 - 283 640 284 618 279 618 c 0 - 265 618 220 612 220 587 c 0 - 220 579 224 570 232 558 c 2 - 345 384 l 1 - 404 462 463 537 487 576 c 0 - 491 582 491 590 491 592 c 0 - 491 601 481 617 426 617 c 1 - 422 618 421 639 424 646 c 1 - 463 643 489 641 525 641 c 0 - 576 641 609 644 632 646 c 1 - 635 641 636 623 630 617 c 1 - 622 617 572 612 543 578 c 0 - 468 488 434 446 364 352 c 1 - 556 64 l 2 - 574 36 620 25 652 25 c 1 - 656 20 654 -1 653 -3 c 1 - 614 -1 592 2 552 2 c 0 - 497 2 464 -1 409 -3 c 1 - 404 2 404 25 409 25 c 0 - 420 25 466 34 466 53 c 0 - 466 56 463 61 461 64 c 2 - 312 294 l 1 - 253 216 166 91 151 64 c 0 - 150 61 146 55 146 49 c 0 - 146 37 166 25 221 25 c 1 - 225 19 225 0 223 -3 c 1 - 187 -1 149 2 113 2 c 0 - 62 2 31 -1 -8 -3 c 1 - -11 3 -8 22 -6 25 c 1 - 2 25 72 33 99 68 c 0 - 173 163 220 230 290 324 c 1 - 252 383 153 535 153 535 c 2 - 131 570 115 587 88 603 c 0 - 71 613 45 618 33 618 c 0 - 28 618 28 641 33 646 c 1 - 81 644 108 642 156 642 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/x.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/x.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/x.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/x.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,48 +0,0 @@ -StartChar: x.sc -Encoding: 65616 -1 768 -Width: 536 -Flags: W -HStem: -3 28<18 74 132 188 331 373 469 523> 411 24<34 80 185 228 332 380 453 499> -LayerCount: 2 -Fore -SplineSet -135 437 m 0 - 167 437 201 438 227 440 c 1 - 229 435 230 412 226 412 c 0 - 216 412 184 412 184 395 c 0 - 184 390 185 382 191 374 c 2 - 280 264 l 1 - 320 311 368 364 378 381 c 0 - 382 387 381 392 381 396 c 0 - 381 400 373 411 335 411 c 1 - 331 412 330 433 333 439 c 1 - 359 436 397 436 421 436 c 0 - 455 436 482 437 498 439 c 1 - 501 435 501 416 496 411 c 1 - 491 411 457 408 436 387 c 0 - 389 341 347 291 303 236 c 1 - 456 51 l 2 - 471 33 500 25 521 25 c 1 - 525 21 523 -1 522 -3 c 1 - 496 -1 465 1 438 1 c 0 - 400 1 371 -1 333 -3 c 1 - 329 1 329 25 333 25 c 0 - 340 25 374 31 374 44 c 0 - 374 46 372 49 370 51 c 1 - 253 193 l 1 - 210 146 145 70 135 51 c 0 - 134 49 132 45 132 41 c 0 - 132 37 148 25 186 25 c 1 - 190 20 190 4 186 -3 c 1 - 162 -1 128 1 104 1 c 0 - 70 1 47 -1 21 -3 c 1 - 17 2 17 20 21 25 c 1 - 26 25 68 29 88 51 c 0 - 136 106 179 157 231 219 c 1 - 204 253 119 357 119 357 c 2 - 101 378 94 391 75 402 c 0 - 63 409 44 412 36 412 c 0 - 32 412 32 436 36 440 c 1 - 68 438 103 437 135 437 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: yacute -Encoding: 253 253 186 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 539 -4 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" yacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Yacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Yacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Yacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Yacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Yacute -Encoding: 221 221 154 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 625 0 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: yacute.sc -Encoding: 65658 -1 810 -Width: 443 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 531 18 2 -Refer: 769 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ycircumflex -Encoding: 375 375 307 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 511 -5 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ycircumflex.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ycircumflex.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ycircumflex.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ycircumflex.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ycircumflex.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ycircumflex -Encoding: 374 374 306 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 461 -1 N 1 0 0 1 558 -30 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ycircumflex.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ycircumflex.sc -Encoding: 65722 -1 874 -Width: 443 -Flags: HW -LayerCount: 2 -Fore -Refer: 334 770 N 1 0 0 1 485 46 2 -Refer: 769 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: ydieresis -Encoding: 255 255 188 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 490 2 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" ydieresis.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ydieresis.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ydieresis.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ydieresis.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ydieresis.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ydieresis -Encoding: 376 376 308 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 473 -1 N 1 0 0 1 146 16 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ydieresis.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ydieresis.sc -Encoding: 65723 -1 875 -Width: 443 -Flags: HW -LayerCount: 2 -Fore -Refer: 340 776 N 1 0 0 1 474 23 2 -Refer: 769 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yen.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yen.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/yen.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/yen.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,54 +0,0 @@ -StartChar: yen -Encoding: 165 165 99 -Width: 656 -UnlinkRmOvrlpSave: 1 -Flags: W -HStem: -3 28<219 288 384 453> 135 36<208 470> 213 36<208 470> 597 28<26 81 225 277 419 485 567 628> -VStem: 294 85<32 292> -LayerCount: 2 -Fore -SplineSet -218 171 m 1 - 234 171 462 171 473 171 c 1 - 487 160 470 139 464 135 c 1 - 198 135 l 17 - 192 141 209 171 218 171 c 1 -218 249 m 1 - 234 249 462 249 473 249 c 1 - 487 238 470 217 464 213 c 1 - 198 213 l 17 - 192 219 209 249 218 249 c 1 -294 113 m 2 - 294 239 l 0 - 294 246 292 257 287 267 c 16 - 230 370 206 410 148 514 c 0 - 127 550 111 565 84 581 c 0 - 67 591 41 597 29 597 c 0 - 24 597 24 620 29 625 c 1 - 77 623 103 620 151 620 c 0 - 199 620 237 623 276 625 c 1 - 278 619 279 597 274 597 c 0 - 260 597 216 590 216 565 c 0 - 216 557 219 549 227 536 c 2 - 363 304 l 1 - 411 390 479 524 492 557 c 0 - 493 560 495 565 495 571 c 0 - 495 577 477 596 422 596 c 1 - 419 596 418 621 420 624 c 1 - 456 622 484 619 520 619 c 0 - 571 619 589 622 628 624 c 1 - 630 618 629 596 626 596 c 1 - 618 596 561 596 539 557 c 0 - 502 492 427 350 385 272 c 8 - 379 261 380 251 380 242 c 0 - 380 183 379 113 379 113 c 2 - 379 84 379 57 384 41 c 0 - 387 30 439 25 451 25 c 1 - 455 20 456 2 451 -3 c 1 - 411 -1 375 2 337 2 c 0 - 299 2 261 -1 221 -3 c 1 - 216 2 217 20 221 25 c 1 - 233 25 286 30 289 41 c 0 - 294 57 294 84 294 113 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,36 +0,0 @@ -StartChar: y -Encoding: 121 121 88 -Width: 458 -Flags: W -HStem: -223 70<43 131> 392 28<0 51 145 197 283 335 408 456> -LayerCount: 2 -Fore -SplineSet -99 415 m 0 - 136 415 180 418 197 420 c 1 - 199 414 198 392 193 392 c 1 - 186 392 145 390 145 375 c 0 - 145 374 145 373 146 371 c 0 - 250 107 l 1 - 250 107 299 237 336 329 c 0 - 341 341 342 353 342 360 c 0 - 342 380 319 392 286 392 c 1 - 281 392 281 415 286 420 c 1 - 301 418 334 415 374 415 c 0 - 411 415 436 418 456 420 c 1 - 460 414 457 392 453 392 c 1 - 445 392 403 385 391 358 c 0 - 333 220 302 145 245 6 c 0 - 221 -54 202 -116 167 -168 c 0 - 145 -201 114 -223 82 -223 c 0 - 63 -223 40 -216 40 -181 c 0 - 40 -169 46 -158 51 -152 c 1 - 97 -152 122 -150 162 -97 c 0 - 177 -76 205 -9 208 2 c 1 - 153 142 113 247 55 372 c 0 - 45 393 13 392 1 392 c 1 - -1 392 -1 418 1 420 c 1 - 20 418 59 415 99 415 c 0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" y.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Y.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Y.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Y.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Y.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: Y -Encoding: 89 89 56 -Width: 583 -Flags: W -HStem: -3 28<180 249 345 414> 618 28<-13 41 185 238 384 445 528 589> -VStem: 255 85<32 313> -LayerCount: 2 -Fore -SplineSet -255 113 m 2 - 255 261 l 0 - 255 268 253 278 248 288 c 16 - 191 391 167 431 109 535 c 0 - 88 571 72 587 45 603 c 0 - 28 613 2 618 -10 618 c 0 - -15 618 -15 641 -10 646 c 1 - 38 644 64 642 112 642 c 0 - 160 642 198 644 237 646 c 1 - 239 640 240 618 235 618 c 0 - 221 618 177 612 177 587 c 0 - 177 579 180 571 188 558 c 2 - 324 323 l 1 - 372 409 436 541 451 576 c 0 - 452 579 454 585 454 591 c 0 - 454 601 441 617 386 617 c 1 - 383 617 382 643 384 646 c 1 - 420 644 445 641 481 641 c 0 - 532 641 550 644 589 646 c 1 - 591 640 590 617 587 617 c 1 - 579 617 522 617 500 578 c 0 - 463 513 387 372 345 294 c 8 - 339 283 341 273 341 264 c 0 - 341 205 340 113 340 113 c 2 - 340 84 339 57 344 41 c 0 - 347 30 400 25 412 25 c 1 - 416 20 417 2 412 -3 c 1 - 372 -1 336 2 298 2 c 0 - 260 2 222 -1 182 -3 c 1 - 177 2 178 20 182 25 c 1 - 194 25 247 30 250 41 c 0 - 255 57 255 84 255 113 c 2 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: ygrave -Encoding: 7923 7923 725 -Width: 458 -Flags: HW -LayerCount: 2 -Fore -Refer: 332 768 N 1 0 0 1 445 2 2 -Refer: 88 121 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ygrave.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ygrave.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Ygrave.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Ygrave.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Ygrave -Encoding: 7922 7922 724 -Width: 583 -Flags: HW -LayerCount: 2 -Fore -Refer: 459 -1 N 1 0 0 1 502 0 2 -Refer: 56 89 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/y.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/y.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/y.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/y.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,43 +0,0 @@ -StartChar: y.sc -Encoding: 65617 -1 769 -Width: 443 -Flags: W -HStem: -3 28<127 184 267 322> 412 28<8 52 149 191 281 328 386 435> -VStem: 188 75<37 234> -LayerCount: 2 -Fore -SplineSet -268 226 m 0 - 265 222 264 210 264 204 c 0 - 264 84 l 2 - 264 64 264 47 267 36 c 0 - 269 29 311 25 319 25 c 1 - 323 21 323 1 319 -3 c 1 - 289 -1 255 1 227 1 c 0 - 198 1 160 -1 130 -3 c 1 - 126 1 126 21 130 25 c 1 - 138 25 183 29 185 36 c 0 - 188 47 188 64 188 84 c 2 - 188 194 l 0 - 188 199 187 208 184 212 c 0 - 158 246 85 357 85 357 c 2 - 69 378 63 392 44 403 c 0 - 32 410 19 412 11 412 c 0 - 7 412 7 436 11 440 c 1 - 43 438 69 437 101 437 c 0 - 133 437 163 438 189 440 c 1 - 191 435 192 412 188 412 c 0 - 178 412 148 412 148 395 c 0 - 148 390 151 382 156 374 c 2 - 246 247 l 1 - 277 296 311 351 320 369 c 0 - 323 375 329 387 329 395 c 0 - 329 402 322 411 284 411 c 1 - 280 412 279 433 282 439 c 1 - 308 436 342 436 366 436 c 0 - 400 436 418 437 434 439 c 1 - 437 435 437 416 432 411 c 1 - 427 411 391 411 373 387 c 0 - 340 342 305 286 268 226 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zacute -Encoding: 378 378 310 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 491 -4 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" zacute.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zacute.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zacute.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zacute.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zacute.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zacute -Encoding: 377 377 309 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 460 -1 N 1 0 0 1 603 0 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zacute.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zacute.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zacute.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zacute.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zacute.sc -Encoding: 65724 -1 876 -Width: 472 -Flags: HW -LayerCount: 2 -Fore -Refer: 333 769 N 1 0 0 1 494 20 2 -Refer: 770 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zcaron -Encoding: 382 382 314 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 344 780 N 1 0 0 1 480 -1 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zcaron.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zcaron.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zcaron.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zcaron.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zcaron -Encoding: 381 381 313 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 474 -1 N 1 0 0 1 207 0 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -StartChar: zdotaccent -Encoding: 380 380 312 -Width: 436 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 495 44 2 -Refer: 89 122 N 1 0 0 1 0 0 3 -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" zdotaccent.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zdotaccent.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zdotaccent.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Zdotaccent.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Zdotaccent.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: Zdotaccent -Encoding: 379 379 311 -Width: 618 -Flags: HW -LayerCount: 2 -Fore -Refer: 467 -1 N 1 0 0 1 588 0 2 -Refer: 57 90 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zdotaccent.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,9 +0,0 @@ -StartChar: zdotaccent.sc -Encoding: 65725 -1 877 -Width: 472 -Flags: HW -LayerCount: 2 -Fore -Refer: 339 775 N 1 0 0 1 488 22 2 -Refer: 770 -1 N 1 0 0 1 0 0 3 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,25 +0,0 @@ -StartChar: zero -Encoding: 48 48 15 -Width: 532 -Flags: W -HStem: -3 36<218 310> 590 36<223 315> -VStem: 53 86<169 455> 393 86<168 460> -LayerCount: 2 -Fore -SplineSet -271 590 m 0 - 189 590 139 465 139 312 c 0 - 139 159 190 33 262 33 c 0 - 349 33 393 164 393 317 c 0 - 393 470 343 590 271 590 c 0 -266 626 m 0 - 403 626 479 482 479 312 c 0 - 479 142 401 -3 266 -3 c 0 - 133 -3 53 142 53 312 c 0 - 53 482 131 626 266 626 c 0 -EndSplineSet -Substitution2: "'pnum' Proportional Numbers lookup 12-1" zero.prop -Substitution2: "'zero' Slashed Zero lookup 11-1" zero.slash -Substitution2: "'onum' Oldstyle Figures lookup 3-1" zero.onum -Substitution2: "'ordn' Ordinals lookup 0-1" zero.ordn -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.onum.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.onum.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.onum.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.onum.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: zero.onum -Encoding: 65553 -1 448 -Width: 525 -Flags: W -HStem: -7 46<199 336> 395 47<190 327> -VStem: 47 73<127 316> 405 73<121 306> -LayerCount: 2 -Fore -SplineSet -268 39 m 0 - 352 39 405 121 405 210 c 0 - 405 314 338 395 258 395 c 0 - 174 395 120 313 120 224 c 0 - 120 120 188 39 268 39 c 0 -263 441 m 0 - 383 441 479 341 479 219 c 0 - 479 96 386 -7 265 -7 c 0 - 144 -7 47 96 47 219 c 0 - 47 344 140 441 263 441 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.ordn.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.ordn.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.ordn.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.ordn.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,21 +0,0 @@ -StartChar: zero.ordn -Encoding: 65741 -1 893 -Width: 419 -Flags: W -HStem: 246 27<175 244> 647 27<175 246> -VStem: 53 66<348 571> 301 66<349 574> -LayerCount: 2 -Fore -SplineSet -119 461 m 0 - 119 360 155 273 211 273 c 0 - 268 273 301 363 301 464 c 0 - 301 565 269 647 211 647 c 0 - 154 647 119 562 119 461 c 0 -53 460 m 0 - 53 576 112 675 210 675 c 0 - 309 675 367 576 367 460 c 0 - 367 344 305 246 210 246 c 0 - 113 246 53 344 53 460 c 0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.prop.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.prop.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.prop.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.prop.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -StartChar: zero.prop -Encoding: 65751 -1 922 -Width: 533 -Flags: HW -LayerCount: 2 -Fore -Refer: 15 48 N 1 0 0 1 0 0 2 -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.slash.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.slash.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/zero.slash.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/zero.slash.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,26 +0,0 @@ -StartChar: zero.slash -Encoding: 65750 -1 921 -Width: 533 -Flags: W -HStem: -3 37<218 311> 589 37<223 316> -VStem: 54 86<169 455> 394 86<168 459> -LayerCount: 2 -Fore -SplineSet -54 312 m 0 - 54 482 132 626 267 626 c 0 - 404 626 479 482 479 312 c 0 - 479 142 402 -3 267 -3 c 0 - 134 -3 54 142 54 312 c 0 -372 476 m 1 - 175 112 l 1 - 196 64 227 34 262 34 c 0 - 349 34 394 164 394 317 c 0 - 394 377 386 432 372 476 c 1 -356 517 m 1 - 335 562 305 589 271 589 c 0 - 189 589 140 465 140 312 c 0 - 140 253 147 199 160 154 c 1 - 356 517 l 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: z -Encoding: 122 122 89 -Width: 436 -Flags: W -HStem: 0 34<133 327> 388 33<104 284> 409 20G<56 145 369 391> -VStem: 377 32<87 126> -LayerCount: 2 -Fore -SplineSet -145 421 m 2xd0 - 270 421 l 2xd0 - 323 421 349 424 389 429 c 1xb0 - 394 421 392 410 392 405 c 1 - 392 405 133 37 133 34 c 1 - 270 34 l 2 - 330 34 365 80 377 122 c 0 - 378 127 380 128 384 128 c 0 - 392 128 404 122 409 116 c 1 - 409 116 380 45 365 0 c 1 - 308 0 176 0 48 0 c 1 - 41 2 33 12 33 20 c 0 - 33 21 33 25 34 26 c 2 - 285 387 l 1 - 148 388 l 2xd0 - 92 388 82 337 74 319 c 0 - 72 315 63 311 53 311 c 0 - 47 311 42 311 42 313 c 1 - 46 328 55 377 58 429 c 1xb0 - 58 429 110 421 145 421 c 2xd0 -EndSplineSet -Substitution2: "'smcp' Lowercase to Small Capitals lookup 2-1" z.sc -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Z.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Z.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/_Z.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/_Z.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,31 +0,0 @@ -StartChar: Z -Encoding: 90 90 57 -Width: 618 -Flags: W -HStem: 0 34<153 476> 611 34<150 449> 634 20G<71 84 508 551> -VStem: 42 36<480 531> -LayerCount: 2 -Fore -SplineSet -211 611 m 2xd0 - 145 611 99 563 78 483 c 1 - 76 480 72 479 67 479 c 0 - 58 479 45 484 42 487 c 1 - 59 532 68 587 74 653 c 1xb0 - 95 650 128 646 154 646 c 0 - 344 646 l 2xd0 - 426 646 467 649 549 655 c 1 - 553 654 566 642 566 634 c 1xb0 - 564 626 153 34 153 34 c 25 - 408 34 l 2 - 450 34 478 48 499 69 c 0 - 527 97 540 137 551 165 c 0 - 552 167 559 168 564 168 c 0 - 574 168 584 163 588 159 c 1 - 565 82 553 50 541 0 c 1 - 541 0 240 0 52 0 c 0 - 41 0 30 8 34 14 c 2 - 449 611 l 1 - 211 611 l 2xd0 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/z.sc.glyph fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/z.sc.glyph --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Regular.sfdir/z.sc.glyph 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Regular.sfdir/z.sc.glyph 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -StartChar: z.sc -Encoding: 65618 -1 770 -Width: 472 -Flags: W -HStem: 0 32<138 365> 407 32<119 326> -VStem: 43 32<321 360> -LayerCount: 2 -Fore -SplineSet -49 0 m 1 - 43 4 41 16 42 18 c 2 - 328 408 l 1 - 168 407 l 2 - 123 407 91 376 76 323 c 1 - 74 321 71 320 67 320 c 0 - 59 320 46 323 43 325 c 1 - 54 357 67 399 71 446 c 1 - 85 443 107 439 125 439 c 0 - 255 439 l 2 - 311 439 351 443 407 448 c 1 - 410 447 418 436 418 429 c 1 - 417 424 141 41 141 41 c 2 - 140 39 138 36 138 35 c 0 - 138 33 142 32 145 32 c 2 - 311 32 l 2 - 379 32 395 86 408 118 c 0 - 409 119 417 120 420 120 c 0 - 427 120 433 117 436 114 c 1 - 420 59 414 34 407 0 c 1 - 407 0 180 0 49 0 c 1 -EndSplineSet -EndChar diff -Nru fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Slanted.sfd fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Slanted.sfd --- fonts-hosny-amiri-0.112/sources/latin/AmiriLatin-Slanted.sfd 1970-01-01 00:00:00.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/latin/AmiriLatin-Slanted.sfd 2020-06-02 19:42:15.000000000 +0000 @@ -0,0 +1,11270 @@ +SplineFontDB: 3.0 +FontName: AmiriLatin-Italic +FullName: Amiri Latin Italic +FamilyName: Amiri Latin +Weight: Italic +Copyright: Copyright (c) 2010, Sebastian Kosch (sebastian@aldusleaf.org).\nCopyright (c) 2012-2014 Khaled Hosny (khaledhosny@eglug.org).\n\nThis Font Software is licensed under the Open Font License, Version 1.1. +Version: 0.8 +ItalicAngle: -11 +UnderlinePosition: -102 +UnderlineWidth: 51 +Ascent: 800 +Descent: 200 +InvalidEm: 0 +LayerCount: 2 +Layer: 0 0 "Back" 1 +Layer: 1 0 "Fore" 0 +FSType: 0 +OS2Version: 0 +OS2_WeightWidthSlopeOnly: 0 +OS2_UseTypoMetrics: 1 +CreationTime: 1273443993 +ModificationTime: 0 +PfmFamily: 17 +TTFWeight: 400 +TTFWidth: 5 +LineGap: 90 +VLineGap: 0 +OS2TypoAscent: 700 +OS2TypoAOffset: 0 +OS2TypoDescent: -300 +OS2TypoDOffset: 0 +OS2TypoLinegap: 90 +OS2WinAscent: 0 +OS2WinAOffset: 0 +OS2WinDescent: 0 +OS2WinDOffset: 0 +HheadAscent: 700 +HheadAOffset: 0 +HheadDescent: -300 +HheadDOffset: 0 +OS2SubXSize: 649 +OS2SubYSize: 699 +OS2SubXOff: 26 +OS2SubYOff: 140 +OS2SupXSize: 649 +OS2SupYSize: 699 +OS2SupXOff: -91 +OS2SupYOff: 479 +OS2StrikeYSize: 50 +OS2StrikeYPos: 259 +OS2Vendor: 'PfEd' +Lookup: 258 0 0 "'kern' Horizontal Kerning in Latin lookup 0" { "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" [153,0,0] "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" [153,0,0] } ['kern' ('DFLT' <'dflt' > 'latn' <'TRK ' 'dflt' > ) ] +MarkAttachClasses: 1 +DEI: 91125 +KernClass2: 26+ 35 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 11" + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20 quotedbl quotesingle + 10 parenright + 8 asterisk + 28 hyphen endash emdash uni2015 + 9 backslash + 12 bracketright + 10 registered + 7 uni02BC + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 49 comma period quotesinglbase quotedblbase ellipsis + 10 braceright + 9 ampersand + 5 slash + 0 + 0 + 0 + 0 {} -17 {} -17 {} -18 {} -21 {} -55 {} -17 {} -32 {} -80 {} -20 {} -20 {} -18 {} -4 {} -14 {} -14 {} -20 {} -21 {} -32 {} -28 {} -24 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} -8 {} -4 {} 0 {} -10 {} -12 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -11 {} -26 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -32 {} -9 {} 0 {} -39 {} -24 {} 0 {} 0 {} -15 {} -14 {} 0 {} -5 {} 0 {} 0 {} 0 {} -4 {} -10 {} -10 {} -14 {} 0 {} -9 {} -15 {} -4 {} -4 {} -5 {} -18 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} -16 {} -29 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -27 {} 0 {} 0 {} -34 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} -4 {} -5 {} -5 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -12 {} -22 {} -19 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -9 {} -21 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -27 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -21 {} -16 {} -45 {} -51 {} -20 {} -33 {} 0 {} -18 {} -17 {} -25 {} -4 {} 0 {} -4 {} -27 {} -7 {} -31 {} -25 {} -21 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} -10 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -32 {} -10 {} 0 {} -41 {} -23 {} 0 {} -77 {} -18 {} -17 {} 0 {} -5 {} 0 {} 0 {} -5 {} -4 {} -13 {} -12 {} -17 {} 0 {} -8 {} -15 {} -5 {} -4 {} -5 {} -18 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -16 {} 0 {} -5 {} 0 {} 0 {} -5 {} -4 {} 0 {} -11 {} -17 {} 0 {} -8 {} 0 {} -5 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} -21 {} -14 {} -8 {} -47 {} -21 {} -17 {} 0 {} -14 {} -14 {} -12 {} -6 {} -9 {} -9 {} -11 {} -12 {} -17 {} -16 {} -14 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -8 {} -31 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} -26 {} -18 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -13 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -9 {} -19 {} -21 {} 0 {} -62 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} -24 {} 13 {} -17 {} -15 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} -15 {} -13 {} -4 {} -11 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -22 {} 20 {} -27 {} -13 {} -18 {} 0 {} -62 {} 0 {} 0 {} -15 {} 0 {} -9 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} -12 {} -11 {} -9 {} -4 {} 0 {} 0 {} 0 {} -21 {} 0 {} -21 {} -24 {} -19 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -11 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 5+ 8 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 10" + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 {} 13 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -29 {} 0 {} 0 {} 0 {} 0 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -20 {} 0 {} -12 {} -11 {} +KernClass2: 5+ 33 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 7" + 9 parenleft + 9 seven.ltr + 8 nine.ltr + 11 bracketleft + 9 braceleft + 171 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 37 W Wcircumflex Wgrave Wacute Wdieresis + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 39 g gcircumflex gbreve gdotaccent uni0123 + 79 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi ij + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 39 v w wcircumflex wgrave wacute wdieresis + 1 x + 30 y yacute ydieresis ycircumflex + 34 z zacute zdotaccent zcaron uni1E93 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 49 comma period quotesinglbase quotedblbase ellipsis + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 0 + 0 {} -24 {} -15 {} -11 {} -15 {} -10 {} -22 {} -24 {} -21 {} 15 {} -10 {} -17 {} -24 {} -18 {} -21 {} -18 {} -21 {} -10 {} -11 {} -15 {} -11 {} 73 {} -10 {} -28 {} -18 {} -24 {} -26 {} -26 {} -21 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -31 {} 0 {} 0 {} 0 {} -20 {} -15 {} 0 {} -14 {} 0 {} -25 {} -25 {} -22 {} 0 {} 0 {} -15 {} -24 {} -22 {} -20 {} -13 {} -15 {} -14 {} 0 {} -22 {} -20 {} 47 {} -20 {} -25 {} -22 {} -21 {} -22 {} -21 {} -19 {} -20 {} 0 {} -17 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} +KernClass2: 11+ 59 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 4" + 20 quotedbl quotesingle + 8 asterisk + 28 hyphen endash emdash uni2015 + 40 comma period quotesinglbase quotedblbase + 5 slash + 15 colon semicolon + 9 backslash + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 29 guillemotright guilsinglright + 9 ampersand + 49 comma period quotesinglbase quotedblbase ellipsis + 5 slash + 8 four.ltr + 7 six.ltr + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 1 q + 2 AE + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 13 J Jcircumflex + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 84 f germandbls uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 21 j jcircumflex uni0237 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 34 z zacute zdotaccent zcaron uni1E93 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 20 quotedbl quotesingle + 8 zero.ltr + 171 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 1 Q + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 39 v w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 39 g gcircumflex gbreve gdotaccent uni0123 + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 9 p uni1E57 + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 x + 0 + 0 + 0 + 2 ae + 0 + 0 {} -23 {} -89 {} -40 {} -36 {} -11 {} -45 {} -10 {} -19 {} -10 {} -58 {} -10 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -39 {} -8 {} -12 {} 0 {} 0 {} 0 {} -18 {} 14 {} 12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -21 {} 0 {} -24 {} -16 {} -24 {} -9 {} -8 {} -10 {} -12 {} -57 {} -37 {} -29 {} -22 {} -55 {} -24 {} -15 {} -11 {} -8 {} -8 {} -12 {} -10 {} -14 {} -13 {} -19 {} -16 {} -29 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} 0 {} 0 {} 0 {} 0 {} -36 {} -58 {} -48 {} 0 {} -35 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -23 {} 0 {} 0 {} -89 {} -13 {} -22 {} -18 {} -23 {} -15 {} -23 {} -90 {} -95 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -48 {} -44 {} -38 {} 0 {} 0 {} 0 {} -57 {} -14 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} -21 {} -31 {} -24 {} -22 {} 0 {} -23 {} -20 {} 0 {} 0 {} -25 {} 0 {} 0 {} -16 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} -41 {} -34 {} -19 {} -40 {} -34 {} -33 {} -17 {} -22 {} -36 {} -33 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} -27 {} -22 {} 0 {} -34 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} -36 {} -32 {} 18 {} -28 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} -39 {} 0 {} -13 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -90 {} 0 {} 0 {} 0 {} -45 {} -20 {} -21 {} -20 {} -59 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -8 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -8 {} 0 {} 0 {} -95 {} 0 {} 0 {} 0 {} -50 {} -26 {} -21 {} -26 {} -62 {} -39 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 10 {} 0 {} 0 {} 16 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -23 {} -14 {} 0 {} -21 {} -8 {} -11 {} 0 {} 0 {} -13 {} -9 {} 0 {} -16 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -41 {} -26 {} -21 {} 0 {} -38 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} -21 {} 0 {} -17 {} 0 {} -17 {} -12 {} -12 {} -13 {} -15 {} -56 {} -40 {} -33 {} -21 {} -58 {} -24 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -42 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 27+ 38 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 3" + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 19 b uni1E03 f_b f_f_b + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 84 e ae egrave eacute ecircumflex edieresis emacron ebreve edotaccent eogonek ecaron oe + 19 f longs uni1E1F f_f + 39 g gcircumflex gbreve gdotaccent uni0123 + 86 i igrave iacute icircumflex idieresis itilde imacron ibreve iogonek dotlessi f_i f_f_i + 34 j ij jcircumflex uni0237 f_j f_f_j + 32 k uni0137 kgreenlandic f_k f_f_k + 40 l lacute uni013C lcaron lslash f_l f_f_l + 101 h m n ntilde hcircumflex hbar nacute uni0146 ncaron uni1E25 uni1E29 uni1E2B uni1E41 uni1E96 f_h f_f_h + 80 o ograve oacute ocircumflex otilde odieresis oslash omacron obreve ohungarumlaut + 15 p thorn uni1E57 + 1 q + 23 r racute uni0157 rcaron + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 1 v + 37 w wcircumflex wgrave wacute wdieresis + 1 x + 30 y yacute ydieresis ycircumflex + 34 z zacute zdotaccent zcaron uni1E93 + 10 germandbls + 4 ldot + 3 eng + 10 parenright + 171 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 9 backslash + 12 bracketright + 20 quotedbl quotesingle + 8 asterisk + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 1 x + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 28 hyphen endash emdash uni2015 + 9 p uni1E57 + 49 comma period quotesinglbase quotedblbase ellipsis + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 1 q + 3 eth + 5 thorn + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 30 y yacute ydieresis ycircumflex + 0 + 10 registered + 13 J Jcircumflex + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 7 uni02BC + 21 j jcircumflex uni0237 + 9 ampersand + 5 slash + 39 g gcircumflex gbreve gdotaccent uni0123 + 39 v w wcircumflex wgrave wacute wdieresis + 0 {} -16 {} -6 {} -20 {} -33 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -30 {} 0 {} -19 {} -33 {} -22 {} -13 {} -8 {} -14 {} -16 {} -7 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -8 {} -13 {} -21 {} -16 {} 0 {} 0 {} 0 {} -16 {} -11 {} 0 {} 0 {} -14 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -20 {} -29 {} -21 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 19 {} 0 {} 0 {} 17 {} 0 {} -16 {} 5 {} 0 {} 0 {} 0 {} -21 {} 0 {} -8 {} -10 {} -8 {} -10 {} -6 {} -10 {} -5 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 78 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -11 {} -20 {} 18 {} 0 {} 0 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 38 {} 27 {} 64 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -8 {} -21 {} -19 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} -8 {} -20 {} -14 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -9 {} -23 {} -40 {} -18 {} -15 {} -12 {} 0 {} 0 {} -4 {} -20 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -7 {} -20 {} -35 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -57 {} -52 {} -42 {} -63 {} -65 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -21 {} -37 {} -23 {} 0 {} 0 {} -12 {} -15 {} -10 {} -14 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -4 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} 0 {} -20 {} -34 {} -23 {} 0 {} 0 {} -14 {} -16 {} -8 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -28 {} 0 {} -12 {} -20 {} -21 {} 0 {} 0 {} -36 {} -16 {} 0 {} 0 {} 0 {} -32 {} 0 {} -33 {} -11 {} -7 {} -12 {} -4 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -20 {} 0 {} 0 {} 0 {} -26 {} 0 {} -21 {} -30 {} -21 {} 0 {} 0 {} 0 {} -6 {} 0 {} -8 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} -13 {} -22 {} -19 {} 0 {} 0 {} -9 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -6 {} -20 {} -32 {} -12 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} -19 {} -29 {} -24 {} 0 {} 0 {} -27 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} -33 {} 0 {} -18 {} -29 {} -23 {} 0 {} 0 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} -17 {} -20 {} -16 {} -22 {} -12 {} 0 {} 0 {} 0 {} -17 {} -18 {} 0 {} 0 {} -12 {} 0 {} 0 {} -9 {} -11 {} -9 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -30 {} 0 {} -23 {} -32 {} -21 {} 0 {} 0 {} -15 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} -20 {} -25 {} -21 {} 0 {} 0 {} -9 {} -7 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} 0 {} 0 {} 0 {} -19 {} -19 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 26+ 71 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 2" + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 9 B uni1E02 + 47 C Ccedilla Cacute Ccircumflex Cdotaccent Ccaron + 51 D Eth Dcaron Dcroat uni1E0A uni1E0C uni1E0E uni1E10 + 84 E AE Egrave Eacute Ecircumflex Edieresis Emacron Ebreve Edotaccent Eogonek Ecaron OE + 9 F uni1E1E + 39 G Gcircumflex Gbreve Gdotaccent uni0122 + 121 H I Igrave Iacute Icircumflex Idieresis Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent uni1E24 uni1E28 uni1E2A + 16 J IJ Jcircumflex + 9 K uni0136 + 35 L Lacute uni013B Lcaron Ldot Lslash + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 80 O Ograve Oacute Ocircumflex Otilde Odieresis Oslash Omacron Obreve Ohungarumlaut + 9 P uni1E56 + 1 Q + 23 R Racute uni0156 Rcaron + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 1 X + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 5 Thorn + 20 quotedbl quotesingle + 10 parenright + 8 asterisk + 28 hyphen endash emdash uni2015 + 5 slash + 13 J Jcircumflex + 171 C G O Ccedilla Ograve Oacute Ocircumflex Otilde Odieresis Oslash Cacute Ccircumflex Cdotaccent Ccaron Gcircumflex Gbreve Gdotaccent uni0122 Omacron Obreve Ohungarumlaut OE + 1 Q + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 9 backslash + 12 bracketright + 9 b uni1E03 + 47 c ccedilla cacute ccircumflex cdotaccent ccaron + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 39 g gcircumflex gbreve gdotaccent uni0123 + 21 j jcircumflex uni0237 + 162 e o egrave eacute ecircumflex edieresis ograve oacute ocircumflex otilde odieresis oslash emacron ebreve edotaccent eogonek ecaron omacron obreve ohungarumlaut oe + 53 t uni0163 tcaron tbar uni1E6B uni1E6D uni1E6F uni1E97 + 39 v w wcircumflex wgrave wacute wdieresis + 37 y yacute ydieresis ycircumflex ygrave + 10 registered + 22 quoteleft quotedblleft + 24 quoteright quotedblright + 27 guillemotleft guilsinglleft + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 0 + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 361 B D E F H I K L P R Egrave Eacute Ecircumflex Edieresis Igrave Iacute Icircumflex Idieresis Eth Thorn Dcaron Dcroat Emacron Ebreve Edotaccent Eogonek Ecaron Hcircumflex Hbar Itilde Imacron Ibreve Iogonek Idotaccent IJ uni0136 Lacute uni013B Lcaron Ldot Lslash Racute uni0156 Rcaron uni1E02 uni1E0A uni1E0C uni1E0E uni1E10 uni1E1E uni1E24 uni1E28 uni1E2A uni1E56 + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 1 X + 52 s sacute scircumflex scedilla scaron uni1E61 uni1E63 + 1 x + 34 z zacute zdotaccent zcaron uni1E93 + 2 AE + 0 + 0 + 0 + 0 + 34 Z Zacute Zdotaccent Zcaron uni1E92 + 9 p uni1E57 + 9 ampersand + 49 comma period quotesinglbase quotedblbase ellipsis + 73 a agrave aacute acircumflex atilde adieresis aring amacron abreve aogonek + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 1 q + 0 + 0 + 0 + 0 + 81 m n r ntilde kgreenlandic nacute uni0146 ncaron eng racute uni0157 rcaron uni1E41 + 87 u ugrave uacute ucircumflex udieresis utilde umacron ubreve uring uhungarumlaut uogonek + 2 ae + 3 eth + 7 uni02BC + 35 l lacute uni013C lcaron ldot lslash + 15 colon semicolon + 29 guillemotright guilsinglright + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 52 S Sacute Scircumflex Scedilla Scaron uni1E60 uni1E62 + 0 {} -43 {} -10 {} -37 {} -12 {} 5 {} -10 {} -23 {} -20 {} -54 {} -34 {} -59 {} -50 {} -58 {} -46 {} -11 {} -11 {} -6 {} -16 {} -10 {} -9 {} -6 {} -8 {} -22 {} -27 {} -31 {} -42 {} -38 {} -18 {} -7 {} -12 {} -12 {} -16 {} -17 {} -30 {} -26 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -8 {} -6 {} -19 {} -16 {} -24 {} -18 {} -19 {} -5 {} 0 {} -12 {} 0 {} -10 {} 0 {} -7 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -10 {} 0 {} -6 {} -6 {} -8 {} -13 {} -5 {} -5 {} -6 {} -26 {} -5 {} -21 {} -9 {} -9 {} -10 {} -5 {} -21 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -6 {} -5 {} 0 {} 0 {} -18 {} -29 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -6 {} -7 {} -23 {} -18 {} -35 {} -19 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -7 {} -8 {} -9 {} -31 {} 0 {} -14 {} 0 {} -20 {} -21 {} 0 {} -7 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -8 {} -8 {} 0 {} -6 {} -12 {} -12 {} 0 {} 0 {} 0 {} 0 {} -7 {} 0 {} 0 {} -12 {} 0 {} -10 {} -8 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} -6 {} -16 {} 0 {} -20 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} -12 {} 0 {} -6 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} 0 {} 0 {} -20 {} -9 {} -17 {} -53 {} -49 {} -15 {} -8 {} -10 {} 0 {} -21 {} -11 {} -39 {} -24 {} -24 {} -24 {} -12 {} -11 {} -11 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} -19 {} -15 {} -25 {} -17 {} -15 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -7 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -7 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -13 {} -19 {} -6 {} -15 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} -12 {} -10 {} -15 {} -15 {} -10 {} -13 {} -9 {} -8 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -20 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -15 {} 0 {} 0 {} -14 {} -14 {} -14 {} 0 {} -11 {} 0 {} -5 {} -5 {} -5 {} -8 {} -17 {} -121 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -13 {} -20 {} -7 {} -18 {} -14 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} -14 {} -14 {} -9 {} -11 {} -7 {} -6 {} -6 {} -6 {} 0 {} 0 {} 0 {} 0 {} -15 {} -6 {} -16 {} 0 {} -11 {} -11 {} 0 {} -10 {} 0 {} -19 {} 0 {} 0 {} -19 {} -19 {} -19 {} -11 {} -14 {} -10 {} -10 {} -6 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -33 {} 0 {} 0 {} -46 {} -46 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} -21 {} -26 {} 0 {} -17 {} 0 {} -53 {} -43 {} 0 {} 0 {} 0 {} -34 {} 0 {} -35 {} -33 {} -26 {} -21 {} -51 {} -44 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} -7 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -25 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -62 {} -17 {} -71 {} 0 {} 0 {} -6 {} -6 {} 0 {} -62 {} -10 {} -64 {} -59 {} -64 {} -40 {} -12 {} 0 {} 0 {} -8 {} 0 {} -7 {} 0 {} 0 {} -21 {} -42 {} -28 {} -62 {} -64 {} 0 {} 0 {} 0 {} 0 {} -36 {} 0 {} -25 {} -18 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -8 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -13 {} -17 {} -7 {} -14 {} -12 {} -11 {} 0 {} 0 {} 0 {} 0 {} -13 {} -11 {} -15 {} -15 {} -11 {} -14 {} -11 {} -9 {} -8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -12 {} -12 {} -12 {} 0 {} -9 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -6 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -20 {} -16 {} -22 {} -6 {} -19 {} -17 {} -11 {} 0 {} 0 {} 0 {} 0 {} -12 {} -10 {} -17 {} -16 {} -12 {} -15 {} -10 {} -9 {} -8 {} -7 {} 0 {} 0 {} 0 {} 0 {} -18 {} -9 {} -18 {} -6 {} -12 {} -14 {} 0 {} -13 {} 0 {} -20 {} 0 {} 0 {} -21 {} -21 {} -21 {} -14 {} -15 {} -13 {} -14 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -24 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -9 {} -7 {} -27 {} -21 {} -39 {} -21 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} -6 {} -7 {} -7 {} -33 {} 0 {} -13 {} 0 {} -12 {} -15 {} 0 {} -8 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -14 {} 10 {} -37 {} -22 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} -15 {} 0 {} -29 {} 0 {} -9 {} 0 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} 0 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} -44 {} -5 {} -7 {} -5 {} -22 {} -7 {} -6 {} -5 {} -53 {} -60 {} 0 {} 0 {} 0 {} 0 {} -11 {} -24 {} -64 {} -39 {} -40 {} -40 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -5 {} -6 {} -22 {} -17 {} -31 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -18 {} -7 {} -8 {} -8 {} -31 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -11 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} -12 {} 0 {} 30 {} -6 {} -13 {} -13 {} -19 {} -18 {} -34 {} -26 {} -32 {} -27 {} 0 {} -7 {} -6 {} -11 {} -9 {} -8 {} -6 {} -6 {} -18 {} -25 {} -19 {} 0 {} 0 {} -30 {} -6 {} -12 {} -12 {} -12 {} -10 {} -14 {} -12 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} -5 {} -5 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} -7 {} -8 {} 0 {} -12 {} 0 {} 0 {} -12 {} 0 {} -11 {} 0 {} -7 {} -11 {} -10 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -11 {} 0 {} -8 {} -7 {} -9 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -57 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -81 {} -20 {} -76 {} -8 {} -79 {} -21 {} -68 {} -63 {} 0 {} 0 {} 0 {} -55 {} -9 {} -68 {} -68 {} -43 {} -43 {} -28 {} -27 {} -26 {} -48 {} 0 {} 0 {} 0 {} 0 {} -80 {} -80 {} -84 {} -58 {} -83 {} -45 {} -38 {} -47 {} 0 {} -73 {} -35 {} -40 {} -81 {} -76 {} -81 {} -43 {} -42 {} -44 {} -71 {} -70 {} -69 {} 0 {} 0 {} 0 {} 0 {} -27 {} -33 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 8 {} -21 {} -11 {} -20 {} 0 {} -21 {} -13 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} -7 {} -14 {} -14 {} -7 {} -10 {} -5 {} 0 {} -5 {} -25 {} 0 {} 0 {} 0 {} 0 {} -21 {} -10 {} -21 {} -29 {} -35 {} -18 {} -7 {} -15 {} 0 {} -23 {} 0 {} -18 {} -22 {} -22 {} -22 {} -15 {} -15 {} -14 {} -15 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 7 {} 0 {} 0 {} 5 {} 0 {} 0 {} -44 {} -40 {} 0 {} -16 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -11 {} 33 {} -65 {} -21 {} -68 {} -6 {} -63 {} -41 {} -43 {} -35 {} -12 {} 0 {} 0 {} -43 {} -12 {} -58 {} -58 {} -29 {} -34 {} -19 {} -18 {} -18 {} -59 {} 0 {} 0 {} 0 {} 0 {} -70 {} -53 {} -65 {} -74 {} -85 {} -42 {} -32 {} -43 {} 0 {} -63 {} -45 {} -64 {} -67 {} -67 {} -67 {} -41 {} -39 {} -41 {} -60 {} -44 {} -41 {} 0 {} 0 {} 0 {} 28 {} -30 {} -31 {} 32 {} -8 {} 0 {} 0 {} 0 {} 0 {} -34 {} -34 {} 0 {} -15 {} -17 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -12 {} 28 {} -51 {} -20 {} -53 {} -7 {} -49 {} -33 {} -32 {} -22 {} -12 {} 0 {} 0 {} -35 {} -11 {} -44 {} -44 {} -22 {} -26 {} -14 {} -14 {} -14 {} -50 {} 0 {} 0 {} 0 {} 0 {} -52 {} -38 {} -48 {} -60 {} -59 {} -40 {} -22 {} -37 {} 0 {} -49 {} -36 {} -49 {} -53 {} -53 {} -53 {} -34 {} -34 {} -32 {} -45 {} -36 {} -34 {} 0 {} 0 {} 0 {} 22 {} -25 {} -26 {} 26 {} -8 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} -27 {} -26 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 11 {} -11 {} -16 {} -22 {} 0 {} -13 {} -6 {} -40 {} -35 {} 0 {} 0 {} 0 {} -24 {} 0 {} -29 {} -28 {} -25 {} -20 {} -31 {} -24 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} 5 {} 0 {} 0 {} 8 {} 0 {} 0 {} 0 {} 0 {} 0 {} -53 {} -28 {} 0 {} -19 {} -23 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} 28 {} -74 {} -33 {} -71 {} -7 {} -73 {} -55 {} -62 {} -58 {} -11 {} 0 {} 0 {} -53 {} -17 {} -62 {} -62 {} -46 {} -47 {} -42 {} -40 {} -39 {} -51 {} 0 {} 0 {} 0 {} 0 {} -74 {} -68 {} -76 {} -53 {} -75 {} -50 {} -35 {} -49 {} 0 {} -66 {} -42 {} -35 {} -73 {} -70 {} -74 {} -48 {} -53 {} -44 {} -64 {} -63 {} -63 {} 0 {} 0 {} 0 {} 22 {} -29 {} -35 {} 26 {} -6 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} -5 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} -11 {} -11 {} 0 {} -11 {} -35 {} -42 {} -12 {} 0 {} 0 {} 0 {} -13 {} 0 {} 0 {} -33 {} -7 {} -22 {} -18 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} 0 {} 0 {} -5 {} 0 {} -7 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -10 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} 0 {} 0 {} -8 {} 0 {} 0 {} -15 {} -5 {} -29 {} -21 {} -50 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -9 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -17 {} -7 {} -8 {} -8 {} -62 {} 0 {} 0 {} 0 {} 0 {} -21 {} 0 {} 0 {} 0 {} -9 {} 0 {} 0 {} -37 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} +KernClass2: 6+ 20 "Crimson-Italic-'kern' Horizontal Kerning in Latin lookup 0 kerning class 1" + 9 ampersand + 2 at + 10 exclamdown + 10 registered + 12 questiondown + 7 uni02BC + 73 A Agrave Aacute Acircumflex Atilde Adieresis Aring Amacron Abreve Aogonek + 1 V + 37 W Wcircumflex Wgrave Wacute Wdieresis + 37 Y Yacute Ycircumflex Ydieresis Ygrave + 0 + 20 quotedbl quotesingle + 45 T uni0162 Tcaron Tbar uni1E6A uni1E6C uni1E6E + 87 U Ugrave Uacute Ucircumflex Udieresis Utilde Umacron Ubreve Uring Uhungarumlaut Uogonek + 9 M uni1E40 + 34 N Ntilde Nacute uni0145 Ncaron Eng + 1 X + 47 d dcaron dcroat uni1E0B uni1E0D uni1E0F uni1E11 + 90 f germandbls longs uni1E1F f_f f_i f_f_i f_l f_f_l f_b f_f_b f_k f_f_k f_h f_f_h f_j f_f_j + 37 y yacute ydieresis ycircumflex ygrave + 0 + 60 h k hcircumflex hbar uni0137 uni1E25 uni1E29 uni1E2B uni1E96 + 0 + 0 + 0 + 0 {} -21 {} -16 {} -13 {} -25 {} -21 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -19 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -34 {} -28 {} -41 {} 0 {} 0 {} -42 {} -16 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -32 {} -10 {} -10 {} -17 {} -30 {} 0 {} 0 {} 0 {} -13 {} -11 {} -10 {} -10 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} -10 {} -40 {} -34 {} -48 {} 0 {} 0 {} -49 {} -18 {} 0 {} 0 {} 0 {} 0 {} 25 {} 9 {} 6 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 0 {} 137 {} 31 {} 54 {} 90 {} +LangName: 1033 "" "" "" "" "" "" "" "" "" "" "" "" "" "" "http://scripts.sil.org/OFL" +GaspTable: 1 65535 15 1 +Encoding: UnicodeBmp +UnicodeInterp: none +NameList: AGL For New Fonts +BeginPrivate: 0 +EndPrivate +Grid +-249.0234375 -196.77734375 m 25 + -249.0234375 887.20703125 l 1025 +106.4453125 86.9140625 m 1 + 218.75 664.0625 l 1 + 281.25 654.296875 l 1 + 168.9453125 78.125 l 1 + 106.4453125 86.9140625 l 1 +-1000 398.4375 m 1 + 2000 398.4375 l 1025 +85.9375 616.2109375 m 25 + 375 616.2109375 l 1025 +-74.21875 -227.5390625 m 25 + 457.03125 -227.5390625 l 1025 +27.34375 677.734375 m 25 + 529.296875 677.734375 l 1025 +27.34375 424.8046875 m 17 + 529.296875 424.8046875 l 1025 +EndSplineSet +BeginChars: 65643 535 + +StartChar: exclam +Encoding: 33 33 0 +Width: 235 +Flags: W +HStem: -11 107<75 160> 607 20G<106 137> +VStem: 63 107<1 85> 73 92<319 617> +LayerCount: 2 +Fore +SplineSet +63 44 m 0xe0 + 63 73 89 97 118 97 c 0 + 147 97 171 73 171 44 c 0 + 171 15 147 -11 118 -11 c 0 + 89 -11 63 15 63 44 c 0xe0 +122 627 m 0 + 152 627 165 595 165 570 c 0 + 165 543 152 412 131 168 c 1 + 127 160 124 156 115 155 c 1 + 110 157 106 160 103 166 c 1 + 89 323 73 520 73 570 c 0xd0 + 73 597 91 627 122 627 c 0 +EndSplineSet +EndChar + +StartChar: quotedbl +Encoding: 34 34 1 +Width: 273 +Flags: W +HStem: 462 221<72 100 190 218> +VStem: 38 76<511 669> 155 76<511 669> +LayerCount: 2 +Fore +SplineSet +206 683 m 0 + 218 683 223 680 231 670 c 1 + 231 642 224 531 218 480 c 1 + 215 474 206 466 198 462 c 1 + 195 462 191 464 189 468 c 1 + 168 538 155 587 155 614 c 0 + 155 641 175 683 206 683 c 0 +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: numbersign +Encoding: 35 35 2 +Width: 468 +Flags: W +HStem: 174 48<58 383> 360 48<84 410> +LayerCount: 2 +Fore +SplineSet +404 360 m 1 + 249 360 249 360 83 360 c 1 + 71 360 78 404 91 408 c 9 + 410 408 l 17 + 424 408 417 366 404 360 c 1 +377 174 m 1 + 222 174 221 174 55 174 c 1 + 43 174 52 218 65 222 c 9 + 383 222 l 17 + 397 222 390 180 377 174 c 1 +365 516 m 1 + 295 75 l 2 + 294 71 286 62 271 62 c 0 + 261 62 260 66 260 66 c 1 + 331 506 l 1 + 334 515 333 519 352 519 c 0 + 361 519 362 518 365 516 c 1 +208 516 m 1 + 136 75 l 2 + 135 71 129 62 114 62 c 0 + 104 62 103 66 103 66 c 1 + 173 506 l 1 + 176 515 176 519 195 519 c 0 + 204 519 205 518 208 516 c 1 +EndSplineSet +EndChar + +StartChar: dollar +Encoding: 36 36 3 +Width: 486 +UnlinkRmOvrlpSave: 1 +Flags: W +HStem: -10 33<215 303> 592 32<186 272> +VStem: 50 35<114 168> 67 75<426 538> 278 34<623 665> 355 82<83 202> 373 31<461 511> +LayerCount: 2 +Fore +SplineSet +285 667 m 1xd8 + 293 667 319 667 319 660 c 1 + 312 618 l 1 + 335 613 358 606 393 598 c 1 + 405 548 403 490 404 465 c 1 + 399 462 394 461 387 461 c 0 + 383 461 376 463 373 466 c 1xda + 369 499 345 547 305 573 c 1 + 268 347 l 1 + 270 346 272 344 274 343 c 0 + 336 304 438 255 438 162 c 0 + 438 58 342 -10 241 -10 c 0 + 230 -10 220 -9 209 -8 c 1 + 202 -51 l 1 + 193 -51 168 -49 168 -42 c 1 + 174 -4 l 1 + 136 2 101 12 72 18 c 1 + 60 74 50 150 50 161 c 1 + 54 165 67 169 74 169 c 0 + 79 169 83 168 85 164 c 1xec + 90 141 109 64 181 35 c 1 + 221 277 l 1 + 151 318 67 368 67 459 c 0 + 67 559 157 624 251 624 c 0 + 261 624 270 624 278 623 c 1 + 285 667 l 1xd8 +253 259 m 1 + 215 26 l 1 + 224 25 233 23 243 23 c 0 + 302 23 355 64 355 137 c 0xcc + 355 206 308 229 253 259 c 1 +236 367 m 1 + 272 588 l 1 + 263 590 254 592 245 592 c 0 + 163 592 143 533 143 488 c 0xd8 + 143 428 187 397 236 367 c 1 +EndSplineSet +EndChar + +StartChar: percent +Encoding: 37 37 4 +Width: 651 +Flags: W +HStem: -7 24<441 509> 282 23<428 496> 317 24<159 226> 606 23<146 213> +VStem: 39 62<398 558> 265 64<390 557> 320 62<74 232> 546 64<65 233> +LayerCount: 2 +Fore +SplineSet +182 606 m 0xfd + 124 606 102 542 102 484 c 0 + 102 417 142 342 191 342 c 0 + 248 342 265 408 265 465 c 0 + 265 530 234 606 182 606 c 0xfd +186 630 m 0 + 271 630 329 558 329 473 c 0 + 329 395 275 317 186 317 c 0 + 105 317 39 387 39 473 c 0 + 39 560 99 630 186 630 c 0 +464 282 m 0 + 406 282 383 218 383 160 c 0xfb + 383 93 425 18 474 18 c 0 + 531 18 546 84 546 141 c 0 + 546 206 516 282 464 282 c 0 +468 306 m 0 + 553 306 610 233 610 148 c 0 + 610 70 557 -7 467 -7 c 0 + 386 -7 320 62 320 148 c 0 + 320 235 381 306 468 306 c 0 +584 609 m 1 + 112 0 l 2 + 108 -5 92 -12 80 -12 c 0 + 66 -12 63 -3 62 -1 c 1 + 533 609 l 2 + 538 615 547 621 553 621 c 0 + 581 621 575 618 584 609 c 1 +EndSplineSet +EndChar + +StartChar: ampersand +Encoding: 38 38 5 +Width: 762 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -5 31<320 462> 482 41<316 431> +VStem: -7 49<97 176> 399 91<373 475> 421 36<127 203> 583 62<143 232> 720 41<425 519> +LayerCount: 2 +Fore +SplineSet +408 523 m 27xee + 453 523 490 486 490 441 c 27 + 490 293 242 236 181 222 c 0 + 113 207 42 191 42 150 c 3 + 42 132 54 127 62 120 c 0 + 71 112 80 104 80 88 c 3 + 80 60 60 46 37 46 c 27 + 27 46 20 47 13 51 c 1 + 0 62 -7 88 -7 104 c 0 + -7 165 31 212 100 232 c 0 + 176 253 399 306 399 425 c 3xf6 + 399 459 387 482 350 482 c 3 + 283 482 216 385 216 249 c 3 + 216 100 283 26 400 26 c 3 + 490 26 583 97 583 188 c 0 + 583 205 574 226 568 232 c 1 + 519 216 457 185 457 142 c 3 + 457 133 458 125 461 120 c 1 + 457 118 446 119 441 125 c 1 + 430 134 421 157 421 181 c 3 + 421 225 461 255 533 286 c 0 + 622 324 729 392 720 529 c 1 + 729 530 736 524 739 521 c 1 + 751 498 761 471 761 430 c 3 + 761 352 707 291 639 258 c 1 + 643 250 645 238 645 223 c 0 + 645 106 513 -5 369 -5 c 0 + 241 -5 136 55 136 219 c 3 + 136 362 249 523 408 523 c 27xee +EndSplineSet +EndChar + +StartChar: quotesingle +Encoding: 39 39 6 +Width: 156 +Flags: W +HStem: 462 221<72 100> +VStem: 38 76<511 669> +LayerCount: 2 +Fore +SplineSet +89 683 m 0 + 101 683 106 680 114 670 c 1 + 114 642 107 531 101 480 c 1 + 98 474 89 466 81 462 c 1 + 78 462 74 464 72 468 c 1 + 51 538 38 587 38 614 c 0 + 38 641 58 683 89 683 c 0 +EndSplineSet +EndChar + +StartChar: parenleft +Encoding: 40 40 7 +Width: 253 +VWidth: 0 +Flags: HW +VStem: 47 229 +LayerCount: 2 +Fore +SplineSet +270 730 m 1 + 275 728 277 722 277 718 c 1 + 216 649 84 408 105 160 c 0 + 117 22 148 -52 198 -106 c 1 + 198 -109 198 -116 193 -118 c 1 + 135 -97 62 4 47 173 c 0 + 22 463 192 660 270 730 c 1 +EndSplineSet +EndChar + +StartChar: parenright +Encoding: 41 41 8 +Width: 253 +VWidth: 0 +Flags: HW +VStem: -5 229 +LayerCount: 2 +Fore +SplineSet +2 -118 m 1 + -3 -116 -6 -109 -5 -105 c 1 + 56 -36 188 204 167 452 c 0 + 155 590 124 665 74 719 c 1 + 74 722 74 728 79 730 c 1 + 137 709 210 608 225 439 c 0 + 250 149 80 -48 2 -118 c 1 +EndSplineSet +EndChar + +StartChar: asterisk +Encoding: 42 42 9 +Width: 432 +Flags: W +HStem: 381 60<302 384> 424 63<37 145> +VStem: 127 56<560 645> 204 24<411 440> +LayerCount: 2 +Fore +SplineSet +295 599 m 0x70 + 312 618 334 625 349 610 c 0 + 365 594 362 573 343 556 c 0 + 309 525 276 519 249 493 c 1 + 249 493 243 484 244 479 c 0 + 245 474 248 472 253 470 c 0 + 287 454 315 460 358 440 c 0 + 380 430 395 412 386 393 c 0 + 376 373 354 369 333 381 c 0xb0 + 292 403 277 433 244 451 c 1 + 244 451 235 456 230 454 c 0 + 224 451 225 446 224 441 c 0 + 220 404 233 380 228 333 c 0 + 225 309 212 289 191 292 c 0 + 170 295 159 315 164 339 c 0 + 173 385 197 409 204 446 c 1 + 204 446 205 455 201 459 c 0 + 198 463 193 463 188 462 c 0 + 152 454 133 434 86 424 c 0 + 63 419 38 425 35 446 c 0 + 31 467 48 484 72 487 c 0 + 119 493 147 477 185 482 c 1 + 185 482 194 485 196 490 c 0 + 198 495 197 499 194 504 c 0 + 175 536 150 549 127 590 c 0 + 115 611 114 635 132 645 c 0 + 152 655 171 644 182 622 c 0 + 202 579 195 547 212 513 c 1 + 212 513 217 503 222 502 c 0 + 227 501 231 504 235 508 c 0 + 260 535 264 564 295 599 c 0x70 +EndSplineSet +EndChar + +StartChar: plus +Encoding: 43 43 10 +Width: 529 +Flags: W +HStem: 213 55<35 236 291 495> +VStem: 236 55<7 213 268 470> +LayerCount: 2 +Fore +SplineSet +236 463 m 1 + 252 469 271 474 278 474 c 0 + 288 474 291 468 291 468 c 1 + 291 268 l 25 + 369 268 412 268 490 268 c 16 + 494 268 499 264 499 256 c 0 + 499 240 491 221 483 213 c 1 + 291 213 l 25 + 291 213 291 91 291 16 c 1 + 279 7 259 5 249 5 c 0 + 242 5 236 10 236 14 c 2 + 236 213 l 25 + 36 213 l 1 + 36 213 30 213 30 223 c 0 + 30 227 35 260 45 268 c 1 + 236 268 l 9 + 236 268 236 444 236 463 c 1 +EndSplineSet +EndChar + +StartChar: comma +Encoding: 44 44 11 +Width: 195 +VWidth: 0 +Flags: HW +HStem: -106 232 +VStem: 22 84<0 117> +LayerCount: 2 +Fore +SplineSet +-27 -87 m 1 + -14 -81 39 -47 39 -2 c 0 + 39 46 22 45 22 77 c 0 + 22 107 48 126 76 126 c 0 + 88 126 100 121 104 116 c 1 + 106 111 106 96 106 93 c 0 + 106 50 95 13 71 -27 c 0 + 44 -72 4 -99 -14 -106 c 1 + -18 -106 -27 -95 -27 -87 c 1 +EndSplineSet +EndChar + +StartChar: hyphen +Encoding: 45 45 12 +Width: 362 +VWidth: 0 +Flags: HW +VStem: 52 248<205 255> +LayerCount: 2 +Fore +SplineSet +72 255 m 2 + 294 267 l 2 + 299 267 300 260 300 255 c 0 + 300 242 287 206 277 205 c 10 + 57 194 l 2 + 54 194 52 201 52 209 c 0 + 52 220 61 254 72 255 c 2 +EndSplineSet +EndChar + +StartChar: period +Encoding: 46 46 13 +Width: 203 +VWidth: 0 +Flags: HW +HStem: -14 113<27 95> +VStem: 8 107<6 81> +LayerCount: 2 +Fore +SplineSet +8 32 m 0 + 8 68 41 100 73 100 c 0 + 98 100 115 81 115 56 c 0 + 115 20 83 -14 51 -14 c 0 + 26 -14 8 6 8 32 c 0 +EndSplineSet +EndChar + +StartChar: slash +Encoding: 47 47 14 +Width: 373 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +SplineSet +440 737 m 1 + 26 -12 l 2 + 23 -17 2 -33 -20 -33 c 0 + -24 -33 -30 -29 -31 -27 c 9 + 384 722 l 2 + 389 730 411 743 429 743 c 0 + 435 743 438 740 440 737 c 1 +EndSplineSet +EndChar + +StartChar: zero.ltr +Encoding: 65536 -1 15 +Width: 487 +Flags: HW +HStem: -3 34<150 233> 592 34<256 339> +LayerCount: 2 +Fore +SplineSet +126 312 m 0 + 96 159 119 31 186 31 c 0 + 267 31 333 164 363 317 c 0 + 393 470 370 592 303 592 c 0 + 227 592 156 465 126 312 c 0 +46 312 m 0 + 79 482 180 626 305 626 c 0 + 432 626 474 482 441 312 c 0 + 408 142 308 -3 183 -3 c 0 + 60 -3 13 142 46 312 c 0 +EndSplineSet +EndChar + +StartChar: one.ltr +Encoding: 65537 -1 16 +Width: 487 +Flags: HW +HStem: -3 28<110 175 273 323> 607 20G<368 374> +VStem: 108 271 +LayerCount: 2 +Fore +SplineSet +201 521 m 1 + 194 525 191 534 192 541 c 0 + 192 543 192 546 195 547 c 0 + 286 590 366 627 369 627 c 2 + 371 627 l 2 + 377 627 379 613 379 608 c 1 + 379 608 364 577 352 517 c 2 + 277 132 l 2 + 271 100 267 71 268 45 c 0 + 269 34 317 25 324 25 c 0 + 327 25 325 15 324 8 c 0 + 323 3 322 -1 321 -3 c 1 + 285 -1 250 2 214 2 c 0 + 178 2 145 -1 108 -3 c 1 + 104 2 109 25 114 25 c 0 + 125 25 177 34 182 45 c 0 + 191 65 193 82 197 101 c 2 + 266 452 l 2 + 278 511 283 541 264 541 c 0 + 257 541 219 530 201 521 c 1 +EndSplineSet +EndChar + +StartChar: two.ltr +Encoding: 65538 -1 17 +Width: 487 +Flags: HW +HStem: 0 71<127 358> 563 63<249 349> +VStem: 374 87<402 537> +LayerCount: 2 +Fore +SplineSet +461 500 m 0 + 461 411 415 349 346 279 c 0 + 264 195 125 71 127 71 c 9 + 293 71 l 2 + 346 71 377 103 396 144 c 0 + 398 149 402 152 408 152 c 0 + 412 152 424 148 425 146 c 1 + 400 98 358 18 350 0 c 9 + 350 0 39 0 32 0 c 1 + 30 2 26 9 26 15 c 1 + 80 64 219 207 277 272 c 0 + 343 347 374 409 374 475 c 0 + 374 530 342 563 294 563 c 0 + 222 563 163 499 148 479 c 1 + 141 479 134 491 135 495 c 1 + 146 519 231 627 326 627 c 0 + 397 627 461 576 461 500 c 0 +EndSplineSet +EndChar + +StartChar: three.ltr +Encoding: 65539 -1 18 +Width: 487 +Flags: HW +HStem: -5 39<145 243> 310 30<186 238> 574 53<256 348> +VStem: 342 83<153 286> 366 71<455 557> +LayerCount: 2 +Fore +SplineSet +339 627 m 0xe8 + 385 627 438 593 438 521 c 0xe8 + 438 457 375 398 324 370 c 1 + 379 363 425 297 425 238 c 0 + 425 88 246 -5 160 -5 c 0 + 113 -5 80 4 58 20 c 1 + 54 25 49 36 49 47 c 0 + 49 76 69 104 90 104 c 0 + 122 104 127 75 141 58 c 0 + 158 37 179 34 203 34 c 0 + 259 34 342 104 342 214 c 0xf0 + 342 279 307 319 247 319 c 0 + 227 319 201 313 189 310 c 1 + 186 315 186 318 186 323 c 0 + 186 327 186 337 188 340 c 1 + 266 354 366 415 366 501 c 0 + 366 555 332 574 291 574 c 0 + 233 574 193 523 183 516 c 1 + 177 516 176 530 178 539 c 1 + 215 584 268 627 339 627 c 0xe8 +EndSplineSet +EndChar + +StartChar: four.ltr +Encoding: 65540 -1 19 +Width: 487 +Flags: HW +HStem: -6 21G<281 310> 170 56<102 293 378 438> 609 20G<437 445> +LayerCount: 2 +Fore +SplineSet +440 629 m 0 + 449 629 455 619 453 611 c 2 + 378 226 l 25 + 433 226 l 18 + 439 226 442 207 438 186 c 0 + 436 177 433 173 431 170 c 1 + 367 170 l 25 + 334 -1 l 1 + 334 -1 327 -6 292 -6 c 0 + 271 -6 259 -5 260 2 c 2 + 293 170 l 25 + 37 170 l 1 + 31 174 31 182 32 188 c 1 + 408 604 l 2 + 415 612 433 629 440 629 c 0 +359 512 m 25 + 102 226 l 25 + 304 226 l 25 + 359 512 l 25 +EndSplineSet +EndChar + +StartChar: five.ltr +Encoding: 65541 -1 20 +Width: 487 +Flags: HW +HStem: -5 39<132 230> 324 62<174 288> 538 78<220 416> 609 20G<423 443> +VStem: 329 83<156 285> +LayerCount: 2 +Fore +SplineSet +412 241 m 0xe8 + 412 91 234 -5 147 -5 c 0 + 100 -5 67 4 45 20 c 1 + 41 25 36 36 36 47 c 0 + 36 76 56 104 77 104 c 0 + 109 104 114 75 128 58 c 0 + 145 37 166 34 190 34 c 0 + 246 34 329 104 329 214 c 0 + 329 249 316 324 211 324 c 3 + 191 324 157 318 138 312 c 1 + 135 314 128 320 124 325 c 1 + 168 454 197 575 212 616 c 1xe8 + 276 618 406 621 440 629 c 1xd8 + 446 626 450 620 450 616 c 0 + 450 599 428 562 418 548 c 1 + 374 538 242 541 227 538 c 1 + 223 531 193 420 174 368 c 1 + 194 376 245 386 269 386 c 0 + 367 386 412 306 412 241 c 0xe8 +EndSplineSet +EndChar + +StartChar: six.ltr +Encoding: 65542 -1 21 +Width: 487 +VWidth: 0 +Flags: HW +HStem: -6 32<156 240> 325 46<215 296> 608 20G<382 441> +VStem: 40 80<69 285> 327 78<140 294> +LayerCount: 2 +Fore +SplineSet +278 371 m 0 + 353 371 405 304 405 225 c 0 + 405 112 290 -6 184 -6 c 0 + 98 -6 40 60 40 169 c 0 + 40 245 76 356 161 453 c 0 + 218 517 325 589 438 628 c 1 + 444 628 446 610 445 604 c 1 + 333 556 220 480 161 342 c 0 + 128 264 120 210 120 156 c 0 + 120 96 138 26 195 26 c 0 + 248 26 327 104 327 219 c 0 + 327 280 300 325 233 325 c 0 + 210 325 196 317 187 312 c 1 + 184 314 181 317 181 321 c 3 + 181 333 245 371 278 371 c 0 +EndSplineSet +EndChar + +StartChar: seven.ltr +Encoding: 65543 -1 22 +Width: 487 +Flags: HW +HStem: -6 21G<58 67> 544 74<114 384> +LayerCount: 2 +Fore +SplineSet +27 14 m 1 + 156 176 384 544 384 544 c 1 + 157 544 l 2 + 121 544 95 500 77 469 c 0 + 76 467 73 466 70 466 c 0 + 63 466 55 468 50 471 c 1 + 66 508 104 584 114 618 c 9 + 394 618 l 2 + 417 618 449 621 455 621 c 0 + 461 621 460 617 459 612 c 0 + 456 599 438 574 420 547 c 2 + 74 -3 l 1 + 72 -5 69 -6 64 -6 c 0 + 50 -6 25 5 27 14 c 1 +EndSplineSet +EndChar + +StartChar: eight.ltr +Encoding: 65544 -1 23 +Width: 487 +Flags: HW +HStem: -9 35<151 256> 594 34<262 348> +LayerCount: 2 +Fore +SplineSet +318 628 m 0 + 399 628 456 572 438 479 c 0 + 425 414 356 364 309 336 c 1 + 305 335 306 332 308 330 c 0 + 356 297 409 233 395 163 c 0 + 376 65 279 -9 188 -9 c 0 + 88 -9 31 55 50 150 c 0 + 67 236 158 287 198 311 c 0 + 201 313 202 315 200 316 c 0 + 167 340 123 397 137 469 c 0 + 154 552 238 628 318 628 c 0 +307 594 m 0 + 263 594 220 548 206 480 c 0 + 194 419 246 376 276 355 c 0 + 278 354 279 354 281 354 c 0 + 283 354 284 353 287 355 c 0 + 329 381 361 421 372 475 c 0 + 383 532 362 594 307 594 c 0 +196 26 m 0 + 256 26 302 69 315 135 c 0 + 331 216 240 280 229 288 c 0 + 227 289 227 290 224 290 c 0 + 223 290 221 290 220 289 c 0 + 163 255 134 215 122 153 c 0 + 106 73 148 26 196 26 c 0 +EndSplineSet +EndChar + +StartChar: nine.ltr +Encoding: 65545 -1 24 +Width: 487 +VWidth: 0 +Flags: HW +HStem: -6 21G<44 104> 251 46<190 270> 596 32<246 329> +VStem: 80 78<328 482> 365 80<337 553> +LayerCount: 2 +Fore +SplineSet +207 251 m 0 + 132 251 80 318 80 397 c 0 + 80 510 196 628 302 628 c 0 + 388 628 445 562 445 453 c 0 + 445 377 409 266 324 169 c 0 + 267 105 160 33 47 -6 c 1 + 41 -6 39 13 40 19 c 1 + 152 67 265 142 324 280 c 0 + 357 358 365 412 365 466 c 0 + 365 526 347 596 290 596 c 0 + 237 596 158 518 158 403 c 0 + 158 342 185 297 252 297 c 0 + 275 297 290 306 299 311 c 1 + 302 309 305 305 305 301 c 3 + 305 289 240 251 207 251 c 0 +EndSplineSet +EndChar + +StartChar: colon +Encoding: 58 58 25 +Width: 220 +Flags: W +HStem: -11 107<69 153> 313 107<69 153> +VStem: 57 107<1 85 325 410> +LayerCount: 2 +Fore +SplineSet +57 44 m 0 + 57 73 82 97 111 97 c 0 + 140 97 164 73 164 44 c 0 + 164 15 140 -11 111 -11 c 0 + 82 -11 57 15 57 44 c 0 +57 368 m 0 + 57 397 82 421 111 421 c 0 + 140 421 164 397 164 368 c 0 + 164 339 140 313 111 313 c 0 + 82 313 57 339 57 368 c 0 +EndSplineSet +EndChar + +StartChar: semicolon +Encoding: 59 59 26 +Width: 226 +Flags: W +HStem: 313 107<72 156> +VStem: 66 101<25 109 325 410> 99 68<-26 63> +LayerCount: 2 +Fore +SplineSet +124 120 m 0xc0 + 132 120 142 117 149 113 c 1 + 156 101 167 82 167 45 c 0xc0 + 167 -11 102 -109 52 -136 c 1 + 45 -136 37 -121 37 -115 c 1 + 57 -100 99 -69 99 -7 c 0xa0 + 99 25 66 34 66 72 c 0 + 66 93 89 120 124 120 c 0xc0 +60 368 m 0 + 60 397 85 421 114 421 c 0 + 143 421 167 397 167 368 c 0 + 167 339 143 313 114 313 c 0 + 85 313 60 339 60 368 c 0 +EndSplineSet +EndChar + +StartChar: less +Encoding: 60 60 27 +Width: 480 +Flags: W +HStem: 400 20G<412 414> +LayerCount: 2 +Fore +SplineSet +434 34 m 0 + 434 27 424 -15 418 -15 c 0 + 417 -15 415 -14 413 -13 c 2 + 47 173 l 2 + 32 181 29 195 29 212 c 0 + 29 223 37 230 47 235 c 2 + 407 418 l 2 + 409 419 411 420 412 420 c 0 + 415 420 422 410 429 374 c 0 + 430 368 426 365 426 365 c 1 + 107 204 l 1 + 431 40 l 1 + 431 40 434 39 434 34 c 0 +EndSplineSet +EndChar + +StartChar: equal +Encoding: 61 61 28 +Width: 551 +Flags: W +HStem: 117 54<79 474> 258 54<79 474> +LayerCount: 2 +Fore +SplineSet +467 117 m 1 + 310 117 239 117 71 117 c 1 + 59 117 72 166 86 171 c 9 + 480 171 l 17 + 494 171 481 124 467 117 c 1 +467 258 m 1 + 310 258 239 258 71 258 c 1 + 59 258 72 307 86 312 c 9 + 480 312 l 17 + 494 312 481 265 467 258 c 1 +EndSplineSet +EndChar + +StartChar: greater +Encoding: 62 62 29 +Width: 481 +Flags: W +HStem: 400 20G<66 69> +LayerCount: 2 +Fore +SplineSet +47 34 m 0 + 47 38 50 40 50 40 c 1 + 373 204 l 1 + 56 365 l 1 + 56 365 53 366 53 373 c 0 + 53 391 64 420 68 420 c 0 + 69 420 71 419 73 418 c 2 + 435 235 l 2 + 445 230 451 223 451 212 c 0 + 451 195 450 181 435 173 c 2 + 68 -13 l 2 + 66 -14 64 -15 63 -15 c 0 + 57 -15 47 26 47 34 c 0 +EndSplineSet +EndChar + +StartChar: question +Encoding: 63 63 30 +Width: 347 +Flags: W +HStem: -11 107<73 158> 535 92<63 179> 556 71<81 188> +VStem: 62 107<1 85> 94 28<156 236> 254 49<422 523> +LayerCount: 2 +Fore +SplineSet +62 44 m 0x94 + 62 73 87 97 116 97 c 0 + 145 97 169 73 169 44 c 0 + 169 15 145 -11 116 -11 c 0 + 87 -11 62 15 62 44 c 0x94 +98 535 m 0xd4 + 84 535 55 552 55 584 c 0 + 55 599 58 613 63 620 c 1 + 73 625 89 627 110 627 c 0 + 174 627 303 560 303 446 c 0 + 303 380 277 339 204 297 c 0 + 178 281 134 247 128 236 c 0 + 119 220 122 190 122 168 c 1 + 118 160 115 156 106 155 c 1 + 101 157 97 160 94 166 c 1xcc + 89 187 86 229 86 255 c 0 + 86 327 133 353 169 376 c 0 + 217 406 254 429 254 476 c 0 + 254 527 219 556 182 556 c 0xb4 + 130 556 123 535 98 535 c 0xd4 +EndSplineSet +EndChar + +StartChar: at +Encoding: 64 64 31 +Width: 730 +Flags: W +HStem: -121 18<255 279> -7 42<483 570> -5 57<276 333> 380 45<381 486> 525 39<307 506> +VStem: 48 39<61 280> 189 72<64 227> 413 64<41 122> 656 39<153 369> +LayerCount: 2 +Fore +SplineSet +408 564 m 0xdf80 + 599 564 695 416 695 264 c 0 + 695 115 608 -7 494 -7 c 0xdf80 + 446 -7 413 17 413 77 c 0 + 413 89 417 114 420 122 c 1 + 401 86 339 -5 282 -5 c 3xbf80 + 221 -5 189 59 189 127 c 3 + 189 270 335 425 469 425 c 0 + 503 425 521 419 540 412 c 9 + 480 104 l 2 + 479 100 478 84 478 79 c 0 + 478 48 498 35 524 35 c 0 + 586 35 656 139 656 261 c 0 + 656 393 578 525 408 525 c 0 + 209 525 87 336 87 166 c 0 + 87 52 147 -35 217 -76 c 0 + 252 -97 271 -101 290 -104 c 1 + 290 -112 267 -121 255 -121 c 0 + 243 -121 230 -120 217 -115 c 0 + 127 -82 48 28 48 166 c 0 + 48 357 181 564 408 564 c 0xdf80 +428 380 m 3 + 353 380 262 259 262 147 c 0 + 262 86 278 52 312 52 c 3xbf80 + 361 52 429 174 448 268 c 2 + 468 367 l 17 + 459 377 441 380 428 380 c 3 +EndSplineSet +EndChar + +StartChar: A +Encoding: 65 65 32 +Width: 572 +Flags: HW +HStem: -3 28<-51 2 77 131 329 382 489 537> 250 32<188 359> 628 20G<373 378> +LayerCount: 2 +Fore +SplineSet +333 25 m 1 + 368 25 389 36 389 56 c 0 + 389 66 389 85 386 104 c 2 + 364 250 l 1 + 170 250 l 1 + 137 190 109 139 100 122 c 0 + 82 88 72 64 72 49 c 0 + 72 28 125 25 132 25 c 1 + 134 22 131 3 128 -3 c 1 + 92 -1 82 2 42 2 c 0 + 0 2 -12 -1 -54 -3 c 1 + -56 0 -52 18 -48 25 c 1 + -37 25 -5 31 7 44 c 0 + 31 69 48 101 68 136 c 2 + 337 619 l 2 + 346 635 368 647 376 647 c 0 + 379 647 380 646 381 645 c 1 + 465 123 l 2 + 471 86 476 61 477 57 c 0 + 483 29 531 25 538 25 c 1 + 541 18 537 0 535 -3 c 1 + 499 -1 468 2 428 2 c 0 + 386 2 369 -1 327 -3 c 1 + 323 2 327 20 333 25 c 1 +188 282 m 1 + 359 282 l 1 + 321 522 l 1 + 188 282 l 1 +EndSplineSet +EndChar + +StartChar: B +Encoding: 66 66 33 +Width: 552 +Flags: HW +HStem: -3 28<-3 66 160 299> 331 30<213 342> 615 28<118 176 247 375> +VStem: 399 93<130 290> 423 86<444 579> +LayerCount: 2 +Fore +SplineSet +213 361 m 1xe8 + 305 361 l 2 + 370 361 423 427 423 510 c 0 + 423 565 396 615 312 615 c 0 + 301 615 269 614 264 605 c 0 + 257 593 251 561 246 532 c 2 + 213 361 l 1xe8 +206 331 m 1 + 163 111 l 2 + 160 97 153 49 158 42 c 0 + 169 26 193 25 226 25 c 0 + 326 25 399 94 399 215 c 0xf0 + 399 244 402 331 262 331 c 2 + 206 331 l 1 +228 642 m 0 + 263 642 303 644 357 644 c 0 + 440 644 509 608 509 524 c 0xe8 + 509 426 431 378 392 357 c 1 + 436 353 492 301 492 221 c 0 + 492 88 370 -3 205 -3 c 0 + -4 -3 l 1 + -8 2 -4 20 1 25 c 1 + 12 25 62 30 67 41 c 0 + 75 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 177 588 176 603 c 0 + 176 615 128 618 117 618 c 1 + 114 623 116 641 122 646 c 1 + 159 644 193 642 228 642 c 0 +EndSplineSet +EndChar + +StartChar: C +Encoding: 67 67 34 +Width: 629 +Flags: HW +HStem: -8 28<278 423> 620 30<344 493> +VStem: 58 93<154 387> 571 30<478 548> +LayerCount: 2 +Fore +SplineSet +556 169 m 1 + 569 169 583 161 583 161 c 1 + 579 141 528 39 513 27 c 1 + 460 0 406 -8 322 -8 c 0 + 164 -8 58 114 58 259 c 0 + 58 505 251 654 454 650 c 0 + 511 649 563 637 611 625 c 1 + 609 590 605 509 602 482 c 0 + 602 479 598 478 594 478 c 1 + 588 478 579 478 571 482 c 1 + 576 560 508 620 426 620 c 0 + 274 620 149 487 150 275 c 0 + 150 159 204 21 350 21 c 0 + 450 21 514 89 556 169 c 1 +EndSplineSet +EndChar + +StartChar: D +Encoding: 68 68 35 +Width: 667 +Flags: HW +HStem: -3 28<-3 66 156 315> 616 25<118 176 264 414> +LayerCount: 2 +Fore +SplineSet +246 533 m 2 + 163 109 l 2 + 160 95 152 45 155 39 c 0 + 160 28 194 25 227 25 c 0 + 367 25 500 116 537 306 c 0 + 580 527 479 616 330 616 c 0 + 319 616 269 615 264 605 c 0 + 256 589 251 561 246 533 c 2 +360 643 m 0 + 570 643 665 507 630 326 c 0 + 598 160 488 -2 223 -3 c 1 + -4 -3 l 1 + -8 2 -4 20 1 25 c 1 + 12 25 62 30 67 41 c 0 + 75 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 178 587 176 603 c 0 + 175 614 128 618 117 618 c 1 + 114 623 116 641 122 646 c 1 + 159 644 193 642 228 642 c 0 + 263 642 320 643 360 643 c 0 +EndSplineSet +EndChar + +StartChar: E +Encoding: 69 69 36 +Width: 541 +Flags: HW +HStem: 0 29<-2 67 155 349> 309 32<210 361> 615 26<118 175 264 457> +VStem: 374 28<225 265> 493 28<511 577> +LayerCount: 2 +Back +SplineSet +407.2265625 615.234375 m 1 + 329.1015625 615.234375 l 2 + 289.713867188 615.234375 268.229492188 611.653320312 264.6484375 604.4921875 c 0 + 257.8125 590.8203125 251.301757812 567.3828125 245.1171875 534.1796875 c 1024 +EndSplineSet +Fore +SplineSet +228 642 m 0 + 313 642 422 648 521 648 c 1 + 518 599 521 560 521 516 c 1 + 518 513 511 511 504 511 c 0 + 497 511 493 513 493 518 c 0 + 488 596 455 615 407 615 c 2 + 329 615 l 2 + 318 615 270 614 265 604 c 0 + 257 588 250 560 245 534 c 2 + 209 347 l 2 + 208 342 227 341 247 341 c 2 + 295 341 l 2 + 382 341 380 347 408 411 c 0 + 410 416 417 418 424 418 c 0 + 431 418 436 416 438 413 c 1 + 402 229 l 1 + 400 227 394 225 387 225 c 0 + 380 225 375 227 374 232 c 0 + 371 288 368 295 361 301 c 0 + 352 308 301 309 267 309 c 0 + 242 309 201 309 199 300 c 2 + 161 106 l 2 + 158 91 149 44 154 39 c 0 + 164 29 179 29 217 29 c 2 + 260 29 l 2 + 310 29 350 39 381 60 c 0 + 407 78 433 106 457 158 c 0 + 459 162 465 164 472 164 c 0 + 481 164 491 161 493 158 c 1 + 466 105 427 39 412 -4 c 1 + 313 -4 225 0 104 0 c 0 + 61 0 30 -3 -5 -3 c 1 + -9 2 -5 20 0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 177 587 175 603 c 0 + 174 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 193 642 228 642 c 0 +EndSplineSet +EndChar + +StartChar: F +Encoding: 70 70 37 +Width: 496 +Flags: HW +HStem: -3 28<-4 65 155 221> 309 32<210 361> 615 26<118 175 264 457> +VStem: 374 28<225 265> 493 28<511 577> +LayerCount: 2 +Fore +SplineSet +228 642 m 0 + 313 642 422 648 521 648 c 1 + 518 599 521 560 521 516 c 1 + 518 513 511 511 504 511 c 0 + 497 511 493 513 493 518 c 0 + 488 596 455 615 407 615 c 2 + 329 615 l 2 + 318 615 270 614 265 604 c 0 + 257 588 250 560 245 534 c 2 + 209 347 l 2 + 208 342 227 341 247 341 c 2 + 295 341 l 2 + 382 341 380 347 408 411 c 0 + 410 416 417 418 424 418 c 0 + 431 418 436 416 438 413 c 1 + 402 229 l 1 + 400 227 394 225 387 225 c 0 + 380 225 375 227 374 232 c 0 + 371 288 368 295 361 301 c 0 + 352 308 301 309 267 309 c 0 + 242 309 201 309 199 300 c 2 + 163 113 l 2 + 157 84 152 57 154 41 c 0 + 155 30 212 25 223 25 c 1 + 226 20 223 2 217 -3 c 1 + 180 -1 138 2 103 2 c 0 + 60 2 30 -3 -5 -3 c 1 + -9 2 -5 20 0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 177 587 175 603 c 0 + 174 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 193 642 228 642 c 0 +EndSplineSet +EndChar + +StartChar: G +Encoding: 71 71 38 +Width: 680 +Flags: HW +HStem: -8 28<276 418> 259 28<432 495 583 648> 620 30<344 493> +VStem: 58 93<156 387> 495 57<110 131> 571 30<478 549> +LayerCount: 2 +Fore +SplineSet +571 482 m 1 + 576 560 508 620 426 620 c 0 + 274 620 149 487 150 275 c 0 + 150 159 205 21 347 21 c 0 + 394 21 435 40 456 54 c 0 + 461 58 465 63 466 70 c 0 + 471 96 485 171 485 171 c 2 + 491 200 497 227 495 243 c 0 + 494 254 442 259 431 259 c 1 + 428 264 430 282 436 287 c 1 + 473 285 506 282 541 282 c 0 + 576 282 610 285 648 287 c 1 + 652 282 650 264 645 259 c 1 + 634 259 587 254 582 243 c 0 + 574 227 569 200 563 171 c 2 + 550 102 l 2 + 546 81 552 76 552 66 c 0 + 552 60 547 54 530 45 c 0 + 485 22 436 -8 316 -8 c 0 + 166 -8 58 114 58 259 c 0 + 58 505 251 654 454 650 c 0 + 511 649 563 637 611 625 c 1 + 609 590 604 511 602 482 c 0 + 602 479 598 478 594 478 c 1 + 588 478 579 478 571 482 c 1 +EndSplineSet +EndChar + +StartChar: H +Encoding: 72 72 39 +Width: 669 +Flags: HW +HStem: -3 28<-4 65 154 212 360 429 519 576> 309 39<209 487> 618 28<117 174 264 333 481 538 629 697> +LayerCount: 2 +Fore +SplineSet +164 113 m 2 + 158 84 152 57 154 41 c 0 + 155 30 203 25 214 25 c 1 + 217 20 214 2 208 -3 c 1 + 171 -1 138 2 103 2 c 0 + 68 2 33 -1 -5 -3 c 1 + -9 2 -5 20 -0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 176 587 174 603 c 0 + 173 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 192 642 227 642 c 0 + 262 642 297 644 335 646 c 1 + 339 641 334 623 329 618 c 1 + 318 618 268 614 263 603 c 0 + 255 587 250 559 245 530 c 2 + 209 348 l 1 + 494 348 l 1 + 530 530 l 2 + 535 559 541 587 539 603 c 0 + 538 614 490 618 479 618 c 1 + 476 623 479 641 485 646 c 1 + 522 644 556 642 591 642 c 0 + 626 642 661 644 699 646 c 1 + 703 641 698 623 693 618 c 1 + 682 618 633 614 628 603 c 0 + 620 587 615 559 609 530 c 2 + 528 113 l 2 + 522 84 516 57 518 41 c 0 + 519 30 567 25 578 25 c 1 + 581 20 578 2 572 -3 c 1 + 535 -1 501 2 466 2 c 0 + 431 2 397 -1 359 -3 c 1 + 355 2 359 20 364 25 c 1 + 375 25 425 30 430 41 c 0 + 438 57 443 84 449 113 c 2 + 487 309 l 1 + 202 309 l 1 + 164 113 l 2 +EndSplineSet +EndChar + +StartChar: I +Encoding: 73 73 40 +Width: 305 +Flags: HW +HStem: -3 28<-4 65 154 212> 618 28<117 174 264 333> +LayerCount: 2 +Fore +SplineSet +227 642 m 0 + 262 642 297 644 335 646 c 1 + 339 641 334 623 329 618 c 1 + 318 618 268 614 263 603 c 0 + 255 587 251 559 245 530 c 2 + 164 113 l 2 + 158 84 152 57 154 41 c 0 + 155 30 203 25 214 25 c 1 + 217 20 214 2 208 -3 c 1 + 171 -1 138 2 103 2 c 0 + 68 2 33 -1 -5 -3 c 1 + -9 2 -5 20 -0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 176 587 174 603 c 0 + 173 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 192 642 227 642 c 0 +EndSplineSet +EndChar + +StartChar: J +Encoding: 74 74 41 +Width: 305 +Flags: HW +HStem: -228 19<-105 -83> 618 28<111 168 258 327> +LayerCount: 2 +Fore +SplineSet +160 530 m 2 + 165 559 171 587 169 603 c 0 + 168 614 120 618 109 618 c 1 + 106 623 109 641 115 646 c 1 + 152 644 186 642 221 642 c 0 + 256 642 291 644 329 646 c 1 + 333 641 328 623 323 618 c 1 + 312 618 262 614 257 603 c 0 + 249 587 244 559 239 530 c 2 + 160 113 l 2 + 111 -145 -25 -228 -103 -228 c 1 + -105 -225 -105 -220 -105 -215 c 0 + -105 -213 -104 -209 -104 -209 c 1 + 5 -175 48 -82 82 106 c 2 + 160 530 l 2 +EndSplineSet +EndChar + +StartChar: K +Encoding: 75 75 42 +Width: 599 +Flags: HW +HStem: -3 28<-3 65 155 213 508 556> 618 28<118 175 264 333 445 486 581 647> +LayerCount: 2 +Fore +SplineSet +469 70 m 0 + 488 48 510 29 559 25 c 1 + 563 20 554 -1 553 -3 c 1 + 492 -3 443 1 426 8 c 0 + 414 13 394 23 373 50 c 0 + 358 71 294 171 216 297 c 0 + 215 300 213 300 209 300 c 0 + 206 300 202 299 200 298 c 1 + 164 113 l 2 + 158 84 153 57 155 41 c 0 + 156 30 203 25 214 25 c 1 + 217 20 215 2 209 -3 c 1 + 172 -1 138 2 103 2 c 0 + 68 2 34 -1 -4 -3 c 1 + -8 2 -4 20 1 25 c 1 + 12 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 177 587 175 603 c 0 + 174 614 127 618 116 618 c 1 + 113 623 116 641 122 646 c 1 + 159 644 193 642 228 642 c 0 + 263 642 297 644 335 646 c 1 + 339 641 335 623 330 618 c 1 + 319 618 268 614 263 603 c 0 + 255 587 251 559 245 530 c 2 + 207 332 l 1 + 228 345 283 390 328 429 c 0 + 414 504 414 502 469 562 c 0 + 476 570 486 583 488 593 c 0 + 493 617 450 617 442 617 c 1 + 440 623 443 637 448 646 c 1 + 481 644 517 641 550 641 c 0 + 590 641 613 644 650 646 c 1 + 651 640 647 617 642 617 c 0 + 633 616 584 617 546 581 c 0 + 450 489 390 439 295 357 c 0 + 288 351 290 347 293 342 c 0 + 359 233 413 141 469 70 c 0 +EndSplineSet +EndChar + +StartChar: L +Encoding: 76 76 43 +Width: 517 +Flags: HW +HStem: 0 29<-1 68 155 348> 618 28<118 176 265 333> +LayerCount: 2 +Fore +SplineSet +162 109 m 2 + 159 94 149 44 154 39 c 0 + 164 29 179 29 217 29 c 2 + 269 29 l 2 + 303 29 344 39 374 56 c 0 + 403 73 433 106 457 158 c 0 + 459 162 465 164 472 164 c 0 + 481 164 492 161 494 158 c 1 + 467 105 428 39 413 -4 c 1 + 314 -4 225 0 104 0 c 0 + 61 0 31 -3 -4 -3 c 1 + -8 2 -4 20 1 25 c 1 + 12 25 62 30 67 41 c 0 + 75 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 178 587 176 603 c 0 + 175 614 128 618 117 618 c 1 + 114 623 116 641 122 646 c 1 + 159 644 193 642 228 642 c 0 + 263 642 297 644 335 646 c 1 + 339 641 335 623 330 618 c 1 + 319 618 269 614 264 603 c 0 + 256 587 251 559 246 530 c 2 + 162 109 l 2 +EndSplineSet +EndChar + +StartChar: M +Encoding: 77 77 44 +Width: 818 +Flags: HW +HStem: -3 28<-20 54 117 181 517 581 676 734> 618 28<129 181 772 837> +LayerCount: 2 +Fore +SplineSet +388 48 m 2 + 383 39 355 0 344 -2 c 0 + 341 -3 339 -1 336 0 c 1 + 225 570 l 1 + 180 357 118 83 116 73 c 0 + 114 64 114 51 115 43 c 0 + 118 28 176 25 183 25 c 1 + 186 19 181 0 179 -3 c 1 + 143 -1 124 2 84 2 c 0 + 42 2 19 -1 -23 -3 c 1 + -24 -1 -22 17 -17 25 c 1 + -6 25 48 30 59 43 c 0 + 70 56 74 71 79 92 c 0 + 133 326 180 541 183 559 c 0 + 186 573 189 587 187 598 c 1 + 186 610 138 618 127 618 c 1 + 125 624 129 643 133 646 c 1 + 161 644 185 643 221 643 c 0 + 248 643 279 644 300 646 c 1 + 306 584 398 136 397 136 c 1 + 396 136 617 529 617 529 c 2 + 642 574 680 646 680 646 c 1 + 708 644 730 643 748 643 c 0 + 780 643 815 644 838 646 c 1 + 838 643 836 618 836 618 c 1 + 823 618 775 611 768 601 c 1 + 763 592 758 575 756 563 c 2 + 682 137 l 2 + 675 99 671 65 675 42 c 0 + 677 28 728 25 735 25 c 1 + 738 16 734 0 732 -3 c 1 + 696 -1 664 2 624 2 c 0 + 582 2 556 -1 514 -3 c 1 + 513 -1 515 17 520 25 c 1 + 531 25 568 29 581 36 c 0 + 588 40 594 63 597 77 c 0 + 600 91 644 367 674 553 c 17 + 661 532 388 48 388 48 c 2 +EndSplineSet +EndChar + +StartChar: N +Encoding: 78 78 45 +Width: 714 +Flags: HW +HStem: -3 28<-9 60 135 192> 618 28<112 175 551 611 684 754> +LayerCount: 2 +Fore +SplineSet +613 528 m 2 + 620 563 622 583 616 599 c 0 + 611 613 566 618 551 618 c 1 + 548 625 551 641 554 646 c 1 + 590 644 613 643 653 643 c 0 + 695 643 713 644 755 646 c 1 + 757 641 758 629 751 618 c 1 + 740 618 687 612 678 600 c 0 + 667 585 663 570 656 533 c 2 + 579 136 l 2 + 568 79 563 50 555 -1 c 1 + 552 -4 541 -5 538 -5 c 0 + 530 -5 519 4 512 18 c 2 + 219 556 l 1 + 133 112 l 2 + 126 77 123 61 129 45 c 0 + 133 35 179 25 194 25 c 1 + 197 18 193 3 190 -3 c 1 + 154 -1 129 2 89 2 c 0 + 47 2 30 -1 -12 -3 c 1 + -14 2 -13 14 -6 25 c 1 + 5 25 59 33 68 45 c 0 + 79 60 84 74 91 111 c 2 + 173 535 l 2 + 180 572 182 587 177 602 c 0 + 173 614 121 618 110 618 c 1 + 107 629 111 641 115 646 c 1 + 156 644 168 643 198 643 c 0 + 225 643 265 645 278 646 c 1 + 309 568 470 309 541 158 c 1 + 613 528 l 2 +EndSplineSet +EndChar + +StartChar: O +Encoding: 79 79 46 +Width: 693 +Flags: HW +HStem: -11 28<255 383> 620 29<332 462> +VStem: 60 92<146 395> 564 92<240 489> +LayerCount: 2 +Fore +SplineSet +396 620 m 0 + 273 620 151 467 151 262 c 0 + 151 150 186 18 320 18 c 0 + 469 18 564 209 564 384 c 0 + 564 478 534 620 396 620 c 0 +405 649 m 0 + 559 649 656 529 656 373 c 0 + 656 144 500 -11 312 -11 c 0 + 154 -11 60 113 60 267 c 0 + 60 492 227 649 405 649 c 0 +EndSplineSet +EndChar + +StartChar: P +Encoding: 80 80 47 +Width: 499 +Flags: HW +HStem: -3 28<-4 65 154 212> 275 25<238 320> 615 28<117 175 247 371> +VStem: 423 87<404 571> +LayerCount: 2 +Fore +SplineSet +510 496 m 0 + 510 371 402 275 283 275 c 0 + 262 275 244 281 239 285 c 0 + 237 287 231 296 231 301 c 0 + 231 303 233 304 235 305 c 1 + 243 301 259 301 268 301 c 0 + 340 301 423 373 423 482 c 0 + 423 537 411 615 310 615 c 0 + 299 615 268 614 263 605 c 0 + 256 593 251 561 245 532 c 2 + 163 113 l 2 + 157 84 152 57 154 41 c 0 + 155 30 203 25 214 25 c 1 + 217 20 214 2 208 -3 c 1 + 171 -1 137 2 102 2 c 0 + 67 2 33 -1 -5 -3 c 1 + -9 2 -5 20 -0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 176 587 174 603 c 0 + 173 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 194 642 229 642 c 0 + 264 642 280 644 334 644 c 0 + 438 644 510 585 510 496 c 0 +EndSplineSet +EndChar + +StartChar: Q +Encoding: 81 81 48 +Width: 693 +Flags: HW +HStem: -133 54<463 597> 620 29<332 462> +VStem: 60 92<147 395> 564 92<239 489> +LayerCount: 2 +Fore +SplineSet +405 649 m 0 + 559 649 656 529 656 373 c 0 + 656 172 534 28 377 -4 c 1 + 449 -46 472 -79 561 -79 c 0 + 597 -79 643 -68 650 -66 c 1 + 657 -66 669 -75 669 -79 c 1 + 613 -107 553 -133 497 -133 c 0 + 402 -133 334 -36 222 4 c 16 + 118 41 60 144 60 267 c 0 + 60 492 227 649 405 649 c 0 +396 620 m 0 + 273 620 151 467 151 262 c 0 + 151 150 186 18 320 18 c 0 + 469 18 564 209 564 384 c 0 + 564 478 534 620 396 620 c 0 +EndSplineSet +EndChar + +StartChar: R +Encoding: 82 82 49 +Width: 565 +Flags: HW +HStem: -3 28<-4 65 154 212 494 542> 296 29<205 272> 615 28<117 175 248 374> +VStem: 425 87<428 575> +LayerCount: 2 +Fore +SplineSet +540 -3 m 1 + 460 -3 398 1 375 46 c 0 + 346 104 304 199 272 284 c 0 + 269 293 260 296 247 296 c 2 + 199 296 l 1 + 164 113 l 2 + 158 84 152 57 154 41 c 0 + 155 30 203 25 214 25 c 1 + 217 20 214 2 208 -3 c 1 + 171 -1 138 2 103 2 c 0 + 68 2 33 -1 -5 -3 c 1 + -9 2 -5 20 -0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 176 587 174 603 c 0 + 173 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 195 642 230 642 c 0 + 265 642 305 644 359 644 c 0 + 442 644 512 597 512 506 c 0 + 512 412 427 339 352 312 c 1 + 384 224 431 126 455 84 c 0 + 478 44 497 29 546 25 c 1 + 550 20 541 -1 540 -3 c 1 +205 325 m 1 + 254 325 l 2 + 331 325 425 381 425 500 c 0 + 425 540 412 615 311 615 c 0 + 300 615 268 614 263 605 c 0 + 256 593 251 561 245 532 c 2 + 205 325 l 1 +EndSplineSet +EndChar + +StartChar: S +Encoding: 83 83 50 +Width: 460 +Flags: HW +HStem: -8 29<144 259> 620 30<237 348> +VStem: 33 34<106 185> 99 76<437 545> 324 87<105 217> 387 30<480 578> +LayerCount: 2 +Fore +SplineSet +304 650 m 0xf8 + 361 650 390 639 438 627 c 1 + 435 594 424 515 418 486 c 0 + 417 479 411 479 408 479 c 0 + 404 479 393 480 387 486 c 1xf4 + 392 564 367 620 297 620 c 0 + 217 620 176 558 176 508 c 0 + 176 428 236 396 288 355 c 0 + 340 314 411 279 411 188 c 0 + 411 67 294 -8 188 -8 c 0 + 133 -8 82 12 45 33 c 1 + 32 86 31 168 33 180 c 1 + 36 184 50 186 57 186 c 0 + 62 186 65 184 67 180 c 1 + 67 126 104 21 200 21 c 0 + 265 21 324 66 324 144 c 0 + 324 214 280 248 231 287 c 0 + 172 334 99 364 99 465 c 0 + 99 577 213 650 304 650 c 0xf8 +EndSplineSet +EndChar + +StartChar: T +Encoding: 84 84 51 +Width: 573 +Flags: HW +HStem: -3 28<131 199 289 347> 605 34<154 315 394 547> +VStem: 572 31<483 573> +LayerCount: 2 +Fore +SplineSet +537 640 m 2 + 552 640 583 648 595 654 c 0 + 605 659 607 659 612 656 c 1 + 607 596 603 540 603 488 c 1 + 600 485 592 480 584 481 c 0 + 579 481 573 483 572 486 c 1 + 573 554 555 605 510 605 c 2 + 394 605 l 1 + 298 113 l 2 + 292 84 286 57 288 41 c 0 + 289 30 337 25 348 25 c 1 + 351 20 349 2 343 -3 c 1 + 306 -1 272 2 237 2 c 0 + 202 2 167 -1 129 -3 c 1 + 125 2 130 20 135 25 c 1 + 146 25 195 30 200 41 c 0 + 208 57 213 84 219 113 c 2 + 315 605 l 1 + 198 605 l 2 + 153 605 114 554 88 486 c 0 + 86 483 79 481 74 481 c 0 + 65 480 59 485 57 488 c 1 + 78 540 96 596 114 656 c 1 + 120 659 129 656 134 653 c 0 + 144 647 168 640 182 640 c 2 + 537 640 l 2 +EndSplineSet +EndChar + +StartChar: U +Encoding: 85 85 52 +Width: 645 +Flags: HW +HStem: -4 57<225 388> 618 28<103 160 250 318 502 558 628 700> +LayerCount: 2 +Fore +SplineSet +213 642 m 0 + 248 642 282 644 320 646 c 1 + 324 641 319 623 314 618 c 1 + 303 618 254 614 249 603 c 0 + 241 587 236 559 230 530 c 2 + 183 289 l 2 + 168 213 170 155 189 117 c 0 + 210 74 248 53 306 53 c 0 + 400 53 472 100 507 268 c 0 + 559 532 l 2 + 566 567 568 584 562 600 c 0 + 558 610 516 619 501 619 c 1 + 498 626 502 641 505 647 c 1 + 541 645 563 643 603 643 c 0 + 645 643 660 645 702 647 c 1 + 704 642 704 630 697 619 c 1 + 686 619 631 612 622 600 c 0 + 611 585 608 570 601 533 c 2 + 549 270 l 2 + 511 75 418 -4 276 -4 c 0 + 207 -4 154 21 122 66 c 0 + 92 109 80 170 95 245 c 2 + 151 530 l 2 + 157 559 163 587 161 603 c 0 + 160 614 112 618 101 618 c 1 + 98 623 101 641 107 646 c 1 + 144 644 178 642 213 642 c 0 +EndSplineSet +EndChar + +StartChar: V +Encoding: 86 86 53 +Width: 582 +Flags: HW +HStem: -2 21G<220 228> 618 28<64 108 230 282 475 517 610 661> +LayerCount: 2 +Fore +SplineSet +171 642 m 0 + 211 642 248 644 285 646 c 1 + 286 640 282 619 278 618 c 1 + 271 618 222 613 217 586 c 0 + 215 576 215 552 220 517 c 0 + 232 430 278 128 279 125 c 1 + 283 130 499 512 499 512 c 2 + 512 534 523 562 526 580 c 0 + 532 611 485 618 474 618 c 1 + 470 620 473 641 479 646 c 1 + 512 644 542 642 575 642 c 0 + 617 642 627 644 664 646 c 1 + 666 641 661 618 658 618 c 0 + 651 618 614 613 594 593 c 0 + 580 579 551 531 530 494 c 2 + 263 31 l 2 + 248 5 234 -2 222 -2 c 0 + 218 -2 217 10 216 14 c 0 + 188 188 170 314 139 502 c 0 + 133 540 127 571 116 596 c 0 + 109 612 72 618 61 618 c 0 + 59 618 65 644 67 646 c 1 + 108 644 129 642 171 642 c 0 +EndSplineSet +EndChar + +StartChar: W +Encoding: 87 87 54 +Width: 821 +Flags: HW +HStem: -2 21G<182 190 510 518> 618 28<67 108 223 275 707 750 847 895> +LayerCount: 2 +Back +SplineSet +246.486328125 159.1796875 m 9 + 462.306640625 614.2578125 l 2 + 466.436523438 622.9765625 472.643554688 630.52734375 480.927734375 636.91015625 c 0 + 489.211914062 643.29296875 496.025390625 646.484375 501.369140625 646.484375 c 0 + 503.135742188 646.484375 504.432617188 645.521484375 505.2578125 643.595703125 c 0 + 506.083007812 641.668945312 507.391601562 637.423828125 509.181640625 630.859375 c 1 + 514.149414062 576.211914062 532.37890625 418.333984375 563.869140625 157.2265625 c 1 + 563.869140625 152.359375 565.91796875 151.483398438 570.016601562 154.596679688 c 0 + 571.7265625 155.895507812 572.931640625 157.422851562 573.634765625 159.1796875 c 2 + 732.814453125 511.71875 l 1 + 747.282226562 546.44140625 755.419921875 569.227539062 757.228515625 580.078125 c 0 + 758.584960938 587.315429688 757.137695312 593.645507812 752.885742188 599.068359375 c 0 + 748.633789062 604.4921875 742.96875 608.463867188 735.890625 610.983398438 c 0 + 728.8125 613.50390625 722.40234375 615.330078125 716.661132812 616.463867188 c 0 + 710.919921875 617.59765625 706.213867188 618.1640625 702.541015625 618.1640625 c 1 + 700.526367188 619.08984375 700.282226562 623.443359375 701.80859375 631.225585938 c 0 + 703.333984375 639.0078125 705.53125 644.09375 708.400390625 646.484375 c 1 + 763.739257812 643.229492188 795.965820312 641.6015625 805.080078125 641.6015625 c 0 + 817.491210938 641.6015625 828.184570312 641.849609375 837.16015625 642.346679688 c 0 + 846.135742188 642.84375 855.782226562 643.540039062 866.098632812 644.436523438 c 0 + 876.416015625 645.333984375 886.024414062 646.015625 894.923828125 646.484375 c 1 + 895.888671875 644.071289062 895.361328125 638.748046875 893.341796875 630.514648438 c 0 + 891.322265625 622.28125 889.571289062 618.1640625 888.087890625 618.1640625 c 0 + 883.037109375 618.1640625 873.548828125 615.750976562 859.623046875 610.924804688 c 0 + 845.697265625 606.099609375 834.026367188 600.048828125 824.611328125 592.7734375 c 0 + 811.388671875 582.1953125 795.763671875 557.456054688 777.736328125 518.5546875 c 2 + 550.197265625 31.25 l 2 + 546.422851562 22.7568359375 540.169921875 15.099609375 531.438476562 8.2783203125 c 0 + 522.70703125 1.45703125 515.288085938 -1.953125 509.181640625 -1.953125 c 0 + 507.4609375 -1.953125 506.053710938 -0.041015625 504.9609375 3.7841796875 c 0 + 503.868164062 7.609375 503.322265625 10.9052734375 503.322265625 13.671875 c 0 + 495.040039062 84.443359375 484.340820312 171.674804688 471.224609375 275.368164062 c 0 + 458.107421875 379.061523438 449.275390625 449.381835938 444.728515625 486.328125 c 0 + 444.728515625 487.84765625 444.118164062 488.7421875 442.897460938 489.013671875 c 0 + 441.676757812 489.28515625 440.333984375 488.71484375 438.869140625 487.3046875 c 1 + 221.095703125 31.25 l 2 + 217.294921875 22.6982421875 211.18359375 15.0263671875 202.76171875 8.234375 c 0 + 194.33984375 1.4423828125 187.104492188 -1.953125 181.056640625 -1.953125 c 0 + 179.3125 -1.953125 177.737304688 0.0166015625 176.331054688 3.955078125 c 0 + 174.923828125 7.8935546875 174.220703125 11.1328125 174.220703125 13.671875 c 2 + 127.345703125 519.53125 l 2 + 127.133789062 522.359375 126.806640625 526.91796875 126.366210938 533.20703125 c 0 + 125.924804688 539.497070312 125.611328125 543.799804688 125.423828125 546.115234375 c 0 + 125.237304688 548.431640625 124.904296875 552.017578125 124.423828125 556.874023438 c 0 + 123.944335938 561.73046875 123.489257812 565.223632812 123.05859375 567.35546875 c 0 + 122.62890625 569.487304688 122.024414062 572.356445312 121.24609375 575.962890625 c 0 + 120.46875 579.568359375 119.61328125 582.4375 118.6796875 584.567382812 c 0 + 117.74609375 586.698242188 116.612304688 589.033203125 115.276367188 591.572265625 c 0 + 113.94140625 594.111328125 112.4296875 596.46484375 110.744140625 598.6328125 c 0 + 106.366210938 604.32421875 98.6796875 609.001953125 87.685546875 612.666992188 c 0 + 76.69140625 616.33203125 67.775390625 618.1640625 60.939453125 618.1640625 c 0 + 60.3310546875 618.1640625 60.3876953125 620.385742188 61.109375 624.828125 c 0 + 61.83203125 629.271484375 62.8037109375 633.834960938 64.025390625 638.517578125 c 0 + 65.2470703125 643.201171875 66.171875 645.856445312 66.798828125 646.484375 c 1 + 75.5849609375 646.06640625 87.3359375 645.389648438 102.052734375 644.456054688 c 0 + 116.76953125 643.521484375 129.833984375 642.8125 141.245117188 642.328125 c 0 + 152.657226562 641.84375 164.625 641.6015625 177.150390625 641.6015625 c 0 + 189.075195312 641.6015625 200.129882812 641.844726562 210.313476562 642.33203125 c 0 + 220.49609375 642.819335938 231.916015625 643.525390625 244.573242188 644.452148438 c 0 + 257.23046875 645.377929688 267.633789062 646.055664062 275.783203125 646.484375 c 1 + 276.310546875 643.3203125 275.602539062 637.924804688 273.658203125 630.296875 c 0 + 271.713867188 622.669921875 269.818359375 618.625976562 267.970703125 618.1640625 c 1 + 265.233398438 618.1640625 261.25390625 617.723632812 256.032226562 616.842773438 c 0 + 250.810546875 615.961914062 244.548828125 614.493164062 237.245117188 612.435546875 c 0 + 229.942382812 610.37890625 223.427734375 607.026367188 217.702148438 602.376953125 c 0 + 211.9765625 597.728515625 208.55078125 592.248046875 207.423828125 585.9375 c 0 + 205.10546875 573.189453125 213.140625 451.951171875 231.52734375 222.22265625 c 0 + 233.844726562 193.27734375 235.575195312 171.612304688 236.720703125 157.2265625 c 1024 +EndSplineSet +Fore +SplineSet +168 642 m 0 + 208 642 242 644 279 646 c 1 + 280 640 275 619 271 618 c 1 + 264 618 215 613 210 586 c 0 + 209 580 209 561 211 532 c 0 + 216 449 229 286 241 141 c 1 + 465 614 l 2 + 474 633 494 646 504 646 c 0 + 508 646 509 642 512 631 c 1 + 514 610 546 335 569 141 c 1 + 737 512 l 2 + 747 535 757 562 760 580 c 0 + 766 611 716 618 705 618 c 1 + 701 620 705 641 711 646 c 1 + 744 644 775 642 808 642 c 0 + 850 642 861 644 898 646 c 1 + 900 641 894 618 891 618 c 0 + 884 618 849 610 828 593 c 0 + 813 581 800 559 781 519 c 2 + 553 31 l 2 + 545 13 524 -2 512 -2 c 0 + 508 -2 506 10 506 14 c 0 + 485 197 469 309 446 499 c 1 + 224 31 l 2 + 216 13 196 -2 184 -2 c 0 + 180 -2 177 10 177 14 c 2 + 130 520 l 2 + 127 559 128 581 114 599 c 0 + 104 612 75 618 64 618 c 0 + 62 618 68 644 70 646 c 1 + 111 644 126 642 168 642 c 0 +EndSplineSet +EndChar + +StartChar: X +Encoding: 88 88 55 +Width: 605 +Flags: HW +HStem: -3 28<-53 13 102 159 331 383 504 558> 618 28<103 146 281 334 464 516 604 660> +LayerCount: 2 +Fore +SplineSet +219 642 m 0 + 264 642 299 644 336 646 c 1 + 337 640 334 618 329 618 c 0 + 316 618 274 612 269 587 c 0 + 267 579 269 570 274 558 c 2 + 346 383 l 1 + 415 461 495 551 514 578 c 0 + 516 581 521 588 522 594 c 0 + 523 600 513 617 462 617 c 1 + 458 618 462 639 466 646 c 1 + 502 643 530 641 563 641 c 0 + 610 641 641 644 663 646 c 1 + 665 641 663 623 656 617 c 1 + 649 617 600 613 568 578 c 2 + 360 353 l 1 + 480 64 l 2 + 492 36 531 25 561 25 c 1 + 564 20 557 -1 556 -3 c 1 + 520 -1 501 2 464 2 c 0 + 413 2 381 -1 330 -3 c 1 + 326 2 330 25 335 25 c 0 + 345 25 390 34 394 53 c 0 + 395 56 393 61 392 64 c 2 + 298 293 l 1 + 229 215 125 90 104 64 c 0 + 102 61 97 55 96 49 c 0 + 95 43 110 25 161 25 c 1 + 164 19 159 0 157 -3 c 1 + 124 -1 88 2 55 2 c 0 + 8 2 -20 -1 -57 -3 c 1 + -59 3 -52 22 -50 25 c 1 + -43 25 19 29 51 64 c 2 + 283 324 l 1 + 196 535 l 2 + 182 570 171 587 149 603 c 0 + 135 613 112 618 101 618 c 0 + 96 618 101 641 107 646 c 1 + 151 644 174 642 219 642 c 0 +EndSplineSet +EndChar + +StartChar: Y +Encoding: 89 89 56 +Width: 542 +Flags: HW +HStem: -3 28<118 187 276 334> 618 28<59 103 237 290 426 480 557 616> +LayerCount: 2 +Fore +SplineSet +206 113 m 2 + 234 261 l 2 + 235 268 236 278 233 288 c 2 + 152 535 l 2 + 140 571 128 587 106 603 c 0 + 92 613 69 618 58 618 c 0 + 53 618 58 641 64 646 c 1 + 108 644 131 642 176 642 c 0 + 221 642 256 644 293 646 c 1 + 294 640 291 618 286 618 c 0 + 273 618 231 612 226 587 c 0 + 224 579 227 571 231 558 c 2 + 309 323 l 1 + 371 409 465 548 481 578 c 0 + 483 581 485 587 486 593 c 0 + 487 599 476 617 425 617 c 1 + 422 620 426 642 429 646 c 1 + 462 644 487 641 520 641 c 0 + 567 641 583 644 620 646 c 1 + 620 643 615 617 612 617 c 0 + 605 617 553 617 525 578 c 2 + 325 294 l 2 + 317 283 317 273 315 264 c 2 + 285 113 l 2 + 279 84 273 57 275 41 c 0 + 276 30 324 25 335 25 c 1 + 338 20 336 2 330 -3 c 1 + 293 -1 260 2 225 2 c 0 + 190 2 154 -1 116 -3 c 1 + 112 2 117 20 122 25 c 1 + 133 25 183 30 188 41 c 0 + 196 57 200 84 206 113 c 2 +EndSplineSet +EndChar + +StartChar: Z +Encoding: 90 90 57 +Width: 587 +Flags: HW +HStem: 0 31<100 399> 614 31<218 495> 634 20G<143 161> +LayerCount: 2 +Fore +SplineSet +273 614 m 2xc0 + 211 614 157 560 122 480 c 0 + 120 477 117 477 112 477 c 0 + 104 477 91 481 89 484 c 1 + 113 529 133 587 152 653 c 1xa0 + 171 650 201 646 225 646 c 2 + 402 646 l 2xc0 + 478 646 517 649 594 655 c 1 + 598 654 608 642 606 634 c 0xa0 + 603 626 304 264 100 31 c 1 + 339 31 l 2 + 384 31 421 56 446 83 c 0 + 471 110 488 143 501 168 c 0 + 502 170 509 171 514 171 c 0 + 523 171 532 166 535 162 c 1 + 498 85 482 49 463 0 c 1 + 4 0 l 2 + -6 0 -14 8 -9 14 c 2 + 497 615 l 1 + 273 614 l 2xc0 +EndSplineSet +EndChar + +StartChar: bracketleft +Encoding: 91 91 58 +Width: 253 +Flags: HW +HStem: 679 44<204 308> +VStem: 7 324 +LayerCount: 2 +Fore +SplineSet +157 700 m 2 + 157 701 163 723 180 723 c 0 + 253 723 311 731 326 731 c 0 + 328 731 331 732 331 726 c 0 + 331 705 309 690 308 689 c 2 + 308 689 263 679 214 679 c 0 + 208 679 206 671 206 671 c 1 + 66 -48 l 1 + 66 -48 65 -55 71 -56 c 0 + 106 -60 149 -73 161 -80 c 0 + 163 -81 174 -92 174 -101 c 0 + 174 -112 167 -115 167 -115 c 1 + 167 -115 88 -100 14 -100 c 0 + 10 -100 6 -96 7 -89 c 0 + 60 182 157 700 157 700 c 2 +EndSplineSet +EndChar + +StartChar: backslash +Encoding: 92 92 59 +Width: 359 +Flags: HW +VStem: 112 171 +LayerCount: 2 +Fore +SplineSet +283 -4 m 2 + 286 -20 268 -39 257 -39 c 0 + 253 -39 249 -39 245 -36 c 1 + 194 263 112 737 112 737 c 1 + 114 740 120 744 126 744 c 0 + 147 744 160 718 162 708 c 2 + 283 -4 l 2 +EndSplineSet +EndChar + +StartChar: bracketright +Encoding: 93 93 60 +Width: 251 +Flags: HW +HStem: -100 44<-36 68> 679 44<110 203> +VStem: -57 320 +LayerCount: 2 +Back +SplineSet +30.2734375 -111.328125 m 0 + 27.83984375 -109.697265625 26.623046875 -106.810546875 26.623046875 -102.668945312 c 0 + 26.623046875 -92.6806640625 33.0478515625 -82.5458984375 45.8984375 -72.265625 c 1 + 75.8466796875 -61.1982421875 107.096679688 -55.6640625 139.6484375 -55.6640625 c 0 + 141.276367188 -55.6640625 142.822265625 -55.0126953125 144.287109375 -53.7109375 c 0 + 145.751953125 -52.4091796875 146.809570312 -51.1064453125 147.4609375 -49.8046875 c 2 + 148.4375 -47.8515625 l 1025 +EndSplineSet +Fore +SplineSet +106 731 m 0 + 108 731 176 723 251 723 c 0 + 262 723 264 715 264 708 c 0 + 264 704 264 703 263 700 c 2 + 112 -77 l 2 + 112 -78 108 -100 91 -100 c 0 + 17 -100 -53 -111 -53 -111 c 1 + -53 -111 -57 -109 -57 -103 c 0 + -57 -88 -42 -77 -37 -72 c 1 + -15 -64 18 -56 57 -56 c 0 + 63 -56 65 -48 65 -48 c 1 + 205 671 l 1 + 205 671 206 679 200 679 c 0 + 151 679 110 689 110 689 c 1 + 108 691 99 696 99 711 c 0 + 99 720 101 731 106 731 c 0 +EndSplineSet +EndChar + +StartChar: asciicircum +Encoding: 94 94 61 +Width: 380 +Flags: W +HStem: 413 217 +VStem: 60 244 +LayerCount: 2 +Fore +SplineSet +182 630 m 0 + 187 630 193 625 197 617 c 0 + 236 540 262 502 304 429 c 1 + 304 419 295 413 289 413 c 1 + 244 460 182 539 182 539 c 25 + 182 539 120 460 75 413 c 1 + 69 413 60 419 60 429 c 1 + 102 502 128 540 167 617 c 0 + 171 625 177 630 182 630 c 0 +EndSplineSet +EndChar + +StartChar: underscore +Encoding: 95 95 62 +Width: 463 +Flags: HW +HStem: -42 55<-29 385> +LayerCount: 2 +Fore +SplineSet +-38 -36 m 0 + -38 -31 -23 13 -15 13 c 2 + 390 13 l 2 + 393 13 396 12 396 9 c 0 + 396 5 388 -15 378 -36 c 0 + 375 -42 372 -42 372 -42 c 1 + -33 -42 l 1 + -33 -42 -38 -42 -38 -36 c 0 +EndSplineSet +EndChar + +StartChar: grave +Encoding: 96 96 63 +Width: 196 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 366 0 2 +EndChar + +StartChar: a +Encoding: 97 97 64 +Width: 438 +Flags: HW +HStem: -6 54<80 155 280 320> 386 39<217 315> +VStem: 19 72<64 217> +LayerCount: 2 +Fore +SplineSet +298 425 m 0 + 332 425 355 419 374 412 c 1 + 314 104 l 2 + 311 93 304 48 320 48 c 0 + 341 48 386 101 389 104 c 1 + 392 104 398 92 398 86 c 1 + 387 67 317 -6 271 -6 c 0 + 250 -6 237 16 237 45 c 0 + 237 53 240 76 244 97 c 0 + 247 115 248 120 249 127 c 1 + 229 92 162 -5 105 -5 c 0 + 52 -5 19 42 19 110 c 0 + 19 280 179 425 298 425 c 0 +253 386 m 0 + 178 386 91 259 91 147 c 0 + 91 86 107 52 141 52 c 0 + 190 52 258 174 277 268 c 2 + 298 371 l 1 + 289 381 266 386 253 386 c 0 +EndSplineSet +EndChar + +StartChar: b +Encoding: 98 98 65 +Width: 418 +Flags: HW +HStem: -6 32<125 196> 371 54<253 333> 616 21<75 130> 649 20G<196 209> +VStem: 134 79<534 651> 307 72<198 366> +LayerCount: 2 +Fore +SplineSet +269 371 m 0 + 227 371 136 259 115 152 c 0 + 99 73 114 26 160 26 c 0 + 242 26 307 216 307 295 c 0 + 307 331 303 371 269 371 c 0 +140 278 m 1 + 208 392 280 425 311 425 c 0 + 356 425 379 381 379 314 c 0 + 379 138 237 -6 133 -6 c 0 + 78 -6 42 36 42 108 c 0 + 42 118 46 142 48 154 c 2 + 125 546 l 2 + 129 564 134 587 134 598 c 0 + 134 617 90 616 74 616 c 1 + 71 620 74 633 78 637 c 1 + 132 642 186 661 207 669 c 1 + 212 666 213 656 213 650 c 0 + 213 642 205 601 200 577 c 2 + 140 278 l 1 +EndSplineSet +EndChar + +StartChar: c +Encoding: 99 99 66 +Width: 350 +Flags: HW +HStem: -6 58<122 192> 385 40<197 284> +VStem: 23 76<73 240> +LayerCount: 2 +Fore +SplineSet +269 425 m 0 + 300 425 316 411 329 400 c 1 + 332 396 338 385 338 374 c 0 + 338 352 327 330 305 330 c 0 + 291 330 277 338 270 350 c 0 + 260 366 247 385 219 385 c 0 + 165 385 100 289 100 158 c 0 + 100 124 105 52 167 52 c 0 + 211 52 265 116 268 119 c 1 + 271 119 279 106 279 100 c 1 + 268 81 194 -6 132 -6 c 0 + 63 -6 23 46 23 137 c 0 + 23 293 168 425 269 425 c 0 +EndSplineSet +EndChar + +StartChar: d +Encoding: 100 100 67 +Width: 438 +Flags: HW +HStem: -5 57<75 155 280 321> 386 39<218 284> 616 21<281 336> 649 20G<402 416> +VStem: 19 72<64 214> 237 73<21 159> 340 79<532 651> +LayerCount: 2 +Fore +SplineSet +289 333 m 2 + 293 355 281 386 255 386 c 0 + 176 386 91 258 91 146 c 0 + 91 92 105 52 141 52 c 0 + 191 52 258 175 277 270 c 1 + 289 333 l 2 +331 546 m 2 + 334 564 340 587 340 598 c 0 + 340 617 296 616 280 616 c 1 + 277 620 280 633 284 637 c 1 + 338 642 392 661 413 669 c 1 + 418 666 419 656 419 650 c 0 + 419 642 411 601 406 577 c 2 + 314 104 l 2 + 313 100 311 76 311 71 c 0 + 311 62 310 48 320 48 c 0 + 341 48 386 101 389 104 c 1 + 392 104 398 92 398 86 c 1 + 387 67 317 -6 271 -6 c 0 + 250 -6 237 16 237 45 c 0 + 237 53 240 76 244 97 c 0 + 248 116 248 120 249 127 c 1 + 234 98 163 -5 104 -5 c 0 + 43 -5 19 56 19 113 c 0 + 19 266 169 425 296 425 c 0 + 320 425 303 425 309 425 c 1 + 331 546 l 2 +EndSplineSet +EndChar + +StartChar: e +Encoding: 101 101 68 +Width: 354 +Flags: HW +HStem: -6 58<121 192> 188 24<103 144> 385 40<192 292> +VStem: 22 76<75 212 213 236> 260 72<306 380> +LayerCount: 2 +Fore +SplineSet +268 425 m 0 + 318 425 332 393 332 364 c 0 + 332 270 162 188 101 188 c 1 + 100 185 99 162 99 157 c 0 + 99 97 117 52 166 52 c 0 + 210 52 264 116 267 119 c 1 + 270 119 278 106 278 100 c 1 + 265 79 192 -6 130 -6 c 0 + 61 -6 22 45 22 136 c 0 + 22 281 156 425 268 425 c 0 +103 213 m 1 + 141 213 260 274 260 346 c 0 + 260 372 238 385 219 385 c 0 + 152 385 108 263 103 213 c 1 +EndSplineSet +EndChar + +StartChar: f +Encoding: 102 102 69 +Width: 289 +Flags: HW +HStem: -228 42<-83 -7> 367 36<44 120 198 300> 627 42<266 342> +LayerCount: 2 +Fore +SplineSet +328 669 m 0 + 356 669 374 658 381 645 c 1 + 381 642 381 639 381 636 c 0 + 379 614 371 590 352 590 c 0 + 335 590 325 600 314 612 c 0 + 307 619 300 627 286 627 c 0 + 248 627 228 558 198 403 c 1 + 296 403 l 2 + 300 403 301 397 301 392 c 0 + 301 382 297 375 292 367 c 1 + 191 367 l 1 + 191 367 157 165 134 42 c 0 + 103 -118 10 -228 -68 -228 c 0 + -96 -228 -114 -216 -121 -203 c 1 + -121 -198 -121 -193 -120 -188 c 0 + -117 -168 -109 -148 -92 -148 c 0 + -75 -148 -66 -159 -55 -171 c 0 + -48 -178 -40 -186 -26 -186 c 0 + 12 -186 32 -117 62 38 c 1 + 120 367 l 1 + 37 367 l 2 + 36 367 35 368 35 370 c 0 + 35 380 58 403 80 403 c 2 + 126 403 l 1 + 157 563 250 669 328 669 c 0 +EndSplineSet +EndChar + +StartChar: g +Encoding: 103 103 70 +Width: 402 +Flags: HW +HStem: -228 34<71 221> 119 28<138 149> 397 28<168 235> +VStem: -47 72<-160 -75> 39 72<170 319> 52 86<44 81> 271 62<-147 -70 208 363> +LayerCount: 2 +Fore +SplineSet +271 -115 m 0xf2 + 271 -53 181 -24 124 -6 c 1 + 85 -23 25 -52 25 -107 c 0 + 25 -172 89 -193 165 -193 c 0 + 230 -193 271 -156 271 -115 c 0xf2 +207 397 m 0 + 145 397 111 308 111 241 c 0xfa + 111 193 131 147 172 147 c 0 + 235 147 267 226 267 287 c 0 + 267 335 245 397 207 397 c 0 +325 372 m 1 + 326 366 339 331 339 305 c 0 + 339 201 270 154 250 142 c 0 + 216 121 138 102 138 80 c 0 + 138 48 334 38 334 -76 c 0 + 334 -169 245 -228 105 -228 c 0 + 17 -228 -47 -193 -47 -132 c 0 + -47 -65 36 -20 94 6 c 1 + 76 18 l 2 + 64 26 52 35 52 53 c 0xf6 + 52 77 117 111 149 119 c 1 + 118 119 39 156 39 233 c 0 + 39 343 133 426 224 426 c 0 + 261 426 283 416 307 404 c 0 + 321 397 355 417 368 419 c 1 + 381 415 408 398 408 385 c 0 + 408 378 404 371 396 371 c 0 + 382 371 338 373 325 372 c 1 +EndSplineSet +EndChar + +StartChar: h +Encoding: 104 104 71 +Width: 458 +Flags: HW +HStem: -6 54<282 345> 353 72<280 348> 616 21<76 132> 649 20G<198 211> +VStem: 136 79<535 651> 260 73<21 167> 308 75<217 379> +LayerCount: 2 +Fore +SplineSet +202 577 m 2xfa + 152 322 l 1 + 135 232 l 1 + 148 256 265 425 329 425 c 0 + 367 425 383 397 383 360 c 0xfa + 383 327 377 291 369 254 c 2 + 337 104 l 2 + 336 100 333 77 333 72 c 0 + 333 63 333 48 343 48 c 0 + 364 48 408 101 411 104 c 1 + 414 104 421 92 421 86 c 1 + 410 67 339 -6 293 -6 c 0 + 272 -6 260 16 260 45 c 0xfc + 260 53 262 76 267 97 c 2 + 301 258 l 2 + 303 267 308 300 308 311 c 0 + 308 333 306 353 289 353 c 0 + 254 353 136 230 114 116 c 0 + 108 86 100 45 90 0 c 1 + 80 -3 65 -4 55 -4 c 0 + 45 -4 33 -3 21 0 c 1 + 127 546 l 2 + 130 564 136 587 136 598 c 0 + 136 617 92 616 76 616 c 1 + 73 620 76 633 80 637 c 1 + 134 642 188 661 209 669 c 1 + 214 666 215 656 215 650 c 0 + 215 642 207 601 202 577 c 2xfa +EndSplineSet +EndChar + +StartChar: i +Encoding: 105 105 72 +Width: 255 +Flags: HW +HStem: -6 54<75 137> 371 54<95 158> 533 98<124 187> +VStem: 52 73<45 124> 112 73<295 374> 113 86<545 621> +LayerCount: 2 +Fore +SplineSet +108 315 m 2xf0 + 109 321 112 342 112 347 c 0 + 112 356 113 371 103 371 c 0 + 82 371 37 317 34 314 c 1 + 31 314 24 327 24 333 c 1 + 35 352 101 425 147 425 c 0 + 168 425 186 403 186 374 c 0xe8 + 186 366 183 343 179 322 c 2 + 129 104 l 2 + 127 94 125 77 125 72 c 0 + 125 63 125 48 135 48 c 0 + 156 48 200 101 203 104 c 1 + 206 104 213 92 213 86 c 1 + 202 67 131 -6 85 -6 c 0 + 64 -6 52 16 52 45 c 0 + 52 53 55 76 59 97 c 2 + 108 315 l 2xf0 +164 631 m 0 + 185 631 199 613 199 592 c 0 + 199 562 176 533 146 533 c 0 + 125 533 113 554 113 575 c 0xe4 + 113 604 135 631 164 631 c 0 +EndSplineSet +EndChar + +StartChar: j +Encoding: 106 106 73 +Width: 243 +Flags: HW +HStem: 371 54<101 164> 533 98<141 203> +VStem: 118 73<245 397> 130 86<545 621> +LayerCount: 2 +Fore +SplineSet +114 315 m 2xe0 + 115 321 118 342 118 347 c 0 + 118 356 118 371 108 371 c 0 + 87 371 43 317 40 314 c 1 + 37 314 30 327 30 333 c 1 + 41 352 107 425 153 425 c 0 + 174 425 191 403 191 374 c 0 + 191 366 189 343 185 322 c 2 + 131 44 l 2 + 124 9 104 -65 62 -121 c 0 + 21 -175 -40 -215 -74 -229 c 1 + -78 -226 -83 -217 -83 -210 c 1 + -18 -173 35 -87 56 21 c 2 + 114 315 l 2xe0 +181 631 m 0 + 202 631 216 613 216 592 c 0 + 216 562 193 533 163 533 c 0 + 142 533 130 554 130 575 c 0xd0 + 130 604 152 631 181 631 c 0 +EndSplineSet +EndChar + +StartChar: k +Encoding: 107 107 74 +Width: 449 +Flags: HW +HStem: -4 54<287 345> 379 46<249 336> 616 21<77 133> 649 20G<199 212> +VStem: 137 79<535 651> 314 76<293 378> +LayerCount: 2 +Fore +SplineSet +317 425 m 0 + 355 425 391 396 391 358 c 0 + 391 269 293 225 185 206 c 1 + 271 77 298 50 338 50 c 0 + 355 50 393 90 404 104 c 1 + 407 104 414 91 414 86 c 1 + 406 72 338 -4 295 -4 c 0 + 218 -4 169 117 127 187 c 1 + 91 0 l 1 + 80 -3 68 -5 57 -5 c 0 + 46 -5 33 -3 21 0 c 1 + 128 546 l 2 + 132 564 137 587 137 598 c 0 + 137 617 93 616 77 616 c 1 + 74 620 77 633 81 637 c 1 + 135 642 189 661 210 669 c 1 + 215 666 216 656 216 650 c 0 + 216 642 208 601 203 577 c 2 + 152 314 l 1 + 157 318 233 425 317 425 c 0 +282 379 m 0 + 225 379 147 285 135 225 c 1 + 200 225 314 265 314 346 c 0 + 314 364 309 379 282 379 c 0 +EndSplineSet +EndChar + +StartChar: l +Encoding: 108 108 75 +Width: 237 +Flags: HW +HStem: -6 54<59 121> 616 21<80 135> 649 20G<202 215> +VStem: 36 73<21 172> 140 79<532 651> +LayerCount: 2 +Fore +SplineSet +131 546 m 2 + 135 564 140 587 140 598 c 0 + 140 617 96 616 80 616 c 1 + 77 620 80 633 84 637 c 1 + 138 642 192 661 213 669 c 1 + 218 666 219 656 219 650 c 0 + 219 642 211 601 206 577 c 2 + 113 104 l 2 + 112 100 109 77 109 72 c 0 + 109 63 109 48 119 48 c 0 + 140 48 185 101 188 104 c 1 + 191 104 197 92 197 86 c 1 + 186 67 115 -6 69 -6 c 0 + 48 -6 36 16 36 45 c 0 + 36 53 39 76 43 97 c 2 + 131 546 l 2 +EndSplineSet +EndChar + +StartChar: m +Encoding: 109 109 76 +Width: 697 +Flags: HW +HStem: -6 54<541 581> 353 72<285 353 514 575> 371 54<93 137> +VStem: 109 73<256 397> 321 73<216 352> 498 73<21 167> 546 75<217 380> +LayerCount: 2 +Fore +SplineSet +505 97 m 2xdc + 539 258 l 2 + 541 267 546 300 546 311 c 0 + 546 336 545 353 527 353 c 0 + 488 353 376 228 357 129 c 2 + 333 0 l 1 + 319 -2 311 -3 297 -3 c 0 + 283 -3 276 -2 263 0 c 1 + 317 277 l 2 + 320 293 321 305 321 314 c 0 + 321 339 315 353 302 353 c 0xda + 258 353 155 213 135 119 c 2 + 110 0 l 1 + 99 -3 89 -4 75 -4 c 0 + 61 -4 53 -2 41 0 c 1 + 105 315 l 2 + 106 321 109 342 109 347 c 0 + 109 356 110 371 100 371 c 0 + 79 371 34 317 31 314 c 1 + 28 314 21 327 21 333 c 1 + 32 352 99 425 145 425 c 0xba + 166 425 183 403 183 374 c 0 + 183 366 179 343 175 322 c 0 + 168 287 163 266 155 231 c 1 + 190 293 278 425 329 425 c 0 + 386 425 395 375 395 332 c 0 + 395 309 387 262 381 245 c 1 + 416 307 510 425 561 425 c 0 + 606 425 621 400 621 360 c 0xda + 621 327 614 285 607 254 c 2 + 575 104 l 2 + 573 94 571 77 571 72 c 0 + 571 63 571 48 581 48 c 0 + 602 48 646 101 649 104 c 1 + 652 104 659 92 659 86 c 1 + 648 67 577 -6 531 -6 c 0 + 510 -6 498 16 498 45 c 0 + 498 53 501 76 505 97 c 2xdc +EndSplineSet +EndChar + +StartChar: n +Encoding: 110 110 77 +Width: 485 +Flags: HW +HStem: -6 54<309 371> 353 72<299 363> 371 54<93 155> +VStem: 109 73<244 397> 286 73<21 167> 334 75<217 380> +LayerCount: 2 +Fore +SplineSet +175 322 m 2xb4 + 157 240 l 1 + 170 264 284 425 349 425 c 0 + 394 425 409 400 409 360 c 0xd4 + 409 330 403 287 396 254 c 2 + 363 104 l 2 + 361 94 359 77 359 72 c 0 + 359 63 359 48 369 48 c 0 + 390 48 435 101 438 104 c 1 + 441 104 447 92 447 86 c 1 + 436 67 365 -6 319 -6 c 0 + 298 -6 286 16 286 45 c 0xd8 + 286 53 289 76 293 97 c 2 + 327 258 l 2 + 329 267 334 300 334 311 c 0 + 334 336 333 353 315 353 c 0xd4 + 279 353 158 241 135 119 c 0 + 126 72 120 47 110 0 c 1 + 98 -3 89 -4 75 -4 c 0 + 61 -4 53 -3 41 0 c 1 + 105 315 l 2 + 106 321 109 342 109 347 c 0 + 109 356 110 371 100 371 c 0 + 79 371 34 317 31 314 c 1 + 28 314 21 327 21 333 c 1 + 32 352 99 425 145 425 c 0 + 166 425 183 403 183 374 c 0 + 183 366 180 343 175 322 c 2xb4 +EndSplineSet +EndChar + +StartChar: o +Encoding: 111 111 78 +Width: 404 +Flags: HW +HStem: -5 31<126 198> 394 31<188 260> +VStem: 23 76<48 244> 283 76<173 375> +LayerCount: 2 +Fore +SplineSet +231 394 m 0 + 149 394 100 252 100 154 c 0 + 100 76 120 26 155 26 c 0 + 236 26 283 169 283 267 c 0 + 283 345 266 394 231 394 c 0 +245 425 m 0 + 323 425 359 365 359 281 c 0 + 359 144 249 -5 137 -5 c 0 + 59 -5 23 51 23 135 c 0 + 23 272 133 425 245 425 c 0 +EndSplineSet +EndChar + +StartChar: p +Encoding: 112 112 79 +Width: 437 +Flags: HW +HStem: -229 28<-53 -13> -221 26<86 132> -5 34<142 220> 371 54<252 345> +VStem: 325 72<194 360> +LayerCount: 2 +Fore +SplineSet +274 371 m 0x38 + 242 371 184 330 158 293 c 1 + 126 128 l 2 + 115 70 143 29 172 29 c 0 + 255 29 325 180 325 296 c 0 + 325 350 305 371 274 371 c 0x38 +313 425 m 0 + 375 425 398 375 398 307 c 0 + 398 156 271 -5 152 -5 c 0 + 135 -5 113 -2 107 8 c 1 + 74 -142 l 2 + 72 -151 72 -159 72 -169 c 0 + 72 -174 75 -188 85 -191 c 0 + 102 -195 128 -194 131 -194 c 0 + 135 -195 133 -220 128 -222 c 1 + 115 -222 105 -221 94 -221 c 0x78 + 44 -221 6 -222 -51 -229 c 1 + -56 -228 -55 -204 -50 -201 c 1xb8 + -32 -201 -19 -197 -10 -186 c 0 + -3 -177 0 -166 5 -144 c 2 + 82 244 l 1 + 35 197 l 1 + 31 202 30 212 30 217 c 0 + 30 221 32 223 33 224 c 2 + 90 285 l 1 + 116 423 l 1 + 127 426 142 427 153 427 c 0 + 164 427 174 425 184 420 c 1 + 180 401 169 345 168 338 c 1 + 194 362 263 425 313 425 c 0 +EndSplineSet +EndChar + +StartChar: q +Encoding: 113 113 80 +Width: 416 +Flags: HW +HStem: -222 19<288 313> -5 57<74 156> 386 39<217 313> +VStem: 19 72<64 214> +LayerCount: 2 +Fore +SplineSet +310 -223 m 1 + 296 -223 284 -222 271 -222 c 0 + 214 -222 160 -225 124 -229 c 1 + 122 -227 121 -203 127 -203 c 0 + 155 -200 188 -192 193 -167 c 2 + 248 127 l 1 + 228 92 161 -5 104 -5 c 0 + 43 -5 19 56 19 113 c 0 + 19 266 169 425 296 425 c 0 + 330 425 354 419 373 412 c 1 + 313 104 l 2 + 312 100 269 -146 269 -146 c 2 + 268 -154 267 -161 267 -167 c 0 + 267 -181 269 -196 312 -196 c 0 + 316 -196 315 -220 310 -223 c 1 +289 333 m 2 + 293 355 281 386 255 386 c 0 + 176 386 91 258 91 146 c 0 + 91 92 105 52 141 52 c 0 + 191 52 258 175 277 270 c 1 + 289 333 l 2 +EndSplineSet +EndChar + +StartChar: r +Encoding: 114 114 81 +Width: 347 +Flags: HW +HStem: -3 21G<76 87> 356 68<260 332> 371 54<92 154> +VStem: 108 73<237 397> +LayerCount: 2 +Fore +SplineSet +300 425 m 0xd0 + 321 425 339 414 348 404 c 0 + 352 399 356 387 356 377 c 0 + 356 352 343 334 321 334 c 0 + 312 334 300 340 292 349 c 0 + 288 354 280 356 272 356 c 0xd0 + 237 356 156 221 137 119 c 2 + 115 0 l 1 + 104 -2 93 -3 82 -3 c 0 + 69 -3 58 -2 46 0 c 1 + 104 315 l 2 + 105 321 108 342 108 347 c 0 + 108 356 109 371 99 371 c 0 + 78 371 33 317 30 314 c 1 + 27 314 21 327 21 333 c 1 + 32 352 98 425 144 425 c 0xb0 + 165 425 182 403 182 374 c 0 + 182 366 178 343 174 322 c 0 + 168 290 164 272 157 240 c 1 + 184 305 254 425 300 425 c 0xd0 +EndSplineSet +EndChar + +StartChar: s +Encoding: 115 115 82 +Width: 314 +Flags: HW +HStem: -6 31<92 167> 395 33<129 199> +VStem: 59 57<287 368> 180 60<47 137> +LayerCount: 2 +Fore +SplineSet +194 428 m 0 + 233 428 257 419 278 401 c 1 + 283 394 288 377 288 370 c 0 + 288 348 275 330 255 330 c 0 + 237 330 222 346 209 364 c 0 + 198 380 191 395 163 395 c 0 + 129 395 115 361 115 340 c 0 + 115 301 150 270 180 236 c 0 + 210 201 239 163 239 114 c 0 + 239 42 180 -6 98 -6 c 0 + 68 -6 37 2 12 23 c 1 + 9 28 2 43 2 53 c 0 + 2 81 18 98 38 98 c 0 + 58 98 65 75 80 54 c 0 + 91 39 106 25 132 25 c 0 + 171 25 180 61 180 82 c 0 + 180 116 154 143 129 172 c 0 + 95 210 59 249 59 305 c 0 + 59 360 112 428 194 428 c 0 +EndSplineSet +EndChar + +StartChar: t +Encoding: 116 116 83 +Width: 271 +Flags: HW +HStem: -6 54<71 133> 367 36<49 107 184 261> +VStem: 48 73<21 173> +LayerCount: 2 +Fore +SplineSet +114 403 m 1 + 125 461 l 1 + 136 475 180 525 188 525 c 0 + 194 525 201 523 205 520 c 1 + 184 403 l 1 + 257 403 l 2 + 261 403 262 397 262 392 c 0 + 262 382 258 375 253 367 c 1 + 177 367 l 1 + 125 104 l 2 + 123 94 121 77 121 72 c 0 + 121 63 121 48 131 48 c 0 + 152 48 196 101 199 104 c 1 + 202 104 209 92 209 86 c 1 + 198 67 127 -6 81 -6 c 0 + 60 -6 48 16 48 45 c 0 + 48 53 51 76 55 97 c 2 + 107 367 l 1 + 42 367 l 2 + 41 367 40 368 40 370 c 0 + 40 380 63 403 85 403 c 2 + 114 403 l 1 +EndSplineSet +EndChar + +StartChar: u +Encoding: 117 117 84 +Width: 479 +Flags: HW +HStem: -6 72<101 161> -6 54<301 363> 371 54<91 153> +VStem: 58 75<46 202> 107 73<252 397> 278 73<21 183> +LayerCount: 2 +Fore +SplineSet +285 97 m 0x74 + 291 130 296 149 303 182 c 1 + 278 127 170 -6 106 -6 c 0 + 68 -6 58 27 58 64 c 0xb4 + 58 91 65 137 71 165 c 2 + 104 315 l 2 + 105 321 107 342 107 347 c 0 + 107 356 108 371 98 371 c 0 + 77 371 32 317 29 314 c 1 + 26 314 20 327 20 333 c 1 + 31 352 97 425 143 425 c 0 + 164 425 181 403 181 374 c 0xac + 181 366 178 343 174 322 c 2 + 140 161 l 2 + 138 152 133 119 133 108 c 0 + 133 86 134 66 151 66 c 0xb4 + 186 66 302 190 326 312 c 0 + 334 352 340 378 348 419 c 1 + 358 422 368 423 378 423 c 0 + 388 423 404 422 416 419 c 1 + 355 104 l 2 + 353 94 352 77 352 72 c 0 + 352 63 351 48 361 48 c 0 + 382 48 427 101 430 104 c 1 + 433 104 439 92 439 86 c 1 + 428 67 358 -6 312 -6 c 0 + 291 -6 278 16 278 45 c 0 + 278 53 281 76 285 97 c 0x74 +EndSplineSet +EndChar + +StartChar: v +Encoding: 118 118 85 +Width: 428 +Flags: HW +HStem: -6 21G<109 146> 371 54<88 150> +VStem: 104 73<64 371> 331 74<268 398> +LayerCount: 2 +Fore +SplineSet +182 63 m 1 + 251 123 277 160 307 221 c 0 + 325 256 331 303 331 325 c 0 + 331 346 323 370 306 387 c 1 + 312 404 329 425 352 425 c 0 + 389 425 405 392 405 347 c 0 + 405 224 179 -6 112 -6 c 1 + 105 2 104 116 104 145 c 2 + 104 347 l 2 + 104 356 105 371 95 371 c 0 + 74 371 29 317 26 314 c 1 + 23 314 17 327 17 333 c 1 + 28 352 94 425 140 425 c 0 + 161 425 178 401 178 372 c 2 + 178 320 l 1 + 178 172 l 2 + 178 130 179 84 182 63 c 1 +EndSplineSet +EndChar + +StartChar: w +Encoding: 119 119 86 +Width: 614 +Flags: HW +HStem: -6 21G<109 133 328 365> 371 54<88 150> +VStem: 104 73<89 371> 312 70<75 209> 515 74<260 398> +LayerCount: 2 +Fore +SplineSet +376 366 m 1 + 377 326 379 241 382 179 c 0 + 384 137 386 90 396 74 c 1 + 448 119 479 162 501 224 c 0 + 515 261 515 303 515 325 c 0 + 515 346 506 370 489 387 c 1 + 495 404 512 425 535 425 c 0 + 572 425 589 392 589 347 c 0 + 589 224 398 -6 331 -6 c 1 + 324 2 313 117 312 146 c 0 + 311 171 310 209 310 209 c 1 + 245 115 153 -6 112 -6 c 1 + 105 2 104 116 104 145 c 2 + 104 347 l 2 + 104 356 105 371 95 371 c 0 + 74 371 29 317 26 314 c 1 + 23 314 17 327 17 333 c 1 + 28 352 94 425 140 425 c 0 + 161 425 178 401 178 372 c 2 + 178 320 l 1 + 178 172 l 2 + 178 130 179 109 182 88 c 1 + 226 135 274 218 292 249 c 0 + 315 292 325 318 334 339 c 1 + 342 349 363 363 376 366 c 1 +EndSplineSet +EndChar + +StartChar: x +Encoding: 120 120 87 +Width: 470 +Flags: HW +HStem: -5 88<26 81> -4 55<269 334> 337 88<360 414> 371 54<119 184> +LayerCount: 2 +Fore +SplineSet +288 87 m 2x20 + 292 67 301 51 322 51 c 0 + 339 51 383 90 394 104 c 1 + 397 104 403 91 403 86 c 1 + 395 72 327 -4 284 -4 c 0x60 + 254 -4 228 28 217 80 c 2 + 200 164 l 1 + 152 69 125 -5 71 -5 c 0 + 57 -5 41 -3 25 7 c 1 + 19 15 15 25 15 40 c 0 + 15 63 29 83 51 83 c 0 + 71 83 75 57 96 55 c 0 + 111 54 118 65 125 77 c 0 + 151 121 168 153 192 200 c 1 + 165 334 l 2 + 161 355 152 371 134 371 c 0 + 114 371 71 330 60 316 c 1 + 57 316 50 330 50 335 c 1 + 58 349 126 425 169 425 c 0x90 + 199 425 226 394 236 341 c 2 + 250 274 l 1 + 293 360 319 425 369 425 c 0 + 383 425 399 423 415 413 c 1 + 421 405 426 395 426 380 c 0 + 426 357 412 337 390 337 c 0 + 370 337 366 363 345 365 c 0 + 330 366 322 355 315 343 c 0 + 292 304 277 276 257 238 c 1 + 288 87 l 2x20 +EndSplineSet +EndChar + +StartChar: y +Encoding: 121 121 88 +Width: 436 +Flags: HW +HStem: -228 64<-94 17> 371 54<77 171> +VStem: 143 73<15 251> 328 67<233 398> +LayerCount: 2 +Fore +SplineSet +129 425 m 0 + 213 425 216 75 216 15 c 1 + 251 58 328 172 328 278 c 0 + 328 338 315 362 304 383 c 1 + 312 408 330 425 353 425 c 0 + 394 425 396 369 396 348 c 0 + 396 119 82 -228 -50 -228 c 0 + -85 -228 -108 -209 -108 -188 c 0 + -108 -171 -101 -153 -86 -145 c 1 + -71 -154 -29 -163 -8 -163 c 0 + 53 -163 93 -129 125 -82 c 0 + 147 -49 143 19 143 61 c 0 + 143 172 132 371 84 371 c 0 + 63 371 19 317 16 314 c 1 + 13 314 6 327 6 333 c 1 + 17 352 83 425 129 425 c 0 +EndSplineSet +EndChar + +StartChar: z +Encoding: 122 122 89 +Width: 377 +Flags: HW +HStem: 0 67<184 255> 31 69<53 167> 324 70<186 303> 357 67<102 176> +VStem: 42 12<292 302> +LayerCount: 2 +Fore +SplineSet +142 425 m 0x18 + 170 425 193 414 217 405 c 0 + 234 399 250 395 271 395 c 0x28 + 307 395 351 425 359 425 c 1 + 367 421 370 412 370 405 c 0 + 370 391 93 94 90 90 c 1 + 94 92 114 101 135 101 c 0x58 + 156 101 176 93 195 84 c 0 + 214 76 231 67 247 67 c 0 + 272 67 298 124 304 133 c 1 + 313 133 314 125 315 117 c 1 + 298 80 259 0 213 0 c 0x88 + 190 0 160 11 135 21 c 0 + 119 27 87 31 65 31 c 0x48 + 37 31 21 10 1 0 c 1 + -5 2 -9 10 -10 19 c 1 + -10 34 283 341 285 345 c 1 + 282 343 256 324 224 324 c 0xa8 + 203 324 183 333 164 341 c 0 + 145 350 128 357 111 357 c 0 + 84 357 60 300 54 291 c 1 + 47 291 43 298 42 307 c 1 + 48 327 97 425 142 425 c 0x18 +EndSplineSet +EndChar + +StartChar: braceleft +Encoding: 123 123 90 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +SplineSet +125 393 m 0 + 130 418 124 442 119 466 c 0 + 113 491 108 517 114 547 c 0 + 133 642 203 705 245 722 c 1 + 252 722 258 712 256 703 c 1 + 229 690 173 644 163 594 c 0 + 156 557 162 532 168 505 c 0 + 174 481 179 453 171 414 c 0 + 158 351 108 310 83 300 c 1 + 104 290 140 249 127 186 c 0 + 119 147 104 119 88 95 c 0 + 71 68 55 43 48 6 c 0 + 38 -44 77 -91 99 -104 c 1 + 97 -113 87 -122 80 -122 c 1 + 44 -105 -1 -42 18 53 c 0 + 24 83 38 109 54 134 c 0 + 69 158 84 182 89 207 c 0 + 99 259 70 279 37 289 c 1 + 36 291 36 296 37 300 c 0 + 38 304 38 309 40 311 c 1 + 77 321 115 341 125 393 c 0 +EndSplineSet +EndChar + +StartChar: bar +Encoding: 124 124 91 +Width: 202 +Flags: HW +VStem: 0 223 +LayerCount: 2 +Fore +SplineSet +165 739 m 1 + 175 749 190 755 208 755 c 0 + 215 755 224 752 223 748 c 2 + 59 -104 l 1 + 52 -112 33 -120 14 -120 c 0 + 8 -120 -1 -117 0 -112 c 2 + 165 739 l 1 +EndSplineSet +EndChar + +StartChar: braceright +Encoding: 125 125 92 +Width: 207 +Flags: HW +LayerCount: 2 +Fore +SplineSet +140 722 m 1 + 176 705 223 642 204 547 c 0 + 198 517 183 491 167 466 c 0 + 152 442 137 418 132 393 c 0 + 122 341 152 321 185 311 c 1 + 186 309 186 304 185 300 c 0 + 184 295 183 292 181 289 c 1 + 144 279 106 259 96 207 c 0 + 91 182 98 158 103 134 c 0 + 109 109 114 83 108 53 c 0 + 89 -42 18 -105 -24 -122 c 1 + -31 -122 -37 -113 -35 -104 c 1 + -8 -91 49 -44 59 6 c 0 + 66 43 59 68 53 95 c 0 + 47 119 42 147 50 186 c 0 + 63 249 113 290 138 300 c 1 + 117 310 81 351 94 414 c 0 + 102 453 117 481 133 505 c 0 + 150 532 166 557 173 594 c 0 + 183 644 144 690 122 703 c 1 + 124 712 133 722 140 722 c 1 +EndSplineSet +EndChar + +StartChar: asciitilde +Encoding: 126 126 93 +Width: 532 +Flags: HW +HStem: 244 50<304 438> 296 50<115 246> +LayerCount: 2 +Fore +SplineSet +192 346 m 0 + 278 346 310 294 396 294 c 0 + 431 294 456 315 486 337 c 1 + 488 335 492 333 492 327 c 0 + 492 298 429 244 360 244 c 0 + 274 244 240 296 154 296 c 0 + 119 296 93 275 63 253 c 1 + 61 255 58 257 58 263 c 0 + 58 301 138 346 192 346 c 0 +EndSplineSet +EndChar + +StartChar: uni00A0 +Encoding: 160 160 94 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: exclamdown +Encoding: 161 161 95 +Width: 209 +Flags: W +HStem: 312 107<63 147> +VStem: 52 107<324 408> 58 92<-208 90> +LayerCount: 2 +Fore +SplineSet +52 365 m 0xc0 + 52 394 75 420 104 420 c 0 + 133 420 159 394 159 365 c 0 + 159 336 133 312 104 312 c 0 + 75 312 52 336 52 365 c 0xc0 +101 -218 m 0 + 71 -218 58 -186 58 -161 c 0 + 58 -134 70 -3 91 241 c 1 + 95 249 97 253 106 254 c 1 + 111 252 117 249 120 243 c 1 + 134 86 149 -111 149 -161 c 0xa0 + 149 -188 132 -218 101 -218 c 0 +EndSplineSet +EndChar + +StartChar: cent +Encoding: 162 162 96 +Width: 349 +Flags: HW +HStem: -6 58<116 186> 385 40<191 278> +VStem: 18 76<73 240> +LayerCount: 2 +Fore +SplineSet +248 463 m 17 + 255 463 279 462 278 455 c 9 + 106 -44 l 17 + 98 -44 75 -42 76 -35 c 9 + 248 463 l 17 +EndSplineSet +Refer: 66 99 N 1 0 0 1 -6 0 2 +EndChar + +StartChar: sterling +Encoding: 163 163 97 +Width: 436 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -8 67<214 311> 28 62<66 176> 273 38<59 294> 579 41<252 348> +LayerCount: 2 +Fore +SplineSet +65 312 m 1x30 + 91 312 291 312 304 312 c 1 + 308 312 299 280 287 273 c 1 + 261 273 62 273 49 273 c 1 + 44 286 55 302 65 312 c 1x30 +168 242 m 0 + 154 169 114 115 85 86 c 1 + 103 93 118 91 158 91 c 0x70 + 207 91 260 60 295 60 c 0 + 335 60 358 109 375 131 c 1 + 379 131 384 124 384 114 c 0 + 384 110 383 107 382 105 c 0 + 362 69 317 -8 253 -8 c 0xb0 + 194 -8 132 28 87 28 c 0x70 + 59 28 31 7 12 -9 c 1 + 0 -9 -3 4 -2 10 c 1 + 19 39 35 55 55 80 c 1 + 76 125 88 176 99 231 c 0 + 107 274 104 347 116 407 c 0 + 140 530 233 620 331 620 c 0 + 365 620 384 607 394 584 c 1 + 394 560 379 526 356 526 c 0 + 319 526 324 579 287 579 c 0 + 225 579 202 505 189 439 c 0 + 178 381 177 289 168 242 c 0 +EndSplineSet +EndChar + +StartChar: currency +Encoding: 164 164 98 +Width: 492 +Flags: HW +HStem: 117 31<190 276> 452 32<229 316> +VStem: 82 68<192 354> 354 67<247 408> +LayerCount: 2 +Fore +SplineSet +231 148 m 0 + 297 148 354 243 354 333 c 0 + 354 401 322 452 274 452 c 0 + 208 452 150 357 150 267 c 0 + 150 199 183 148 231 148 c 0 +383 444 m 1 + 447 498 l 2 + 448 499 450 499 451 499 c 3 + 461 499 475 476 477 455 c 1 + 411 400 l 1 + 418 381 422 361 422 339 c 0 + 422 276 390 222 367 194 c 1 + 405 138 l 2 + 405 137 406 137 406 136 c 3 + 406 126 378 104 357 98 c 1 + 321 151 l 1 + 290 130 254 117 218 117 c 0 + 179 117 145 132 122 156 c 1 + 64 107 l 2 + 63 106 62 106 61 106 c 3 + 51 106 37 129 35 150 c 1 + 94 200 l 1 + 86 219 82 240 82 262 c 0 + 82 323 112 379 143 413 c 1 + 106 468 l 2 + 106 469 105 469 105 470 c 3 + 105 480 133 502 154 508 c 1 + 190 454 l 1 + 220 474 255 484 289 484 c 0 + 328 484 360 469 383 444 c 1 +EndSplineSet +EndChar + +StartChar: yen +Encoding: 165 165 99 +Width: 578 +Flags: HW +HStem: -3 27<144 210 294 350> 135 37<153 404> 211 37<168 419> 590 27<87 130 258 308 436 487 562 619> +LayerCount: 2 +Fore +SplineSet +169 211 m 2 + 166 211 165 215 165 219 c 0 + 165 226 171 242 178 248 c 1 + 418 248 l 2 + 420 248 421 245 421 241 c 0 + 421 236 419 220 410 211 c 1 + 169 211 l 2 +155 135 m 2 + 152 135 151 139 151 143 c 0 + 151 150 156 166 163 172 c 1 + 404 172 l 2 + 406 172 407 169 407 165 c 0 + 407 160 404 144 395 135 c 1 + 155 135 l 2 +228 108 m 2 + 255 249 l 2 + 256 256 257 265 254 275 c 2 + 176 511 l 2 + 164 545 153 560 132 575 c 0 + 119 585 97 590 86 590 c 0 + 81 590 85 612 91 617 c 1 + 133 615 156 612 199 612 c 0 + 242 612 276 615 311 617 c 1 + 312 611 309 590 304 590 c 0 + 292 590 251 585 246 561 c 0 + 244 553 247 544 251 532 c 2 + 325 309 l 1 + 384 391 472 524 488 552 c 0 + 490 555 492 559 493 565 c 0 + 494 571 484 589 435 589 c 1 + 432 592 436 612 439 616 c 1 + 470 614 496 611 527 611 c 0 + 572 611 588 614 623 616 c 1 + 623 613 618 589 615 589 c 0 + 608 589 559 589 532 552 c 2 + 341 280 l 2 + 333 269 334 261 332 252 c 2 + 303 108 l 2 + 297 80 292 54 294 39 c 0 + 295 28 340 24 351 24 c 1 + 354 19 352 2 346 -3 c 1 + 311 -1 278 2 245 2 c 0 + 212 2 178 -1 142 -3 c 1 + 138 2 143 19 148 24 c 1 + 159 24 205 28 210 39 c 0 + 218 54 222 80 228 108 c 2 +EndSplineSet +EndChar + +StartChar: brokenbar +Encoding: 166 166 100 +Width: 206 +VWidth: 0 +Flags: HW +VStem: 2 222 +LayerCount: 2 +Fore +SplineSet +166 736 m 1 + 176 746 191 752 209 752 c 27 + 216 752 225 749 224 745 c 2 + 156 391 l 1 + 149 383 131 374 112 374 c 27 + 106 374 97 377 98 382 c 2 + 166 736 l 1 +70 242 m 1 + 80 252 95 258 113 258 c 27 + 120 258 129 255 128 251 c 2 + 61 -104 l 1 + 54 -112 35 -120 16 -120 c 27 + 10 -120 1 -117 2 -112 c 2 + 70 242 l 1 +EndSplineSet +EndChar + +StartChar: section +Encoding: 167 167 101 +Width: 430 +UnlinkRmOvrlpSave: 1 +Flags: W +HStem: -76 49<110 233> 589 49<199 322> +VStem: 37 53<345 459> 117 45<482 538> 270 45<24 80> 342 53<103 217> +LayerCount: 2 +Fore +SplineSet +297 638 m 0 + 188 638 117 573 117 495 c 0 + 117 425 185 370 232 327 c 0 + 285 278 342 213 342 132 c 0 + 342 89 324 69 303 32 c 0 + 303 32 280 14 270 -3 c 24 + 264 -14 266 -22 264 -34 c 17 + 301 -9 395 103 395 175 c 0 + 395 259 332 327 281 374 c 0 + 235 416 162 491 162 536 c 0 + 162 573 211 589 241 589 c 0 + 256 589 264 585 272 581 c 0 + 282 576 291 569 308 569 c 0 + 324 569 343 590 343 604 c 0 + 343 610 342 620 337 630 c 1 + 323 636 311 638 297 638 c 0 +135 -76 m 0 + 244 -76 314 -12 314 66 c 0 + 314 136 246 191 199 234 c 0 + 146 283 90 349 90 430 c 0 + 90 473 108 492 129 529 c 0 + 129 529 152 547 162 564 c 24 + 168 575 166 584 168 596 c 17 + 131 571 37 459 37 387 c 0 + 37 303 99 235 150 188 c 0 + 196 146 270 70 270 25 c 0 + 270 -12 220 -27 190 -27 c 0 + 175 -27 167 -24 159 -20 c 0 + 149 -15 141 -8 124 -8 c 0 + 108 -8 89 -29 89 -43 c 0 + 89 -49 90 -58 95 -68 c 1 + 109 -74 121 -76 135 -76 c 0 +EndSplineSet +EndChar + +StartChar: dieresis +Encoding: 168 168 102 +Width: 278 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 390 10 2 +EndChar + +StartChar: copyright +Encoding: 169 169 103 +Width: 643 +Flags: W +HStem: 67 30<242 402> 190 31<289 407> 438 33<283 395> 570 30<242 402> +VStem: 55 32<251 417> 183 56<265 400> 559 30<254 414> +LayerCount: 2 +Fore +SplineSet +445 270 m 1 + 445 267 433 212 426 209 c 0 + 395 196 363 190 322 190 c 0 + 243 190 183 251 183 328 c 0 + 183 406 239 472 320 472 c 0 + 349 472 397 466 430 453 c 1 + 430 453 445 398 445 394 c 0 + 445 389 437 385 430 385 c 0 + 427 385 425 386 423 387 c 1 + 420 400 401 438 332 438 c 0 + 279 438 238 391 238 337 c 0 + 238 258 296 222 341 222 c 0 + 370 222 398 228 411 240 c 0 + 423 251 424 272 426 272 c 0 + 429 272 444 272 445 270 c 1 +87 334 m 0 + 87 204 192 98 322 98 c 0 + 452 98 559 204 559 334 c 0 + 559 464 452 570 322 570 c 0 + 192 570 87 464 87 334 c 0 +55 334 m 0 + 55 481 174 601 321 601 c 0 + 468 601 589 481 589 334 c 0 + 589 187 468 67 321 67 c 0 + 174 67 55 187 55 334 c 0 +EndSplineSet +EndChar + +StartChar: ordfeminine +Encoding: 170 170 104 +Width: 371 +VWidth: 0 +Flags: HW +HStem: 243 40<122 168 259 293> 517 27<213 286> +VStem: 58 56<288 409> 226 57<262 368> +LayerCount: 2 +Fore +SplineSet +251 243 m 0 + 235 243 226 258 226 279 c 0 + 226 285 227 300 230 315 c 0 + 232 328 234 331 235 336 c 1 + 219 312 167 244 124 244 c 0 + 83 244 58 276 58 324 c 0 + 58 442 181 544 272 544 c 0 + 298 544 316 540 331 535 c 1 + 285 319 l 2 + 284 316 282 301 282 298 c 0 + 282 292 282 281 289 281 c 0 + 305 281 341 318 343 320 c 1 + 345 320 350 312 350 308 c 1 + 342 295 286 243 251 243 c 0 +238 517 m 0 + 180 517 113 429 113 351 c 0 + 113 309 125 283 151 283 c 0 + 189 283 242 370 257 435 c 2 + 272 507 l 1 + 265 514 248 517 238 517 c 0 +EndSplineSet +EndChar + +StartChar: guillemotleft +Encoding: 171 171 105 +Width: 472 +VWidth: 0 +Flags: HW +VStem: 26 87<215 261> 202 87<215 261> +LayerCount: 2 +Fore +SplineSet +391 89 m 1 + 386 80 376 74 370 71 c 1 + 341 109 271 178 212 223 c 0 + 206 227 202 230 202 236 c 0 + 202 247 210 256 217 260 c 0 + 325 322 367 359 436 413 c 1 + 440 412 451 407 453 398 c 1 + 448 386 289 243 289 243 c 1 + 289 243 391 97 391 89 c 1 +215 89 m 1 + 210 80 200 74 194 71 c 1 + 165 109 95 178 36 223 c 0 + 30 227 26 230 26 236 c 0 + 26 247 34 256 41 260 c 0 + 149 322 191 359 260 413 c 1 + 264 412 275 407 277 398 c 1 + 272 386 113 243 113 243 c 1 + 113 243 215 97 215 89 c 1 +EndSplineSet +EndChar + +StartChar: logicalnot +Encoding: 172 172 106 +Width: 573 +Flags: W +HStem: 355 55<48 445> +VStem: 445 59<155 355> +LayerCount: 2 +Fore +SplineSet +504 410 m 17 + 504 165 l 17 + 503 164 478 150 458 150 c 0 + 458 150 448 151 445 157 c 1 + 445 178 445 278 445 355 c 9 + 50 355 l 1 + 50 355 44 355 44 365 c 1 + 44 365 49 410 59 410 c 2 + 504 410 l 17 +EndSplineSet +EndChar + +StartChar: registered +Encoding: 174 174 107 +Width: 643 +Flags: W +HStem: 130 31<242 402> 266 14<199 229 279 309 439 467> 393 18<277 307> 523 16<200 229 279 333> 633 31<242 402> +VStem: 55 32<314 481> 231 46<287 393 411 519> 357 47<421 514> 559 30<317 478> +LayerCount: 2 +Fore +SplineSet +315 540 m 0 + 353 540 404 515 404 468 c 0 + 404 438 378 410 350 400 c 1 + 372 364 393 336 420 303 c 0 + 433 288 444 282 467 280 c 1 + 469 278 466 267 466 266 c 1 + 438 266 408 268 400 271 c 0 + 394 273 383 276 373 289 c 0 + 367 297 330 348 304 388 c 0 + 302 392 298 393 292 393 c 0 + 292 393 281 393 277 393 c 1 + 277 317 l 1 + 277 305 277 294 279 287 c 0 + 280 282 303 280 308 280 c 1 + 310 278 310 268 308 266 c 1 + 291 267 271 268 255 268 c 0 + 239 268 218 267 201 266 c 1 + 199 268 199 278 201 280 c 1 + 206 280 228 282 229 287 c 0 + 231 294 231 304 231 317 c 2 + 231 490 l 2 + 231 502 231 513 229 520 c 0 + 228 525 206 527 201 527 c 1 + 199 529 199 539 201 541 c 1 + 218 540 241 539 257 539 c 0 + 273 539 291 540 315 540 c 0 +357 458 m 0 + 357 495 346 523 300 523 c 0 + 295 523 281 523 279 519 c 0 + 277 514 277 501 277 488 c 2 + 277 411 l 1 + 277 411 288 411 295 411 c 16 + 330 411 357 426 357 458 c 0 +87 397 m 0 + 87 267 192 161 322 161 c 0 + 452 161 559 267 559 397 c 0 + 559 527 452 633 322 633 c 0 + 192 633 87 527 87 397 c 0 +55 397 m 0 + 55 544 174 664 321 664 c 0 + 468 664 589 544 589 397 c 0 + 589 250 468 130 321 130 c 0 + 174 130 55 250 55 397 c 0 +EndSplineSet +EndChar + +StartChar: macron +Encoding: 175 175 108 +Width: 256 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 381 0 2 +EndChar + +StartChar: degree +Encoding: 176 176 109 +Width: 259 +VWidth: 0 +Flags: HW +HStem: 427 36<133 210> 583 36<147 226> +VStem: 88 35<472 558> 235 35<490 573> +LayerCount: 2 +Fore +SplineSet +123 512 m 0 + 123 485 141 463 168 463 c 0 + 202 463 235 497 235 535 c 0 + 235 562 217 583 190 583 c 0 + 156 583 123 552 123 512 c 0 +88 505 m 0 + 88 568 145 619 197 619 c 0 + 240 619 271 586 271 542 c 0 + 271 481 215 427 161 427 c 0 + 118 427 88 461 88 505 c 0 +EndSplineSet +EndChar + +StartChar: plusminus +Encoding: 177 177 110 +Width: 535 +Flags: W +HStem: 6 55<38 498> 298 55<38 239 294 498> +VStem: 239 55<92 298 353 555> +LayerCount: 2 +Fore +SplineSet +48 61 m 1 + 126 61 447 61 493 61 c 0 + 497 61 502 57 502 49 c 0 + 502 33 494 14 486 6 c 1 + 39 6 l 1 + 39 6 33 6 33 16 c 0 + 33 20 38 53 48 61 c 1 +48 353 m 1 + 239 353 l 9 + 239 353 239 529 239 548 c 1 + 255 554 274 559 281 559 c 0 + 291 559 294 553 294 553 c 1 + 294 353 l 25 + 372 353 415 353 493 353 c 16 + 497 353 502 349 502 341 c 0 + 502 325 494 306 486 298 c 1 + 294 298 l 25 + 294 298 294 176 294 101 c 1 + 282 92 262 90 252 90 c 0 + 245 90 239 95 239 99 c 2 + 239 298 l 25 + 39 298 l 1 + 39 298 33 298 33 308 c 0 + 33 312 38 345 48 353 c 1 +EndSplineSet +EndChar + +StartChar: uni00B2 +Encoding: 178 178 111 +Width: 349 +Flags: W +HStem: 248 54<118 277> 588 44<106 206> +VStem: 222 63<461 572> +LayerCount: 2 +Fore +SplineSet +313 352 m 1 + 302 324 291 280 277 248 c 1 + 50 248 l 1 + 44 248 36 256 38 260 c 1 + 77 303 135 354 175 408 c 0 + 202 445 222 482 222 518 c 0 + 222 559 199 588 158 588 c 0 + 114 588 91 561 73 540 c 1 + 69 536 55 552 56 557 c 1 + 78 596 124 632 169 632 c 0 + 237 632 285 589 285 527 c 0 + 285 495 270 464 241 429 c 0 + 215 398 165 350 118 302 c 1 + 236 302 l 2 + 276 302 288 344 294 354 c 0 + 295 356 296 356 299 357 c 0 + 302 357 310 356 313 352 c 1 +EndSplineSet +EndChar + +StartChar: uni00B3 +Encoding: 179 179 112 +Width: 310 +Flags: W +HStem: 243 27<105 183> 593 38<100 176> +VStem: 188 55<502 583> 212 62<305 419> +LayerCount: 2 +Fore +SplineSet +158 631 m 0xe0 + 199 631 243 606 243 556 c 0xe0 + 243 513 208 485 187 475 c 1 + 212 475 274 441 274 377 c 0 + 274 291 200 243 115 243 c 0 + 94 243 60 249 50 258 c 1 + 50 258 38 268 38 281 c 0 + 38 301 52 313 68 313 c 0 + 85 313 92 297 104 285 c 0 + 114 275 127 271 142 271 c 0 + 183 271 212 299 212 359 c 0xd0 + 212 407 178 443 142 443 c 0 + 124 443 108 437 103 436 c 1 + 101 438 99 442 98 446 c 0 + 97 450 97 454 98 456 c 1 + 146 466 188 495 188 543 c 0 + 188 568 164 593 139 593 c 0 + 103 593 76 563 70 557 c 1 + 65 559 61 571 62 572 c 1 + 76 593 106 631 158 631 c 0xe0 +EndSplineSet +EndChar + +StartChar: acute +Encoding: 180 180 113 +Width: 196 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 335 0 2 +EndChar + +StartChar: mu +Encoding: 181 181 114 +Width: 481 +Flags: HW +HStem: -9 73<114 176 304 351> 407 20<125 134 332 341> +VStem: -11 53<-171 -15> +LayerCount: 2 +Fore +SplineSet +392 67 m 5 + 379 34 343 -4 312 -4 c 4 + 258 -4 262 75 267 137 c 5 + 224 62 177 -9 127 -9 c 4 + 85 -9 79 49 79 86 c 5 + 77 69 42 -34 42 -97 c 7 + 42 -131 60 -168 74 -189 c 5 + 72 -203 49 -216 31 -216 c 4 + 18 -216 -11 -206 -11 -143 c 4 + -11 -77 50 138 70 199 c 5 + 75 222 100 376 107 413 c 5 + 111 418 121 427 129 427 c 4 + 139 427 162 412 171 390 c 5 + 168 372 137 281 114 218 c 5 + 109 193 106 167 106 146 c 4 + 106 102 117 64 136 64 c 4 + 183 64 228 148 266 217 c 5 + 287 293 296 345 314 413 c 5 + 318 418 328 427 336 427 c 4 + 346 427 369 412 378 390 c 5 + 368 362 304 205 304 205 c 5 + 286 125 295 64 337 64 c 4 + 360 64 377 80 386 89 c 5 + 390 86 393 70 392 67 c 5 +EndSplineSet +EndChar + +StartChar: paragraph +Encoding: 182 182 115 +Width: 472 +Flags: W +HStem: -4 26<153 210 363 422> 2 33<262 311> 281 39<259 313> 292 39<354 382> 597 36<259 314> 609 28<361 415> +VStem: 33 226<383 543> 221 38<42 280> 314 39<42 285 331 596> +LayerCount: 2 +Fore +SplineSet +314 325 m 1x2980 + 314 360 314 579 314 592 c 1 + 310 596 296 597 286 597 c 0 + 276 597 265 597 259 591 c 9 + 259 591 259 420 259 320 c 1 + 265 320 310 322 314 325 c 1x2980 +313 285 m 17 + 299 284 275 282 259 281 c 9 + 259 216 259 178 259 113 c 16 + 259 84 259 57 262 41 c 0 + 263 34 282 35 286 35 c 0x6180 + 293 35 311 35 312 41 c 0 + 315 57 314 84 314 113 c 2 + 313 285 l 17 +353 292 m 1x1680 + 353 223 353 182 353 113 c 16 + 353 84 352 57 357 41 c 0 + 360 30 409 22 421 22 c 1 + 423 22 423 -2 421 -4 c 1x9680 + 359 -2 352 2 290 2 c 0x4280 + 245 2 193 -2 154 -4 c 1 + 152 2 151 18 156 22 c 1 + 164 22 213 30 216 41 c 0 + 221 57 221 84 221 113 c 2 + 221 280 l 17x8180 + 96 280 33 390 33 458 c 0 + 33 564 120 637 200 637 c 0 + 258 637 237 633 295 633 c 0x8a80 + 360 633 413 638 413 638 c 1 + 418 633 417 612 412 609 c 1 + 397 609 361 602 356 590 c 0 + 354 583 354 577 354 527 c 0 + 354 467 354 350 354 331 c 1 + 359 330 401 344 401 344 c 1 + 406 344 411 342 411 338 c 0 + 410 328 390 305 383 302 c 0 + 372 297 361 293 353 292 c 1x1680 +EndSplineSet +EndChar + +StartChar: periodcentered +Encoding: 183 183 116 +Width: 292 +VWidth: 0 +Flags: HW +HStem: 200 114<162.626 229.626> +VStem: 142.626 107<220 295> +LayerCount: 2 +Fore +SplineSet +142.625976562 246 m 0 + 142.625976562 282 175.625976562 314 207.625976562 314 c 0 + 232.625976562 314 249.625976562 295 249.625976562 270 c 0 + 249.625976562 234 217.625976562 200 185.625976562 200 c 0 + 160.625976562 200 142.625976562 220 142.625976562 246 c 0 +EndSplineSet +EndChar + +StartChar: cedilla +Encoding: 184 184 117 +Width: 157 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 255 807 N 1 0 0 1 324 0 2 +EndChar + +StartChar: uni00B9 +Encoding: 185 185 118 +Width: 285 +Flags: W +HStem: 247 24<56 113 203 253> +VStem: 120 72<287 555> +LayerCount: 2 +Fore +SplineSet +120 506 m 2 + 120 551 113 556 102 556 c 0 + 90 556 67 547 47 540 c 1 + 41 543 38 551 38 557 c 0 + 38 560 39 563 41 564 c 0 + 145 607 185 637 188 637 c 2 + 189 637 l 2 + 195 637 200 617 201 614 c 1 + 201 614 192 573 192 535 c 2 + 192 332 l 2 + 192 312 193 302 200 286 c 0 + 203 279 243 272 251 272 c 1 + 254 272 254 251 251 247 c 1 + 213 248 195 250 157 250 c 0 + 119 250 98 248 60 247 c 1 + 55 250 55 271 60 271 c 0 + 72 271 111 278 114 285 c 0 + 119 298 120 320 120 330 c 2 + 120 506 l 2 +EndSplineSet +EndChar + +StartChar: ordmasculine +Encoding: 186 186 119 +Width: 378 +Flags: W +HStem: 241 23<160 233> 518 23<146 222> +VStem: 37 67<315 467> 274 67<316 469> +LayerCount: 2 +Fore +SplineSet +183 518 m 0 + 126 518 104 456 104 401 c 0 + 104 337 135 265 199 265 c 0 + 253 265 274 328 274 382 c 0 + 274 445 246 518 183 518 c 0 +191 541 m 0 + 276 541 342 475 342 394 c 0 + 342 313 276 241 191 241 c 0 + 106 241 37 309 37 390 c 0 + 37 473 104 541 191 541 c 0 +EndSplineSet +EndChar + +StartChar: guillemotright +Encoding: 187 187 120 +Width: 473 +VWidth: 0 +Flags: HW +VStem: 177 87<223 270> 353 87<223 270> +LayerCount: 2 +Fore +SplineSet +251 396 m 1 + 256 405 265 410 271 413 c 1 + 300 375 371 307 430 262 c 0 + 436 258 439 254 439 248 c 0 + 439 237 432 229 425 225 c 0 + 317 163 275 125 206 71 c 1 + 202 72 190 77 188 86 c 1 + 193 98 353 241 353 241 c 1 + 353 241 251 388 251 396 c 1 +75 396 m 1 + 80 405 90 410 96 413 c 1 + 125 375 195 307 254 262 c 0 + 260 258 264 254 264 248 c 0 + 264 237 256 229 249 225 c 0 + 141 163 99 125 30 71 c 1 + 26 72 15 77 13 86 c 1 + 18 98 177 241 177 241 c 1 + 177 241 75 388 75 396 c 1 +EndSplineSet +EndChar + +StartChar: onequarter +Encoding: 188 188 121 +Width: 682 +Flags: W +HStem: 104 44<432 543 604 637> 245 21<50 96 180 228> +VStem: 109 61<282 542> 543 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +592 397 m 0 + 598 397 601 391 601 386 c 8 + 601 291 601 233 601 143 c 1 + 608 143 625 143 635 143 c 1 + 644 135 649 118 641 104 c 1 + 627 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 588 -3 574 -3 c 0 + 561 -3 548 -2 543 2 c 9 + 543 104 l 1 + 382 104 l 1 + 377 105 373 108 372 119 c 1 + 572 386 l 2 + 576 391 584 397 592 397 c 0 +543 147 m 9 + 543 147 543 289 543 298 c 1 + 503 247 476 204 432 147 c 1 + 439 147 535 147 543 147 c 9 +170 521 m 2 + 170 328 l 2 + 170 308 172 295 177 280 c 0 + 179 273 218 267 226 267 c 1 + 231 262 228 247 227 245 c 1 + 189 246 181 248 143 248 c 0 + 105 248 91 246 53 245 c 1 + 48 248 49 263 53 267 c 1 + 65 267 99 274 102 281 c 0 + 107 294 109 316 109 326 c 2 + 109 508 l 2 + 109 527 103 542 93 542 c 0 + 82 542 66 534 46 527 c 1 + 40 530 35 539 33 545 c 1 + 52 557 82 574 165 623 c 1 + 172 621 178 614 178 607 c 1 + 178 607 170 559 170 521 c 2 +182 -12 m 0 + 172 -10 171 -4 171 -4 c 1 + 512 621 l 1 + 513 623 525 632 542 629 c 0 + 548 628 550 622 550 619 c 1 + 213 2 l 2 + 210 -4 198 -15 182 -12 c 0 +EndSplineSet +EndChar + +StartChar: onehalf +Encoding: 189 189 122 +Width: 732 +Flags: W +HStem: -1 54<505 663> 245 21<53 99 183 231> 339 44<493 592> +VStem: 112 61<282 542> 608 63<212 323> +LayerCount: 2 +Fore +SplineSet +556 383 m 0 + 624 383 672 340 672 278 c 0 + 672 246 656 215 627 180 c 0 + 601 149 552 101 505 53 c 1 + 622 53 l 2 + 662 53 675 95 681 105 c 0 + 682 107 683 107 686 108 c 0 + 689 108 696 107 699 103 c 1 + 688 75 677 31 663 -1 c 1 + 437 -1 l 1 + 431 -1 423 7 425 11 c 1 + 462 51 515 98 554 148 c 0 + 586 188 608 230 608 269 c 0 + 608 310 585 339 544 339 c 0 + 500 339 477 312 459 291 c 1 + 455 287 441 303 442 308 c 1 + 464 347 511 383 556 383 c 0 +173 521 m 2 + 173 328 l 2 + 173 308 175 295 180 280 c 0 + 182 273 221 267 229 267 c 1 + 234 262 230 247 229 245 c 1 + 191 246 184 248 146 248 c 0 + 108 248 94 246 56 245 c 1 + 51 248 52 263 56 267 c 1 + 68 267 101 274 104 281 c 0 + 109 294 112 316 112 326 c 2 + 112 508 l 2 + 112 527 106 542 96 542 c 0 + 85 542 69 534 49 527 c 1 + 43 530 38 539 36 545 c 1 + 55 557 85 574 168 623 c 1 + 175 621 181 614 181 607 c 1 + 181 607 173 559 173 521 c 2 +551 619 m 1 + 214 2 l 2 + 211 -4 199 -15 183 -12 c 0 + 173 -10 172 -4 172 -4 c 1 + 513 621 l 1 + 514 623 526 632 543 629 c 0 + 549 628 551 622 551 619 c 1 +EndSplineSet +EndChar + +StartChar: threequarters +Encoding: 190 190 123 +Width: 683 +Flags: W +HStem: 104 44<433 544 604 638> 243 27<101 179> 593 38<96 172> +VStem: 185 55<502 583> 208 62<305 419> 544 58<-3 104 147 298> +LayerCount: 2 +Fore +SplineSet +593 397 m 0xe4 + 599 397 602 391 602 386 c 8 + 602 291 602 233 602 143 c 1 + 609 143 626 143 636 143 c 1 + 645 135 650 118 642 104 c 1 + 628 104 610 104 604 104 c 9 + 604 0 l 1 + 602 -2 589 -3 575 -3 c 0 + 562 -3 549 -2 544 2 c 9 + 544 104 l 1 + 383 104 l 1 + 378 105 374 108 373 119 c 1 + 573 386 l 2 + 577 391 585 397 593 397 c 0xe4 +544 147 m 9 + 544 147 544 289 544 298 c 1 + 504 247 477 204 433 147 c 1 + 440 147 536 147 544 147 c 9 +154 631 m 0 + 195 631 239 606 239 556 c 0xf4 + 239 513 204 485 183 475 c 1 + 208 475 271 441 271 377 c 0 + 271 291 196 243 111 243 c 0 + 90 243 56 249 46 258 c 1 + 46 258 34 268 34 281 c 0 + 34 301 48 313 64 313 c 0 + 81 313 88 297 100 285 c 0 + 110 275 123 271 138 271 c 0 + 179 271 208 299 208 359 c 0xec + 208 407 174 443 138 443 c 0 + 120 443 104 437 99 436 c 1 + 97 438 95 442 94 447 c 0 + 93 450 93 454 94 456 c 1 + 142 466 185 495 185 543 c 0xf4 + 185 568 160 593 135 593 c 0 + 99 593 72 563 66 557 c 1 + 61 559 57 571 58 572 c 1 + 72 593 102 631 154 631 c 0 +556 619 m 1 + 219 2 l 2 + 216 -4 204 -15 188 -12 c 0 + 178 -10 176 -4 176 -4 c 1 + 518 621 l 1 + 519 623 531 632 548 629 c 0 + 554 628 556 622 556 619 c 1 +EndSplineSet +EndChar + +StartChar: questiondown +Encoding: 191 191 124 +Width: 336 +Flags: W +HStem: -218 92<164 280> -218 71<155 261> 312 107<185 269> +VStem: 40 49<-114 -13> 174 107<324 408> 221 28<174 254> +LayerCount: 2 +Fore +SplineSet +281 365 m 0x38 + 281 336 256 312 227 312 c 0 + 198 312 174 336 174 365 c 0 + 174 394 198 420 227 420 c 0 + 256 420 281 394 281 365 c 0x38 +249 243 m 1xb4 + 254 222 257 180 257 154 c 0 + 257 82 210 56 174 33 c 0 + 126 3 89 -19 89 -66 c 0 + 89 -117 124 -146 161 -146 c 0x78 + 213 -146 220 -126 245 -126 c 0 + 259 -126 288 -143 288 -175 c 0 + 288 -190 284 -204 279 -211 c 1 + 269 -216 253 -218 232 -218 c 0 + 168 -218 40 -151 40 -37 c 0 + 40 29 66 70 139 112 c 0 + 165 128 209 162 215 173 c 0 + 224 189 221 219 221 241 c 1 + 225 249 227 253 236 254 c 1 + 241 252 246 249 249 243 c 1xb4 +EndSplineSet +EndChar + +StartChar: Agrave +Encoding: 192 192 125 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 265 -1 N 1 0 0 1 70 16 2 +EndChar + +StartChar: Aacute +Encoding: 193 193 126 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 266 -1 N 1 0 0 1 191 17 2 +EndChar + +StartChar: Acircumflex +Encoding: 194 194 127 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 267 -1 N 1 0 0 1 101 0 2 +EndChar + +StartChar: Atilde +Encoding: 195 195 128 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 32 65 N 1 0 0 1 0 0 2 +Refer: 269 -1 N 1 0 0 1 74 14 2 +EndChar + +StartChar: Adieresis +Encoding: 196 196 129 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 275 -1 N 1 0 0 1 90 16 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Aring +Encoding: 197 197 130 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 268 -1 N 1 0 0 1 111 153 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: AE +Encoding: 198 198 131 +Width: 766 +Flags: HW +HStem: -3 26<-55 -4 85 130 266 312 438 605> 300 33<261 379 459 615> 615 33<491 691> 615 26<360 384 492 648> +VStem: 634 28<217 287> 729 18<518 648> +LayerCount: 2 +Fore +SplineSet +379 300 m 1xec + 237 300 l 1 + 119 128 l 2 + 85 79 75 60 75 49 c 0 + 75 33 121 23 131 23 c 0 + 132 23 131 2 128 -3 c 1 + 92 -1 76 2 36 2 c 0 + -6 2 -16 -1 -58 -3 c 1 + -59 -2 -59 23 -55 23 c 0 + -44 23 -6 31 8 44 c 0 + 36 69 61 100 85 136 c 2 + 386 572 l 2 + 388 576 391 581 391 587 c 0 + 391 598 382 610 361 610 c 1 + 357 613 358 635 361 641 c 1 + 457 642 l 2xdc + 542 642 647 648 746 648 c 1 + 747 599 754 560 758 516 c 1 + 755 513 747 511 740 511 c 0 + 733 511 729 513 729 518 c 0 + 718 596 683 615 635 615 c 2 + 557 615 l 2 + 546 615 497 614 493 604 c 0 + 486 588 482 560 479 534 c 2 + 459 339 l 2 + 458 334 477 333 497 333 c 2 + 545 333 l 2 + 632 333 630 339 653 403 c 0 + 655 408 661 410 668 410 c 0 + 675 410 680 408 682 405 c 1 + 662 221 l 1 + 660 219 653 217 646 217 c 0 + 639 217 635 220 634 225 c 0 + 626 281 622 287 615 293 c 0 + 605 300 554 301 520 301 c 0 + 495 301 455 301 454 292 c 2 + 436 106 l 2 + 435 91 430 44 435 39 c 0 + 446 29 460 29 498 29 c 2 + 541 29 l 2 + 591 29 628 39 657 60 c 0 + 682 78 705 106 726 158 c 0 + 728 162 732 164 739 164 c 0 + 748 164 760 161 762 158 c 1 + 739 105 704 39 693 -4 c 1 + 594 -4 505 0 385 0 c 0 + 337 0 264 -3 264 -3 c 1 + 262 2 265 28 270 30 c 1 + 281 30 330 36 341 49 c 0 + 357 68 359 87 362 121 c 2 + 379 300 l 1xec +382 333 m 1 + 401 537 l 1 + 261 333 l 1 + 382 333 l 1 +EndSplineSet +EndChar + +StartChar: Ccedilla +Encoding: 199 199 132 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 272 -1 N 1 0 0 1 124 0 2 +Refer: 34 67 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Egrave +Encoding: 200 200 133 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 265 -1 N 1 0 0 1 77 16 2 +EndChar + +StartChar: Eacute +Encoding: 201 201 134 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 266 -1 N 1 0 0 1 135 17 2 +EndChar + +StartChar: Ecircumflex +Encoding: 202 202 135 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 267 -1 N 1 0 0 1 72 0 2 +EndChar + +StartChar: Edieresis +Encoding: 203 203 136 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 275 -1 N 1 0 0 1 59 16 2 +EndChar + +StartChar: Igrave +Encoding: 204 204 137 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 265 -1 N 1 0 0 1 -42 16 2 +EndChar + +StartChar: Iacute +Encoding: 205 205 138 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 266 -1 N 1 0 0 1 24 17 2 +EndChar + +StartChar: Icircumflex +Encoding: 206 206 139 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 40 73 N 1 0 0 1 0 0 2 +Refer: 267 -1 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: Idieresis +Encoding: 207 207 140 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 499 245 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Eth +Encoding: 208 208 141 +Width: 667 +Flags: HW +HStem: -3 28<-3 66 156 315> 306 35<70 402> 616 25<118 176 264 414> +LayerCount: 2 +Fore +SplineSet +78 341 m 1 + 105 341 387 341 400 341 c 0 + 404 341 406 337 405 333 c 0 + 404 328 400 313 395 306 c 1 + 368 306 85 306 72 306 c 0 + 68 306 68 312 69 316 c 0 + 70 321 71 334 78 341 c 1 +EndSplineSet +Refer: 35 68 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ntilde +Encoding: 209 209 142 +Width: 714 +Flags: HW +LayerCount: 2 +Fore +Refer: 269 -1 N 1 0 0 1 115 14 2 +Refer: 45 78 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ograve +Encoding: 210 210 143 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 265 -1 N 1 0 0 1 116 16 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Oacute +Encoding: 211 211 144 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 198 17 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ocircumflex +Encoding: 212 212 145 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 132 0 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Otilde +Encoding: 213 213 146 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 269 -1 N 1 0 0 1 100 14 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Odieresis +Encoding: 214 214 147 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 275 -1 N 1 0 0 1 118 16 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: multiply +Encoding: 215 215 148 +Width: 401 +Flags: HW +HStem: 208 60<184 202> +VStem: 166 60<221 253> +LayerCount: 2 +Fore +SplineSet +26 66 m 0 + 20 66 14 89 14 105 c 1 + 164 237 l 2 + 165 238 166 239 166 240 c 0 + 166 242 162 248 161 249 c 2 + 66 379 l 1 + 66 393 88 411 93 411 c 0 + 95 411 95 409 97 407 c 2 + 198 270 l 2 + 199 269 201 268 202 268 c 2 + 204 269 l 26 + 358 406 l 2 + 360 408 362 409 364 409 c 0 + 371 409 377 387 377 369 c 1 + 228 236 l 2 + 227 235 226 235 226 234 c 3 + 226 233 226 233 227 232 c 2 + 324 100 l 1 + 324 86 310 66 303 66 c 0 + 299 66 297 67 296 69 c 2 + 195 206 l 2 + 194 207 193 208 192 208 c 0 + 191 208 189 207 188 206 c 2 + 31 69 l 2 + 29 67 28 66 26 66 c 0 +EndSplineSet +EndChar + +StartChar: Oslash +Encoding: 216 216 149 +Width: 693 +Flags: HW +HStem: -11 28<255 383> 620 29<332 462> 632 20G<582 602> +VStem: 60 92<146 395> 564 92<240 489> +LayerCount: 2 +Fore +SplineSet +115 -13 m 17xb8 + 107 -10 89 4 94 10 c 9 + 598 651 l 17 + 606 649 625 636 620 630 c 9 + 115 -13 l 17xb8 +EndSplineSet +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ugrave +Encoding: 217 217 150 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 265 -1 N 1 0 0 1 135 16 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: Uacute +Encoding: 218 218 151 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 248 17 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: Ucircumflex +Encoding: 219 219 152 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 135 0 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: Udieresis +Encoding: 220 220 153 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 275 -1 N 1 0 0 1 137 16 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: Yacute +Encoding: 221 221 154 +Width: 542 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 179 17 2 +Refer: 56 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Thorn +Encoding: 222 222 155 +Width: 458 +Flags: HW +HStem: -3 28<-4 65 155 212> 131 25<210 292> 471 28<237 343> 618 28<117 174 265 333> +VStem: 396 87<259 426> +LayerCount: 2 +Fore +SplineSet +229 447 m 8 + 204 317 164 113 164 113 c 2 + 158 84 152 57 154 41 c 0 + 155 30 203 25 214 25 c 1 + 217 20 214 2 208 -3 c 1 + 171 -1 139 2 104 2 c 0 + 69 2 33 -1 -5 -3 c 1 + -9 2 -5 20 0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 177 587 175 603 c 0 + 174 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 193 642 228 642 c 0 + 263 642 297 644 335 646 c 1 + 339 641 334 623 329 618 c 1 + 318 618 269 614 264 603 c 0 + 256 587 251 559 245 530 c 2 + 236 488 l 1 + 258 497 284 499 306 499 c 0 + 410 499 482 441 482 352 c 0 + 482 227 374 131 255 131 c 0 + 234 131 216 137 211 141 c 0 + 209 143 203 151 203 156 c 0 + 203 158 205 159 207 160 c 1 + 215 156 230 156 239 156 c 0 + 311 156 396 229 396 338 c 0 + 396 393 383 471 282 471 c 0 + 271 471 233 468 229 447 c 8 +EndSplineSet +EndChar + +StartChar: germandbls +Encoding: 223 223 156 +Width: 488 +VWidth: 0 +Flags: HW +HStem: -228 42<-83 -8> -4 29<290 359> 367 36<43 119> 627 42<266 344> +VStem: 246 56<300 370> 374 62<50 145 471 598> +LayerCount: 2 +Fore +SplineSet +199 403 m 0 + 173 260 156 165 133 42 c 0 + 102 -118 9 -228 -69 -228 c 0 + -97 -228 -115 -216 -122 -203 c 1 + -122 -198 -122 -193 -121 -187 c 0 + -118 -167 -110 -148 -93 -148 c 0 + -76 -148 -67 -159 -56 -171 c 0 + -49 -178 -41 -186 -27 -186 c 0 + 11 -186 31 -117 61 38 c 1 + 119 367 l 1 + 36 367 l 2 + 35 367 34 368 34 370 c 0 + 34 380 57 403 79 403 c 2 + 125 403 l 1 + 156 563 249 669 327 669 c 0 + 377 669 442 636 442 559 c 0 + 442 473 385 442 357 416 c 0 + 331 392 302 367 302 344 c 3 + 302 318 331 292 354 266 c 0 + 393 221 436 184 436 119 c 27 + 436 48 378 -4 301 -4 c 3 + 242 -4 217 17 203 31 c 1 + 201 37 197 49 198 57 c 0 + 200 84 216 97 237 97 c 3 + 265 97 274 25 322 25 c 0 + 361 25 374 55 374 86 c 0 + 374 128 326 182 301 211 c 0 + 273 243 246 271 246 316 c 0 + 246 360 270 371 324 425 c 0 + 351 452 375 483 375 534 c 0 + 375 594 333 627 293 627 c 0 + 250 627 228 559 199 403 c 0 +EndSplineSet +EndChar + +StartChar: agrave +Encoding: 224 224 157 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 512 12 2 +Refer: 64 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: aacute +Encoding: 225 225 158 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 562 12 2 +Refer: 64 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: acircumflex +Encoding: 226 226 159 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 523 4 2 +EndChar + +StartChar: atilde +Encoding: 227 227 160 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 512 16 2 +EndChar + +StartChar: adieresis +Encoding: 228 228 161 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 518 21 2 +Refer: 64 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: aring +Encoding: 229 229 162 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 64 97 N 1 0 0 1 0 0 2 +Refer: 249 778 N 1 0 0 1 538 6 2 +EndChar + +StartChar: ae +Encoding: 230 230 163 +Width: 545 +VWidth: 0 +Flags: HW +HStem: -8 53<67 142 318 378> 194 30<299 351> 385 40<168 265 379 490> +VStem: 6 74<52 140> 65 72<297 347> 227 63<153 194> 451 72<308 380> +LayerCount: 2 +Fore +SplineSet +411 385 m 3xe6 + 349 385 308 295 299 225 c 1 + 337 225 451 274 451 346 c 3 + 451 370 431 385 411 385 c 3xe6 +212 105 m 2 + 227 196 l 1 + 184 188 153 177 131 166 c 0 + 89 144 80 120 80 99 c 0xf6 + 80 68 99 45 124 45 c 3 + 155 45 211 96 212 105 c 2 +245 425 m 3 + 285 425 311 391 315 357 c 1 + 347 394 405 425 457 425 c 0 + 523 425 523 375 523 361 c 3 + 523 275 366 204 294 194 c 1 + 293 188 290 167 290 154 c 0 + 290 92 311 52 358 52 c 3 + 399 52 454 115 458 119 c 1 + 461 119 469 108 470 100 c 1 + 435 50 370 -6 320 -6 c 3 + 280 -6 233 21 219 68 c 1 + 202 47 114 -8 88 -8 c 3 + 47 -8 6 17 6 78 c 0xf6 + 6 123 40 160 63 176 c 0 + 78 186 191 217 227 229 c 0 + 234 231 232 238 235 251 c 2 + 246 310 l 2 + 248 318 248 326 248 330 c 3 + 248 353 228 388 193 388 c 0 + 164 388 151 367 138 331 c 0 + 126 300 109 287 88 287 c 0 + 67 287 65 306 65 315 c 0xee + 65 328 71 340 76 348 c 1 + 104 372 182 425 245 425 c 3 +EndSplineSet +EndChar + +StartChar: ccedilla +Encoding: 231 231 164 +Width: 350 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 255 807 N 1 0 0 1 364 5 2 +EndChar + +StartChar: egrave +Encoding: 232 232 165 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 479 12 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: eacute +Encoding: 233 233 166 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 537 12 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ecircumflex +Encoding: 234 234 167 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 499 4 2 +EndChar + +StartChar: edieresis +Encoding: 235 235 168 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 483 21 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: igrave +Encoding: 236 236 169 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 375 -21 2 +Refer: 222 305 N 1 0 0 1 3 0 2 +EndChar + +StartChar: iacute +Encoding: 237 237 170 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 421 12 2 +Refer: 222 305 N 1 0 0 1 3 0 2 +EndChar + +StartChar: icircumflex +Encoding: 238 238 171 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 3 0 2 +Refer: 220 770 N 1 0 0 1 410 4 2 +EndChar + +StartChar: idieresis +Encoding: 239 239 172 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 276 -1 N 1 0 0 1 -68 29 2 +Refer: 222 305 N 1 0 0 1 3 0 2 +EndChar + +StartChar: eth +Encoding: 240 240 173 +Width: 426 +VWidth: 0 +UnlinkRmOvrlpSave: 1 +Flags: HW +HStem: -5 31<141 212> 394 31<203 278> 656 16<135 152> +VStem: 38 76<48 240> 306 73<416 476> +LayerCount: 2 +Back +SplineSet +246.09375 393.5546875 m 0 + 226.5625 393.5546875 208.251953125 385.7421875 191.162109375 370.1171875 c 0 + 174.072265625 354.4921875 160.075195312 334.635742188 149.169921875 310.546875 c 0 + 138.264648438 286.458007812 129.719726562 260.661132812 123.53515625 233.154296875 c 0 + 117.350585938 205.647460938 114.2578125 179.362304688 114.2578125 154.296875 c 0 + 114.2578125 114.909179688 119.140625 83.740234375 128.90625 60.791015625 c 0 + 138.671875 37.841796875 152.34375 26.3671875 169.921875 26.3671875 c 0 + 189.127929688 26.3671875 207.112304688 34.2607421875 223.876953125 50.048828125 c 0 + 240.641601562 65.8369140625 254.231445312 85.8564453125 264.6484375 110.107421875 c 0 + 275.065429688 134.358398438 283.203125 160.237304688 289.0625 187.744140625 c 0 + 294.921875 215.250976562 297.8515625 241.536132812 297.8515625 266.6015625 c 0 + 297.8515625 306.640625 293.538085938 337.809570312 284.912109375 360.107421875 c 0 + 276.286132812 382.405273438 263.346679688 393.5546875 246.09375 393.5546875 c 0 +259.765625 424.8046875 m 0 + 297.526367188 424.8046875 326.008789062 411.865234375 345.21484375 385.986328125 c 0 + 364.420898438 360.107421875 374.0234375 325.1953125 374.0234375 281.25 c 0 + 374.0234375 247.721679688 367.594726562 213.623046875 354.736328125 178.955078125 c 0 + 341.877929688 144.287109375 325.276367188 113.525390625 304.931640625 86.669921875 c 0 + 284.586914062 59.814453125 260.7421875 37.841796875 233.3984375 20.751953125 c 0 + 206.0546875 3.662109375 178.7109375 -4.8828125 151.3671875 -4.8828125 c 0 + 113.606445312 -4.8828125 85.2861328125 7.4873046875 66.40625 32.2265625 c 0 + 47.5263671875 56.9658203125 38.0859375 91.1455078125 38.0859375 134.765625 c 0 + 38.0859375 168.293945312 44.43359375 202.555664062 57.12890625 237.548828125 c 0 + 69.82421875 272.541992188 86.3447265625 303.7109375 106.689453125 331.0546875 c 0 + 127.034179688 358.3984375 150.797851562 380.859375 177.978515625 398.4375 c 0 + 205.159179688 416.015625 232.421875 424.8046875 259.765625 424.8046875 c 0 +EndSplineSet +Fore +SplineSet +152 497 m 17 + 146 502 139 520 144 528 c 9 + 384 688 l 17 + 390 682 397 662 394 657 c 9 + 152 497 l 17 +253 425 m 0 + 274 425 294 423 306 416 c 1 + 308 494 249 627 132 656 c 1 + 133 663 138 672 145 672 c 1 + 302 646 379 497 379 345 c 0 + 379 131 259 -5 149 -5 c 0 + 62 -5 38 71 38 137 c 0 + 38 244 129 425 253 425 c 0 +245 394 m 0 + 182 394 114 285 114 154 c 0 + 114 109 122 26 171 26 c 0 + 233 26 298 132 298 267 c 0 + 298 293 297 332 295 345 c 0 + 291 371 267 394 245 394 c 0 +EndSplineSet +EndChar + +StartChar: ntilde +Encoding: 241 241 174 +Width: 485 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 514 16 2 +EndChar + +StartChar: ograve +Encoding: 242 242 175 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 485 -21 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: oacute +Encoding: 243 243 176 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 521 12 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ocircumflex +Encoding: 244 244 177 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 503 4 2 +EndChar + +StartChar: otilde +Encoding: 245 245 178 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 78 111 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 498 16 2 +EndChar + +StartChar: odieresis +Encoding: 246 246 179 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 507 21 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: divide +Encoding: 247 247 180 +Width: 495 +VWidth: 0 +Flags: HW +HStem: 4 98<175 238> 219 46<34 454> 381 98<247 311> +VStem: 165 85<15 92> 237 86<392 469> +LayerCount: 2 +Fore +SplineSet +36 219 m 2xe0 + 33 219 32 224 32 229 c 0 + 32 240 37 257 42 265 c 1 + 453 265 l 2 + 455 265 456 262 456 257 c 0 + 456 244 450 229 444 219 c 1 + 36 219 l 2xe0 +287 479 m 27 + 308 479 323 460 323 439 c 27 + 323 409 301 381 271 381 c 27 + 250 381 237 403 237 424 c 27xe8 + 237 453 258 479 287 479 c 27 +215 102 m 27 + 236 102 250 83 250 62 c 27 + 250 32 228 4 198 4 c 27 + 177 4 165 26 165 47 c 27xf0 + 165 76 186 102 215 102 c 27 +EndSplineSet +EndChar + +StartChar: oslash +Encoding: 248 248 181 +Width: 404 +VWidth: 0 +Flags: HW +HStem: -5 31<126 198> 0 21G<48 66> 394 31<188 260> +VStem: 23 76<48 244> 283 76<173 375> +LayerCount: 2 +Fore +SplineSet +51 0 m 17x78 + 45 3 28 14 32 20 c 9 + 333 409 l 17 + 339 406 356 397 352 391 c 9 + 51 0 l 17x78 +EndSplineSet +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ugrave +Encoding: 249 249 182 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 498 -21 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uacute +Encoding: 250 250 183 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 536 12 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ucircumflex +Encoding: 251 251 184 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 518 4 2 +EndChar + +StartChar: udieresis +Encoding: 252 252 185 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 520 21 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: yacute +Encoding: 253 253 186 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 549 12 2 +Refer: 88 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: thorn +Encoding: 254 254 187 +Width: 438 +Flags: HW +HStem: -229 28<-52 -12> -221 26<87 133> -5 34<143 221> 371 54<253 345> 617 21<90 146> 650 20G<212 225> +VStem: 150 79<530 652> 326 72<194 360> +LayerCount: 2 +Fore +SplineSet +216 578 m 2xbf + 213 559 170 345 169 338 c 1 + 195 362 264 425 314 425 c 0 + 376 425 399 375 399 307 c 0 + 399 156 272 -5 153 -5 c 0 + 136 -5 114 -2 108 8 c 1 + 75 -142 l 2 + 73 -151 73 -159 73 -169 c 0 + 73 -174 76 -188 86 -191 c 0 + 103 -195 129 -194 132 -194 c 0 + 136 -195 134 -220 129 -222 c 1 + 116 -222 106 -221 95 -221 c 0x7f + 45 -221 7 -222 -50 -229 c 1 + -55 -228 -54 -204 -49 -201 c 1 + -31 -201 -18 -197 -9 -186 c 0 + -2 -177 1 -166 6 -144 c 2 + 83 244 l 1 + 36 197 l 1 + 32 202 31 212 31 217 c 0 + 31 221 32 223 33 224 c 2 + 91 285 l 1 + 141 547 l 2 + 144 565 150 588 150 599 c 0 + 150 618 106 617 90 617 c 1 + 87 621 90 634 94 638 c 1 + 148 643 202 662 223 670 c 1 + 228 667 229 657 229 651 c 0 + 229 643 221 602 216 578 c 2xbf +275 371 m 0 + 243 371 185 330 159 293 c 1 + 127 128 l 2 + 116 70 144 29 173 29 c 0 + 256 29 326 180 326 296 c 0 + 326 350 306 371 275 371 c 0 +EndSplineSet +EndChar + +StartChar: ydieresis +Encoding: 255 255 188 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 501 21 2 +Refer: 88 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: space +Encoding: 32 32 189 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: dagger +Encoding: 8224 8224 190 +Width: 389 +Flags: W +HStem: -8 21G<193 196> 427 79<39 103 286 351> 454 21<103 171 218 286> 627 20G<184 206> +VStem: 154 80<546 642> 179 31<390 450 478 595> 188 12<-8 73> +LayerCount: 2 +Fore +SplineSet +150 475 m 8xb4 + 164 475 171 480 181 493 c 1 + 181 525 173 591 154 610 c 1 + 154 631 173 646 195 646 c 0 + 216 646 234 631 234 610 c 1 + 215 591 208 525 208 493 c 1 + 218 480 226 475 239 475 c 0xb8 + 271 475 299 487 318 506 c 1 + 339 506 355 486 355 465 c 0 + 355 444 339 427 318 427 c 1xd8 + 299 446 271 454 239 454 c 24xb8 + 223 454 210 439 210 427 c 1xd4 + 217 410 227 384 239 356 c 1 + 218 221 213 167 200 4 c 1 + 198 -2 197 -7 194 -8 c 1 + 191 -7 190 0 188 4 c 1xd2 + 175 167 170 221 149 356 c 1 + 160 380 172 410 179 427 c 1xd4 + 179 439 166 454 150 454 c 24xb4 + 118 454 90 446 71 427 c 1 + 50 427 34 444 34 465 c 0 + 34 486 50 506 71 506 c 1xd4 + 90 487 118 475 150 475 c 8xb4 +EndSplineSet +EndChar + +StartChar: daggerdbl +Encoding: 8225 8225 191 +Width: 413 +Flags: W +HStem: -8 21G<196 217> 133 79<51 115 298 362> 164 21<115 183 230 298> 427 79<51 115 298 362> 454 21<115 183 230 298> 627 20G<196 217> +VStem: 166 80<-4 93 546 642> 192 27<54 159 191 239 399 447 480 585> +LayerCount: 2 +Fore +SplineSet +251 282 m 1x95 + 239 254 229 229 222 212 c 1xd5 + 222 200 235 185 251 185 c 24xa5 + 283 185 311 193 330 212 c 1 + 351 212 367 195 367 174 c 0 + 367 153 351 133 330 133 c 1xc5 + 311 152 283 164 251 164 c 0 + 238 164 230 159 220 146 c 1xa5 + 220 114 227 47 246 28 c 1 + 246 7 228 -8 207 -8 c 0 + 185 -8 166 7 166 28 c 1xa6 + 185 47 192 114 192 146 c 1 + 182 159 176 164 162 164 c 16xa5 + 130 164 102 152 83 133 c 1 + 62 133 46 153 46 174 c 0 + 46 195 62 212 83 212 c 1xc5 + 102 193 130 185 162 185 c 24xa5 + 178 185 190 200 190 212 c 1 + 183 229 172 258 161 282 c 1 + 174 299 177 303 190 319 c 1 + 177 334 179 333 161 356 c 1 + 172 380 183 410 190 427 c 1xd5 + 190 439 178 454 162 454 c 24x8d + 130 454 102 446 83 427 c 1 + 62 427 46 444 46 465 c 0 + 46 486 62 506 83 506 c 1x95 + 102 487 130 475 162 475 c 8 + 176 475 182 480 192 493 c 1x8d + 192 525 185 591 166 610 c 1 + 166 631 185 646 207 646 c 0 + 228 646 246 631 246 610 c 1x8e + 227 591 220 525 220 493 c 1 + 230 480 238 475 251 475 c 0x8d + 283 475 311 487 330 506 c 1 + 351 506 367 486 367 465 c 0 + 367 444 351 427 330 427 c 1x95 + 311 446 283 454 251 454 c 24x8d + 235 454 222 439 222 427 c 1 + 229 410 239 384 251 356 c 1 + 234 335 234 334 222 319 c 1 + 232 306 235 302 251 282 c 1x95 +EndSplineSet +EndChar + +StartChar: bullet +Encoding: 8226 8226 192 +Width: 326 +Flags: HW +HStem: 151 211<120 204> +VStem: 64 195 +LayerCount: 2 +Fore +SplineSet +64 257 m 0 + 75 315 129 362 183 362 c 0 + 237 362 271 315 260 257 c 0 + 249 199 196 151 142 151 c 0 + 88 151 53 199 64 257 c 0 +EndSplineSet +EndChar + +StartChar: uni2010 +Encoding: 8208 8208 193 +Width: 361 +VWidth: 0 +Flags: HW +VStem: 51 248<205 255> +LayerCount: 2 +Fore +SplineSet +71 255 m 2 + 293 267 l 2 + 298 267 299 260 299 255 c 0 + 299 242 286 206 276 205 c 10 + 56 194 l 2 + 53 194 51 201 51 209 c 0 + 51 220 60 254 71 255 c 2 +EndSplineSet +EndChar + +StartChar: uni2011 +Encoding: 8209 8209 194 +Width: 361 +VWidth: 0 +Flags: HW +VStem: 51 248<205 255> +LayerCount: 2 +Fore +SplineSet +71 255 m 2 + 293 267 l 2 + 298 267 299 260 299 255 c 0 + 299 242 286 206 276 205 c 10 + 56 194 l 2 + 53 194 51 201 51 209 c 0 + 51 220 60 254 71 255 c 2 +EndSplineSet +EndChar + +StartChar: figuredash +Encoding: 8210 8210 195 +Width: 503 +Flags: HW +HStem: 195 61<57 433> +LayerCount: 2 +Fore +SplineSet +434 256 m 2 + 438 256 439 250 439 243 c 0 + 439 229 430 202 418 195 c 1 + 57 195 l 2 + 53 195 51 201 51 208 c 0 + 51 222 60 249 72 256 c 1 + 434 256 l 2 +EndSplineSet +EndChar + +StartChar: endash +Encoding: 8211 8211 196 +Width: 550 +Flags: HW +HStem: 195 61<58 479> +LayerCount: 2 +Fore +SplineSet +479 256 m 2 + 483 256 485 250 485 243 c 0 + 485 229 476 202 464 195 c 1 + 58 195 l 2 + 54 195 52 201 52 208 c 0 + 52 222 61 249 73 256 c 1 + 479 256 l 2 +EndSplineSet +EndChar + +StartChar: emdash +Encoding: 8212 8212 197 +Width: 781 +Flags: HW +HStem: 195 61<58 709> +LayerCount: 2 +Fore +SplineSet +710 256 m 2 + 714 256 716 250 716 243 c 0 + 716 229 706 202 694 195 c 1 + 58 195 l 2 + 54 195 52 201 52 208 c 0 + 52 222 61 249 73 256 c 1 + 710 256 l 2 +EndSplineSet +EndChar + +StartChar: uni2015 +Encoding: 8213 8213 198 +Width: 1044 +Flags: HW +HStem: 195 61<58 973> +LayerCount: 2 +Fore +SplineSet +974 256 m 2 + 978 256 979 250 979 243 c 0 + 979 229 970 202 958 195 c 1 + 58 195 l 2 + 54 195 52 201 52 208 c 0 + 52 222 61 249 73 256 c 1 + 974 256 l 2 +EndSplineSet +EndChar + +StartChar: quoteleft +Encoding: 8216 8216 199 +Width: 205 +Flags: W +HStem: 423 315 +VStem: 15 84<508 628.96> +LayerCount: 2 +Fore +SplineSet +43 534 m 0 + 43 644 161 711 172 711 c 0 + 182 711 190 703 195 690 c 1 + 124 648 113 595 113 584 c 0 + 113 566 129 553 142 537 c 0 + 153 525 161 514 161 500 c 0 + 161 472 121 449 84 449 c 0 + 76 449 69 451 61 453 c 1 + 50 469 43 505 43 534 c 0 +EndSplineSet +EndChar + +StartChar: quoteright +Encoding: 8217 8217 200 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 199 8216 N -1 -0 0 -1 229 1162 2 +EndChar + +StartChar: quotesinglbase +Encoding: 8218 8218 201 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +Refer: 199 8216 N -1 -0 0 -1 214 594 2 +EndChar + +StartChar: quotedblleft +Encoding: 8220 8220 202 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 199 8216 N 1 0 0 1 0 0 2 +Refer: 199 8216 N 1 0 0 1 165 0 2 +EndChar + +StartChar: quotedblright +Encoding: 8221 8221 203 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 199 8216 N -1 0 -0 -1 230 1160 2 +Refer: 199 8216 N -1 0 -0 -1 395 1160 2 +EndChar + +StartChar: quotedblbase +Encoding: 8222 8222 204 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +Refer: 199 8216 N -1 0 -0 -1 380 592 2 +Refer: 199 8216 N -1 0 -0 -1 215 592 2 +EndChar + +StartChar: onedotenleader +Encoding: 8228 8228 205 +Width: 202 +Flags: HW +HStem: -14 113<27 94> +VStem: 9 105<6 81> +LayerCount: 2 +Fore +SplineSet +9 31 m 0 + 9 67 39 100 71 100 c 0 + 96 100 114 81 114 56 c 0 + 114 20 82 -14 50 -14 c 0 + 25 -14 9 6 9 31 c 0 +EndSplineSet +EndChar + +StartChar: ellipsis +Encoding: 8230 8230 206 +Width: 664 +Flags: HW +HStem: -14 113<27 94 259 326 488 556> +VStem: 9 105<6 81> 240 105<6 81> 470 106<7 82> +LayerCount: 2 +Fore +SplineSet +470 31 m 0 + 470 68 501 100 533 100 c 0 + 558 100 576 81 576 56 c 0 + 576 20 543 -14 511 -14 c 0 + 486 -14 470 6 470 31 c 0 +240 31 m 0 + 240 67 271 100 303 100 c 0 + 328 100 346 81 346 56 c 0 + 346 20 313 -14 281 -14 c 0 + 256 -14 240 6 240 31 c 0 +9 31 m 0 + 9 67 39 100 71 100 c 0 + 96 100 114 81 114 56 c 0 + 114 20 82 -14 50 -14 c 0 + 25 -14 9 6 9 31 c 0 +EndSplineSet +EndChar + +StartChar: perthousand +Encoding: 8240 8240 207 +Width: 973 +Flags: W +HStem: -7 24<445 513 771 838> 282 23<432 500 758 826> 317 24<163 230> 606 23<150 217> +VStem: 43 62<398 558> 269 64<389 557> 324 62<74 232> 550 65<68 233> 651 62<74 233> 877 64<65 233> +LayerCount: 2 +Fore +SplineSet +794 282 m 0xf9c0 + 736 282 713 218 713 160 c 0 + 713 93 755 18 804 18 c 0 + 861 18 877 84 877 141 c 0 + 877 206 846 282 794 282 c 0xf9c0 +798 306 m 0 + 883 306 941 233 941 148 c 0 + 941 70 888 -7 798 -7 c 0 + 717 -7 651 62 651 148 c 0 + 651 235 711 306 798 306 c 0 +186 606 m 0 + 128 606 104 542 104 484 c 0 + 104 417 146 342 195 342 c 0 + 252 342 269 408 269 465 c 0xfdc0 + 269 530 238 606 186 606 c 0 +189 630 m 0 + 274 630 333 558 333 473 c 0 + 333 395 279 317 189 317 c 0 + 108 317 43 387 43 473 c 0 + 43 560 102 630 189 630 c 0 +468 282 m 0 + 410 282 387 218 387 160 c 0xfbc0 + 387 93 429 18 478 18 c 0 + 535 18 550 84 550 141 c 0 + 550 206 520 282 468 282 c 0 +472 306 m 0 + 557 306 615 233 615 148 c 0 + 615 70 561 -7 471 -7 c 0 + 390 -7 324 62 324 148 c 0 + 324 235 385 306 472 306 c 0 +588 609 m 1 + 116 0 l 2 + 112 -5 96 -12 84 -12 c 0 + 70 -12 67 -3 66 -1 c 1 + 537 609 l 2 + 542 615 551 621 557 621 c 0 + 585 621 579 618 588 609 c 1 +EndSplineSet +EndChar + +StartChar: minute +Encoding: 8242 8242 208 +Width: 156 +Flags: W +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> +LayerCount: 2 +Fore +SplineSet +108 683 m 0xa0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0 + 62 662 89 683 108 683 c 0xa0 +EndSplineSet +EndChar + +StartChar: second +Encoding: 8243 8243 209 +Width: 265 +Flags: W +HStem: 482 200 +VStem: 48 85<576 664> 60 73<576 673> 157 85<576 663> 170 72<576 673> +LayerCount: 2 +Fore +SplineSet +219 683 m 0x88 + 229 683 242 679 242 659 c 0x90 + 242 613 209 546 181 490 c 0 + 178 484 174 482 170 482 c 0x88 + 164 482 157 487 157 494 c 0x90 + 157 497 162 597 170 650 c 0 + 172 662 200 683 219 683 c 0x88 +108 683 m 0 + 118 683 133 679 133 659 c 0xc0 + 133 613 98 546 70 490 c 0 + 67 484 64 482 60 482 c 0xa0 + 54 482 48 487 48 494 c 0xc0 + 48 497 52 597 60 650 c 0xa0 + 62 662 89 683 108 683 c 0 +EndSplineSet +EndChar + +StartChar: uni2038 +Encoding: 8248 8248 210 +Width: 366 +Flags: HW +HStem: -35 143 +VStem: 73 214 +LayerCount: 2 +Fore +SplineSet +273 -35 m 0 + 261 -35 216 11 191 46 c 1 + 155 10 91 -35 79 -35 c 0 + 74 -35 73 -27 73 -22 c 0 + 73 -7 135 17 190 98 c 1 + 194 106 196 107 201 107 c 0 + 219 107 207 93 240 40 c 0 + 252 20 286 -15 287 -18 c 1 + 286 -22 279 -35 273 -35 c 0 +EndSplineSet +EndChar + +StartChar: guilsinglleft +Encoding: 8249 8249 211 +Width: 301 +Flags: W +VStem: 29 231 +LayerCount: 2 +Fore +SplineSet +238 413 m 1 + 260 407 261 399 261 395 c 0 + 261 387 257 383 201 330 c 0 + 179 309 134 260 115 241 c 1 + 200 153 l 1 + 252 101 260 100 260 89 c 0 + 260 77 243 74 237 71 c 1 + 236 73 180 129 36 222 c 1 + 31 224 29 229 29 235 c 0 + 29 245 30 254 37 262 c 1 + 165 339 237 412 238 413 c 1 +EndSplineSet +EndChar + +StartChar: guilsinglright +Encoding: 8250 8250 212 +Width: 300 +Flags: W +VStem: 43 230 +LayerCount: 2 +Fore +SplineSet +65 71 m 1 + 43 77 43 85 43 89 c 0 + 43 100 53 104 102 153 c 1 + 187 241 l 1 + 168 260 123 309 101 330 c 0 + 43 386 42 387 42 395 c 0 + 42 407 58 410 64 413 c 1 + 66 411 138 339 265 262 c 1 + 272 254 273 245 273 235 c 0 + 273 229 271 224 266 222 c 1 + 142 142 77 84 65 71 c 1 +EndSplineSet +EndChar + +StartChar: uni203E +Encoding: 8254 8254 213 +Width: 802 +Flags: HW +HStem: 722 61<228 769> +LayerCount: 2 +Fore +SplineSet +770 782 m 2 + 774 782 775 777 775 770 c 0 + 775 756 766 729 754 722 c 1 + 228 722 l 2 + 224 722 222 727 222 734 c 0 + 222 748 231 775 243 782 c 1 + 770 782 l 2 +EndSplineSet +EndChar + +StartChar: Euro +Encoding: 8364 8364 214 +Width: 603 +Flags: HW +HStem: -8 33<277 419> 236 38<30 371> 332 38<45 386> 586 33<340 475> +VStem: 79 89<148 325> 541 30<451 521> +LayerCount: 2 +Fore +SplineSet +412 586 m 0 + 284 586 166 464 167 262 c 0 + 167 151 225 26 348 26 c 0 + 395 26 433 46 463 73 c 0 + 493 100 514 132 527 160 c 1 + 538 160 551 153 551 153 c 1 + 548 134 502 37 489 26 c 1 + 442 0 396 -8 325 -8 c 0 + 192 -8 79 109 79 246 c 0 + 79 480 265 622 436 618 c 0 + 484 617 538 605 580 594 c 1 + 578 561 573 486 571 458 c 0 + 571 451 564 451 561 451 c 0 + 558 451 545 451 541 458 c 1 + 545 532 481 586 412 586 c 0 +46 332 m 2 + 43 332 42 336 42 340 c 0 + 42 347 48 364 55 370 c 1 + 385 370 l 2 + 387 370 388 366 388 362 c 0 + 388 357 385 341 376 332 c 1 + 46 332 l 2 +31 236 m 2 + 28 236 27 240 27 244 c 0 + 27 251 33 268 40 274 c 1 + 370 274 l 2 + 372 274 373 271 373 267 c 0 + 373 262 370 245 361 236 c 1 + 31 236 l 2 +EndSplineSet +EndChar + +StartChar: minus +Encoding: 8722 8722 215 +Width: 553 +Flags: HW +HStem: 213 55<60 484> +LayerCount: 2 +Fore +SplineSet +52 223 m 1 + 52 223 65 268 74 268 c 2 + 489 268 l 2 + 492 268 494 268 494 263 c 0 + 494 259 485 237 477 219 c 0 + 474 213 470 213 470 213 c 1 + 56 213 l 1 + 56 213 50 213 52 223 c 1 +EndSplineSet +EndChar + +StartChar: uni2213 +Encoding: 8723 8723 216 +Width: 583 +Flags: W +HStem: 216 56<68 267 321 518> 510 56<65 516> +VStem: 267 55<14 216 271 469> +LayerCount: 2 +Fore +SplineSet +513 565 m 1 + 513 565 523 566 521 554 c 0 + 514 507 508 513 505 510 c 1 + 67 510 l 1 + 67 510 60 509 62 523 c 0 + 67 558 69 565 75 565 c 2 + 513 565 l 1 +321 213 m 2 + 321 25 l 1 + 321 25 321 16 277 10 c 0 + 274 10 273 9 271 9 c 0 + 264 9 267 13 267 17 c 2 + 267 211 l 2 + 267 213 266 216 261 216 c 2 + 66 216 l 1 + 66 216 61 216 61 226 c 0 + 61 230 61 243 68 266 c 0 + 70 272 75 271 75 271 c 1 + 262 271 l 2 + 265 271 267 274 267 276 c 2 + 267 462 l 1 + 267 462 265 467 271 469 c 0 + 294 476 308 477 312 477 c 0 + 322 477 321 471 321 471 c 1 + 321 275 l 2 + 321 272 322 271 325 271 c 2 + 521 271 l 2 + 525 271 528 273 528 266 c 0 + 528 257 525 243 519 222 c 0 + 517 216 512 216 512 216 c 1 + 325 216 l 2 + 322 216 321 215 321 213 c 2 +EndSplineSet +EndChar + +StartChar: radical +Encoding: 8730 8730 217 +Width: 451 +Flags: HW +LayerCount: 2 +Fore +SplineSet +-19 164 m 1 + -30 170 -34 177 -34 181 c 0 + -34 189 -16 198 -10 201 c 0 + 26 221 108 272 123 284 c 0 + 132 291 145 291 146 283 c 0 + 147 251 155 221 156 216 c 2 + 215 -30 l 1 + 500 772 l 1 + 533 772 l 1 + 204 -149 l 1 + 187 -167 177 -169 171 -169 c 0 + 167 -169 162 -168 162 -164 c 2 + 75 215 l 1 + -19 164 l 1 +EndSplineSet +EndChar + +StartChar: gravecomb +Encoding: 768 768 218 +Width: 0 +VWidth: 944 +GlyphClass: 4 +Flags: HW +HStem: 479 128 +VStem: -347 167 +LayerCount: 2 +Fore +SplineSet +-188 479 m 0 + -203 479 -347 558 -347 577 c 0 + -347 599 -322 606 -309 606 c 0 + -294 606 -282 604 -272 597 c 0 + -259 588 -180 496 -180 488 c 0 + -180 485 -185 479 -188 479 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb +Encoding: 769 769 219 +Width: 0 +VWidth: 944 +GlyphClass: 4 +Flags: HW +HStem: 479 128 +VStem: -325 167 +LayerCount: 2 +Fore +SplineSet +-317 479 m 0 + -320 479 -325 485 -325 488 c 0 + -325 496 -245 588 -232 597 c 0 + -222 604 -211 606 -196 606 c 0 + -183 606 -158 599 -158 577 c 0 + -158 558 -302 479 -317 479 c 0 +EndSplineSet +EndChar + +StartChar: uni0302 +Encoding: 770 770 220 +Width: 0 +VWidth: 937 +GlyphClass: 4 +Flags: HW +HStem: 479 132 +VStem: -359 200 +LayerCount: 2 +Fore +SplineSet +-234 610 m 0 + -230 610 -227 607 -225 603 c 0 + -201 557 -187 533 -159 489 c 1 + -160 483 -167 479 -172 479 c 1 + -202 502 -248 541 -248 541 c 25 + -248 541 -312 503 -350 479 c 1 + -355 479 -360 483 -359 489 c 1 + -313 533 -289 557 -246 603 c 0 + -242 607 -238 610 -234 610 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb +Encoding: 771 771 221 +Width: 0 +VWidth: 917 +GlyphClass: 4 +Flags: HW +HStem: 479 41<-231 -137> 514 41<-353 -255> +VStem: -387 284 +LayerCount: 2 +Fore +SplineSet +-290 555 m 0x60 + -268 555 -251 550 -235 542 c 0 + -215 533 -200 520 -172 520 c 0xa0 + -141 520 -115 548 -108 555 c 1x60 + -105 554 -101 553 -102 546 c 0 + -104 532 -114 518 -123 510 c 0 + -148 487 -173 479 -199 479 c 0xa0 + -221 479 -236 484 -253 492 c 0 + -272 501 -290 514 -318 514 c 0x60 + -349 514 -375 486 -382 479 c 1xa0 + -385 480 -388 481 -387 488 c 0 + -385 502 -376 515 -367 523 c 0 + -342 546 -316 555 -290 555 c 0x60 +EndSplineSet +EndChar + +StartChar: dotlessi +Encoding: 305 305 222 +Width: 255 +Flags: HW +HStem: -6 54<75 137> 371 54<95 158> +VStem: 52 73<45 124> 112 73<295 374> +LayerCount: 2 +Fore +SplineSet +108 315 m 2xe0 + 109 321 112 342 112 347 c 0 + 112 356 113 371 103 371 c 0 + 82 371 37 317 34 314 c 1 + 31 314 24 327 24 333 c 1 + 35 352 101 425 147 425 c 0 + 168 425 186 403 186 374 c 0xd0 + 186 366 183 343 179 322 c 2 + 129 104 l 2 + 127 94 125 77 125 72 c 0 + 125 63 125 48 135 48 c 0 + 156 48 200 101 203 104 c 1 + 206 104 213 92 213 86 c 1 + 202 67 131 -6 85 -6 c 0 + 64 -6 52 16 52 45 c 0 + 52 53 55 76 59 97 c 2 + 108 315 l 2xe0 +EndSplineSet +EndChar + +StartChar: f_f +Encoding: 65546 -1 223 +Width: 541 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 58<92 192> 353 45<46 101 185 351 435 551> 630 37<289 397> 646 37<519 615> +LayerCount: 2 +Fore +SplineSet +362 667 m 0xb0 + 415 667 456 651 470 638 c 1 + 493 660 550 683 589 683 c 0 + 642 683 661 664 669 649 c 1 + 669 618 662 586 634 586 c 0 + 602 586 591 646 559 646 c 0 + 474 646 437 427 433 403 c 0 + 433 401 l 0 + 433 399 434 397 436 397 c 2 + 548 397 l 2 + 552 397 553 391 553 386 c 27 + 553 372 547 361 542 353 c 1 + 428 353 l 2 + 425 353 423 353 422 345 c 2 + 380 104 l 0 + 333 -136 185 -219 122 -219 c 0x68 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xb0 +149 -161 m 0 + 224 -161 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 + 78 -133 107 -161 149 -161 c 0 +342 630 m 0x30 + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x30 +EndSplineSet +LCarets2: 1 201 +EndChar + +StartChar: f_i +Encoding: 65547 -1 224 +Width: 507 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> -6 54<317 379> 353 45<46 102 185 344> 357 51<199 344> 646 37<271 344> +VStem: 294 73<21 162> +LayerCount: 2 +Fore +SplineSet +421 322 m 2xdc + 371 104 l 2 + 369 94 367 77 367 72 c 0 + 367 63 367 48 377 48 c 0 + 398 48 442 101 445 104 c 1 + 448 104 455 92 455 86 c 1 + 444 67 373 -6 327 -6 c 0 + 306 -6 294 16 294 45 c 0 + 294 53 296 76 301 97 c 2 + 344 286 l 2 + 345 293 347 308 347 313 c 0 + 347 334 340 357 321 357 c 8xdc + 265 357 178 353 178 353 c 2 + 175 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0 + 392 683 408 670 423 656 c 0 + 439 641 448 629 454 615 c 1 + 454 588 440 553 410 553 c 27 + 389 553 379 570 368 589 c 0 + 354 613 340 646 304 646 c 0 + 269 646 218 577 189 439 c 0 + 187 427 185 416 183 403 c 0 + 183 401 l 0 + 183 399 184 397 186 397 c 0xec + 209 397 305 400 323 402 c 0 + 344 404 413 408 415 408 c 3 + 419 408 429 401 429 392 c 3 + 429 387 426 343 421 322 c 2xdc +EndSplineSet +LCarets2: 1 189 +EndChar + +StartChar: f_f_i +Encoding: 65548 -1 225 +Width: 762 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> -6 54<572 634> 353 45<46 101 185 351 435 599> 630 37<289 397> 646 37<520 598> +VStem: 549 73<21 162> +LayerCount: 2 +Fore +SplineSet +576 357 m 0x36 + 428 353 l 2 + 425 353 423 353 422 345 c 2 + 380 104 l 0 + 333 -136 185 -219 122 -219 c 0x76 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xba + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0 + 647 683 663 670 678 656 c 0 + 694 641 703 629 709 615 c 1 + 709 588 695 553 665 553 c 27 + 644 553 634 570 623 589 c 0 + 609 613 595 646 559 646 c 0 + 475 646 437 427 433 403 c 0 + 433 401 l 0 + 433 399 434 397 436 397 c 2 + 578 402 l 0 + 599 404 668 408 670 408 c 3 + 674 408 684 401 684 392 c 3 + 684 387 681 343 676 322 c 2 + 626 104 l 2 + 624 94 622 77 622 72 c 0 + 622 63 622 48 632 48 c 0 + 653 48 697 101 700 104 c 1 + 703 104 710 92 710 86 c 1 + 699 67 628 -6 582 -6 c 0 + 561 -6 549 16 549 45 c 0 + 549 53 551 76 556 97 c 2 + 599 286 l 2 + 600 293 602 308 602 313 c 0 + 602 334 595 357 576 357 c 0x36 +74 -113 m 0 + 78 -133 91 -173 133 -173 c 0 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 +342 630 m 0x3a + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x3a +EndSplineSet +LCarets2: 2 195 448 +EndChar + +StartChar: f_l +Encoding: 65549 -1 226 +Width: 517 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> -6 54<336 399> 353 45<46 102 185 301> 646 37<275 382> 658 20G<503 510> +VStem: 313 73<21 172> +LayerCount: 2 +Fore +SplineSet +483 577 m 2xec + 391 104 l 2 + 390 100 387 77 387 72 c 0 + 387 63 386 48 396 48 c 0 + 417 48 462 101 465 104 c 1 + 468 104 475 92 475 86 c 1 + 464 67 393 -6 347 -6 c 0 + 326 -6 313 16 313 45 c 0 + 313 53 316 76 320 97 c 2 + 408 546 l 2 + 409 550 412 571 412 575 c 3 + 412 617 367 646 321 646 c 0 + 257 646 210 565 183 403 c 0 + 183 401 l 0 + 183 399 185 397 186 397 c 2 + 298 397 l 2 + 302 397 303 391 303 386 c 27 + 303 372 297 361 292 353 c 1 + 178 353 l 2 + 176 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0xf4 + 392 683 420 662 432 662 c 0 + 453 662 498 678 508 678 c 1 + 513 678 513 666 513 662 c 9 + 513 662 494 631 483 577 c 2xec +EndSplineSet +LCarets2: 1 199 +EndChar + +StartChar: f_f_l +Encoding: 65550 -1 227 +Width: 772 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> -6 54<591 653> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<758 765> +VStem: 568 73<21 172> +LayerCount: 2 +Fore +SplineSet +667 575 m 3x33 + 667 617 622 646 576 646 c 0 + 512 646 465 565 438 403 c 0 + 438 401 l 0 + 438 399 439 397 440 397 c 2 + 553 397 l 2 + 557 397 558 391 558 386 c 27 + 558 372 552 361 547 353 c 1 + 433 353 l 2 + 431 353 429 353 427 345 c 2 + 380 104 l 2 + 334 -136 185 -219 122 -219 c 0x75 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xb9 + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0x35 + 647 683 675 662 687 662 c 0 + 708 662 753 678 763 678 c 1 + 768 678 768 666 768 662 c 9 + 768 662 749 631 738 577 c 2 + 646 104 l 2 + 645 100 642 77 642 72 c 0 + 642 63 641 48 651 48 c 0 + 672 48 717 101 720 104 c 1 + 723 104 729 92 729 86 c 1 + 718 67 648 -6 602 -6 c 0 + 581 -6 568 16 568 45 c 0 + 568 53 571 76 575 97 c 2 + 663 546 l 2 + 664 550 667 571 667 575 c 3x33 +133 -173 m 0 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 + 78 -133 91 -173 133 -173 c 0 +342 630 m 0x39 + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x39 +EndSplineSet +LCarets2: 2 191 438 +EndChar + +StartChar: f_b +Encoding: 65551 -1 228 +Width: 706 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> -6 32<405 476> 353 45<46 102 185 301> 371 54<533 613> 646 37<275 381> 658 20G<498 505> +VStem: 587 72<198 366> +LayerCount: 2 +Fore +SplineSet +549 371 m 0xd2 + 507 371 417 259 396 152 c 0 + 380 73 394 26 440 26 c 0 + 522 26 587 216 587 295 c 0 + 587 331 583 371 549 371 c 0xd2 +405 546 m 2 + 406 551 410 571 410 575 c 0 + 410 617 367 646 321 646 c 0 + 257 646 210 565 183 403 c 0 + 183 401 l 0 + 183 399 185 397 186 397 c 2 + 298 397 l 2 + 302 397 303 391 303 386 c 27 + 303 372 297 361 292 353 c 1 + 178 353 l 2 + 176 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0xea + 392 683 420 662 432 662 c 0 + 453 662 493 678 503 678 c 1xc6 + 508 678 508 666 508 662 c 9 + 508 662 491 630 480 577 c 2 + 420 278 l 1 + 488 392 560 425 591 425 c 0 + 636 425 659 381 659 314 c 0 + 659 138 517 -6 413 -6 c 0 + 358 -6 322 36 322 108 c 0 + 322 118 326 142 328 154 c 2 + 405 546 l 2 +EndSplineSet +LCarets2: 1 207 +EndChar + +StartChar: f_f_b +Encoding: 65552 -1 229 +Width: 961 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> -6 32<659 730> 353 45<46 101 185 351 440 556> 371 54<787 867> 630 37<289 397> 646 37<529 636> 658 20G<753 760> +VStem: 841 72<198 366> +LayerCount: 2 +Fore +SplineSet +803 371 m 0x2880 + 761 371 670 259 649 152 c 0 + 633 73 648 26 694 26 c 0 + 776 26 841 216 841 295 c 0 + 841 331 837 371 803 371 c 0x2880 +665 575 m 0 + 664 617 622 646 576 646 c 0 + 512 646 465 565 438 403 c 0 + 438 401 l 0 + 438 399 439 397 440 397 c 2 + 553 397 l 2 + 557 397 558 391 558 386 c 27 + 558 372 552 361 547 353 c 1 + 433 353 l 2 + 431 353 429 353 427 345 c 2 + 380 104 l 2 + 334 -136 185 -219 122 -219 c 0x7280 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xb480 + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0x2280 + 647 683 675 662 687 662 c 0 + 708 662 748 678 758 678 c 1x2180 + 763 678 763 666 763 662 c 9 + 763 662 745 631 734 577 c 2 + 674 278 l 1 + 742 392 814 425 845 425 c 0 + 890 425 913 381 913 314 c 0 + 913 138 771 -6 667 -6 c 0 + 612 -6 576 36 576 108 c 0 + 576 118 580 142 582 154 c 2 + 659 546 l 2 + 660 551 664 571 665 575 c 0 +133 -173 m 0 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 + 78 -133 91 -173 133 -173 c 0 +342 630 m 0x3480 + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x3480 +EndSplineSet +LCarets2: 2 452 208 +EndChar + +StartChar: f_k +Encoding: 65553 -1 230 +Width: 725 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> -4 54<567 625> 353 45<46 102 185 301> 379 46<529 617> 646 37<275 382> 658 20G<503 510> +VStem: 595 76<293 378> +LayerCount: 2 +Fore +SplineSet +562 379 m 0xd2 + 505 379 427 285 415 225 c 1 + 480 225 595 265 595 346 c 0 + 595 364 589 379 562 379 c 0xd2 +408 546 m 2 + 409 551 412 571 412 575 c 0 + 412 617 367 646 321 646 c 0 + 257 646 210 565 183 403 c 0 + 183 401 l 0 + 183 399 185 397 186 397 c 2 + 298 397 l 2 + 302 397 303 391 303 386 c 27 + 303 372 297 361 292 353 c 1 + 178 353 l 2 + 176 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0xea + 392 683 420 662 432 662 c 0 + 453 662 498 678 508 678 c 1xc6 + 513 678 513 666 513 662 c 9 + 513 662 494 631 483 577 c 2 + 433 314 l 1 + 438 318 514 425 598 425 c 0 + 636 425 671 396 671 358 c 0 + 671 269 573 225 465 206 c 1 + 551 77 578 50 618 50 c 0 + 635 50 674 90 685 104 c 1 + 688 104 694 91 694 86 c 1 + 686 72 618 -4 575 -4 c 0 + 498 -4 449 117 407 187 c 1 + 371 0 l 1 + 360 -3 348 -5 337 -5 c 0 + 326 -5 314 -3 302 0 c 1 + 408 546 l 2 +EndSplineSet +LCarets2: 1 204 +EndChar + +StartChar: f_f_k +Encoding: 65554 -1 231 +Width: 980 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> -4 54<822 880> 353 45<46 101 185 351 440 556> 379 46<784 872> 630 37<289 397> 646 37<529 637> 658 20G<758 765> +VStem: 850 76<293 378> +LayerCount: 2 +Fore +SplineSet +817 379 m 0x2880 + 760 379 682 285 670 225 c 1 + 735 225 850 265 850 346 c 0 + 850 364 844 379 817 379 c 0x2880 +687 662 m 0 + 708 662 753 678 763 678 c 1 + 768 678 768 666 768 662 c 9 + 768 662 749 631 738 577 c 2 + 688 314 l 1 + 693 318 769 425 853 425 c 0x2980 + 891 425 926 396 926 358 c 0 + 926 269 828 225 720 206 c 1 + 806 77 833 50 873 50 c 0 + 890 50 928 90 939 104 c 1 + 942 104 949 91 949 86 c 1 + 941 72 873 -4 830 -4 c 0 + 753 -4 704 117 662 187 c 1 + 626 0 l 1 + 615 -3 603 -5 592 -5 c 0 + 581 -5 569 -3 557 0 c 1 + 663 546 l 2 + 664 551 667 571 667 575 c 0 + 667 617 622 646 576 646 c 0 + 512 646 465 565 438 403 c 0 + 438 401 l 0 + 438 399 439 397 440 397 c 2 + 553 397 l 2 + 557 397 558 391 558 386 c 27 + 558 372 552 361 547 353 c 1 + 433 353 l 2 + 431 353 429 353 427 345 c 2 + 380 104 l 2 + 334 -136 185 -219 122 -219 c 0x7280 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xb480 + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0x2280 + 647 683 675 662 687 662 c 0 +133 -173 m 0x7080 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 + 78 -133 91 -173 133 -173 c 0x7080 +342 630 m 0x3480 + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x3480 +EndSplineSet +LCarets2: 2 453 201 +EndChar + +StartChar: f_h +Encoding: 65555 -1 232 +Width: 734 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> -6 54<563 626> 353 72<561 618> 353 45<46 102 185 301> 646 37<275 382> 658 20G<504 511> +VStem: 541 73<21 167> 589 75<217 379> +LayerCount: 2 +Fore +SplineSet +408 546 m 2xe5 + 409 551 412 571 412 575 c 3 + 412 617 367 646 321 646 c 0 + 257 646 210 565 183 403 c 0 + 183 401 l 0 + 183 399 185 397 186 397 c 2 + 298 397 l 2 + 302 397 303 391 303 386 c 27 + 303 372 297 361 292 353 c 1 + 178 353 l 2 + 176 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0xd9 + 392 683 420 662 432 662 c 0 + 453 662 499 678 509 678 c 1 + 514 678 514 666 514 662 c 9 + 514 662 494 631 483 577 c 2 + 434 322 l 1 + 416 232 l 1 + 429 256 546 425 610 425 c 0 + 648 425 664 397 664 360 c 0xe5 + 664 327 658 291 650 254 c 2 + 618 104 l 2 + 617 100 614 77 614 72 c 0 + 614 63 614 48 624 48 c 0 + 645 48 689 101 692 104 c 1 + 695 104 702 92 702 86 c 1 + 691 67 620 -6 574 -6 c 0 + 553 -6 541 16 541 45 c 0xe6 + 541 53 543 76 548 97 c 2 + 582 258 l 2 + 584 267 589 300 589 311 c 0 + 589 333 587 353 570 353 c 0 + 535 353 418 230 396 116 c 0 + 390 86 381 45 371 0 c 1 + 361 -3 346 -4 336 -4 c 0 + 326 -4 315 -3 303 0 c 1 + 408 546 l 2xe5 +EndSplineSet +LCarets2: 1 206 +EndChar + +StartChar: f_f_h +Encoding: 65556 -1 233 +Width: 989 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> -6 54<818 881> 353 72<816 873> 353 45<46 101 185 351 440 556> 630 37<289 397> 646 37<529 637> 658 20G<759 766> +VStem: 796 73<21 167> 844 75<217 379> +LayerCount: 2 +Fore +SplineSet +687 662 m 0x2240 + 708 662 754 678 764 678 c 1 + 769 678 769 666 769 662 c 9 + 769 662 749 631 738 577 c 2 + 688 322 l 1 + 671 232 l 1 + 684 256 801 425 865 425 c 0 + 903 425 919 397 919 360 c 0x3140 + 919 327 913 291 905 254 c 2 + 873 104 l 2 + 872 100 869 77 869 72 c 0 + 869 63 869 48 879 48 c 0 + 900 48 944 101 947 104 c 1 + 950 104 957 92 957 86 c 1 + 946 67 875 -6 829 -6 c 0 + 808 -6 796 16 796 45 c 0x3180 + 796 53 798 76 803 97 c 2 + 837 258 l 2 + 839 267 844 300 844 311 c 0 + 844 333 842 353 825 353 c 0x3140 + 790 353 672 230 650 116 c 0 + 644 86 636 45 626 0 c 1 + 616 -3 601 -4 591 -4 c 0 + 581 -4 570 -3 558 0 c 1 + 663 546 l 2 + 664 551 667 571 667 575 c 3 + 667 617 622 646 576 646 c 0 + 512 646 465 565 438 403 c 0 + 438 401 l 0 + 438 399 439 397 440 397 c 2 + 553 397 l 2 + 557 397 558 391 558 386 c 27 + 558 372 552 361 547 353 c 1 + 433 353 l 2 + 431 353 429 353 427 345 c 2 + 380 104 l 2 + 334 -136 185 -219 122 -219 c 0x6a40 + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xac40 + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0 + 647 683 675 662 687 662 c 0x2240 +133 -173 m 0x68 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 + 78 -133 91 -173 133 -173 c 0x68 +342 630 m 0x2c + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x2c +EndSplineSet +LCarets2: 2 457 204 +EndChar + +StartChar: f_j +Encoding: 65557 -1 234 +Width: 471 +VWidth: 0 +Flags: HW +HStem: -226 38<-118 -27> 353 45<46 102 185 344> 357 51<199 344> 646 37<271 344> +VStem: 347 82<257 399> +LayerCount: 2 +Fore +SplineSet +420 322 m 0xb8 + 366 44 l 2 + 359 9 339 -65 297 -121 c 0 + 256 -175 195 -215 161 -229 c 1 + 157 -226 152 -217 152 -210 c 1 + 217 -173 270 -87 291 21 c 2 + 344 286 l 2 + 346 294 347 308 347 313 c 0 + 347 334 340 357 321 357 c 8xb8 + 265 357 178 353 178 353 c 2 + 175 353 173 353 172 345 c 2 + 118 53 l 2 + 85 -138 -8 -226 -93 -226 c 0 + -143 -226 -166 -203 -172 -186 c 1 + -173 -157 -155 -128 -132 -128 c 0 + -106 -128 -101 -188 -60 -188 c 0 + -6 -188 35 -41 45 15 c 2 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 142 568 241 683 339 683 c 0 + 392 683 408 670 423 656 c 0 + 439 641 448 629 454 615 c 1 + 454 588 440 553 410 553 c 27 + 389 553 379 570 368 589 c 0 + 354 613 340 646 304 646 c 0 + 266 646 210 565 183 403 c 0 + 183 401 l 0 + 183 399 184 397 186 397 c 0xd8 + 209 397 305 400 323 402 c 0 + 344 404 413 408 415 408 c 3 + 419 408 429 401 429 392 c 3 + 429 387 423 343 420 322 c 0xb8 +EndSplineSet +LCarets2: 1 193 +EndChar + +StartChar: f_f_j +Encoding: 65558 -1 235 +Width: 725 +VWidth: 0 +Flags: HW +HStem: -228 40<-94 -28> -219 46<90 189> 353 45<46 101 185 351 435 599> 630 37<289 397> 646 37<520 598> +VStem: 602 82<257 399> +LayerCount: 2 +Fore +SplineSet +670 408 m 3x2c + 674 408 684 401 684 392 c 3 + 684 387 678 343 675 322 c 0 + 621 44 l 2 + 614 9 594 -65 552 -121 c 0 + 511 -175 450 -215 416 -229 c 1 + 412 -226 407 -217 407 -210 c 1 + 472 -173 525 -87 546 21 c 2 + 599 286 l 2 + 601 294 602 308 602 313 c 0 + 602 334 595 357 576 357 c 0 + 567 357 428 353 428 353 c 0 + 425 353 423 353 422 345 c 2 + 380 104 l 0 + 333 -136 185 -219 122 -219 c 0x6c + 69 -219 38 -185 28 -171 c 1 + -6 -210 -52 -228 -91 -228 c 0 + -144 -228 -164 -202 -172 -187 c 1 + -172 -163 -161 -128 -133 -128 c 0 + -101 -128 -104 -188 -62 -188 c 0 + -18 -188 32 -72 43 -10 c 0 + 47 11 48 21 52 45 c 0 + 104 346 l 1 + 104 348 l 2 + 104 351 103 353 101 353 c 2 + 37 353 l 2 + 36 353 35 353 35 355 c 0 + 35 365 60 397 82 397 c 2 + 110 397 l 2 + 113 397 115 402 116 406 c 0 + 147 566 270 667 362 667 c 0xb4 + 415 667 456 651 470 638 c 1 + 493 660 556 683 594 683 c 0 + 647 683 663 670 678 656 c 0 + 694 641 703 629 709 615 c 1 + 709 588 695 553 665 553 c 27 + 644 553 634 570 623 589 c 0 + 609 613 595 646 559 646 c 0 + 475 646 437 427 433 403 c 0 + 433 401 l 0 + 433 399 434 397 436 397 c 0 + 461 397 560 400 578 402 c 0 + 599 404 668 408 670 408 c 3x2c +74 -113 m 0 + 78 -133 91 -173 133 -173 c 0 + 190 -173 271 -99 304 59 c 0 + 354 346 l 1 + 354 348 l 2 + 354 351 353 353 351 353 c 1 + 178 353 l 2 + 175 353 173 353 172 345 c 2 + 118 42 l 0 + 106 -19 95 -58 74 -101 c 0 + 73 -102 73 -103 73 -105 c 24 + 73 -108 74 -112 74 -113 c 0 +342 630 m 0x34 + 267 630 210 547 189 443 c 0 + 185 422 187 427 183 403 c 0 + 183 401 l 0 + 183 399 184 397 187 397 c 2 + 360 397 l 2 + 363 397 365 402 366 406 c 0 + 378 467 402 538 420 570 c 0 + 421 571 421 573 421 575 c 24 + 421 578 420 582 420 583 c 0 + 416 603 384 630 342 630 c 0x34 +EndSplineSet +LCarets2: 2 451 201 +EndChar + +StartChar: Amacron +Encoding: 256 256 236 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 270 -1 N 1 0 0 1 102 176 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Scaron +Encoding: 352 352 237 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 73 0 2 +Refer: 50 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni02BB +Encoding: 699 699 238 +Width: 175 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 251 786 N 1 0 0 1 -79 0 2 +EndChar + +StartChar: uni02BC +Encoding: 700 700 239 +Width: 169 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 -95 0 2 +EndChar + +StartChar: caron +Encoding: 711 711 240 +Width: 239 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 250 780 N 1 0 0 1 358 0 2 +EndChar + +StartChar: breve +Encoding: 728 728 241 +Width: 237 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 347 0 2 +EndChar + +StartChar: dotaccent +Encoding: 729 729 242 +Width: 130 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 312 0 2 +EndChar + +StartChar: ogonek +Encoding: 731 731 243 +Width: 448 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 256 808 S 1 0 0 1 352 0 2 +EndChar + +StartChar: hungarumlaut +Encoding: 733 733 244 +Width: 438 +VWidth: 55 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 1014 0 2 +Refer: 219 769 N 1 0 0 1 891 0 2 +EndChar + +StartChar: uni0304 +Encoding: 772 772 245 +Width: 0 +VWidth: 934 +GlyphClass: 4 +Flags: HW +HStem: 479 38<-359 -145> +VStem: -361 218<479 517> +LayerCount: 2 +Fore +SplineSet +-153 479 m 1 + -358 479 l 1 + -358 479 -361 481 -361 487 c 0 + -361 494 -354 517 -349 517 c 2 + -148 517 l 2 + -146 517 -144 514 -144 510 c 0 + -144 505 -145 488 -153 479 c 1 +EndSplineSet +EndChar + +StartChar: uni0306 +Encoding: 774 774 246 +Width: 0 +VWidth: 970 +GlyphClass: 4 +Flags: HW +HStem: 479 45<-287 -188> +VStem: -327 22<555 591> -146 17<577 593> +LayerCount: 2 +Fore +SplineSet +-129 586 m 1 + -129 583 -130 578 -131 576 c 0 + -150 524 -199 479 -248 479 c 0 + -297 479 -330 521 -327 577 c 0 + -327 579 -326 584 -326 585 c 1 + -323 590 -312 599 -305 594 c 1 + -304 552 -277 523 -239 523 c 0 + -201 523 -164 552 -146 594 c 1 + -142 598 -131 592 -129 586 c 1 +EndSplineSet +EndChar + +StartChar: uni0307 +Encoding: 775 775 247 +Width: 0 +VWidth: 995 +GlyphClass: 4 +Flags: HW +HStem: 479 98<-278 -213> +VStem: -291 91<491 563> +LayerCount: 2 +Fore +SplineSet +-291 527 m 0 + -286 554 -260 576 -235 576 c 0 + -210 576 -195 554 -200 527 c 0 + -205 500 -230 479 -255 479 c 0 + -280 479 -296 500 -291 527 c 0 +EndSplineSet +EndChar + +StartChar: uni0308 +Encoding: 776 776 248 +Width: 0 +VWidth: 1018 +GlyphClass: 4 +Flags: HW +HStem: 479 90<-362 -299 -196 -133> +VStem: -373 85<489 557> -207 85<489 556> +LayerCount: 2 +Fore +SplineSet +-154 568 m 27 + -132 568 -117 546 -122 522 c 24 + -127 498 -151 479 -173 479 c 27 + -195 479 -212 499 -207 523 c 24 + -202 547 -176 568 -154 568 c 27 +-321 568 m 27 + -299 568 -283 546 -288 522 c 24 + -293 498 -317 479 -339 479 c 27 + -361 479 -378 499 -373 523 c 24 + -368 547 -343 568 -321 568 c 27 +EndSplineSet +EndChar + +StartChar: uni030A +Encoding: 778 778 249 +Width: 0 +VWidth: 988 +GlyphClass: 4 +Flags: HW +HStem: 479 33<-286 -216> 620 33<-272 -200> +VStem: -323 159 +LayerCount: 2 +Fore +SplineSet +-293 566 m 0 + -299 536 -281 512 -254 512 c 0 + -227 512 -199 536 -193 566 c 0 + -187 596 -205 620 -232 620 c 0 + -259 620 -287 596 -293 566 c 0 +-323 566 m 0 + -313 614 -270 653 -226 653 c 0 + -182 653 -154 614 -164 566 c 0 + -174 518 -216 479 -260 479 c 0 + -304 479 -333 518 -323 566 c 0 +EndSplineSet +EndChar + +StartChar: uni030C +Encoding: 780 780 250 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 481 132 +VStem: -339 200 +LayerCount: 2 +Fore +SplineSet +-264 481 m 0 + -268 481 -270 485 -272 489 c 0 + -296 535 -311 559 -339 603 c 1 + -338 609 -331 613 -326 613 c 1 + -295 587 -250 551 -250 551 c 25 + -250 551 -185 589 -147 613 c 1 + -142 613 -138 609 -139 603 c 1 + -185 559 -209 535 -252 489 c 0 + -256 485 -260 481 -264 481 c 0 +EndSplineSet +EndChar + +StartChar: uni0312 +Encoding: 786 786 251 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 447 176 +VStem: 108 97<467 531> +LayerCount: 2 +Fore +SplineSet +205 501 m 0 + 205 470 159 447 121 447 c 1 + 108 457 108 479 108 487 c 0 + 108 541 168 603 200 621 c 1 + 201 622 204 623 208 623 c 0 + 220 623 226 619 226 616 c 0 + 226 610 184 597 176 557 c 0 + 170 528 205 526 205 501 c 0 +EndSplineSet +EndChar + +StartChar: uni0315 +Encoding: 789 789 252 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: 454 183 +VStem: 169 66<534 619> +LayerCount: 2 +Fore +SplineSet +158 578 m 0 + 158 615 191 637 230 637 c 1 + 234 630 235 621 235 609 c 0 + 235 599 234 589 232 576 c 0 + 223 532 165 469 141 455 c 0 + 140 454 136 454 134 454 c 0 + 129 454 124 461 124 466 c 0 + 124 470 169 492 169 538 c 0 + 169 549 158 560 158 578 c 0 +EndSplineSet +EndChar + +StartChar: dotbelowcomb +Encoding: 803 803 253 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -129 98<-285 -220> +VStem: -298 91<-116 -44> +LayerCount: 2 +Fore +SplineSet +-298 -80 m 0 + -293 -53 -268 -31 -243 -31 c 0 + -218 -31 -202 -53 -207 -80 c 0 + -212 -107 -238 -129 -263 -129 c 0 + -288 -129 -303 -107 -298 -80 c 0 +EndSplineSet +EndChar + +StartChar: uni0326 +Encoding: 806 806 254 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -188 176 +VStem: -295 97<-96 -32> +LayerCount: 2 +Fore +SplineSet +-295 -66 m 0 + -295 -35 -249 -13 -211 -13 c 1 + -198 -23 -198 -45 -198 -53 c 0 + -198 -107 -258 -169 -290 -187 c 1 + -291 -188 -294 -188 -298 -188 c 0 + -310 -188 -315 -185 -315 -182 c 0 + -315 -176 -274 -162 -266 -122 c 0 + -260 -93 -295 -91 -295 -66 c 0 +EndSplineSet +EndChar + +StartChar: uni0327 +Encoding: 807 807 255 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -148 23<-296 -237> -60 33<-241 -224> -23 20G<-244 -220> +VStem: -316 129 +LayerCount: 2 +Fore +SplineSet +-241 -26 m 1 + -218 -26 l 2 + -195 -26 -182 -49 -187 -74 c 0 + -196 -120 -240 -148 -287 -148 c 0 + -298 -148 -311 -144 -316 -140 c 1 + -316 -135 -317 -132 -316 -126 c 0 + -315 -119 -307 -112 -301 -112 c 0 + -290 -112 -285 -125 -270 -125 c 0 + -245 -125 -227 -110 -224 -93 c 0 + -219 -70 -234 -60 -246 -60 c 0 + -256 -60 -261 -62 -271 -66 c 0 + -273 -66 -281 -58 -278 -54 c 0 + -267 -39 -249 -18 -239 -4 c 1 + -220 -4 l 1 + -241 -26 l 1 +EndSplineSet +EndChar + +StartChar: uni0328 +Encoding: 808 808 256 +Width: 0 +GlyphClass: 4 +Flags: HW +HStem: -213 58<-221 -137> +LayerCount: 2 +Fore +SplineSet +-71 41 m 3 + -55 41 -34 36 -47 24 c 0 + -72 3 -180 -51 -192 -113 c 0 + -195 -128 -193 -155 -162 -155 c 3 + -116 -155 -87 -118 -81 -118 c 3 + -80 -118 -77 -123 -79 -131 c 0 + -80 -136 -83 -143 -87 -147 c 0 + -112 -175 -155 -213 -196 -213 c 0 + -247 -213 -250 -164 -245 -138 c 0 + -232 -74 -97 41 -71 41 c 3 +EndSplineSet +EndChar + +StartChar: abreve +Encoding: 259 259 257 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 519 6 2 +Refer: 64 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: cacute +Encoding: 263 263 258 +Width: 350 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 548 12 2 +Refer: 66 99 N 1 0 0 1 0 0 2 +EndChar + +StartChar: jcircumflex +Encoding: 309 309 259 +Width: 243 +Flags: HW +LayerCount: 2 +Fore +Refer: 394 567 N 1 0 0 1 3 0 2 +Refer: 220 770 N 1 0 0 1 437 4 2 +EndChar + +StartChar: uni0137 +Encoding: 311 311 260 +Width: 449 +Flags: HW +LayerCount: 2 +Fore +Refer: 74 107 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 425 -41 2 +EndChar + +StartChar: ldot +Encoding: 320 320 261 +Width: 362 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 550 -235 2 +Refer: 75 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ncaron +Encoding: 328 328 262 +Width: 485 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 544 3 2 +EndChar + +StartChar: Obreve +Encoding: 334 334 263 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 271 -1 N 1 0 0 1 197 198 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: obreve +Encoding: 335 335 264 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 497 6 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: gravecomb.cap +Encoding: 65559 -1 265 +Width: 216 +GlyphClass: 4 +Flags: HW +HStem: 678 105 +VStem: 160 177 +LayerCount: 2 +Fore +SplineSet +331 678 m 0 + 316 678 160 738 160 762 c 0 + 160 773 179 783 207 783 c 0 + 214 783 230 780 233 778 c 0 + 257 762 337 695 337 688 c 0 + 337 685 332 678 331 678 c 0 +EndSplineSet +EndChar + +StartChar: acutecomb.cap +Encoding: 65560 -1 266 +Width: 219 +GlyphClass: 4 +Flags: HW +HStem: 678 105 +VStem: 146 177 +LayerCount: 2 +Fore +SplineSet +152 678 m 0 + 151 678 146 685 146 688 c 0 + 146 695 226 762 250 778 c 0 + 253 780 269 783 276 783 c 0 + 304 783 323 773 323 762 c 0 + 323 738 167 678 152 678 c 0 +EndSplineSet +EndChar + +StartChar: uni0302.cap +Encoding: 65561 -1 267 +Width: 288 +GlyphClass: 4 +Flags: HW +HStem: 694 122 +VStem: 169 229 +LayerCount: 2 +Fore +SplineSet +312 816 m 0 + 316 816 319 814 321 810 c 0 + 346 769 364 744 397 704 c 1 + 396 698 389 694 383 694 c 1 + 347 718 296 752 296 752 c 25 + 296 752 226 717 179 694 c 1 + 173 694 168 698 169 704 c 1 + 224 745 251 768 298 810 c 0 + 303 814 308 816 312 816 c 0 +EndSplineSet +EndChar + +StartChar: uni030A.cap +Encoding: 65562 -1 268 +Width: 375 +GlyphClass: 4 +Flags: HW +HStem: 490 33<234 304> 632 33<248 320> +VStem: 196 160 +LayerCount: 2 +Fore +SplineSet +226 578 m 0 + 220 548 239 523 266 523 c 0 + 293 523 320 548 326 578 c 0 + 332 608 315 632 288 632 c 0 + 261 632 232 608 226 578 c 0 +196 578 m 0 + 206 626 251 665 295 665 c 0 + 339 665 366 626 356 578 c 0 + 346 530 305 490 261 490 c 0 + 217 490 186 530 196 578 c 0 +EndSplineSet +EndChar + +StartChar: tildecomb.cap +Encoding: 65563 -1 269 +Width: 277 +GlyphClass: 4 +Flags: HW +HStem: 708 41<329 431> 745 41<202 304> +VStem: 169 294 +LayerCount: 2 +Fore +SplineSet +264 786 m 0x60 + 287 786 302 784 323 772 c 0 + 344 760 364 749 394 749 c 0xa0 + 427 749 451 779 457 786 c 1x60 + 460 785 463 783 463 776 c 0 + 463 762 454 749 445 740 c 0 + 421 717 397 708 369 708 c 0xa0 + 346 708 331 710 310 722 c 0 + 289 734 269 745 239 745 c 0x60 + 206 745 182 715 176 708 c 1xa0 + 173 709 169 711 169 718 c 0 + 169 732 179 745 188 754 c 0 + 212 777 236 786 264 786 c 0x60 +EndSplineSet +EndChar + +StartChar: uni0304.cap +Encoding: 65564 -1 270 +Width: 343 +GlyphClass: 4 +Flags: HW +HStem: 544 38<166 406> +VStem: 164 243<544 582> +LayerCount: 2 +Fore +SplineSet +397 544 m 1 + 167 544 l 1 + 167 544 164 547 164 553 c 0 + 164 560 171 582 176 582 c 2 + 403 582 l 2 + 405 582 407 579 407 575 c 0 + 407 570 405 553 397 544 c 1 +EndSplineSet +EndChar + +StartChar: uni0306.cap +Encoding: 65565 -1 271 +Width: 225 +GlyphClass: 4 +Flags: HW +HStem: 513 47<165 273> +VStem: 130 22<585 616> 310 19<601 617> +LayerCount: 2 +Fore +SplineSet +220 560 m 0 + 258 560 294 580 310 616 c 0 + 310 618 312 618 314 618 c 0 + 320 618 329 611 328 607 c 0 + 328 606 326 603 326 601 c 0 + 309 556 260 513 211 513 c 0 + 162 513 129 553 130 602 c 0 + 130 604 130 606 130 607 c 0 + 131 611 142 618 148 618 c 0 + 150 618 152 618 152 616 c 0 + 154 580 182 560 220 560 c 0 +EndSplineSet +EndChar + +StartChar: uni0327.cap +Encoding: 65566 -1 272 +Width: 392 +GlyphClass: 4 +Flags: HW +HStem: -170 27<122 191> -65 39<187 206> -20 20G<183 211> +VStem: 98 152 +LayerCount: 2 +Fore +SplineSet +187 -26 m 1 + 214 -26 l 2 + 242 -26 256 -53 250 -83 c 0 + 239 -137 188 -170 132 -170 c 0 + 119 -170 104 -165 98 -160 c 1 + 98 -154 97 -151 98 -144 c 0 + 100 -136 109 -128 116 -128 c 0 + 129 -128 135 -143 153 -143 c 0 + 183 -143 202 -124 206 -104 c 0 + 211 -77 195 -65 181 -65 c 0 + 169 -65 163 -68 151 -73 c 0 + 149 -73 140 -64 143 -59 c 0 + 157 -41 177 -17 189 0 c 1 + 211 0 l 1 + 187 -26 l 1 +EndSplineSet +EndChar + +StartChar: uni0323.cap +Encoding: 65567 -1 273 +Width: 232 +GlyphClass: 4 +Flags: HW +HStem: -133 98<80 145> +VStem: 67 91<-120 -48> +LayerCount: 2 +Fore +SplineSet +67 -84 m 0 + 72 -57 97 -35 122 -35 c 0 + 147 -35 163 -57 158 -84 c 0 + 153 -111 128 -133 103 -133 c 0 + 78 -133 62 -111 67 -84 c 0 +EndSplineSet +EndChar + +StartChar: uni030B.cap +Encoding: 65568 -1 274 +Width: 350 +GlyphClass: 4 +Flags: HW +HStem: 678 105<293 305> +VStem: 146 318 +LayerCount: 2 +Fore +SplineSet +294 678 m 0 + 293 678 288 685 288 688 c 0 + 288 695 368 762 392 778 c 0 + 395 780 411 783 418 783 c 0 + 446 783 465 773 465 762 c 0 + 465 738 309 678 294 678 c 0 +152 678 m 0 + 151 678 146 685 146 688 c 0 + 146 695 226 762 250 778 c 0 + 253 780 269 783 276 783 c 0 + 304 783 323 773 323 762 c 0 + 323 738 167 678 152 678 c 0 +EndSplineSet +EndChar + +StartChar: uni0308.cap +Encoding: 65569 -1 275 +Width: 304 +GlyphClass: 4 +Flags: HW +HStem: 695 98<182 247 346 411> +VStem: 169 91<709 780> 333 91<708 780> +LayerCount: 2 +Fore +SplineSet +333 744 m 0 + 338 771 363 793 388 793 c 0 + 413 793 429 771 424 744 c 0 + 419 717 394 695 369 695 c 0 + 344 695 328 717 333 744 c 0 +169 744 m 0 + 174 771 199 793 224 793 c 0 + 249 793 265 771 260 744 c 0 + 255 717 229 695 204 695 c 0 + 179 695 164 717 169 744 c 0 +EndSplineSet +EndChar + +StartChar: uni0308.narrow +Encoding: 65570 -1 276 +Width: 262 +VWidth: 0 +GlyphClass: 4 +Flags: HW +HStem: 466 98<141 204 271 334> +VStem: 131 86<477 554> 261 86<477 554> +LayerCount: 2 +Fore +SplineSet +311 563 m 27 + 332 563 347 545 347 524 c 27 + 347 494 324 466 294 466 c 27 + 273 466 261 488 261 509 c 27 + 261 538 282 563 311 563 c 27 +181 563 m 27 + 202 563 217 545 217 524 c 27 + 217 494 194 466 164 466 c 27 + 143 466 131 488 131 509 c 27 + 131 538 152 563 181 563 c 27 +EndSplineSet +EndChar + +StartChar: uni030C.cap +Encoding: 65571 -1 277 +Width: 234 +GlyphClass: 4 +Flags: HW +HStem: 694 122 +VStem: 169 229 +LayerCount: 2 +Fore +SplineSet +255 694 m 0 + 250 694 247 697 245 701 c 0 + 220 745 201 766 169 807 c 1 + 170 813 178 816 184 816 c 1 + 220 792 271 759 271 759 c 25 + 271 759 344 794 388 816 c 1 + 394 816 398 813 397 807 c 1 + 344 766 317 745 269 701 c 0 + 264 697 260 694 255 694 c 0 +EndSplineSet +EndChar + +StartChar: amacron +Encoding: 257 257 278 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 520 13 2 +Refer: 64 97 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Abreve +Encoding: 258 258 279 +Width: 572 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 625 232 2 +Refer: 32 65 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Aogonek +Encoding: 260 260 280 +Width: 572 +Flags: HW +HStem: -225 58<282 355> -3 28<-51 2 77 131 492 530> 250 32<188 359> 628 20G<373 378> +VStem: 247 53<-187 -110> +LayerCount: 2 +Fore +SplineSet +476 59 m 0 + 481 36 524 25 531 25 c 1 + 534 18 530 0 528 -3 c 1 + 492 -1 516 0 481 0 c 0 + 375 0 299 -102 299 -136 c 0 + 299 -151 306 -167 330 -167 c 0 + 376 -167 405 -130 411 -130 c 0 + 419 -130 408 -156 405 -159 c 0 + 380 -187 337 -225 296 -225 c 0 + 267 -225 247 -200 247 -174 c 0 + 247 -120 308 -55 352 -11 c 0 + 373 10 388 15 388 52 c 0 + 388 64 387 95 386 104 c 2 + 364 250 l 1 + 170 250 l 1 + 137 190 109 139 100 122 c 0 + 82 88 72 64 72 49 c 0 + 72 28 125 25 132 25 c 1 + 134 22 131 3 128 -3 c 1 + 92 -1 82 2 42 2 c 0 + 0 2 -12 -1 -54 -3 c 1 + -56 0 -52 18 -48 25 c 1 + -37 25 -5 31 7 44 c 0 + 31 69 48 101 68 136 c 2 + 337 619 l 2 + 346 635 368 647 376 647 c 0 + 379 647 380 646 381 645 c 1 + 465 123 l 2 + 467 112 472 79 476 59 c 0 +188 282 m 1 + 359 282 l 1 + 321 522 l 1 + 188 282 l 1 +EndSplineSet +EndChar + +StartChar: aogonek +Encoding: 261 261 281 +Width: 438 +Flags: HW +HStem: -225 58<189 263> -5 57<79 157> 386 39<217 315> +VStem: 19 72<64 217> 154 53<-189 -111> 237 73<21 161> +LayerCount: 2 +Fore +SplineSet +253 386 m 0 + 178 386 91 259 91 147 c 0 + 91 86 107 52 141 52 c 0 + 190 52 258 174 277 268 c 2 + 298 371 l 1 + 289 381 266 386 253 386 c 0 +398 86 m 1 + 392 75 363 45 337 24 c 0 + 301 -5 207 -86 207 -136 c 0 + 207 -151 213 -167 237 -167 c 0 + 283 -167 312 -130 318 -130 c 0 + 326 -130 315 -156 312 -159 c 0 + 287 -187 245 -225 204 -225 c 0 + 175 -225 154 -202 154 -176 c 0 + 154 -126 214 -50 260 -4 c 1 + 245 2 237 22 237 45 c 0 + 237 53 240 76 244 97 c 0 + 247 115 248 120 249 127 c 1 + 229 92 162 -5 105 -5 c 0 + 52 -5 19 42 19 110 c 0 + 19 280 179 425 298 425 c 0 + 332 425 355 419 374 412 c 1 + 314 104 l 2 + 313 100 311 77 311 72 c 0 + 311 63 310 48 320 48 c 0 + 341 48 386 101 389 104 c 1 + 392 104 398 92 398 86 c 1 +EndSplineSet +EndChar + +StartChar: Cacute +Encoding: 262 262 282 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 266 -1 N 1 0 0 1 251 17 2 +EndChar + +StartChar: Ccircumflex +Encoding: 264 264 283 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 267 -1 N 1 0 0 1 163 0 2 +EndChar + +StartChar: ccircumflex +Encoding: 265 265 284 +Width: 350 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 506 4 2 +EndChar + +StartChar: Cdotaccent +Encoding: 266 266 285 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 705 233 2 +EndChar + +StartChar: cdotaccent +Encoding: 267 267 286 +Width: 350 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 513 55 2 +Refer: 66 99 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ccaron +Encoding: 268 268 287 +Width: 629 +Flags: HW +LayerCount: 2 +Fore +Refer: 34 67 N 1 0 0 1 0 0 2 +Refer: 277 -1 N 1 0 0 1 195 0 2 +EndChar + +StartChar: ccaron +Encoding: 269 269 288 +Width: 350 +Flags: HW +LayerCount: 2 +Fore +Refer: 66 99 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 515 3 2 +EndChar + +StartChar: Dcaron +Encoding: 270 270 289 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 105 0 2 +Refer: 35 68 N 1 0 0 1 0 0 2 +EndChar + +StartChar: dcaron +Encoding: 271 271 290 +Width: 455 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 362 43 2 +Refer: 67 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Emacron +Encoding: 274 274 291 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 270 -1 N 1 0 0 1 66 176 2 +Refer: 36 69 N 1 0 0 1 0 0 2 +EndChar + +StartChar: emacron +Encoding: 275 275 292 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 484 13 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ebreve +Encoding: 276 276 293 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 271 -1 N 1 0 0 1 123 198 2 +Refer: 36 69 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ebreve +Encoding: 277 277 294 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 489 6 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Edotaccent +Encoding: 278 278 295 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 608 233 2 +Refer: 36 69 N 1 0 0 1 0 0 2 +EndChar + +StartChar: edotaccent +Encoding: 279 279 296 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 520 55 2 +Refer: 68 101 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Eogonek +Encoding: 280 280 297 +Width: 541 +Flags: HW +HStem: -225 58<226 300> -3 32<-2 68 155 308> 309 32<210 361> 615 26<117 174 264 457> +VStem: 191 53<-189 -108> 374 28<225 265> 493 28<511 577> +LayerCount: 2 +Fore +SplineSet +412 -4 m 1 + 319 -4 244 -87 244 -136 c 0 + 244 -151 250 -167 274 -167 c 0 + 320 -167 349 -130 355 -130 c 0 + 363 -130 352 -156 349 -159 c 0 + 324 -187 282 -225 241 -225 c 0 + 212 -225 191 -202 191 -176 c 0 + 191 -124 253 -29 309 -3 c 1 + 248 -2 178 0 103 0 c 0 + 60 0 30 -3 -5 -3 c 1 + -9 2 -5 20 -0 25 c 1 + 11 25 61 30 66 41 c 0 + 74 57 79 84 85 113 c 2 + 166 530 l 2 + 172 559 176 587 174 603 c 0 + 173 614 126 618 115 618 c 1 + 112 623 115 641 121 646 c 1 + 158 644 192 642 228 642 c 0 + 313 642 422 648 521 648 c 1 + 518 599 521 560 521 516 c 1 + 518 513 511 511 504 511 c 0 + 497 511 493 513 493 518 c 0 + 488 596 455 615 407 615 c 2 + 329 615 l 2 + 318 615 270 614 265 604 c 0 + 257 588 250 560 245 534 c 2 + 209 347 l 2 + 208 342 227 341 247 341 c 2 + 295 341 l 2 + 382 341 380 347 408 411 c 0 + 410 416 417 418 424 418 c 0 + 431 418 436 416 438 413 c 1 + 402 229 l 1 + 400 227 394 225 387 225 c 0 + 380 225 375 227 374 232 c 0 + 371 288 368 295 361 301 c 0 + 352 308 301 309 267 309 c 0 + 242 309 201 309 199 300 c 2 + 161 106 l 2 + 158 91 149 44 154 39 c 0 + 164 29 179 29 217 29 c 2 + 260 29 l 2 + 310 29 350 39 381 60 c 0 + 407 78 433 106 457 158 c 0 + 459 162 465 164 472 164 c 0 + 481 164 491 161 493 158 c 1 + 466 105 427 39 412 -4 c 1 +EndSplineSet +EndChar + +StartChar: eogonek +Encoding: 281 281 298 +Width: 354 +Flags: HW +HStem: -225 58<54 127> -6 58<121 138> 188 24<103 144> 385 40<192 292> +VStem: 20 52<-166 -121> 22 76<75 212 213 236> 260 72<306 380> +LayerCount: 2 +Fore +SplineSet +103 213 m 1xf2 + 141 213 260 274 260 346 c 0 + 260 372 238 385 219 385 c 0 + 152 385 108 263 103 213 c 1xf2 +20 -176 m 0xfa + 19 -128 112 -29 138 -6 c 1 + 135 -6 133 -6 130 -6 c 0 + 61 -6 22 45 22 136 c 0xf6 + 22 281 156 425 268 425 c 0 + 318 425 332 393 332 364 c 0 + 332 270 162 188 101 188 c 1 + 100 185 99 162 99 157 c 0 + 99 97 117 52 166 52 c 0 + 210 52 264 116 267 119 c 1 + 270 119 278 106 278 100 c 1 + 273 91 259 74 238 53 c 0 + 184 0 71 -97 71 -136 c 0 + 71 -151 78 -167 102 -167 c 0 + 148 -167 177 -130 183 -130 c 0 + 191 -130 180 -156 177 -159 c 0 + 152 -187 109 -225 68 -225 c 0 + 39 -225 20 -202 20 -176 c 0xfa +EndSplineSet +EndChar + +StartChar: Ecaron +Encoding: 282 282 299 +Width: 541 +Flags: HW +LayerCount: 2 +Fore +Refer: 36 69 N 1 0 0 1 0 0 2 +Refer: 277 -1 N 1 0 0 1 99 0 2 +EndChar + +StartChar: ecaron +Encoding: 283 283 300 +Width: 354 +Flags: HW +LayerCount: 2 +Fore +Refer: 68 101 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 509 3 2 +EndChar + +StartChar: Gcircumflex +Encoding: 284 284 301 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 267 -1 N 1 0 0 1 179 0 2 +EndChar + +StartChar: gcircumflex +Encoding: 285 285 302 +Width: 402 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 489 5 2 +EndChar + +StartChar: Gbreve +Encoding: 286 286 303 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 271 -1 N 1 0 0 1 234 198 2 +EndChar + +StartChar: gbreve +Encoding: 287 287 304 +Width: 402 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 472 7 2 +Refer: 70 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gdotaccent +Encoding: 288 288 305 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 705 233 2 +EndChar + +StartChar: gdotaccent +Encoding: 289 289 306 +Width: 402 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 491 55 2 +Refer: 70 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0122 +Encoding: 290 290 307 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 38 71 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 562 -39 2 +EndChar + +StartChar: uni0123 +Encoding: 291 291 308 +Width: 402 +Flags: HW +LayerCount: 2 +Fore +Refer: 251 786 N 1 0 0 1 88 31 2 +Refer: 70 103 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hcircumflex +Encoding: 292 292 309 +Width: 669 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 156 0 2 +Refer: 39 72 N 1 0 0 1 0 0 2 +EndChar + +StartChar: hcircumflex +Encoding: 293 293 310 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 -88 0 2 +Refer: 71 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Itilde +Encoding: 296 296 311 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 269 -1 N 1 0 0 1 -81 14 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: itilde +Encoding: 297 297 312 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 222 305 N 1 0 0 1 6 0 2 +Refer: 221 771 N 1 0 0 1 410 16 2 +EndChar + +StartChar: Imacron +Encoding: 298 298 313 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 270 -1 N 1 0 0 1 -52 176 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: imacron +Encoding: 299 299 314 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 409 13 2 +Refer: 222 305 N 1 0 0 1 3 0 2 +EndChar + +StartChar: Ibreve +Encoding: 300 300 315 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 271 -1 N 1 0 0 1 27 198 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ibreve +Encoding: 301 301 316 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 406 6 2 +Refer: 222 305 N 1 0 0 1 3 0 2 +EndChar + +StartChar: Iogonek +Encoding: 302 302 317 +Width: 305 +Flags: HW +HStem: -225 58<21 94> -3 28<-5 64 155 209> 618 28<116 173 264 332> +VStem: -14 52<-189 -104> +LayerCount: 2 +Fore +SplineSet +213 25 m 1 + 215 21 209 1 207 -3 c 1 + 191 -3 176 -6 161 -10 c 0 + 91 -31 38 -95 38 -136 c 0 + 38 -151 44 -167 68 -167 c 0 + 114 -167 143 -130 149 -130 c 0 + 157 -130 147 -156 144 -159 c 0 + 119 -187 76 -225 35 -225 c 0 + 6 -225 -14 -202 -14 -176 c 0 + -14 -115 49 -24 105 2 c 1 + 70 2 32 -1 -6 -3 c 1 + -10 2 -6 20 -1 25 c 1 + 10 25 60 30 65 41 c 0 + 73 57 78 84 84 113 c 2 + 165 530 l 2 + 171 559 176 587 174 603 c 0 + 173 614 125 618 114 618 c 1 + 111 623 114 641 120 646 c 1 + 157 644 192 642 227 642 c 0 + 262 642 296 644 334 646 c 1 + 338 641 333 623 328 618 c 1 + 317 618 268 614 263 603 c 0 + 255 587 250 559 244 530 c 2 + 163 113 l 2 + 157 84 151 57 153 41 c 0 + 154 30 202 25 213 25 c 1 +EndSplineSet +EndChar + +StartChar: iogonek +Encoding: 303 303 318 +Width: 256 +Flags: HW +HStem: -225 58<39 112> 371 54<95 158> 533 98<124 187> +VStem: 4 53<-189 -106> 112 73<295 374> 113 86<545 621> +LayerCount: 2 +Fore +SplineSet +164 631 m 0xf4 + 185 631 199 613 199 592 c 0 + 199 562 176 533 146 533 c 0 + 125 533 113 554 113 575 c 0 + 113 604 135 631 164 631 c 0xf4 +213 86 m 1 + 208 77 186 54 165 35 c 0 + 113 -12 57 -86 57 -136 c 0 + 57 -151 63 -167 87 -167 c 0 + 133 -167 162 -130 168 -130 c 0 + 176 -130 165 -156 162 -159 c 0 + 137 -187 95 -225 54 -225 c 0 + 25 -225 4 -202 4 -176 c 0 + 4 -127 60 -42 91 -6 c 1 + 89 -6 87 -6 85 -6 c 0 + 64 -6 52 16 52 45 c 0 + 52 53 55 76 59 97 c 2 + 108 315 l 2 + 109 321 112 342 112 347 c 0 + 112 356 113 371 103 371 c 0 + 82 371 37 317 34 314 c 1 + 31 314 24 327 24 333 c 1 + 35 352 101 425 147 425 c 0 + 168 425 186 403 186 374 c 0xf8 + 186 366 183 343 179 322 c 2 + 129 104 l 2 + 127 94 125 77 125 72 c 0 + 125 63 125 48 135 48 c 0 + 156 48 200 101 203 104 c 1 + 206 104 213 92 213 86 c 1 +EndSplineSet +EndChar + +StartChar: Idotaccent +Encoding: 304 304 319 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 499 233 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Jcircumflex +Encoding: 308 308 320 +Width: 305 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 -50 0 2 +Refer: 41 74 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0136 +Encoding: 310 310 321 +Width: 599 +Flags: HW +LayerCount: 2 +Fore +Refer: 42 75 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 499 -39 2 +EndChar + +StartChar: Lacute +Encoding: 313 313 322 +Width: 517 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 44 17 2 +Refer: 43 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: lacute +Encoding: 314 314 323 +Width: 237 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 9 17 2 +Refer: 75 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni013B +Encoding: 315 315 324 +Width: 517 +Flags: HW +LayerCount: 2 +Fore +Refer: 43 76 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 443 -40 2 +EndChar + +StartChar: uni013C +Encoding: 316 316 325 +Width: 237 +Flags: HW +LayerCount: 2 +Fore +Refer: 75 108 N 1 0 0 1 -1 0 2 +Refer: 254 806 N 1 0 0 1 320 -39 2 +EndChar + +StartChar: Lcaron +Encoding: 317 317 326 +Width: 569 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 384 41 2 +Refer: 43 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: lcaron +Encoding: 318 318 327 +Width: 253 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 147 41 2 +Refer: 75 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ldot +Encoding: 319 319 328 +Width: 517 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 645 -202 2 +Refer: 43 76 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Nacute +Encoding: 323 323 329 +Width: 714 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 272 17 2 +Refer: 45 78 N 1 0 0 1 0 0 2 +EndChar + +StartChar: nacute +Encoding: 324 324 330 +Width: 485 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 585 12 2 +Refer: 77 110 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0145 +Encoding: 325 325 331 +Width: 714 +Flags: HW +LayerCount: 2 +Fore +Refer: 45 78 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 536 -39 2 +EndChar + +StartChar: uni0146 +Encoding: 326 326 332 +Width: 485 +Flags: HW +LayerCount: 2 +Fore +Refer: 77 110 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 448 -39 2 +EndChar + +StartChar: Ncaron +Encoding: 327 327 333 +Width: 714 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 174 0 2 +Refer: 45 78 N 1 0 0 1 0 0 2 +EndChar + +StartChar: napostrophe +Encoding: 329 329 334 +Width: 487 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 -115 0 2 +Refer: 77 110 N 1 0 0 1 2 0 2 +EndChar + +StartChar: Omacron +Encoding: 332 332 335 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 270 -1 N 1 0 0 1 131 176 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: omacron +Encoding: 333 333 336 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 508 13 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ohungarumlaut +Encoding: 336 336 337 +Width: 693 +Flags: HW +LayerCount: 2 +Fore +Refer: 274 -1 N 1 0 0 1 163 23 2 +Refer: 46 79 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ohungarumlaut +Encoding: 337 337 338 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 495 12 2 +Refer: 219 769 N 1 0 0 1 618 12 2 +Refer: 78 111 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Racute +Encoding: 340 340 339 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 120 17 2 +Refer: 49 82 N 1 0 0 1 0 0 2 +EndChar + +StartChar: racute +Encoding: 341 341 340 +Width: 347 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 539 12 2 +Refer: 81 114 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0156 +Encoding: 342 342 341 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 49 82 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 493 -39 2 +EndChar + +StartChar: uni0157 +Encoding: 343 343 342 +Width: 347 +Flags: HW +LayerCount: 2 +Fore +Refer: 81 114 N 1 0 0 1 0 0 2 +Refer: 254 806 N 1 0 0 1 332 -39 2 +EndChar + +StartChar: Rcaron +Encoding: 344 344 343 +Width: 565 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 57 0 2 +Refer: 49 82 N 1 0 0 1 0 0 2 +EndChar + +StartChar: rcaron +Encoding: 345 345 344 +Width: 347 +Flags: HW +LayerCount: 2 +Fore +Refer: 81 114 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 494 3 2 +EndChar + +StartChar: Sacute +Encoding: 346 346 345 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 150 17 2 +Refer: 50 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: sacute +Encoding: 347 347 346 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 497 15 2 +Refer: 82 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Scircumflex +Encoding: 348 348 347 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 50 0 2 +Refer: 50 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: scircumflex +Encoding: 349 349 348 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 457 7 2 +EndChar + +StartChar: Scedilla +Encoding: 350 350 349 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 272 -1 N 1 0 0 1 -26 0 2 +Refer: 50 83 N 1 0 0 1 0 0 2 +EndChar + +StartChar: scedilla +Encoding: 351 351 350 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 255 807 N 1 0 0 1 342 3 2 +EndChar + +StartChar: scaron +Encoding: 353 353 351 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 476 6 2 +EndChar + +StartChar: uni0162 +Encoding: 354 354 352 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 272 -1 N 1 0 0 1 30 0 2 +Refer: 51 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni0163 +Encoding: 355 355 353 +Width: 271 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 0 0 2 +Refer: 255 807 N 1 0 0 1 321 4 2 +EndChar + +StartChar: Tcaron +Encoding: 356 356 354 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 110 4 2 +Refer: 51 84 N 1 0 0 1 0 0 2 +EndChar + +StartChar: tcaron +Encoding: 357 357 355 +Width: 268 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 252 789 N 1 0 0 1 176 41 2 +Refer: 83 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Utilde +Encoding: 360 360 356 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 269 -1 N 1 0 0 1 102 14 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: utilde +Encoding: 361 361 357 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 221 771 N 1 0 0 1 505 16 2 +EndChar + +StartChar: Umacron +Encoding: 362 362 358 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 270 -1 N 1 0 0 1 133 176 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: umacron +Encoding: 363 363 359 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 245 772 N 1 0 0 1 516 13 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ubreve +Encoding: 364 364 360 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 271 -1 N 1 0 0 1 200 198 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: ubreve +Encoding: 365 365 361 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 246 774 N 1 0 0 1 499 6 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Uring +Encoding: 366 366 362 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 268 -1 N 1 0 0 1 146 221 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uring +Encoding: 367 367 363 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 84 117 N 1 0 0 1 0 0 2 +Refer: 249 778 N 1 0 0 1 515 6 2 +EndChar + +StartChar: Uhungarumlaut +Encoding: 368 368 364 +Width: 645 +Flags: HW +LayerCount: 2 +Fore +Refer: 274 -1 N 1 0 0 1 168 23 2 +Refer: 52 85 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uhungarumlaut +Encoding: 369 369 365 +Width: 479 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 496 12 2 +Refer: 219 769 N 1 0 0 1 619 12 2 +Refer: 84 117 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Uogonek +Encoding: 370 370 366 +Width: 666 +Flags: HW +HStem: -225 58<247 320> -4 57<226 368> 618 28<104 161 251 319 521 576 649 720> +VStem: 212 53<-184 -110> +LayerCount: 2 +Fore +SplineSet +264 -136 m 0 + 264 -151 271 -167 295 -167 c 0 + 341 -167 370 -130 376 -130 c 0 + 384 -130 373 -156 370 -159 c 0 + 345 -187 302 -225 261 -225 c 0 + 232 -225 212 -197 212 -171 c 0 + 212 -121 279 -40 332 0 c 1 + 314 -3 296 -4 277 -4 c 0 + 206 -4 150 23 119 72 c 0 + 92 115 82 174 96 245 c 2 + 152 530 l 2 + 158 559 164 587 162 603 c 0 + 161 614 113 618 102 618 c 1 + 99 623 102 641 108 646 c 1 + 145 644 179 642 214 642 c 0 + 249 642 283 644 321 646 c 1 + 325 641 320 623 315 618 c 1 + 304 618 255 614 250 603 c 0 + 242 587 237 559 231 530 c 2 + 184 289 l 2 + 169 214 172 158 189 119 c 0 + 209 74 248 53 307 53 c 0 + 401 53 490 100 525 268 c 1 + 577 532 l 2 + 584 567 587 584 581 600 c 0 + 577 610 534 619 519 619 c 1 + 516 626 520 641 523 647 c 1 + 559 645 583 643 623 643 c 0 + 665 643 680 645 722 647 c 1 + 724 642 724 630 717 619 c 1 + 706 619 651 612 642 600 c 0 + 631 585 628 570 621 533 c 2 + 569 270 l 2 + 547 158 500 85 438 42 c 0 + 357 -15 264 -89 264 -136 c 0 +EndSplineSet +EndChar + +StartChar: uogonek +Encoding: 371 371 367 +Width: 478 +Flags: HW +HStem: -225 58<229 303> -6 72<87 161> 371 54<91 153> +VStem: 58 75<46 202> 107 73<252 397> 194 53<-189 -111> +LayerCount: 2 +Fore +SplineSet +194 -176 m 0xf4 + 194 -126 254 -50 300 -4 c 1 + 285 2 277 22 277 45 c 0 + 278 53 281 76 285 97 c 0 + 291 130 296 149 303 182 c 1 + 278 127 170 -6 106 -6 c 0 + 68 -6 58 27 58 64 c 0xf4 + 58 91 65 137 71 165 c 2 + 104 315 l 2 + 105 321 107 342 107 347 c 0 + 107 356 108 371 98 371 c 0 + 77 371 32 317 29 314 c 1 + 26 314 20 327 20 333 c 1 + 31 352 97 425 143 425 c 0 + 164 425 181 403 181 374 c 0xec + 181 366 178 343 174 322 c 2 + 140 161 l 2 + 138 152 133 119 133 108 c 0 + 133 86 134 66 151 66 c 0 + 186 66 303 190 326 312 c 0 + 334 354 339 377 348 419 c 1 + 358 422 368 423 378 423 c 0 + 388 423 404 422 416 419 c 1 + 355 104 l 2 + 353 94 352 77 351 72 c 0 + 351 63 350 48 360 48 c 0 + 381 48 426 101 429 104 c 1 + 432 104 438 92 438 86 c 1 + 432 75 403 45 377 24 c 0 + 341 -5 247 -86 247 -136 c 0 + 247 -151 253 -167 277 -167 c 0 + 323 -167 352 -130 358 -130 c 0 + 366 -130 356 -156 353 -159 c 0 + 328 -187 285 -225 244 -225 c 0 + 215 -225 194 -202 194 -176 c 0xf4 +EndSplineSet +EndChar + +StartChar: Wcircumflex +Encoding: 372 372 368 +Width: 821 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 246 0 2 +Refer: 54 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wcircumflex +Encoding: 373 373 369 +Width: 614 +Flags: HW +LayerCount: 2 +Fore +Refer: 86 119 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 631 4 2 +EndChar + +StartChar: Ycircumflex +Encoding: 374 374 370 +Width: 542 +Flags: HW +LayerCount: 2 +Fore +Refer: 267 -1 N 1 0 0 1 89 0 2 +Refer: 56 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ycircumflex +Encoding: 375 375 371 +Width: 436 +Flags: HW +LayerCount: 2 +Fore +Refer: 88 121 N 1 0 0 1 0 0 2 +Refer: 220 770 N 1 0 0 1 511 16 2 +EndChar + +StartChar: Ydieresis +Encoding: 376 376 372 +Width: 542 +Flags: HW +LayerCount: 2 +Fore +Refer: 275 -1 N 1 0 0 1 77 16 2 +Refer: 56 89 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zacute +Encoding: 377 377 373 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 181 17 2 +Refer: 57 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zacute +Encoding: 378 378 374 +Width: 377 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 533 12 2 +Refer: 89 122 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zdotaccent +Encoding: 379 379 375 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 644 233 2 +Refer: 57 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zdotaccent +Encoding: 380 380 376 +Width: 377 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 500 55 2 +Refer: 89 122 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Zcaron +Encoding: 381 381 377 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 110 0 2 +Refer: 57 90 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zcaron +Encoding: 382 382 378 +Width: 377 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 503 3 2 +EndChar + +StartChar: Dcroat +Encoding: 272 272 379 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 141 208 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Hbar +Encoding: 294 294 380 +Width: 669 +Flags: HW +HStem: -3 28<-3 66 155 213 361 430 520 577> 309 39<210 488> 461 33<104 652> 618 28<118 175 265 334 482 539 630 698> +LayerCount: 2 +Fore +SplineSet +113 494 m 1 + 137 494 640 494 652 494 c 0 + 655 494 656 490 655 486 c 0 + 654 481 650 469 645 461 c 1 + 621 461 116 461 104 461 c 0 + 101 461 102 468 103 472 c 0 + 104 477 106 486 113 494 c 1 +EndSplineSet +Refer: 39 72 N 1 0 0 1 1 0 2 +EndChar + +StartChar: hbar +Encoding: 295 295 381 +Width: 458 +Flags: HW +HStem: -6 54<282 345> 353 72<280 348> 519 33<78 311> 616 21<76 132> 649 20<198 211> +VStem: 136 79<535 651> 260 73<21 167> 308 75<217 379> +LayerCount: 2 +Fore +SplineSet +87 552 m 1xfc + 111 552 299 552 311 552 c 0 + 314 552 314 548 313 544 c 0 + 312 539 308 527 303 519 c 1 + 279 519 90 519 78 519 c 0 + 75 519 75 525 76 529 c 0 + 77 534 80 544 87 552 c 1xfc +EndSplineSet +Refer: 71 104 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Lslash +Encoding: 321 321 382 +Width: 516 +Flags: HW +HStem: 0 29<-2 67 154 347> 618 28<117 175 264 332> +LayerCount: 2 +Fore +SplineSet +63 202 m 2 + 428 437 l 1 + 432 432 441 409 437 406 c 2 + 73 174 l 1 + 69 180 59 199 63 202 c 2 +EndSplineSet +Refer: 43 76 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: lslash +Encoding: 322 322 383 +Width: 239 +Flags: HW +HStem: -6 54<59 121> 616 21<80 135> 649 20<202 215> +VStem: 36 73<21 172> 140 79<532 651> +LayerCount: 2 +Fore +SplineSet +41 281 m 2 + 234 413 l 1 + 237 408 247 390 242 387 c 2 + 48 254 l 1 + 44 260 36 278 41 281 c 2 +EndSplineSet +Refer: 75 108 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Tbar +Encoding: 358 358 384 +Width: 574 +Flags: HW +HStem: -3 28<132 200 290 348> 301 39<140 463> 605 34<155 316 395 548> +VStem: 573 31<483 573> +LayerCount: 2 +Fore +SplineSet +149 340 m 1 + 175 340 449 340 462 340 c 0 + 466 340 467 335 466 330 c 0 + 465 324 459 310 454 301 c 1 + 428 301 155 301 142 301 c 0 + 138 301 138 308 139 313 c 0 + 140 319 142 331 149 340 c 1 +EndSplineSet +Refer: 51 84 N 1 0 0 1 1 0 2 +EndChar + +StartChar: tbar +Encoding: 359 359 385 +Width: 278 +VWidth: 0 +Flags: HW +HStem: -6 54<72 134> 269 39<44 276> 367 36<50 108 185 262> +VStem: 42 237 49 73<21 173> +LayerCount: 2 +Fore +SplineSet +53 308 m 1xf0 + 79 308 262 308 275 308 c 0 + 279 308 280 303 279 298 c 0 + 278 292 273 278 268 269 c 1 + 242 269 58 269 45 269 c 0 + 41 269 41 276 42 281 c 0 + 43 287 46 299 53 308 c 1xf0 +EndSplineSet +Refer: 83 116 N 1 0 0 1 1 0 2 +EndChar + +StartChar: dcroat +Encoding: 273 273 386 +Width: 435 +Flags: HW +HStem: -5 57<75 155 280 321> 386 39<218 284> 519 33<241 474> 616 21<281 336> 649 20<402 416> +VStem: 19 72<64 214> 237 73<21 159> 340 79<532 651> +LayerCount: 2 +Fore +SplineSet +250 552 m 1 + 274 552 462 552 474 552 c 0 + 477 552 478 548 477 544 c 0 + 476 539 471 527 466 519 c 1 + 442 519 253 519 241 519 c 0 + 238 519 238 525 239 529 c 0 + 240 534 243 544 250 552 c 1 +EndSplineSet +Refer: 67 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: IJ +Encoding: 306 306 387 +Width: 548 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 41 74 N 1 0 0 1 257 0 2 +Refer: 40 73 N 1 0 0 1 0 0 2 +EndChar + +StartChar: ij +Encoding: 307 307 388 +Width: 444 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 105 N 1 0 0 1 0 0 2 +Refer: 73 106 N 1 0 0 1 201 0 2 +EndChar + +StartChar: kgreenlandic +Encoding: 312 312 389 +Width: 470 +Flags: HW +HStem: -4 54<309 366> 371 54<92 154> 379 46<271 358> +VStem: 43 69<-4 36> 108 73<279 397> 336 76<293 378> +LayerCount: 2 +Fore +SplineSet +104 315 m 2xb4 + 105 321 108 342 108 347 c 0 + 108 356 109 371 99 371 c 0 + 78 371 33 317 30 314 c 1 + 27 314 21 327 21 333 c 1 + 32 352 98 425 144 425 c 0 + 165 425 182 403 182 374 c 0xcc + 182 366 178 343 175 322 c 2 + 174 314 l 1 + 179 318 255 425 339 425 c 0 + 377 425 412 396 412 358 c 0 + 412 269 314 225 206 206 c 1 + 292 77 319 50 359 50 c 0 + 376 50 415 90 426 104 c 1 + 429 104 436 91 436 86 c 1 + 428 72 359 -4 316 -4 c 0 + 239 -4 190 117 148 187 c 1 + 112 0 l 1 + 101 -3 89 -5 78 -5 c 0 + 67 -5 55 -3 43 0 c 1 + 104 315 l 2xb4 +304 379 m 0xa4 + 247 379 168 285 156 225 c 1 + 221 225 336 265 336 346 c 0 + 336 364 331 379 304 379 c 0xa4 +EndSplineSet +EndChar + +StartChar: Eng +Encoding: 330 330 390 +Width: 713 +Flags: HW +HStem: -228 19<310 332> -3 28<-9 60 137 195> 619 28<112 174 553 610 686 756> +LayerCount: 2 +Fore +SplineSet +498 43 m 9 + 221 556 l 1 + 135 112 l 2 + 128 77 125 61 131 45 c 0 + 135 35 181 25 196 25 c 1 + 199 18 195 3 192 -3 c 1 + 156 -1 129 2 89 2 c 0 + 47 2 30 -1 -12 -3 c 1 + -14 2 -13 14 -6 25 c 1 + 5 25 59 33 68 45 c 0 + 79 60 84 74 91 111 c 2 + 173 535 l 2 + 180 572 182 587 177 602 c 0 + 173 614 121 621 110 621 c 1 + 107 632 111 644 115 649 c 1 + 156 647 179 645 209 645 c 0 + 236 645 265 645 278 646 c 1 + 309 568 469 313 540 162 c 1 + 612 532 l 2 + 619 567 622 584 616 600 c 0 + 612 610 566 619 551 619 c 1 + 548 626 552 641 555 647 c 1 + 591 645 618 643 658 643 c 0 + 700 643 716 645 758 647 c 1 + 760 642 760 630 753 619 c 1 + 742 619 687 612 678 600 c 0 + 667 585 663 570 656 533 c 2 + 575 113 l 2 + 525 -145 390 -228 312 -228 c 1 + 310 -225 309 -220 309 -215 c 0 + 309 -213 310 -209 310 -209 c 1 + 408 -179 470 -66 498 43 c 9 +EndSplineSet +EndChar + +StartChar: OE +Encoding: 338 338 391 +Width: 865 +Flags: HW +HStem: -11 28<254 386> 0 29<506 701> 309 32<561 712> 615 26<615 809> 621 29<331 477> +VStem: 56 92<149 399> 726 28<225 265> 845 28<511 577> +LayerCount: 2 +Fore +SplineSet +586 642 m 0x37 + 671 642 773 648 872 648 c 1 + 869 599 873 560 873 516 c 1 + 870 513 862 511 855 511 c 0 + 848 511 845 513 845 518 c 0 + 840 596 807 615 759 615 c 2 + 681 615 l 2 + 670 615 621 614 616 604 c 0 + 608 588 602 560 597 534 c 2 + 561 347 l 2 + 560 342 579 341 599 341 c 2 + 646 341 l 2 + 733 341 732 347 760 411 c 0 + 762 416 768 418 775 418 c 0 + 782 418 787 416 789 413 c 1 + 754 229 l 1 + 752 227 745 225 738 225 c 0 + 731 225 727 227 726 232 c 0 + 723 288 720 295 713 301 c 0 + 704 308 652 309 618 309 c 0 + 593 309 553 309 551 300 c 2 + 513 106 l 2 + 510 91 501 44 506 39 c 0 + 516 29 530 29 568 29 c 2 + 611 29 l 2 + 661 29 701 39 732 60 c 0 + 758 78 785 106 809 158 c 0 + 811 162 816 164 823 164 c 0 + 832 164 843 161 845 158 c 1 + 818 105 779 39 764 -4 c 1 + 665 -4 575 2 455 0 c 24x77 + 401 -1 350 -11 317 -11 c 3 + 138 -11 56 121 56 268 c 3 + 56 478 209 650 403 650 c 3xaf + 474 650 524 641 586 642 c 0x37 +518 544 m 2 + 530 606 449 621 395 621 c 3 + 248 621 147 434 147 266 c 3 + 147 107 207 18 317 18 c 3xaf + 389 18 414 50 419 61 c 0 + 427 77 431 84 437 113 c 2 + 518 544 l 2 +EndSplineSet +EndChar + +StartChar: oe +Encoding: 339 339 392 +Width: 599 +VWidth: 0 +Flags: HW +HStem: -6 58<366 437> -5 31<126 197> 188 24<348 390> 385 40<437 538> 394 31<188 259> +VStem: 23 76<48 244> 283 61<138 188 213 280> 505 72<306 380> +LayerCount: 2 +Fore +SplineSet +348 213 m 1x37 + 392 215 505 276 505 346 c 0 + 505 372 483 385 464 385 c 0 + 404 385 357 283 348 213 c 1x37 +231 394 m 0x6f + 149 394 100 252 100 154 c 0 + 100 76 120 26 155 26 c 0 + 219 26 283 133 283 267 c 0 + 283 345 266 394 231 394 c 0x6f +513 425 m 0x37 + 563 425 577 393 577 364 c 0 + 577 270 407 188 346 188 c 1 + 345 185 344 162 344 157 c 0 + 344 97 362 52 411 52 c 0 + 455 52 509 116 512 119 c 1 + 515 119 523 106 523 100 c 1 + 510 79 437 -6 375 -6 c 0xb7 + 325 -6 291 21 276 70 c 1 + 236 25 187 -5 137 -5 c 0 + 59 -5 23 51 23 135 c 0 + 23 272 133 425 245 425 c 0x6f + 304 425 339 392 353 340 c 1 + 400 392 458 425 513 425 c 0x37 +EndSplineSet +EndChar + +StartChar: eng +Encoding: 331 331 393 +Width: 464 +Flags: HW +HStem: -4 21G<68 82> 353 72<299 363> 371 54<93 155> +VStem: 109 73<244 397> 334 75<216 380> +LayerCount: 2 +Fore +SplineSet +352 44 m 2xd8 + 344 9 324 -65 282 -121 c 0 + 241 -175 180 -215 146 -229 c 1 + 142 -226 138 -217 138 -210 c 1 + 203 -173 253 -87 276 21 c 2 + 327 258 l 2 + 329 267 334 300 334 311 c 0 + 334 336 333 353 315 353 c 0xd8 + 279 353 158 241 135 119 c 0 + 126 72 120 47 110 0 c 1 + 96 -2 89 -4 75 -4 c 0 + 61 -4 55 -2 41 0 c 1 + 105 315 l 2 + 106 321 109 342 109 347 c 0 + 109 356 110 371 100 371 c 0 + 79 371 34 317 31 314 c 1 + 28 314 21 327 21 333 c 1 + 32 352 99 425 145 425 c 0xb8 + 166 425 183 403 183 374 c 0 + 183 366 180 343 175 322 c 2 + 157 240 l 1 + 170 264 284 425 349 425 c 0 + 394 425 409 400 409 360 c 0 + 409 330 403 287 396 254 c 2 + 352 44 l 2xd8 +EndSplineSet +EndChar + +StartChar: uni0237 +Encoding: 567 567 394 +Width: 243 +Flags: HW +HStem: 371 54<101 164> +VStem: 118 73<245 397> +LayerCount: 2 +Fore +SplineSet +114 315 m 2 + 115 321 118 342 118 347 c 0 + 118 356 118 371 108 371 c 0 + 87 371 43 317 40 314 c 1 + 37 314 30 327 30 333 c 1 + 41 352 107 425 153 425 c 0 + 174 425 191 403 191 374 c 0 + 191 366 189 343 185 322 c 2 + 131 44 l 2 + 124 9 104 -65 62 -121 c 0 + 21 -175 -40 -215 -74 -229 c 1 + -78 -226 -83 -217 -83 -210 c 1 + -18 -173 35 -87 56 21 c 2 + 114 315 l 2 +EndSplineSet +EndChar + +StartChar: uni1E02 +Encoding: 7682 7682 395 +Width: 552 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 590 231 2 +Refer: 33 66 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E03 +Encoding: 7683 7683 396 +Width: 418 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 460 250 2 +Refer: 65 98 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0A +Encoding: 7690 7690 397 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 618 231 2 +Refer: 35 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0B +Encoding: 7691 7691 398 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 649 250 2 +Refer: 67 100 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E0C +Encoding: 7692 7692 399 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 273 -1 N 1 0 0 1 132 -27 2 +Refer: 35 68 N 1 0 0 1 -1 0 2 +EndChar + +StartChar: uni1E0D +Encoding: 7693 7693 400 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 253 803 N 1 0 0 1 410 -34 2 +EndChar + +StartChar: uni1E0E +Encoding: 7694 7694 401 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 35 68 N 1 0 0 1 -1 0 2 +Refer: 245 772 N 1 0 0 1 463 -579 2 +EndChar + +StartChar: uni1E0F +Encoding: 7695 7695 402 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 245 772 N 1 0 0 1 410 -582 2 +EndChar + +StartChar: uni1E10 +Encoding: 7696 7696 403 +Width: 667 +Flags: HW +LayerCount: 2 +Fore +Refer: 272 -1 N 1 0 0 1 22 3 2 +Refer: 35 68 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E11 +Encoding: 7697 7697 404 +Width: 438 +Flags: HW +LayerCount: 2 +Fore +Refer: 67 100 N 1 0 0 1 0 0 2 +Refer: 255 807 N 1 0 0 1 495 3 2 +EndChar + +StartChar: uni1E1E +Encoding: 7710 7710 405 +Width: 496 +Flags: HW +LayerCount: 2 +Fore +Refer: 37 70 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 600 231 2 +EndChar + +StartChar: uni1E1F +Encoding: 7711 7711 406 +Width: 289 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 581 250 2 +Refer: 69 102 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E24 +Encoding: 7716 7716 407 +Width: 669 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 273 -1 N 1 0 0 1 149 -27 2 +EndChar + +StartChar: uni1E25 +Encoding: 7717 7717 408 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 0 0 2 +Refer: 253 803 N 1 0 0 1 420 -34 2 +EndChar + +StartChar: uni1E28 +Encoding: 7720 7720 409 +Width: 669 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 272 -1 N 1 0 0 1 -83 3 2 +EndChar + +StartChar: uni1E29 +Encoding: 7721 7721 410 +Width: 458 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 4 0 2 +Refer: 255 807 N 1 0 0 1 288 3 2 +EndChar + +StartChar: uni1E2A +Encoding: 7722 7722 411 +Width: 669 +Flags: HW +LayerCount: 2 +Fore +Refer: 39 72 N 1 0 0 1 0 0 2 +Refer: 246 774 N 1 0 0 1 496 -659 2 +EndChar + +StartChar: uni1E2B +Encoding: 7723 7723 412 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 0 0 2 +Refer: 246 774 N 1 0 0 1 400 -662 2 +EndChar + +StartChar: uni1E40 +Encoding: 7744 7744 413 +Width: 818 +Flags: HW +LayerCount: 2 +Fore +Refer: 44 77 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 761 231 2 +EndChar + +StartChar: uni1E41 +Encoding: 7745 7745 414 +Width: 697 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 625 6 2 +Refer: 76 109 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E56 +Encoding: 7766 7766 415 +Width: 499 +Flags: HW +LayerCount: 2 +Fore +Refer: 47 80 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 579 231 2 +EndChar + +StartChar: uni1E57 +Encoding: 7767 7767 416 +Width: 437 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 531 8 2 +Refer: 79 112 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E60 +Encoding: 7776 7776 417 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 569 232 2 +EndChar + +StartChar: uni1E61 +Encoding: 7777 7777 418 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 461 9 2 +Refer: 82 115 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E62 +Encoding: 7778 7778 419 +Width: 460 +Flags: HW +LayerCount: 2 +Fore +Refer: 50 83 N 1 0 0 1 0 0 2 +Refer: 273 -1 N 1 0 0 1 52 -34 2 +EndChar + +StartChar: uni1E63 +Encoding: 7779 7779 420 +Width: 314 +Flags: HW +LayerCount: 2 +Fore +Refer: 82 115 N 1 0 0 1 0 0 2 +Refer: 253 803 N 1 0 0 1 328 -34 2 +EndChar + +StartChar: uni1E6A +Encoding: 7786 7786 421 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 0 0 2 +Refer: 247 775 N 1 0 0 1 624 245 2 +EndChar + +StartChar: uni1E6B +Encoding: 7787 7787 422 +Width: 271 +Flags: HW +LayerCount: 2 +Fore +Refer: 247 775 N 1 0 0 1 458 106 2 +Refer: 83 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E6C +Encoding: 7788 7788 423 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 0 0 2 +Refer: 273 -1 N 1 0 0 1 105 -27 2 +EndChar + +StartChar: uni1E6D +Encoding: 7789 7789 424 +Width: 271 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 0 0 2 +Refer: 253 803 N 1 0 0 1 325 -34 2 +EndChar + +StartChar: uni1E6E +Encoding: 7790 7790 425 +Width: 573 +Flags: HW +LayerCount: 2 +Fore +Refer: 51 84 N 1 0 0 1 0 0 2 +Refer: 245 772 N 1 0 0 1 467 -579 2 +EndChar + +StartChar: uni1E6F +Encoding: 7791 7791 426 +Width: 271 +Flags: HW +LayerCount: 2 +Fore +Refer: 83 116 N 1 0 0 1 0 0 2 +Refer: 245 772 N 1 0 0 1 339 -582 2 +EndChar + +StartChar: Wgrave +Encoding: 7808 7808 427 +Width: 821 +Flags: HW +LayerCount: 2 +Fore +Refer: 265 -1 N 1 0 0 1 209 31 2 +Refer: 54 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wgrave +Encoding: 7809 7809 428 +Width: 614 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 571 -26 2 +Refer: 86 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wacute +Encoding: 7810 7810 429 +Width: 821 +Flags: HW +LayerCount: 2 +Fore +Refer: 266 -1 N 1 0 0 1 335 31 2 +Refer: 54 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wacute +Encoding: 7811 7811 430 +Width: 614 +Flags: HW +LayerCount: 2 +Fore +Refer: 219 769 N 1 0 0 1 658 6 2 +Refer: 86 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Wdieresis +Encoding: 7812 7812 431 +Width: 821 +Flags: HW +LayerCount: 2 +Fore +Refer: 275 -1 N 1 0 0 1 224 14 2 +Refer: 54 87 N 1 0 0 1 0 0 2 +EndChar + +StartChar: wdieresis +Encoding: 7813 7813 432 +Width: 614 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 609 10 2 +Refer: 86 119 N 1 0 0 1 0 0 2 +EndChar + +StartChar: uni1E92 +Encoding: 7826 7826 433 +Width: 587 +Flags: HW +LayerCount: 2 +Fore +Refer: 57 90 N 1 0 0 1 0 0 2 +Refer: 273 -1 N 1 0 0 1 127 -24 2 +EndChar + +StartChar: uni1E93 +Encoding: 7827 7827 434 +Width: 377 +Flags: HW +LayerCount: 2 +Fore +Refer: 89 122 N 1 0 0 1 0 0 2 +Refer: 253 803 N 1 0 0 1 379 -28 2 +EndChar + +StartChar: uni1E96 +Encoding: 7830 7830 435 +Width: 458 +Flags: HW +LayerCount: 2 +Fore +Refer: 71 104 N 1 0 0 1 0 0 2 +Refer: 245 772 N 1 0 0 1 430 -582 2 +EndChar + +StartChar: uni1E97 +Encoding: 7831 7831 436 +Width: 271 +Flags: HW +LayerCount: 2 +Fore +Refer: 248 776 N 1 0 0 1 439 110 2 +Refer: 83 116 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Ygrave +Encoding: 7922 7922 437 +Width: 542 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 56 89 N 1 0 0 1 0 0 2 +Refer: 265 -1 N 1 0 0 1 78 31 2 +EndChar + +StartChar: ygrave +Encoding: 7923 7923 438 +Width: 436 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 218 768 N 1 0 0 1 461 -26 2 +Refer: 88 121 N 1 0 0 1 0 0 2 +EndChar + +StartChar: Gcaron +Encoding: 486 486 439 +Width: 680 +Flags: HW +LayerCount: 2 +Fore +Refer: 277 -1 N 1 0 0 1 178 0 2 +Refer: 38 71 N 1 0 0 1 0 0 2 +EndChar + +StartChar: gcaron +Encoding: 487 487 440 +Width: 402 +Flags: HW +LayerCount: 2 +Fore +Refer: 70 103 N 1 0 0 1 0 0 2 +Refer: 250 780 N 1 0 0 1 469 2 2 +EndChar + +StartChar: uni02BE +Encoding: 702 702 441 +Width: 190 +VWidth: 0 +Flags: HW +HStem: 428 33<25 75> 648 33<66 108> +VStem: 20 155 +LayerCount: 2 +Fore +SplineSet +28 461 m 1 + 74 461 115 505 125 555 c 0 + 136 609 116 648 62 648 c 1 + 60 654 59 669 70 682 c 1 + 142 682 189 624 175 556 c 0 + 161 488 91 428 20 428 c 1 + 19 437 20 447 28 461 c 1 +EndSplineSet +EndChar + +StartChar: uni02BF +Encoding: 703 703 442 +Width: 190 +VWidth: 0 +Flags: HW +HStem: 428 33<89 129> 648 33<117 173> +VStem: 20 153 +LayerCount: 2 +Fore +SplineSet +129 461 m 1 + 131 447 131 437 126 428 c 1 + 55 428 6 488 20 556 c 0 + 34 624 101 682 173 682 c 1 + 178 669 174 654 170 648 c 1 + 116 648 80 609 69 555 c 0 + 59 505 83 461 129 461 c 1 +EndSplineSet +EndChar + +StartChar: quotereversed +Encoding: 8219 8219 443 +Width: 205 +Flags: HW +LayerCount: 2 +Fore +SplineSet +19 628 m 0 + 19 657 26 693 37 709 c 1 + 45 711 52 713 60 713 c 0 + 97 713 137 690 137 662 c 0 + 137 648 129 637 118 625 c 0 + 105 609 89 596 89 578 c 0 + 89 567 100 514 171 472 c 1 + 166 459 158 451 148 451 c 0 + 137 451 19 518 19 628 c 0 +EndSplineSet +EndChar + +StartChar: uni201F +Encoding: 8223 8223 444 +Width: 370 +Flags: HW +LayerCount: 2 +Fore +SplineSet +183 626 m 0 + 183 655 190 691 201 707 c 1 + 209 709 216 711 224 711 c 0 + 261 711 301 688 301 660 c 0 + 301 646 293 635 282 623 c 0 + 269 607 253 594 253 576 c 0 + 253 565 264 512 335 470 c 1 + 330 457 322 449 312 449 c 0 + 301 449 183 516 183 626 c 0 +18 626 m 0 + 18 655 25 691 36 707 c 1 + 44 709 51 711 59 711 c 0 + 96 711 136 688 136 660 c 0 + 136 646 128 635 117 623 c 0 + 104 607 88 594 88 576 c 0 + 88 565 99 512 170 470 c 1 + 165 457 157 449 147 449 c 0 + 136 449 18 516 18 626 c 0 +EndSplineSet +EndChar + +StartChar: zero.ltr.prop +Encoding: 65572 -1 445 +Width: 487 +Flags: HW +LayerCount: 2 +Fore +Refer: 15 -1 N 1 0 0 1 11 0 2 +EndChar + +StartChar: one.ltr.prop +Encoding: 65573 -1 446 +Width: 277 +Flags: HW +LayerCount: 2 +Fore +Refer: 16 -1 N 1 0 0 1 -115 0 2 +EndChar + +StartChar: two.ltr.prop +Encoding: 65574 -1 447 +Width: 422 +Flags: HW +LayerCount: 2 +Fore +Refer: 17 -1 N 1 0 0 1 -54 0 2 +EndChar + +StartChar: three.ltr.prop +Encoding: 65575 -1 448 +Width: 407 +Flags: HW +LayerCount: 2 +Fore +Refer: 18 -1 N 1 0 0 1 -65 0 2 +EndChar + +StartChar: four.ltr.prop +Encoding: 65576 -1 449 +Width: 434 +Flags: HW +LayerCount: 2 +Fore +Refer: 19 -1 N 1 0 0 1 -44 0 2 +EndChar + +StartChar: five.ltr.prop +Encoding: 65577 -1 450 +Width: 404 +Flags: HW +LayerCount: 2 +Fore +Refer: 20 -1 N 1 0 0 1 -47 0 2 +EndChar + +StartChar: six.ltr.prop +Encoding: 65578 -1 451 +Width: 435 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 21 -1 N 1 0 0 1 -11 0 2 +EndChar + +StartChar: seven.ltr.prop +Encoding: 65579 -1 452 +Width: 401 +Flags: HW +LayerCount: 2 +Fore +Refer: 22 -1 N 1 0 0 1 7 0 2 +EndChar + +StartChar: eight.ltr.prop +Encoding: 65580 -1 453 +Width: 424 +Flags: HW +LayerCount: 2 +Fore +Refer: 23 -1 N 1 0 0 1 -30 0 2 +EndChar + +StartChar: nine.ltr.prop +Encoding: 65581 -1 454 +Width: 434 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 24 -1 N 1 0 0 1 -21 0 2 +EndChar + +StartChar: uni202F +Encoding: 8239 8239 455 +Width: 166 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: fraction +Encoding: 8260 8260 456 +AltUni2: 002215.ffffffff.0 +Width: 503 +Flags: W +HStem: -2 21G<42 57> +LayerCount: 2 +Fore +SplineSet +481 704 m 1 + 72 14 l 2 + 68 7 62 -2 53 -2 c 0 + 32 -2 22 10 22 10 c 1 + 432 700 l 2 + 435 706 441 714 447 714 c 0 + 463 714 477 707 481 704 c 1 +EndSplineSet +EndChar + +StartChar: i.TRK +Encoding: 65582 -1 457 +Width: 255 +Flags: HW +LayerCount: 2 +Fore +Refer: 72 105 N 1 0 0 1 0 0 2 +EndChar + +StartChar: longs +Encoding: 383 383 458 +Width: 289 +Flags: HMW +HStem: -228 42<-83 -7> 627 42<267 342> +LayerCount: 2 +Back +SplineSet +191.40625 367.1875 m 1 + 168.620117188 232.421875 149.4140625 124.0234375 133.7890625 41.9921875 c 1 + 118.489257812 -35.8076171875 91.064453125 -100.178710938 51.513671875 -151.123046875 c 128 + 11.962890625 -202.067382812 -27.9951171875 -227.5390625 -68.359375 -227.5390625 c 0 + -94.7265625 -227.5390625 -112.3046875 -219.401367188 -121.09375 -203.125 c 1 + -121.09375 -199.870117188 -120.768554688 -194.661132812 -120.1171875 -187.5 c 1 + -116.2109375 -161.458007812 -106.770507812 -148.4375 -91.796875 -148.4375 c 0 + -86.5888671875 -148.4375 -81.6240234375 -149.658203125 -76.904296875 -152.099609375 c 128 + -72.1845703125 -154.541015625 -68.5224609375 -156.982421875 -65.91796875 -159.423828125 c 128 + -63.3134765625 -161.865234375 -59.5703125 -165.690429688 -54.6875 -170.8984375 c 0 + -44.921875 -180.6640625 -35.4814453125 -185.546875 -26.3671875 -185.546875 c 0 + -8.1376953125 -185.546875 6.9990234375 -169.026367188 19.04296875 -135.986328125 c 128 + 31.0869140625 -102.946289062 45.2470703125 -44.921875 61.5234375 38.0859375 c 1 + 120.1171875 367.1875 l 1 + 125.9765625 403.3203125 l 1 + 141.276367188 480.793945312 168.620117188 544.43359375 208.0078125 594.23828125 c 128 + 247.395507812 644.04296875 287.434570312 668.9453125 328.125 668.9453125 c 0 + 354.4921875 668.9453125 372.0703125 660.807617188 380.859375 644.53125 c 1 + 380.859375 643.5546875 380.778320312 642.08984375 380.615234375 640.13671875 c 128 + 380.452148438 638.18359375 380.37109375 636.71875 380.37109375 635.7421875 c 0 + 379.39453125 623.046875 376.545898438 612.223632812 371.826171875 603.271484375 c 128 + 367.106445312 594.319335938 360.3515625 589.84375 351.5625 589.84375 c 0 + 346.354492188 589.84375 341.389648438 591.064453125 336.669921875 593.505859375 c 128 + 331.950195312 595.947265625 328.288085938 598.388671875 325.68359375 600.830078125 c 128 + 323.079101562 603.271484375 319.3359375 607.096679688 314.453125 612.3046875 c 0 + 304.6875 622.0703125 295.247070312 626.953125 286.1328125 626.953125 c 0 + 266.926757812 626.953125 250.081054688 604.817382812 235.595703125 560.546875 c 128 + 221.110351562 516.276367188 206.379882812 451.823242188 191.40625 367.1875 c 1 +EndSplineSet +Fore +SplineSet +126 403 m 2 + 154 564 250 669 328 669 c 0 + 356 669 374 658 381 645 c 1 + 381 642 381 639 381 636 c 0 + 379 614 371 590 352 590 c 0 + 335 590 325 600 314 612 c 0 + 307 619 300 627 286 627 c 0 + 244 627 217 514 191 367 c 2 + 191 367 157 165 134 42 c 0 + 103 -118 10 -228 -68 -228 c 0 + -96 -228 -114 -216 -121 -203 c 1 + -121 -198 -121 -193 -120 -188 c 0 + -117 -168 -109 -148 -92 -148 c 0 + -75 -148 -66 -159 -55 -171 c 0 + -48 -178 -40 -186 -26 -186 c 0 + 12 -186 32 -117 62 38 c 1 + 83 160 126 403 126 403 c 2 +EndSplineSet +EndChar + +StartChar: uni2042 +Encoding: 8258 8258 459 +Width: 856 +Flags: HW +LayerCount: 2 +Fore +Refer: 9 42 N 1 0 0 1 260 0 2 +Refer: 9 42 N 1 0 0 1 -17 -393 2 +Refer: 9 42 N 1 0 0 1 419 -393 2 +EndChar + +StartChar: uni00AD +Encoding: 173 173 460 +Width: 0 +VWidth: 0 +Flags: HW +LayerCount: 2 +EndChar + +StartChar: zero +Encoding: 48 48 461 +Width: 532 +Flags: W +HStem: -3 36<218 310> 590 36<223 315> +VStem: 53 86<169 455> 393 86<168 460> +LayerCount: 2 +Fore +SplineSet +271 590 m 0 + 189 590 139 465 139 312 c 0 + 139 159 190 33 262 33 c 0 + 349 33 393 164 393 317 c 0 + 393 470 343 590 271 590 c 0 +266 626 m 0 + 403 626 479 482 479 312 c 0 + 479 142 401 -3 266 -3 c 0 + 133 -3 53 142 53 312 c 0 + 53 482 131 626 266 626 c 0 +EndSplineSet +EndChar + +StartChar: zero.rtl +Encoding: 65583 -1 462 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 461 48 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: one +Encoding: 49 49 463 +Width: 532 +Flags: W +HStem: -3 28<170 235 324 388> 607 20G<313 319> +VStem: 241 77<32 545> +LayerCount: 2 +Fore +SplineSet +241 113 m 2 + 241 508 l 2 + 241 536 235 545 221 545 c 0 + 206 545 168 531 152 525 c 1 + 147 529 143 535 143 542 c 0 + 143 544 142 547 145 548 c 0 + 225 584 311 627 314 627 c 2 + 316 627 l 2 + 322 627 325 616 326 611 c 1 + 326 611 318 577 318 517 c 2 + 318 113 l 2 + 318 84 318 57 323 41 c 0 + 326 30 374 25 386 25 c 1 + 390 20 391 2 386 -3 c 1 + 346 -1 315 2 277 2 c 0 + 239 2 213 -1 173 -3 c 1 + 168 2 169 20 173 25 c 1 + 185 25 232 30 235 41 c 0 + 240 57 241 84 241 113 c 2 +EndSplineSet +EndChar + +StartChar: one.rtl +Encoding: 65584 -1 464 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 463 49 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: two +Encoding: 50 50 465 +Width: 532 +Flags: W +HStem: 0 71<160 404> 563 63<182 302> +VStem: 80 19<486 492> 346 83<369 518> +LayerCount: 2 +Fore +SplineSet +467 146 m 1 + 447 98 420 18 414 0 c 9 + 414 0 83 0 76 0 c 1 + 72 2 66 10 66 14 c 1 + 148 105 242 216 299 299 c 0 + 339 358 346 397 346 445 c 0 + 346 512 300 563 238 563 c 0 + 160 563 111 499 99 479 c 1 + 91 479 80 491 80 495 c 1 + 87 519 157 627 260 627 c 0 + 354 627 429 547 429 464 c 0 + 429 408 407 358 373 316 c 0 + 304 231 204 120 160 71 c 9 + 354 71 l 2 + 393 71 415 95 436 146 c 0 + 438 151 441 152 447 152 c 0 + 451 152 463 149 467 146 c 1 +EndSplineSet +EndChar + +StartChar: two.rtl +Encoding: 65585 -1 466 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 465 50 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: three +Encoding: 51 51 467 +Width: 532 +Flags: W +HStem: -5 39<183 302> 311 29<176 224> 575 52<193 298> +VStem: 330 73<435 543> 365 84<122 262> +LayerCount: 2 +Fore +SplineSet +275 627 m 0xf0 + 325 627 403 582 403 502 c 0xf0 + 403 439 346 391 312 370 c 1 + 368 362 449 309 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 74 365 186 c 0xe8 + 365 265 304 323 240 323 c 0 + 219 323 194 314 182 311 c 1 + 178 316 176 322 176 330 c 0 + 176 334 176 337 178 340 c 1 + 256 358 330 400 330 484 c 0 + 330 536 290 575 234 575 c 0 + 172 575 134 518 125 511 c 1 + 119 511 113 523 113 532 c 1 + 143 577 199 627 275 627 c 0xf0 +EndSplineSet +EndChar + +StartChar: three.rtl +Encoding: 65586 -1 468 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 467 51 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: four +Encoding: 52 52 469 +Width: 532 +Flags: W +HStem: -6 21G<357 388> 170 56<115 334 411 480> 609 20G<393 401> +VStem: 334 77<-5 170 226 512> +LayerCount: 2 +Fore +SplineSet +396 629 m 0 + 406 629 411 619 411 611 c 2 + 411 226 l 25 + 469 226 l 18 + 475 226 482 207 482 186 c 0 + 482 177 481 173 479 170 c 1 + 411 170 l 25 + 411 -1 l 1 + 411 -1 407 -6 369 -6 c 0 + 346 -6 334 -5 334 2 c 2 + 334 170 l 25 + 59 170 l 1 + 52 174 49 182 49 188 c 1 + 367 604 l 2 + 373 612 388 629 396 629 c 0 +334 512 m 25 + 115 226 l 25 + 334 226 l 25 + 334 512 l 25 +EndSplineSet +EndChar + +StartChar: four.rtl +Encoding: 65587 -1 470 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 469 52 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: five +Encoding: 53 53 471 +Width: 532 +Flags: W +HStem: -5 39<183 302> 331 55<163 294> 543 77<193 391> 609 20G<320 413> +VStem: 365 84<124 260> +LayerCount: 2 +Fore +SplineSet +266 386 m 0xe8 + 381 386 449 296 449 213 c 0 + 449 79 323 -5 201 -5 c 0 + 175 -5 133 2 102 18 c 1 + 96 22 82 39 82 55 c 0 + 82 83 102 102 123 102 c 0 + 150 102 162 75 178 59 c 0 + 197 40 224 34 250 34 c 0 + 302 34 365 73 365 186 c 0 + 365 247 322 331 209 331 c 3 + 188 331 143 324 127 316 c 1 + 123 316 119 323 119 330 c 1 + 140 439 165 560 176 620 c 1 + 320 620 l 2xe8 + 360 620 410 629 410 629 c 17xd8 + 416 625 422 623 422 618 c 0 + 422 612 411 570 393 549 c 1 + 366 546 330 543 279 543 c 2 + 279 543 210 543 197 543 c 1 + 185 484 174 422 162 367 c 1 + 189 378 240 386 266 386 c 0xe8 +EndSplineSet +EndChar + +StartChar: five.rtl +Encoding: 65588 -1 472 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 471 53 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: six +Encoding: 54 54 473 +Width: 532 +Flags: W +HStem: -6 32<225 318> 338 48<201 324> 604 28<401 434> +VStem: 71 84<117 306> 378 83<108 278> +LayerCount: 2 +Fore +SplineSet +159 299 m 1 + 156 278 155 255 155 232 c 0 + 155 144 193 26 271 26 c 0 + 333 26 378 92 378 180 c 0 + 378 263 343 338 255 338 c 0 + 227 338 191 334 159 299 c 1 +282 386 m 0 + 419 386 461 268 461 198 c 0 + 461 89 374 -6 263 -6 c 0 + 145 -6 71 110 71 215 c 0 + 71 315 103 407 165 474 c 0 + 234 550 345 611 427 632 c 1 + 436 632 438 610 438 604 c 1 + 356 578 211 515 167 342 c 1 + 201 370 249 386 282 386 c 0 +EndSplineSet +EndChar + +StartChar: six.rtl +Encoding: 65589 -1 474 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 473 54 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: seven +Encoding: 55 55 475 +Width: 532 +Flags: W +HStem: -5 21G<168 178> 547 71<115 410> +LayerCount: 2 +Fore +SplineSet +398 618 m 2 + 423 618 459 621 465 621 c 0 + 471 621 471 617 471 612 c 0 + 471 599 456 574 443 547 c 2 + 186 -2 l 1 + 184 -4 181 -5 176 -5 c 0 + 161 -5 133 4 133 13 c 1 + 234 165 410 547 410 547 c 9 + 162 547 l 2 + 123 547 107 524 92 472 c 0 + 91 467 86 466 80 466 c 0 + 76 466 65 469 61 472 c 1 + 78 525 95 587 102 618 c 9 + 398 618 l 2 +EndSplineSet +EndChar + +StartChar: seven.rtl +Encoding: 65590 -1 476 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 475 55 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: eight +Encoding: 56 56 477 +Width: 532 +Flags: W +HStem: -9 35<211 326> 594 34<221 314> +VStem: 82 77<75 220> 109 72<420 543> 361 70<414 549> 371 79<84 198> +LayerCount: 2 +Fore +SplineSet +266 26 m 0xe4 + 330 26 371 69 371 135 c 0 + 371 216 260 280 246 288 c 0 + 244 289 243 290 240 290 c 0 + 239 290 237 290 236 289 c 0 + 182 255 159 215 159 153 c 0 + 159 73 214 26 266 26 c 0xe4 +266 594 m 0 + 219 594 182 545 182 486 c 0 + 182 411 246 376 283 355 c 0 + 285 354 287 354 289 354 c 0 + 291 354 292 353 295 355 c 0 + 335 381 361 421 361 475 c 0xd8 + 361 532 325 594 266 594 c 0 +271 628 m 0 + 358 628 432 575 432 484 c 0xd8 + 432 408 367 364 322 336 c 1 + 318 335 319 332 322 330 c 0 + 381 297 450 233 450 163 c 0 + 450 65 362 -9 264 -9 c 0 + 157 -9 82 55 82 150 c 0xe4 + 82 236 171 287 209 311 c 0 + 212 313 211 315 209 316 c 0 + 168 340 109 397 109 469 c 0 + 109 552 185 628 271 628 c 0 +EndSplineSet +EndChar + +StartChar: eight.rtl +Encoding: 65591 -1 478 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 477 56 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: nine +Encoding: 57 57 479 +Width: 532 +Flags: W +HStem: -6 28<98 132> 240 48<208 331> 600 32<215 307> +VStem: 72 83<348 520> 377 84<320 509> +LayerCount: 2 +Fore +SplineSet +373 327 m 1 + 376 348 377 371 377 394 c 0 + 377 482 340 600 262 600 c 0 + 200 600 155 534 155 446 c 0 + 155 363 189 288 277 288 c 0 + 305 288 341 292 373 327 c 1 +94 22 m 1 + 176 48 321 111 365 284 c 1 + 331 256 283 240 250 240 c 0 + 113 240 72 358 72 428 c 0 + 72 537 159 632 270 632 c 0 + 388 632 461 516 461 411 c 0 + 461 311 429 219 367 152 c 0 + 298 76 187 15 105 -6 c 1 + 96 -6 94 16 94 22 c 1 +EndSplineSet +EndChar + +StartChar: nine.rtl +Encoding: 65592 -1 480 +Width: 532 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 479 57 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: zero.prop +Encoding: 65593 -1 481 +Width: 533 +Flags: HW +LayerCount: 2 +Fore +Refer: 461 48 N 1 0 0 1 0 0 2 +EndChar + +StartChar: zero.rtl.prop +Encoding: 65594 -1 482 +Width: 533 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 481 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: one.prop +Encoding: 65595 -1 483 +Width: 315 +Flags: HW +LayerCount: 2 +Fore +Refer: 463 49 N 1 0 0 1 -111 0 2 +EndChar + +StartChar: one.rtl.prop +Encoding: 65596 -1 484 +Width: 315 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 483 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: two.prop +Encoding: 65597 -1 485 +Width: 467 +Flags: HW +LayerCount: 2 +Fore +Refer: 465 50 N 1 0 0 1 -34 0 2 +EndChar + +StartChar: two.rtl.prop +Encoding: 65598 -1 486 +Width: 467 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 485 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: three.prop +Encoding: 65599 -1 487 +Width: 448 +Flags: HW +LayerCount: 2 +Fore +Refer: 467 51 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: three.rtl.prop +Encoding: 65600 -1 488 +Width: 448 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 487 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: four.prop +Encoding: 65601 -1 489 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 469 52 N 1 0 0 1 -39 0 2 +EndChar + +StartChar: four.rtl.prop +Encoding: 65602 -1 490 +Width: 481 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 489 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: five.prop +Encoding: 65603 -1 491 +Width: 442 +Flags: HW +LayerCount: 2 +Fore +Refer: 471 53 N 1 0 0 1 -49 0 2 +EndChar + +StartChar: five.rtl.prop +Encoding: 65604 -1 492 +Width: 442 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 491 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: six.prop +Encoding: 65605 -1 493 +Width: 482 +Flags: HW +LayerCount: 2 +Fore +Refer: 473 54 N 1 0 0 1 -21 0 2 +EndChar + +StartChar: six.rtl.prop +Encoding: 65606 -1 494 +Width: 482 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 493 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: seven.prop +Encoding: 65607 -1 495 +Width: 441 +Flags: HW +LayerCount: 2 +Fore +Refer: 475 55 N 1 0 0 1 -37 0 2 +EndChar + +StartChar: seven.rtl.prop +Encoding: 65608 -1 496 +Width: 441 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 495 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: eight.prop +Encoding: 65609 -1 497 +Width: 484 +Flags: HW +LayerCount: 2 +Fore +Refer: 477 56 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: eight.rtl.prop +Encoding: 65610 -1 498 +Width: 484 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 497 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: nine.prop +Encoding: 65611 -1 499 +Width: 481 +Flags: HW +LayerCount: 2 +Fore +Refer: 479 57 N 1 0 0 1 -27 0 2 +EndChar + +StartChar: nine.rtl.prop +Encoding: 65612 -1 500 +Width: 481 +VWidth: 0 +Flags: H +LayerCount: 2 +Fore +Refer: 499 -1 N 1 0 -0.176327 1 0 0 3 +EndChar + +StartChar: zero.small +Encoding: 65613 -1 501 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 0.6 0 0 0.6 19.1049 -40 2 +EndChar + +StartChar: one.small +Encoding: 65614 -1 502 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 0.6 0 0 0.6 14.9796 -40 2 +EndChar + +StartChar: two.small +Encoding: 65615 -1 503 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 466 -1 N 0.6 0 0 0.6 15.3691 -40 2 +EndChar + +StartChar: three.small +Encoding: 65616 -1 504 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 468 -1 N 0.6 0 0 0.6 15.4834 -40 2 +EndChar + +StartChar: four.small +Encoding: 65617 -1 505 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 470 -1 N 0.6 0 0 0.6 5.48926 -40 2 +EndChar + +StartChar: five.small +Encoding: 65618 -1 506 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 472 -1 N 0.6 0 0 0.6 2.5127 -40 2 +EndChar + +StartChar: six.small +Encoding: 65619 -1 507 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 474 -1 N 0.6 0 0 0.6 9.32284 -40 2 +EndChar + +StartChar: seven.small +Encoding: 65620 -1 508 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 476 -1 N 0.6 0 0 0.6 43.3359 -40 2 +EndChar + +StartChar: eight.small +Encoding: 65621 -1 509 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 478 -1 N 0.6 0 0 0.6 11.4954 -40 2 +EndChar + +StartChar: nine.small +Encoding: 65622 -1 510 +Width: 292 +VWidth: -40 +Flags: HW +LayerCount: 2 +Fore +Refer: 480 -1 N 0.6 0 0 0.6 28.9767 -40 2 +EndChar + +StartChar: zero.medium +Encoding: 65623 -1 511 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 462 -1 N 0.8 0 0 0.8 50.1404 50 2 +EndChar + +StartChar: one.medium +Encoding: 65624 -1 512 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 464 -1 N 0.8 0 0 0.8 44.6393 50 2 +EndChar + +StartChar: two.medium +Encoding: 65625 -1 513 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 466 -1 N 0.8 0 0 0.8 45.8262 50 2 +EndChar + +StartChar: three.medium +Encoding: 65626 -1 514 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 468 -1 N 0.8 0 0 0.8 45.6445 50 2 +EndChar + +StartChar: four.medium +Encoding: 65627 -1 515 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 470 -1 N 0.8 0 0 0.8 32.3193 50 2 +EndChar + +StartChar: five.medium +Encoding: 65628 -1 516 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 472 -1 N 0.8 0 0 0.8 28.3496 50 2 +EndChar + +StartChar: six.medium +Encoding: 65629 -1 517 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 474 -1 N 0.8 0 0 0.8 37.0973 50 2 +EndChar + +StartChar: seven.medium +Encoding: 65630 -1 518 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 476 -1 N 0.8 0 0 0.8 82.7812 50 2 +EndChar + +StartChar: eight.medium +Encoding: 65631 -1 519 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 478 -1 N 0.8 0 0 0.8 39.6605 50 2 +EndChar + +StartChar: nine.medium +Encoding: 65632 -1 520 +Width: 439 +VWidth: 50 +Flags: HW +LayerCount: 2 +Fore +Refer: 480 -1 N 0.8 0 0 0.8 63.3023 50 2 +EndChar + +StartChar: zero.numr +Encoding: 65633 -1 521 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 501 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: one.numr +Encoding: 65634 -1 522 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 502 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: two.numr +Encoding: 65635 -1 523 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 503 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: three.numr +Encoding: 65636 -1 524 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 504 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: four.numr +Encoding: 65637 -1 525 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 505 -1 S 1 0 0 1 0 550 2 +EndChar + +StartChar: five.numr +Encoding: 65638 -1 526 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 506 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: six.numr +Encoding: 65639 -1 527 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 507 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: seven.numr +Encoding: 65640 -1 528 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 508 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: eight.numr +Encoding: 65641 -1 529 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 509 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: nine.numr +Encoding: 65642 -1 530 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 510 -1 N 1 0 0 1 0 550 2 +EndChar + +StartChar: circumflex +Encoding: 710 710 531 +Width: 240 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 220 770 N 1 0 0 1 379 0 2 +EndChar + +StartChar: ring +Encoding: 730 730 532 +Width: 445 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 249 778 S 1 0 0 1 466.019 0 2 +EndChar + +StartChar: tilde +Encoding: 732 732 533 +Width: 435 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 221 771 S 1 0 0 1 464 0 2 +EndChar + +StartChar: uni2074 +Encoding: 8308 8308 534 +Width: 292 +VWidth: 0 +Flags: HW +LayerCount: 2 +Fore +Refer: 469 52 S 0.6 0 0 0.6 -12 510 2 +EndChar +EndChars +EndSplineFont diff -Nru fonts-hosny-amiri-0.112/sources/lellah.fea fonts-hosny-amiri-0.113/sources/lellah.fea --- fonts-hosny-amiri-0.112/sources/lellah.fea 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/lellah.fea 2020-06-02 19:42:15.000000000 +0000 @@ -118,12 +118,26 @@ sub @Li' lookup LamInitLellah @Lm' lookup LamMediLellah uni0651' @Hf' lookup HehFinaLellah; sub @Li' lookup LamInitLellah @Lm' lookup LamMediLellah uni0651' @xF' @Hf' lookup HehFinaLellah; + # لَلهُ + ignore sub @Ai @Li' uni064E' @Lm' @Hf'; + ignore sub @Ai @Li' uni064E' @Lm' uni0651' @Hf'; + ignore sub @Ai @Li' uni064E' @Lm' uni0651' @xF' @Hf'; + sub @Li' lookup LamInitLellah uni064E' @Lm' lookup LamMediLellah @Hf' lookup HehFinaLellah; + sub @Li' lookup LamInitLellah uni064E' @Lm' lookup LamMediLellah uni0651' @Hf' lookup HehFinaLellah; + sub @Li' lookup LamInitLellah uni064E' @Lm' lookup LamMediLellah uni0651' @xF' @Hf' lookup HehFinaLellah; + # لِله + ignore sub @Ai @Li' uni0651' @Lm' @Hf'; + ignore sub @Ai @Li' uni0651' @Lm' uni0651' @Hf'; + ignore sub @Ai @Li' uni0651' @Lm' uni0651' @xF' @Hf'; sub @Li' lookup LamInitLellah uni0650' @Lm' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub @Li' lookup LamInitLellah uni0650' @Lm' lookup LamMediLellah uni0651' @Hf' lookup HehFinaLellah; sub @Li' lookup LamInitLellah uni0650' @Lm' lookup LamMediLellah uni0651' @xF' @Hf' lookup HehFinaLellah; # لِّله + ignore sub @Ai @Li' uni0651'uni0650' @Lm' @Hf'; + ignore sub @Ai @Li' uni0651'uni0650' @Lm' uni0651' @Hf'; + ignore sub @Ai @Li' uni0651'uni0650' @Lm' uni0651' @xF' @Hf'; sub @Li' lookup LamInitLellah uni0651'uni0650' @Lm' lookup LamMediLellah @Hf' lookup HehFinaLellah; sub @Li' lookup LamInitLellah uni0651'uni0650' @Lm' lookup LamMediLellah uni0651' @Hf' lookup HehFinaLellah; sub @Li' lookup LamInitLellah uni0651'uni0650' @Lm' lookup LamMediLellah uni0651' @xF' @Hf' lookup HehFinaLellah; diff -Nru fonts-hosny-amiri-0.112/sources/local.fea fonts-hosny-amiri-0.113/sources/local.fea --- fonts-hosny-amiri-0.112/sources/local.fea 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/sources/local.fea 2020-06-02 19:42:15.000000000 +0000 @@ -1,16 +1,25 @@ -#ifndef QURAN +#ifdef QURAN # The Quran font does not have a separate period.ara glyph, it is the default # glyph. +feature ccmp { + sub period by period.ara; + sub guillemotleft by guillemotleft.ara; + sub guillemotright by guillemotright.ara; + sub uni030A by uni030A.quran; + sub uni0325 by uni0325.quran; +} ccmp; +#else feature locl { script arab; sub period by period.ara; sub guillemotleft by guillemotleft.ara; sub guillemotright by guillemotright.ara; - language ARA; - language URD; - language SND; - language KSH; - language MLY; + + language ARA include_dflt; + language URD include_dflt; + language SND include_dflt; + language KSH include_dflt; + language MLY include_dflt; } locl; #endif @@ -19,6 +28,7 @@ feature locl { script arab; + language URD exclude_dflt; sub [uni06F4 uni06F6 uni06F7] by [uni06F4.urd uni06F6.urd uni06F7.urd]; sub uni0657 by uni0657.urd; Binary files /tmp/tmpO6sje9/516WfnbTEw/fonts-hosny-amiri-0.112/test-suite/ar.odt and /tmp/tmpO6sje9/XwSJpHV3_J/fonts-hosny-amiri-0.113/test-suite/ar.odt differ diff -Nru fonts-hosny-amiri-0.112/test-suite/ar.txt fonts-hosny-amiri-0.113/test-suite/ar.txt --- fonts-hosny-amiri-0.112/test-suite/ar.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/ar.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,17 +0,0 @@ -حَدّثَنَا عِيسَى بْنُ هِشَامٍ قَالَ: -طَرَحَتْنِي النّوَى مَطَارِحَهَا حَتّى إذَا وَطِئْتُ جُرْجَان الأَقْصى. فاسْتَظْهَرْتُ عَلَى الأَيامِ بِضِياعٍ أَجَلْتُ فِيهَا يَدَ الْعِمَارةِ، وَأَمْوَالٍ وَقَفْتُهَا عَلى التّجَارَةِ، وَحَانُوتٍ جَعَلْتُهُ مَثَابَةٍ، وَرُفْقَةٍ اتّخَذْتُهَا صَحَابَةً، وَجَعَلْتُ لِلْدّارِ، حَاشِيَتَيِ النّهَار، وللحَانُوتِ بَيْنَهُمَا، فَجَلَسْنَا يَوْمًا نَتَذَاكَرُ القرِيضَ وَأَهْلَهُ، وَتِلْقَاءَنا شَابّ قَدْ جَلَسَ غَيْرَ بَعِيدٍ يُنْصِتُ وَكَأَنّهُ يَفْهَمُ، وَيَسْكتُ وَكَأَنّهُ لَا يَعْلَمُ حَتّى إِذَا مَالَ الكَلَامُ بِنَا مَيْلَهُ، وَجَرّ الْجِدَالُ فِينَا ذَيْلَهُ، قَالَ: قَدْ أَصَبْتُمْ عُذَيَقَهُ، وَوَافَيتُمْ جُذَيْلَهُ، وَلَوْ شِئْتُ لَلَفْظْتُ وَأَفَضْتُ، وَلَوْ قُلْتُ لأَصْدَرْتُ وَأَوْرَدْتُ، وَلَجَلَوْتُ الْحقّ في مَعْرَضِ بَيَانٍ يُسْمِعُ الصُّمَّ، وَيُنزلُ الْعُصْمَ، فَقُلْتُ: يَا فَاضِلُ أدْنُ فَقَدْ مَنَّيْتَ، وَهَاتِ فَقَدْ أَثْنَيتَ، فَدَنَا وَقَالَ: سَلُونِي أُجِبْكُمْ، وَاسْمَعُوا أُعْجِبْكُمْ. فَقُلْنَا: مَا تَقُولُ فِي امْرِىءِ الْقَيسِ؟ قَالَ: هُوَ أَوَّلُ مَنْ وَقَفَ بِالدِّيارِ وَعَرَصَاتِهَا، وَاغْتَدَى وَالطَّيرُ فِي وَكَنَاتِهَا، وَوَصَفَ الْخيلَ بِصِفَاِتهَا، وَلَمْ يَقُلِ الشِّعْرَ كَاسِيًا. وَلَمْ يُجِدِ القَوْلَ رَاغِبًا، فَفَضَلَ مَنْ تَفَتَّقَ للْحِيلةِ لِسَانُهُ، وَاْنتَجَعَ لِلرَّغْبَة بَنَانُهُ، قُلْنَا: فَما تَقُولُ فِي الْنَّابِغَةِ؟ قالَ: يَثلِبُ إِذَا حَنِقَ، وَيَمْدَحُ إِذَا رَغِبَ، وَيَعْتَذِرُ إِذَا رَهِبَ، فَلَا يَرْمي إِلَّاصَائِبًا، قُلْنَا:فَمَا تَقُولُ فِي زُهَيرٍ؟ قَالَ يُذِيبُ الشِّعرَ، والشعْرُ يُذيبَهُ، وَيَدعُو القَولَ وَالسِّحْرَ يُجِيبُهُ، قُلْنَا: فَمَا تَقُولُ فِي طَرَفَةَ: قَالَ: هُوَ مَاءُ الأشْعَارِ وَطينَتُها، وَكَنْزُ الْقَوَافِي وَمَديِنَتُهَا، مَاتَ وَلَمْ تَظْهَرْ أَسْرَارُ دَفَائِنِهِ وَلَمْ تُفْتَحْ أَغْلَاقُ خَزَائِنِهِ، قُلْنَا: فَمَا تَقُولُ فِي جَرِيرٍ وَالْفَرَزْدَقِ؟ أَيُّهُمَا أَسْبَقُ؟ فَقَالَ: جَرِيرٌ أَرَقُّ شِعْرًا، وَأَغْزَرُ غَزْرًا وَالْفَرَزْدَقُ أَمْتَنُ صَخْرًا، وَأَكْثَرُ فَخْرًا وَجَرِيرٌ أَوْجَعُ هَجْوًا، وَأَشْرَفُ يَوْمًا وَالْفَرَزْدَقُ أَكَثَرُ رَوْمًا، وَأَكْرَمُ قَوْمًا، وَجَرِيرٌ إِذَا نَسَبَ أَشْجَى، وَإِذَا ثَلَبَ أَرْدَى، وَإِذَا مَدَحَ أَسْنَى، وَالْفَرزدقُ إِذَا افْتَخَرَ أَجْزَى، وَإِذَا احْتَقرَ أَزرَى، وَإِذا وصَفَ أَوفَى، قُلنَا: فَمَا تَقُولُ فِي المُحْدَثِينَ منْ الشُّعَراءِ والمُتَقَدِّمينَ مِنهُمْ؟ قالَ: المُتَقَدِّمونَ أَشْرفُ لَفْظًا، وَأَكثرُ منْ المَعَاني حَظًا، وَالمُتَأَخِّرونَ أَلْطَفُ صُنْعًا، وَأَرَقُّ نَسْجًا، قُلْنا: فَلَو أَرَيْتَ مِنْ أَشْعارِكَ، وَرَوَيْتَ لَنا مِنْ أَخْبارِكَ، قالَ: خُذْهَما في مَعْرِضٍ واحِدٍ، وَقالَ: - -أَما تَرَوْني أَتَغَشَّى طِمْرًا ... مُمْتَطِيًا في الضُّرِّ أَمْرًا مُرًّا -مُضْطَبنًا عَلى اللَّيالي غِمَرًا ... مُلاقِيًا مِنْها صُرُوفًا حَمْرَا -أَقْصَى أَمانِيَّ طُلُوعُ الشِّعْرى ... فَقَد عُنِينَا بِالأَمَاني دَهْرًا -وَكانَ هذَا الحُرُّ أَعْلى قَدْرًا ... وَماءُ هذَا الوَجْهِ أَغْلى سِعْرَا -ضَرَبْتُ لِلسَّرّا قِبَابًا خُضْرَا ... فِي دَارِ دَارَا وَإِوَانِ كِسْرى -فَانْقَلَبَ الدَّهْرُ لِبَطْنٍ ظَهْرا ... وَعَادَ عُرْفُ العَيْشِ عِنْدي نُكْرَا -لَمْ يُبْقِ مِنْ وَفْرِى إِلَّاذِكْرَا ... ثُمَّ إِلى اليَوْمِ هَلُمَّ جَرَّا -لَوْلا عَجُوزٌ لِي بِسُرَّ مَنْ رَا ... وَأَفْرُخٌ دونَ جِبَالِ بُصْرَى -قَدْ جَلَبَ الدَّهْرُ عَلَيْهِمْ ضُرَّا ... قَتَلْتَ يَا سَادَةُ نَفْسي صَبْرَا - -قَالَ عِيسَى بْنُ هِشَامٍ، فَانَلْتُهُ مَا تَاحَ. وَأَعْرَضَ عَنَّا فَرَاحَ. فَجَعَلْتُ أَنْفيهِ وَأُثْبتُهُ، وَأَنْكِرُهُ وَكَأَنِّي أَعْرِفُهُ، ثُمَّ دَلَّتْنِي عَلَيهِ ثَنَاياهُ، فَقُلْتُ: الإِسْكَنْدَريُّ وَاللَّهِ، فَقَدْ كَانَ فَارَقَنَا خِشْفًا، وَوَافانا جِلْفًا، وَنَهَضْتُ عَلى إِثرِهِ، ثَمَّ قَبَضْتُ عَلَى خَصْرِهِ، وَقُلْتُ: أَلَسْتَ أَبَا الفَتْحِ؟ أَلَمْ نُرَبِّكَ فِينا وَلِيدًا وَلَبِثْتَ فِينا مِنْ عُمُرِكَ سِنِينَ؟ فَأَيُّ عَجُوزِ لَكَ بِسُرَّ مَنْ رَا فَضَحِكَ إِليَّ وَقَالَ: - -وَيْحَكَ هذَا الزَّمَان زُورُ ... فَلَا يَغُرَّنَّكَ الغُرُورُ -لَا تَلْتَزِمْ حَالَةً، وَلكِنْ ... دُرْ بِالَّليَالِي كَمَا تَدُورُ. diff -Nru fonts-hosny-amiri-0.112/test-suite/baqara-intro.pango fonts-hosny-amiri-0.113/test-suite/baqara-intro.pango --- fonts-hosny-amiri-0.112/test-suite/baqara-intro.pango 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/baqara-intro.pango 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -بِسۡمِ ٱللَّهِ ٱلرَّحۡمَٰنِ ٱلرَّحِیمِ -الۤمۤ ۝١ ذَٰلِكَ ٱلۡكِتَٰبُ لَا رَیۡبَۛ فِیهِۛ هُدََى لِّلۡمُتَّقِینَ ۝٢ ٱلَّذِینَ یُؤۡمِنُونَ بِٱلۡغَیۡبِ وَیُقِیمُونَ ٱلصَّلَوٰةَ وَمِمَّا رَزَقۡنَٰهُمۡ یُنفِقُونَ ۝٣ وَٱلَّذِینَ یُؤۡمِنُونَ بِمَاۤ أُنزِلَ إِلَیۡكَ وَمَاۤ أُنزِلَ مِن قَبۡلِكَ وَبِٱلۡءَاخِرَةِ هُمۡ یُوقِنُونَ ۝٤ أُو۟لَٰۤئِكَ عَلَىٰ هُدََى مِّن رَّبِّهِمۡۖ وَأُو۟لَٰۤئِكَ هُمُ ٱلۡمُفۡلِحُونَ ۝٥ diff -Nru fonts-hosny-amiri-0.112/test-suite/digits.pango fonts-hosny-amiri-0.113/test-suite/digits.pango --- fonts-hosny-amiri-0.112/test-suite/digits.pango 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/digits.pango 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -عربي ١٢٣٤٥٦٧٨٩٠ -فارسی ۱۲۳۴۵۶۷۸۹۰ -اردو ۱۲۳۴۵۶۷۸۹۰ -سنڌي ۱۲۳۴۵۶۷۸۹۰ diff -Nru fonts-hosny-amiri-0.112/test-suite/fatiha.html fonts-hosny-amiri-0.113/test-suite/fatiha.html --- fonts-hosny-amiri-0.112/test-suite/fatiha.html 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/fatiha.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,15 +0,0 @@ - - - - - -

- - ﷽ ۝١ -
- ٱلۡحَمۡدُ لِلَّهِ رَبِّ ٱلۡعَٰلَمِینَ ۝٢ ٱلرَّحۡمَٰنِ ٱلرَّحِیمِ ۝٣ مَٰلِكِ یَوۡمِ ٱلدِّینِ ۝٤ إِیَّاكَ نَعۡبُدُ وَإِیَّاكَ نَسۡتَعِینُ ۝٥ ٱهۡدِنَا ٱلصِّرَٰطَ ٱلۡمُسۡتَقِیمَ ۝٦ صِرَٰطَ ٱلَّذِینَ أَنۡعَمۡتَ عَلَیۡهِمۡ غَیۡرِ ٱلۡمَغۡضُوبِ عَلَیۡهِمۡ وَلَا ٱلضَّاۤلِّینَ ۝٧ -

- - diff -Nru fonts-hosny-amiri-0.112/test-suite/fatiha.pango fonts-hosny-amiri-0.113/test-suite/fatiha.pango --- fonts-hosny-amiri-0.112/test-suite/fatiha.pango 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/fatiha.pango 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -بِسۡمِ ٱللَّهِ ٱلرَّحۡمَٰنِ ٱلرَّحِیمِ ۝١ -ٱلۡحَمۡدُ لِلَّهِ رَبِّ ٱلۡعَٰلَمِینَ ۝٢ ٱلرَّحۡمَٰنِ ٱلرَّحِیمِ ۝٣ مَٰلِكِ یَوۡمِ ٱلدِّینِ ۝٤ إِیَّاكَ نَعۡبُدُ وَإِیَّاكَ نَسۡتَعِینُ ۝٥ ٱهۡدِنَا ٱلصِّرَٰطَ ٱلۡمُسۡتَقِیمَ ۝٦ صِرَٰطَ ٱلَّذِینَ أَنۡعَمۡتَ عَلَیۡهِمۡ غَیۡرِ ٱلۡمَغۡضُوبِ عَلَیۡهِمۡ وَلَا ٱلضَّاۤلِّینَ ۝٧ diff -Nru fonts-hosny-amiri-0.112/test-suite/mark_shadda.html fonts-hosny-amiri-0.113/test-suite/mark_shadda.html --- fonts-hosny-amiri-0.112/test-suite/mark_shadda.html 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/mark_shadda.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,13 +0,0 @@ - - - - - -
    -
  • بًّ
  • -
  • بٌّ
  • -
  • بَّ
  • -
  • بُّ
  • -
- - diff -Nru fonts-hosny-amiri-0.112/test-suite/marks.txt fonts-hosny-amiri-0.113/test-suite/marks.txt --- fonts-hosny-amiri-0.112/test-suite/marks.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/marks.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1 +0,0 @@ -◌َ ◌ُ ◌ِ ◌ً ◌ٌ ◌ٍ ◌ّ ◌ْ ◌ؘ ◌ؙ ◌ؚ ◌ٗ ◌٘ ◌ٙ ◌ٝ ◌ٞ ◌ؖ ◌ٰ ◌ٖ ◌ٔ ◌ٴ ◌ٕ ◌ٟ ◌ٓ ◌ٚ ◌ٛ ◌ٜ ◌۟ ◌۠ ◌ۡ ◌ۤ ◌ۢ ◌ۭ ◌۪ ◌۫ ◌۬ ◌ۛ ◌ؕ ◌ؗ ◌ۖ ◌ۗ ◌ۘ ◌ۙ ◌ۚ ◌ۜ ◌ۣ ◌ۧ ◌ۨ diff -Nru fonts-hosny-amiri-0.112/test-suite/ps.txt fonts-hosny-amiri-0.113/test-suite/ps.txt --- fonts-hosny-amiri-0.112/test-suite/ps.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/ps.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,5 +0,0 @@ -خو څومره چې دغه خاوره په اسيا کې د زړه غوندې مهم رول لري دغه رنګ ددې هيواد د وګړو ژبه (پښتو) هم د سيمې په ادب کې ځانګړی مقام لري- د پوهاند رښتين صيب (پښتو څيړنې -223- په حواله په فارسۍ کې تقريباٌ څلور سوه نه زيات پښتو لغاتونه ځاۍ لري- لکه اوربند ، اټکل ، اوچت ، پټ ، پلمه ، تول ، ټوټه ، تکړه ، ټال ، چټک ، دود ، سيالي ، ګډوډ ، لنډه ، لمبه ، واک او داسې نور - -تر ميلاده وړاندې هر کله چې په هندي اريايانو کې طبقاتي توپير راغی چې ځينی د پرهمنانو چې په پښتو کې بريمنانو په بڼه راځي ، اوس يي هم استعمال دود دی ، ځينی د وليسه (تجارت کارو او خواري کښو) او ځينې لښکري خلکو دو اداري مشرانو په ډلو کې وويشل شول - چې دغه وروستۍ طبقه يي (کښ توري) وبلل- د کابل شاه په يو بيت کې( 160 ق م )د کښه توري ذکر راغلی دی- ددوۍ په طبقاتي ژوندانۀ کې د پښتو کليمې ننوتل د پښتو ادب د ځانګړي مقام بيلګه ګڼلی شو- -د مور خان قبيلې څخه چې کله د منځنۍ اسيا اريايانو قدرت ترلاسه کړ نو هغوۍ چې سو ډير (ناشولته) وبلل - چې دغه ويي (لغت) اوس هم په همدی مفهوم پښتو کې دود دی- دغه راز د پخواني بخدي نوم (اوسنی بلخ) چې د اريايانو لومړې ښار وو، د بکهت او پښت له کليمې سره د نزديوالي نښه ده - -دغه راز په عربي کې د پښتو ادب څرکونه موندلی شو- د بيلګی په توګه د ابي الاسد الحماني چې د مهدي خليفه همهالې وو يو شعر راوړلې شو چې وايي (نحن الشهاريج و اولاد الدهاقين) د شهاريج کليمه د پښتو له ښاريځ ( دکليوال بهړ مانيز) او دهاقين د فارسۍ دهقان دی- -په عجايب الهند او مروج الذهب کې يو عربي شوې کليمه هنرمن هم راغلې - دغه راز د ډم (نايي) کليمه هم له پښتو څخه هندي ننوتې ده- د پښتو د کوتوال کليمه ان له غزنوي پير نه وړاندې درې ادب ته ننوتې - د خسر بلخي دا شعر اوګورۍ diff -Nru fonts-hosny-amiri-0.112/test-suite/sample.pango fonts-hosny-amiri-0.113/test-suite/sample.pango --- fonts-hosny-amiri-0.112/test-suite/sample.pango 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/sample.pango 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -«صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ.» -١٢٣٤٥٦٧٨٩٠ 1234567890 ({[]}) ؁2011م ؁١٤٣٣ه‍ -«صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ.» -١٢٣٤٥٦٧٨٩٠ 1234567890 ({[]}) ؁2011م ؁١٤٣٣ه‍ -«صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ.» -١٢٣٤٥٦٧٨٩٠ 1234567890 ({[]}) ؁2011م ؁١٤٣٣ه‍ -«صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ.» -١٢٣٤٥٦٧٨٩٠ 1234567890 ({[]}) ؁2011م ؁١٤٣٣ه‍ diff -Nru fonts-hosny-amiri-0.112/test-suite/sd.txt fonts-hosny-amiri-0.113/test-suite/sd.txt --- fonts-hosny-amiri-0.112/test-suite/sd.txt 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/sd.txt 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -سنڌي ٻوليءَ جي بنياد جي باري ۾ لسانيات جي عالمن جا مختلف رايا آهن. هڪ خيال اهو آهي ته سنڌي ٻولي سنسڪرت مان ڦٽي نڪتي آهي. جڏهن ته ٻيو خيال اهو آهي ته سنڌي تمام قديم ٻولي آهي جيڪا پراڪرت (ٻوليءَ) جي هڪ لهجي وراچد اپڀرنش مان ڦٽي نڪتي آهي. سنڌين کان سواءِ سنڌ تي ڪيترين ئي غير سنڌي قومن (عربن، ارغونن، ترخانن، مغلن، انگريزن وغيره) حڪومتون ڪيون آهن. تنهنڪري عربي، فارسي، انگريزيءَ وغيره جو سنڌي ٻوليءَ تي گھڻو اثر پيو ۽ انهن ٻولين جا ڪيترائي لفظ ٿوري تبديليءَ سان يا وري جيئن جو تيئن سنڌيءَ ۾ زم ٿي ويا. جيئن بصر (بصل)، بدڪ (بطخ)، زائفان (ظعيفه)، پهراڻ (پيراهن)، مترڪو (مطرقه) ٽيشڻ (اسٽيشن)، ماچيس (مئچس) وغيره. عربن جي دور کان پوءِ سنڌيءَ کي ڪا مخصوص ”آئيويٽا“ يعني رسم الخط ڪانه هئي، ان ضرورت کي محسوس ڪندي ڪلهوڙن جي دَور (1719ع کان 1782ع) ۾ مخدوم ابوالحسن ٺٽوي ”مقدمه الصلوات“ نالي ڪتاب لکيو جنهن کي ابوالحسن جي سنڌي سڏيو ويو. -جڏهن سنڌ 1843ع ۾ انگريزن جي قبضي هيٺ آئي، تڏهن سنڌي ٻوليءَ کي سرڪاري زبان جو درجو ڏنو ويو. ان وقت جي سنڌ جي ڪمشنر سر بارٽل فريئر هڪ حڪم نامي تحت انگريز آفيسرن لاءِ سنڌي پڙهڻ لازمي قرار ڏنو، تڏهن ئي سنڌي الفابيٽ جي ضرورت پيش آئي جنهن جي پورائي لاءِ هڪ ڪميٽي سنڌ جي اسسٽنٽ ڪمشنر مسٽر ايلس جي نگرانيءَ ۾ جوڙي وئي جنهن ۾ ديوان ننديرام، ميان محمد حيدرآبادي، قاضي غلام علي، منشي اڌارام ٿانور داس، قريشي غلام حسين ٺٽوي، خان صاحب مرزا صادق علي بيگ ۽ ڪجهه پرڏيهي عالم شامل ڪيا ويا. ان ڪميٽيءَ مخدوم ابوالحسن جي سنڌيءَ کي نظر ۾ رکندي عربي، فارسي خط مان اکر کنيا. جڏهن ته انهن ۾ ڪجهه ٽٻڪن جي واڌ ويجھه ڪري نج سنڌي اکر (ٻ، ڄ، ڏ، ڳ) جوڙيا. اهڙيءَ طرح يارهن مهينن جي مسلسل جدوجهد کانپوءِ 52 اکرن تي مشتمل موجوده آئيويٽا تيار ٿي. جنهن کي سرڪاري طور سنڌي ٻوليءَ جي واحد آئيويٽا جو درجو ڏنو ويو. -پر ان کانپوءِ به لفظن جو سٽاءُ نه بدلجي سگھيو، يعني ساڳيا لفظ جدا جدا طريقن سان لکيا ويندا هئا. مثالاً: چيائين = چياءِ، جيستائين = جيستاءِ، ڪيڏانهن = ڪيڏانهه، ڪيڏهه وغيره. -نيٺ 1888ع ۾ سنڌ جي ايڊيوڪيشنل انسپيڪٽر مسٽر جيڪب صاحب اهڙن لفظن جون پڪيون صورتون مقرر ڪرايون، ان ڪم ۾ مرزا قليچ بيگ اهم قردار ادا ڪيو. diff -Nru fonts-hosny-amiri-0.112/test-suite/test.mkiv fonts-hosny-amiri-0.113/test-suite/test.mkiv --- fonts-hosny-amiri-0.112/test-suite/test.mkiv 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/test.mkiv 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -\starttypescript [serif] [amiri] - \definefontsynonym [Serif] [name:Amiri-Regular] [features=arabic] - \definefontsynonym [SerifBold] [name:Amiri-Regular] [features=arabic] - \definefontsynonym [SerifItalic] [name:Amiri-Regular] [features=arabic] - \definefontsynonym [SerifBoldItalic] [name:Amiri-Regular] [features=arabic] -\stoptypescript - -\starttypescript [amiri] - \definetypeface [amiri] [rm] [serif] [amiri] [default] -\stoptypescript - -\setupbodyfont[amiri, 12pt] -\setupalign[r2l] -\starttext - بِسْم اللَّهِ الرَّحْمَنِ الرَّحِيم -\stoptext diff -Nru fonts-hosny-amiri-0.112/test-suite/test.tex fonts-hosny-amiri-0.113/test-suite/test.tex --- fonts-hosny-amiri-0.112/test-suite/test.tex 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/test.tex 1970-01-01 00:00:00.000000000 +0000 @@ -1,18 +0,0 @@ -\documentclass{article} -\usepackage{fontspec} - -\ExplSyntaxOn -\newcommand{\rtl} [1] { - \xetex_or_luatex:nn - { \TeXXeTstate=1\beginR #1\endR } - { \luatextextdir TRT #1 } -} -\ExplSyntaxOff - -\newfontfamily\amiri[Script=Arabic]{Amiri} - -\begin{document} -\amiri -\rtl{بِسْم اللَّهِ الرَّحْمَنِ الرَّحِيم} - -\end{document} diff -Nru fonts-hosny-amiri-0.112/test-suite/web-font.html fonts-hosny-amiri-0.113/test-suite/web-font.html --- fonts-hosny-amiri-0.112/test-suite/web-font.html 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/test-suite/web-font.html 1970-01-01 00:00:00.000000000 +0000 @@ -1,130 +0,0 @@ - - - - - - - - -

-

حَدّثَنَا عِيسَى بْنُ هِشَامٍ قَالَ:
- - طَرَحَتْنِي النّوَى مَطَارِحَهَا حَتّى إذَا وَطِئْتُ جُرْجَان الأَقْصى. فاسْتَظْهَرْتُ عَلَى الأَيامِ بِضِياعٍ أَجَلْتُ - فِيهاَ يَدَ الْعِمَارةِ، وَ أَمْوَالٍ وَقَفْتُهَا عَلى التّجَارَةِ، وَ حَانُوتٍ جَعَلْتُهُ مَثَابَةٍ، وَ رُفْقَةٍ اتّخَذْتُهَا - صَحَابَةً، وَ جَعَلْتُ لِلْدّارِ، حَاشِيَتَيِ النّهَار، و للحَانُوتِ بَيْنَهُمَا، فَجَلَسْنَا يَوْمًا نَتَذَاكَرُ القرِيضَ - وَ أَهْلَهُ، وَتِلْقَاءَنا شَابّ قَدْ جَلَسَ غَيْرَ بَعِيدٍ يُنْصِتُ وَ كَأَنّهُ يَفْهَمُ، وَ يَسْكتُ وَ كَأَنّهُ لَا يَعْلَمُ حَتّى - إِذَا مَالَ الكَلَامُ بِنَا مَيْلَهُ، وَ جَرّ الْجِدَالُ فِينَا ذَيْلَهُ، قَالَ: قَدْ أَصَبْتُمْ عُذَيَقَهُ، وَ وَافَيتُمْ - جُذَيْلَهُ، وَ لَوْ شِئْتُ لَلَفْظْتُ وَ أَفَضْتُ، وَ لَوْ قُلْتُ لأَصْدَرْتُ وَ أَوْرَدْتُ، وَ لَجَلَوْتُ الْحقّ في مَعْرَضِ بَيَانٍ - يُسْمِعُ الصُّمَّ، وَ يُنزلُ الْعُصْمَ، فَقُلْتُ: يَا فَاضِلُ أدْنُ فَقَدْ مَنَّيْتَ، وَ هَاتِ فَقَدْ أَثْنَيتَ، فَدَنَا وَ قَالَ: - سَلُونِي أُجِبْكُمْ، وَ اسْمَعُوا أُعْجِبْكُمْ. فَقُلْنَا: مَا تَقُولُ فِي امْرِىءِ الْقَيسِ؟ قَالَ: هُوَ أَوَّلُ مَنْ وَقَفَ - بِالدِّيارِ وَ عَرَصَاتِهَا، وَ اغْتَدَى وَ الطَّيرُ فِي وَكَنَاتِهَا، وَ وَصَفَ الْخيلَ بِصِفَاِتهَا، وَ لَمْ يَقُلِ الشِّعْرَ - كَاسِيًا. وَ لَمْ يُجِدِ القَوْلَ رَاغِبًا، فَفَضَلَ مَنْ تَفَتَّقَ للْحِيلةِ لِسَانُهُ، وَ اْنتَجَعَ لِلرَّغْبَة بَنَانُهُ، - قُلْنَا: فَما تَقُولُ فِي الْنَّابِغَةِ؟ قالَ: يَثلِبُ إِذَا حَنِقَ، وَ يَمْدَحُ إِذَا رَغِبَ، وَ يَعْتَذِرُ إِذَا رَهِبَ، - فَلَا يَرْمي إِلَّاصَائِبًا، قُلْنَا:فَمَا تَقُولُ فِي زُهَيرٍ؟ قَالَ يُذِيبُ الشِّعرَ، و الشعْرُ يُذيبَهُ، وَ يَدعُو - القَولَ وَ السِّحْرَ يُجِيبُهُ، قُلْنَا: فَمَا تَقُولُ فِي طَرَفَةَ: قَالَ: هُوَ ماَءُ الأشْعَارِ وَ طينَتُها، وَ كَنْزُ - الْقَوَافِي وَ مَديِنَتُهَا، مَاتَ وَ لَمْ تَظْهَرْ أَسْرَارُ دَفَائِنِهِ وَ لَمْ تُفْتَحْ أَغْلَاقُ خَزَائِنِهِ، قُلْنَا: فَمَا - تَقُولُ فِي جَرِيرٍ وَ الْفَرَزْدَقِ؟ أَيُّهُمَا أَسْبَقُ؟ فَقَالَ: جَرِيرٌ أَرَقُّ شِعْرًا، وَ أَغْزَرُ غَزْرًا وَ الْفَرَزْدَقُ - أَمْتَنُ صَخْرًا، وَ أَكْثَرُ فَخْرًا وَ جَرِيرٌ أَوْجَعُ هَجْوًا، وَ أَشْرَفُ يَوْمًا وَ الْفَرَزْدَقُ أَكَثَرُ رَوْمًا، وَ أَكْرَمُ - قَوْمًا، وَ جَرِيرٌ إِذَا نَسَبَ أَشْجَى، وَ إِذَا ثَلَبَ أَرْدَى، وَ إِذَا مَدَحَ أَسْنَى، وَ الْفَرزدقُ إِذَا افْتَخَرَ - أَجْزَى، وَ إِذَا احْتَقرَ أَزرَى، وَ إِذا وصَفَ أَوفَى، قُلنَا: فَمَا تَقُولُ فِي المُحْدَثِينَ منْ الشُّعَراءِ - و المُتَقَدِّمينَ مِنهُمْ؟ قالَ: المُتَقَدِّمونَ أَشْرفُ لَفْظًا، وَ أَكثرُ منْ المَعَاني حَظًا، وَ المُتَأَخِّرونَ - أَلْطَفُ صُنْعًا، وَ أَرَقُّ نَسْجًا، قُلْنا: فَلَو أَرَيْتَ مِنْ أَشْعارِكَ، وَ رَوَيْتَ لَنا مِنْ أَخْبارِكَ، قالَ: خُذْهَما - في مَعْرِضٍ واحِدٍ، وَ قالَ: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
أَما تَرَوْني أَتَغَشَّى طِمْرًامُمْتَطِيًا في الضُّرِّ أَمْرًا مُرًّا
مُضْطَبنًا عَلى اللَّيالي غِمَرًامُلاقِيًا مِنْها صُرُوفًا حَمْرَا
أَقْصَى أَمانِيَّ طُلُوعُ الشِّعْرىفَقَد عُنِينَا بِالأَمَاني دَهْرًا
وَ كانَ هذَا الحُرُّ أَعْلى قَدْرًاوَ ماءُ هذَا الوَجْهِ أَغْلى سِعْرَا
ضَرَبْتُ لِلسَّرّا قِبَابًا خُضْرَافِي دَارِ دَارَا وَ إِوَانِ كِسْرى
فَانْقَلَبَ الدَّهْرُ لِبَطْنٍ ظَهْراوَ عَادَ عُرْفُ العَيْشِ عِنْدي نُكْرَا
لَمْ يُبْقِ مِنْ وَفْرِى إِلَّا ذِكْرَاثُمَّ إِلى اليَوْمِ هَلُمَّ جَرَّا
لَوْلا عَجُوزٌ لِي بِسُرَّ مَنْ رَاوَ أَفْرُخٌ دونَ جِبَالِ بُصْرَى
قَدْ جَلَبَ الدَّهْرُ عَلَيْهِمْ ضُرَّاقَتَلْتَ يَا سَادَةُ نَفْسي صَبْرَا
- - قَالَ عِيسَى بْنُ هِشَامٍ، فَانَلْتُهُ مَا تَاحَ. وَ أَعْرَضَ عَنَّا فَرَاحَ. فَجَعَلْتُ أَنْفيهِ وَ أُثْبتُهُ، وَ أَنْكِرُهُ - وَ كَأَنِّي أَعْرِفُهُ، ثُمَّ دَلَّتْنِي عَلَيهِ ثَنَاياهُ، فَقُلْتُ: الإِسْكَنْدَريُّ وَ اللَّهِ، فَقَدْ كَانَ فَارَقَنَا خِشْفًا، - وَ وَافانا جِلْفًا، وَ نَهَضْتُ عَلى إِثرِهِ، ثَمَّ قَبَضْتُ عَلَى خَصْرِهِ، وَقُلْتُ: أَلَسْتَ أَبَا الفَتْحِ؟ أَلَمْ نُرَبِّكَ - فِينا وَلِيدًا وَ لَبِثْتَ فِينا مِنْ عُمُرِكَ سِنِينَ؟ فَأَيُّ عَجُوزِ لَكَ بِسُرَّ مَنْ رَا فَضَحِكَ إِليَّ وَ قَالَ: - -
- - - - - - - - - - -
وَيْحَكَ هذَا الزَّمَان زُورُفَلَا يَغُرَّنَّكَ الغُرُورُ
لَا تَلْتَزِمْ حَالَةً، وَلكِنْدُرْ بِالَّليَالِي كَمَا تَدُورُ
-

- - diff -Nru fonts-hosny-amiri-0.112/tools/add_new_glyph.py fonts-hosny-amiri-0.113/tools/add_new_glyph.py --- fonts-hosny-amiri-0.112/tools/add_new_glyph.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/add_new_glyph.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,30 +0,0 @@ -# encoding: utf8 -def addCharacters(crap, font): - text = fontforge.askString("Add charcter", u"model new mark₁ mark₂ ...") - text = text.split() - if len(text) < 3: - fontforge.postError("Error", "Not enough entries") - else: - addCharacter(font, text[0], text[1], text[2:]) - -def addCharacter(font, model, new, marks): - names = [] - for glyph in font.glyphs(): - if (glyph.glyphname == model) or (model+"." in glyph.glyphname): - for ref in glyph.references: - if (font[ref[0]].glyphclass == "baseglyph") or (font[ref[0]].glyphclass == "automatic"): - names.append((glyph.glyphname, ref[0], glyph.anchorPoints)) - - for name, base, anchors in names: - if "." in name: - glyph = font.createChar(-1, name.replace(model+'.', new+'.')) - else: - glyph = font.createChar(-1, new) - - glyph.addReference(base) - glyph.useRefsMetrics(base) - for mark in marks: - glyph.addReference(mark) - glyph.anchorPoints = anchors - -fontforge.registerMenuItem(addCharacters, None, None, "Font", None, "Add Characters") diff -Nru fonts-hosny-amiri-0.112/tools/build_compat.py fonts-hosny-amiri-0.113/tools/build_compat.py --- fonts-hosny-amiri-0.112/tools/build_compat.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/build_compat.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,103 +0,0 @@ -#!/usr/bin/env python -import sys -import fontforge -import psMat -import unicodedata as ucd - -from gi.repository import HarfBuzz -from gi.repository import GLib - -from fontTools.ttLib import TTFont - -try: - unicode -except NameError: - unicode = str - -def toUnicode(s, encoding='utf-8'): - return s if isinstance(s, unicode) else s.decode(encoding) - -def shape(text, font): - text = toUnicode(text) - buf = HarfBuzz.buffer_create() - - HarfBuzz.buffer_add_utf8(buf, text.encode('utf-8'), 0, -1) - HarfBuzz.buffer_set_direction(buf, HarfBuzz.direction_t.RTL) - HarfBuzz.buffer_set_script(buf, HarfBuzz.script_t.ARABIC) - HarfBuzz.buffer_set_language(buf, HarfBuzz.language_from_string("ar")) - - HarfBuzz.shape(font, buf, [HarfBuzz.feature_from_string("+ss01")[1]]) - - glyphs = HarfBuzz.buffer_get_glyph_infos(buf) - positions = HarfBuzz.buffer_get_glyph_positions(buf) - - return [(g.codepoint, p.x_advance, p.x_offset, p.y_offset) for g, p in zip(glyphs, positions)] - -def buildCompatChars(sfd, ttf): - zwj = u'\u200D' - ranges = ( - (0xfb50, 0xfbb1), - (0xfbd3, 0xfd3d), - (0xfd50, 0xfdf9), - (0xfdfc, 0xfdfc), - (0xfe70, 0xfefc), - ) - - with open(ttf, "rb") as f: - data = f.read() - blob = HarfBuzz.glib_blob_create(GLib.Bytes.new(data)) - face = HarfBuzz.face_create(blob, 0) - hbfont = HarfBuzz.font_create(face) - upem = HarfBuzz.face_get_upem(face) - HarfBuzz.font_set_scale(hbfont, upem, upem) - HarfBuzz.ot_font_set_funcs(hbfont) - - ttfont = TTFont(ttf) - - for r in ranges: - for c in range(r[0], r[1]+1): - dec = ucd.decomposition(unichr(c)).split() - if dec: - keyword = dec[0] - text = u'' - - for i in dec[1:]: - text += unichr(int(str(i),16)) - - if keyword == '': - text = text + zwj - elif keyword == '': - text = zwj + text - elif keyword == '': - text = zwj + text + zwj - - components = shape(text, hbfont) - if components: - glyph = sfd.createChar(c) - glyph.clear() - glyph.color = 0xff0000 # red color - x = 0 - for component in components: - gid = component[0] - name = ttfont.getGlyphName(gid) - x_advance = component[1] - x_offset = component[2] - y_offset = component[3] - - matrix = psMat.translate(x + x_offset, y_offset) - - # ignore blank glyphs, e.g. space or ZWJ - if sfd[name].foreground or sfd[name].references: - glyph.addReference(name, matrix) - - x += x_advance - - glyph.width = x - - -if __name__ == '__main__': - sfd = fontforge.open(sys.argv[1]) - ttf = sys.argv[2] - - buildCompatChars(sfd, ttf) - sfd.save() diff -Nru fonts-hosny-amiri-0.112/tools/build.py fonts-hosny-amiri-0.113/tools/build.py --- fonts-hosny-amiri-0.112/tools/build.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/build.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,712 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -# -# build.py - Amiri font build utility -# -# Written in 2010-2012 by Khaled Hosny -# -# To the extent possible under law, the author have dedicated all copyright -# and related and neighboring rights to this software to the public domain -# worldwide. This software is distributed without any warranty. -# -# You should have received a copy of the CC0 Public Domain Dedication along -# with this software. If not, see -# . - -from __future__ import print_function - -import fontforge -import psMat -import os -import re - -from fontTools.feaLib.builder import addOpenTypeFeaturesFromString -from fontTools.misc.py23 import StringIO, tounicode -from fontTools.ttLib import TTFont -from pcpp.preprocessor import Preprocessor -from tempfile import NamedTemporaryFile - -def cleanAnchors(font): - """Removes anchor classes (and associated lookups) that are used only - internally for building composite glyph.""" - - klasses = ( - "Dash", - "DigitAbove", - "DigitBelow", - "DotAbove", - "DotAlt", - "DotBelow", - "DotBelowAlt", - "DotHmaza", - "HighHamza", - "MarkDotAbove", - "MarkDotBelow", - "RingBelow", - "RingDash", - "Stroke", - "TaaAbove", - "TaaBelow", - "Tail", - "TashkilAboveDot", - "TashkilBelowDot", - "TwoDotsAbove", - "TwoDotsBelow", - "TwoDotsBelowAlt", - "VAbove", - ) - - for klass in klasses: - subtable = font.getSubtableOfAnchor(klass) - lookup = font.getLookupOfSubtable(subtable) - font.removeLookup(lookup) - -def flattenNestedReferences(font, ref, new_transform=(1, 0, 0, 1, 0, 0)): - """Flattens nested references by replacing them with the ultimate reference - and applying any transformation matrices involved, so that the final font - has only simple composite glyphs. This to work around what seems to be an - Apple bug that results in ignoring transformation matrix of nested - references.""" - - name = ref[0] - transform = ref[1] - glyph = font[name] - new_ref = [] - if glyph.references and glyph.foreground.isEmpty(): - for nested_ref in glyph.references: - for i in flattenNestedReferences(font, nested_ref, transform): - matrix = psMat.compose(i[1], new_transform) - new_ref.append((i[0], matrix)) - else: - matrix = psMat.compose(transform, new_transform) - new_ref.append((name, matrix)) - - return new_ref - -def validateGlyphs(font): - """Fixes some common FontForge validation warnings, currently handles: - * wrong direction - * flipped references - In addition to flattening nested references.""" - - wrong_dir = 0x8 - flipped_ref = 0x10 - for glyph in font.glyphs(): - state = glyph.validate(True) - refs = [] - - if state & flipped_ref: - glyph.unlinkRef() - glyph.correctDirection() - if state & wrong_dir: - glyph.correctDirection() - - for ref in glyph.references: - for i in flattenNestedReferences(font, ref): - refs.append(i) - if refs: - glyph.references = refs - - glyph.round() - -def updateInfo(font, version): - from datetime import datetime - - version = "%07.3f" % version - font.version = font.version % version - font.copyright = font.copyright % datetime.now().year - font.appendSFNTName("English (US)", "UniqueID", "%s;%s;%s" % ( - version, font.os2_vendor, font.fontname)) - -BAD_LOOKUP_FLAG = re.compile(r"(RightToLeft|IgnoreBaseGlyphs|IgnoreLigatures|IgnoreMarks),") - -def generateFeatureString(font, lookup): - with NamedTemporaryFile() as tmp: - font.generateFeatureFile(tmp.name, lookup) - fea = tmp.read().decode("utf-8") - # Older versions of FontForge incorrectly seperated lookup flags with - # coma. - fea = BAD_LOOKUP_FLAG.sub(r"\1", fea) - return fea - -def generateFeatures(font, args): - """Generates feature text by merging feature file with mark positioning - lookups (already in the font) and making sure they come after kerning - lookups (from the feature file), which is required by Uniscribe to get - correct mark positioning for kerned glyphs.""" - - oldfea = "" - for lookup in font.gpos_lookups: - oldfea += generateFeatureString(font, lookup) - - for lookup in font.gpos_lookups + font.gsub_lookups: - font.removeLookup(lookup) - - # open feature file and insert the generated GPOS features in place of the - # placeholder text - with open(args.features) as f: - o = StringIO() - preprocessor = Preprocessor() - if args.quran: - preprocessor.define("QURAN") - elif args.slant: - preprocessor.define("ITALIC") - preprocessor.parse(f) - preprocessor.write(o) - fea_text = tounicode(o.getvalue(), "utf-8") - fea_text = fea_text.replace("{%anchors%}", oldfea) - - bases = [g.glyphname for g in font.glyphs() if g.glyphclass != "mark"] - marks = [g.glyphname for g in font.glyphs() if g.glyphclass == "mark"] - carets = {g.glyphname: g.lcarets for g in font.glyphs() if any(g.lcarets)} - gdef = [] - gdef.append("@GDEFBase = [%s];" % " ".join(bases)) - gdef.append("@GDEFMark = [%s];" % " ".join(marks)) - gdef.append("table GDEF {") - gdef.append(" GlyphClassDef @GDEFBase, , @GDEFMark, ;") - for k, v in carets.items(): - gdef.append(" LigatureCaretByPos %s %s;" % (k, " ".join(map(str, v)))) - gdef.append("} GDEF;") - - fea_text += "\n".join(gdef) - - return fea_text - -def generateFont(options, font, feastring): - fea = generateFeatures(font, args) - fea += feastring - - flags = [] - if args.output.endswith(".ttf"): - flags += ["opentype", "dummy-dsig", "omit-instructions"] - - font.selection.all() - font.correctReferences() - font.selection.none() - - # fix some common font issues - validateGlyphs(font) - - updateInfo(font, args.version) - - font.generate(args.output, flags=flags) - - try: - ttfont = TTFont(args.output) - addOpenTypeFeaturesFromString(ttfont, fea) - - # Filter-out useless Macintosh names - name = ttfont["name"] - name.names = [n for n in name.names if n.platformID != 1] - - # https://github.com/fontforge/fontforge/pull/3235 - head = ttfont["head"] - # fontDirectionHint is deprecated and must be set to 2 - head.fontDirectionHint = 2 - # unset bits 6..10 - head.flags &= ~0x7e0 - - # Drop useless table with timestamp - if "FFTM" in ttfont: - del ttfont["FFTM"] - - ttfont.save(args.output) - except: - with NamedTemporaryFile(delete=False) as tmp: - tmp.write(fea.encode("utf-8")) - print("Failed! Inspect temporary file: %r" % tmp.name) - os.remove(args.output) - raise - - -def drawOverline(font, name, uni, pos, thickness, width): - glyph = font.createChar(uni, name) - glyph.width = 0 - glyph.glyphclass = "mark" - - pen = glyph.glyphPen() - - pen.moveTo((-50, pos)) - pen.lineTo((-50, pos + thickness)) - pen.lineTo((width + 50, pos + thickness)) - pen.lineTo((width + 50, pos)) - pen.closePath() - - return glyph - -def makeQuranSajdaLine(font, pos): - # test string: - # صِ̅فْ̅ ̅خَ̅ل̅قَ̅ ̅بًّ̅ صِ̲فْ̲ ̲خَ̲ل̲قَ̲ ̲بِ̲ - - thickness = font.uwidth # underline width (thickness) - minwidth = 100 - - # collect glyphs grouped by their widths rounded by 100 units, we will use - # them to decide the widths of over/underline glyphs we will draw - widths = {} - for glyph in font.glyphs(): - u = glyph.unicode - if ((u < 0) or (0x0600 <= u <= 0x06FF) or u == ord(" ")) \ - and glyph.width > 0: - width = round(glyph.width / minwidth) * minwidth - width = width > minwidth and width or minwidth - if not width in widths: - widths[width] = [] - widths[width].append(glyph.glyphname) - - base = 'uni0305' - drawOverline(font, base, 0x0305, pos, thickness, 500) - - fea = [] - fea.append("@OverSet = [%s];" % base) - fea.append("feature mark {") - fea.append(" lookupflag UseMarkFilteringSet @OverSet;") - - for width in sorted(widths.keys()): - # for each width group we create an over/underline glyph with the same - # width, and add a contextual substitution lookup to use it when an - # over/underline follows any glyph in this group - name = 'uni0305.%d' % width - drawOverline(font, name, -1, pos, thickness, width) - fea.append(" sub [%s] %s' by %s;" % (" ".join(widths[width]), base, name)) - - fea.append("} mark;") - - fea = "\n".join(fea) - return fea - -def centerGlyph(glyph): - width = glyph.width - glyph.right_side_bearing = glyph.left_side_bearing = (glyph.right_side_bearing + glyph.left_side_bearing)/2 - glyph.width = width - -def subsetFont(font, glyphnames, similar=False): - # keep any glyph with the same base name - reported = [] - - if similar: - for name in glyphnames: - for glyph in font.glyphs(): - if "." in glyph.glyphname and glyph.glyphname.split(".")[0] == name: - glyphnames.append(glyph.glyphname) - - # keep any glyph referenced requested glyphs - for name in glyphnames: - if name in font: - glyph = font[name] - for ref in glyph.references: - glyphnames.append(ref[0]) - else: - if name not in reported: - print('Font ‘%s’ is missing glyph: %s' %(font.fontname, name)) - reported.append(name) - - # Prune kerning classes - for lookup in font.gpos_lookups: - for subtable in font.getLookupSubtables(lookup): - if font.isKerningClass(subtable): - first, second, offsets = font.getKerningClass(subtable) - first = [[n for n in c if n in glyphnames] for c in first] - second = [[n for n in c if n in glyphnames] for c in second if c] - second.insert(0, None) - if all([first, second]): - font.alterKerningClass(subtable, first, second, offsets) - else: - font.removeLookupSubtable(subtable) - - # remove everything else - for glyph in font.glyphs(): - if glyph.glyphname not in glyphnames: - font.removeGlyph(glyph) - -def subsetFontFT(path, unicodes, quran=False): - from fontTools import subset - - font = TTFont(path, recalcTimestamp=False) - - options = subset.Options() - options.set(layout_features='*', name_IDs='*', name_languages='*', - notdef_outline=True, glyph_names=True) - subsetter = subset.Subsetter(options=options) - subsetter.populate(unicodes=unicodes) - subsetter.subset(font) - - if quran: - font["OS/2"].sTypoAscender = font["hhea"].ascent = font["head"].yMax - - font.save(path) - -def makeNumerators(font): - digits = ("zero", "one", "two", "three", "four", "five", "six", "seven", - "eight", "nine", - "uni0660", "uni0661", "uni0662", "uni0663", "uni0664", - "uni0665", "uni0666", "uni0667", "uni0668", "uni0669", - "uni06F0", "uni06F1", "uni06F2", "uni06F3", "uni06F4", - "uni06F5", "uni06F6", "uni06F7", "uni06F8", "uni06F9", - "uni06F4.urd", "uni06F6.urd", "uni06F7.urd") - for name in digits: - numr = font.createChar(-1, name + ".numr") - small = font[name + ".small"] - if not numr.isWorthOutputting(): - numr.clear() - numr.addReference(small.glyphname, psMat.translate(0, 550)) - numr.width = small.width - -def mergeLatin(font, italic=False, glyphs=None, quran=False): - styles = {"Regular": "Regular", - "Slanted": "Italic", - "Bold": "Bold", - "BoldSlanted": "BoldItalic"} - - style = styles[font.fontname.split("-")[1]] - - latinfile = "AmiriLatin-%s.sfdir" %style - - from tempfile import mkstemp - tmpfont = mkstemp(suffix=os.path.basename(latinfile).replace("sfdir", "sfd"))[1] - latinfont = fontforge.open("sources/latin/%s" %latinfile) - - validateGlyphs(latinfont) # to flatten nested refs mainly - - if glyphs: - latinglyphs = list(glyphs) - else: - # collect latin glyphs we want to keep - latinglyphs = [] - - # we want all glyphs in latin0-9 encodings - for i in range(0, 9): - latinfont.encoding = 'latin%d' %i - for glyph in latinfont.glyphs("encoding"): - if glyph.encoding <= 255: - if glyph.glyphname not in latinglyphs: - latinglyphs.append(glyph.glyphname) - elif glyph.unicode != -1 and glyph.unicode <= 0x017F: - # keep also Unicode Latin Extended-A block - if glyph.glyphname not in latinglyphs: - latinglyphs.append(glyph.glyphname) - elif glyph.unicode == -1 and '.prop' in glyph.glyphname: - # proportional digits - latinglyphs.append(glyph.glyphname) - - # keep ligatures too - ligatures = ("f_b", "f_f_b", - "f_h", "f_f_h", - "f_i", "f_f_i", - "f_j", "f_f_j", - "f_k", "f_f_k", - "f_l", "f_f_l", - "f_f") - - # and Arabic romanisation characters - romanisation = ("uni02BC", "uni02BE", "uni02BE", "amacron", "uni02BE", - "amacron", "eacute", "uni1E6F", "ccedilla", "uni1E6F", "gcaron", - "ycircumflex", "uni1E29", "uni1E25", "uni1E2B", "uni1E96", - "uni1E0F", "dcroat", "scaron", "scedilla", "uni1E63", "uni1E11", - "uni1E0D", "uni1E6D", "uni1E93", "dcroat", "uni02BB", "uni02BF", - "rcaron", "grave", "gdotaccent", "gbreve", "umacron", "imacron", - "amacron", "amacron", "uni02BE", "amacron", "uni02BE", - "acircumflex", "amacron", "uni1E97", "tbar", "aacute", "amacron", - "ygrave", "agrave", "uni02BE", "aacute", "Amacron", "Amacron", - "Eacute", "uni1E6E", "Ccedilla", "uni1E6E", "Gcaron", - "Ycircumflex", "uni1E28", "uni1E24", "uni1E2A", "uni1E0E", - "Dcroat", "Scaron", "Scedilla", "uni1E62", "uni1E10", "uni1E0C", - "uni1E6C", "uni1E92", "Dcroat", "Rcaron", "Gdotaccent", "Gbreve", - "Umacron", "Imacron", "Amacron", "Amacron", "Amacron", - "Acircumflex", "Amacron", "Tbar", "Aacute", "Amacron", "Ygrave", - "Agrave", "Aacute") - - # and some typographic characters - typographic = ("uni2010", "uni2011", "figuredash", "endash", "emdash", - "uni2015", "quoteleft", "quoteright", "quotesinglbase", - "quotereversed", "quotedblleft", "quotedblright", "quotedblbase", - "uni201F", "dagger", "daggerdbl", "bullet", "onedotenleader", - "ellipsis", "uni202F", "perthousand", "minute", "second", - "uni2038", "guilsinglleft", "guilsinglright", "uni203E", - "fraction", "i.TRK", "minus", "uni2213", "radical", "uni2042") - - for l in (ligatures, romanisation, typographic): - for name in l: - if name not in latinglyphs: - latinglyphs.append(name) - - if not quran: - # we want our ring above and below in Quran font only - for name in ("uni030A", "uni0325"): - font.removeGlyph(name) - - subsetFont(latinfont, latinglyphs) - - digits = ("zero", "one", "two", "three", "four", "five", "six", "seven", - "eight", "nine") - - # common characters that can be used in Arabic and Latin need to be handled - # carefully in the slanted font so that right leaning italic is used with - # Latin, and left leaning slanted is used with Arabic, using ltra and rtla - # features respectively, for less OpenType savvy apps we make the default - # upright so it works reasonably with bot scripts - if italic: - if "bold" in style: - upright = fontforge.open("sources/latin/AmiriLatin-Bold.sfdir") - else: - upright = fontforge.open("sources/latin/AmiriLatin-Regular.sfdir") - - shared = ("exclam", "quotedbl", "numbersign", "dollar", "percent", - "quotesingle", "asterisk", "plus", "colon", "semicolon", - "less", "equal", "greater", "question", "at", "asciicircum", - "exclamdown", "section", "copyright", "logicalnot", "registered", - "plusminus", "uni00B2", "uni00B3", "paragraph", "uni00B9", - "ordmasculine", "onequarter", "onehalf", "threequarters", - "questiondown", "quoteleft", "quoteright", "quotesinglbase", - "quotereversed", "quotedblleft", "quotedblright", - "quotedblbase", "uni201F", "dagger", "daggerdbl", - "perthousand", "minute", "second", "guilsinglleft", - "guilsinglright", "fraction", "uni2213") - - for name in shared: - glyph = latinfont[name] - glyph.clear() - upright.selection.select(name) - upright.copy() - latinfont.createChar(upright[name].encoding, name) - latinfont.selection.select(name) - latinfont.paste() - - for name in digits: - glyph = latinfont[name] - glyph.glyphname += '.ltr' - glyph.unicode = -1 - upright.selection.select(name) - upright.copy() - latinfont.createChar(upright[name].encoding, name) - latinfont.selection.select(name) - latinfont.paste() - - # Fixup for old FontForge that also renamed any other glyph that - # started with name! - for other in latinfont.glyphs(): - if other.glyphname.startswith(glyph.glyphname) and other != glyph: - other.glyphname = other.glyphname.replace(glyph.glyphname, name) - - rtl = latinfont.createChar(-1, name + ".rtl") - rtl.addReference(name, italic) - rtl.useRefsMetrics(name) - - for name in digits: - pname = name + ".prop" - glyph = latinfont[pname] - glyph.glyphname = name + '.ltr.prop' - glyph.unicode = -1 - upright.selection.select(pname) - upright.copy() - latinfont.createChar(-1, pname) - latinfont.selection.select(pname) - latinfont.paste() - - rtl = latinfont.createChar(-1, name + ".rtl" + ".prop") - rtl.addReference(pname, italic) - rtl.useRefsMetrics(pname) - - # copy kerning classes - fea = "" - if not quran: - for lookup in latinfont.gpos_lookups: - fea += generateFeatureString(latinfont, lookup) - - for lookup in latinfont.gpos_lookups + latinfont.gsub_lookups: - latinfont.removeLookup(lookup) - - latinfont.save(tmpfont) - latinfont.close() - - font.mergeFonts(tmpfont) - os.remove(tmpfont) - - # This is often used for visible space, so they better be the same width. - if "periodcentered" in font: - font["periodcentered"].width = font["space"].width - centerGlyph(font["periodcentered"]) - - # add Latin small and medium digits - for name in digits: - if italic: - # they are only used in Arabic contexts, so always reference the - # italic rtl variant - refname = name +".rtl" - else: - refname = name - small = font.createChar(-1, name + ".small") - if not small.isWorthOutputting(): - small.clear() - small.addReference(refname, psMat.scale(0.6)) - small.transform(psMat.translate(0, -40)) - small.width = 600 - centerGlyph(small) - - medium = font.createChar(-1, name + ".medium") - if not medium.isWorthOutputting(): - medium.clear() - medium.addReference(refname, psMat.scale(0.8)) - medium.transform(psMat.translate(0, 50)) - medium.width = 900 - centerGlyph(medium) - - return fea - -def makeSlanted(options): - font = makeDesktop(options, False) - - # compute amout of skew, magic formula copied from fontforge sources - import math - skew = psMat.skew(-options.slant * math.pi/180.0) - - # Remove Arabic math alphanumerics, they are upright-only. - font.selection.select(["ranges"], "u1EE00", "u1EEFF") - for glyph in font.selection.byGlyphs: - font.removeGlyph(glyph) - - font.selection.all() - punct = ("exclam", "period.ara", "guillemotleft.ara", "guillemotright.ara", - "braceleft", "bar", "braceright", "bracketleft", "bracketright", - "parenleft", "parenright", "slash", "backslash", "brokenbar", - "uni061F", "dot.1", "dot.2") - - for name in punct: - font.selection.select(["less"], name) - - font.transform(skew) - - # fix metadata - font.italicangle = options.slant - font.fullname += " Slanted" - if font.weight == "Bold": - font.fontname = font.fontname.replace("Bold", "BoldSlanted") - font.appendSFNTName("English (US)", "SubFamily", "Bold Slanted") - else: - font.fontname = font.fontname.replace("Regular", "Slanted") - - fea = mergeLatin(font, italic=skew) - makeNumerators(font) - generateFont(options, font, fea) - -def scaleGlyph(glyph, amount): - """Scales the glyph, but keeps it centered around its original bounding - box. - - Logic copied (and simplified for our simple case) from code of FontForge - transform dialog, since that logic is not exported to Python interface.""" - width = glyph.width - bbox = glyph.boundingBox() - x = (bbox[0] + bbox[2]) / 2 - y = (bbox[1] + bbox[3]) / 2 - move = psMat.translate(-x, -y) - scale = psMat.scale(amount) - - matrix = list(scale) - matrix[4] = move[4] * scale[0] + x; - matrix[5] = move[5] * scale[3] + y; - - glyph.transform(matrix) - if width == 0: - glyph.width = width - -def makeQuran(options): - font = makeDesktop(options, False) - - # fix metadata - font.fontname = font.fontname.replace("-Regular", "Quran-Regular") - font.familyname += " Quran" - font.fullname += " Quran" - - sample = "بِسۡمِ ٱللَّهِ ٱلرَّحۡمَٰنِ ٱلرَّحِیمِ ۝١ ٱلۡحَمۡدُ لِلَّهِ رَبِّ ٱلۡعَٰلَمِینَ ۝٢" - font.appendSFNTName('English (US)', 'Sample Text', sample) - - digits = ("zero", "one", "two", "three", "four", "five", "six", - "seven", "eight", "nine") - - fea = mergeLatin(font, glyphs=digits, quran=True) - - for glyph in font.glyphs(): - if glyph.glyphname.endswith(".ara"): - glyph.glyphname = glyph.glyphname[:-4] - glyph.unicode = fontforge.unicodeFromName(glyph.glyphname) - - # scale some vowel marks and dots down a bit - scaleGlyph(font["uni0651"], 0.8) - for mark in ("uni064B", "uni064C", "uni064E", "uni064F", "uni06E1", - "uni08F0", "uni08F1", "uni08F2", - "TwoDots.a", "ThreeDots.a", "vTwoDots.a"): - scaleGlyph(font[mark], 0.9) - - # create overline glyph to be used for sajda line, it is positioned - # vertically at the level of the base of waqf marks - fea += makeQuranSajdaLine(font, font[0x06D7].boundingBox()[1]) - - unicodes = [font[n].unicode for n in digits] - unicodes += ['.', '(', ')', '[', ']', '{', '}', '|', ' ', '/', '\\', - 0x00A0, - 0x00AB, 0x00BB, 0x0305, 0x030A, 0x0325, 0x060C, 0x0615, - 0x0617, 0x0618, 0x0619, 0x061A, 0x061B, 0x061E, 0x061F, - 0x0621, 0x0622, 0x0623, 0x0624, 0x0625, 0x0626, 0x0627, - 0x0628, 0x0629, 0x062A, 0x062B, 0x062C, 0x062D, 0x062E, - 0x062F, 0x0630, 0x0631, 0x0632, 0x0633, 0x0634, 0x0635, - 0x0636, 0x0637, 0x0638, 0x0639, 0x063A, 0x0640, 0x0641, - 0x0642, 0x0643, 0x0644, 0x0645, 0x0646, 0x0647, 0x0648, - 0x0649, 0x064A, 0x064B, 0x064C, 0x064D, 0x064E, 0x064F, - 0x0650, 0x0651, 0x0652, 0x0653, 0x0654, 0x0655, 0x0656, - 0x0657, 0x0658, 0x065C, 0x0660, 0x0661, 0x0662, 0x0663, - 0x0664, 0x0665, 0x0666, 0x0667, 0x0668, 0x0669, 0x066E, - 0x066F, 0x0670, 0x0671, 0x067A, 0x06A1, 0x06BA, 0x06CC, - 0x06D6, 0x06D7, 0x06D8, 0x06D9, 0x06DA, 0x06DB, 0x06DC, - 0x06DD, 0x06DE, 0x06DF, 0x06E0, 0x06E1, 0x06E2, 0x06E3, - 0x06E4, 0x06E5, 0x06E6, 0x06E7, 0x06E8, 0x06E9, 0x06EA, - 0x06EB, 0x06EC, 0x06ED, 0x06F0, 0x06F1, 0x06F2, 0x06F3, - 0x06F4, 0x06F5, 0x06F6, 0x06F7, 0x06F8, 0x06F9, 0x08F0, - 0x08F1, 0x08F2, 0x08F3, 0x2000, 0x2001, 0x2002, 0x2003, - 0x2004, - 0x2005, 0x2006, 0x2007, 0x2008, 0x2009, 0x200A, 0x200B, - 0x200C, 0x200D, 0x200E, 0x200F, 0x2028, 0x2029, 0x202A, - 0x202B, 0x202C, 0x202D, 0x202E, 0x202F, 0x25CC, 0xFD3E, - 0xFD3F, 0xFDFA, 0xFDFD] - unicodes = [isinstance(u, str) and ord(u) or u for u in unicodes] - - generateFont(options, font, fea) - subsetFontFT(options.output, unicodes, quran=True) - -def makeDesktop(options, generate=True): - font = fontforge.open(options.input) - font.encoding = "UnicodeFull" # avoid a crash if compact was set - - # remove anchors that are not needed in the production font - cleanAnchors(font) - - # sample text to be used by font viewers - sample = 'صِفْ خَلْقَ خَوْدٍ كَمِثْلِ ٱلشَّمْسِ إِذْ بَزَغَتْ يَحْظَىٰ ٱلضَّجِيعُ بِهَا نَجْلَاءَ مِعْطَارِ.' - - font.appendSFNTName('English (US)', 'Sample Text', sample) - - if generate: - fea = mergeLatin(font) - makeNumerators(font) - generateFont(options, font, fea) - else: - return font - -if __name__ == "__main__": - import argparse - parser = argparse.ArgumentParser(description="Build Amiri fonts.") - parser.add_argument("--input", metavar="FILE", required=True, help="input font to process") - parser.add_argument("--output", metavar="FILE", required=True, help="ouput font to write") - parser.add_argument("--features", metavar="FILE", required=True, help="feature file to include") - parser.add_argument("--version", type=float, required=True, help="font version") - parser.add_argument("--slant", type=float, required=False, help="font slant") - parser.add_argument("--quran", action='store_true', required=False, help="build Quran variant") - - args = parser.parse_args() - - if args.slant: - makeSlanted(args) - elif args.quran: - makeQuran(args) - else: - makeDesktop(args) diff -Nru fonts-hosny-amiri-0.112/tools/makeclr.py fonts-hosny-amiri-0.113/tools/makeclr.py --- fonts-hosny-amiri-0.112/tools/makeclr.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/makeclr.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,212 +0,0 @@ -import argparse - -from fontTools.ttLib import TTFont, getTableModule, newTable - -Color = getTableModule("CPAL").Color - -RED = Color(red=0xcc, green=0x33, blue=0x33, alpha=0xff) -YELLOW = Color(red=0xee, green=0x99, blue=0x33, alpha=0xff) -GREEN = Color(red=0x00, green=0xa5, blue=0x50, alpha=0xff) -BLUE = Color(red=0x33, green=0x66, blue=0x99, alpha=0xff) - -HAMAZAT_GLYPHS = ( - "uni0621", - "uni0654", - "uni0655", - "hamza.above", -) - -MARKS_GLYPHS = ( - "uni0618", - "uni0619", - "uni061A", - "uni064B", - "uni064C", - "uni064D", - "uni064E", - "uni064F", - "uni0650", - "uni0651", - "uni0652", - "uni0657", - "uni0658", - "uni065C", - "uni0670", - "uni06DC", # XXX: can be both a mark and a pause - "uni06DF", - "uni06E0", - "uni06E1", - "uni06E2", - "uni06E3", - "uni06E4", - "uni06E5", - "uni06E6", - "uni06E7", - "uni06E8", - "uni06EA", - "uni06EB", - "uni06EC", - "uni06ED", - "uni08F0", - "uni08F1", - "uni08F2", - "uni08F3", - "hamza.wasl", - "Dot", - "TwoDots", - "vTwoDots", - "ThreeDots", -) - -PAUSES_GLYPHS = ( - "uni0615", - "uni0617", - "uni06D6", - "uni06D7", - "uni06D8", - "uni06D9", - "uni06DA", - "uni06DB", -) - -SIGNS_GLYPHS = ( - "uni0305", - "uni0660", - "uni0661", - "uni0662", - "uni0663", - "uni0664", - "uni0665", - "uni0666", - "uni0667", - "uni0668", - "uni0669", - "uni06DD", - "uni06DE", - "uni06E9", -) - -GROUPS = { - MARKS_GLYPHS: RED, - SIGNS_GLYPHS: GREEN, - HAMAZAT_GLYPHS: YELLOW, - PAUSES_GLYPHS: BLUE, -} - -HASHES = {} - -def newLayer(name, colorID): - return getTableModule("COLR").LayerRecord(name=name, colorID=colorID) - -def getGlyphColor(glyphName): - for names, color in GROUPS.items(): - for name in names: - if glyphName == name or glyphName.startswith(name + "."): - return color - - return None - -def colorize(font): - COLR = newTable("COLR") - CPAL = newTable("CPAL") - hmtx = font["hmtx"] - - glyf = font.get("glyf", None) - CFF = font.get("CFF ", None) - - if glyf is None: - assert False, "CFF is not supported" - - CPAL.version = 0 - COLR.version = 0 - - palette = list(GROUPS.values()) - CPAL.palettes = [palette] - CPAL.numPaletteEntries = len(palette) - - COLR.ColorLayers = {} - - glyphOrder = list(font.getGlyphOrder()) - for name in glyphOrder: - glyph = glyf[name] - - layers = [] - if glyph.isComposite() and len(glyph.components) > 1: - componentColors = [getGlyphColor(c.getComponentInfo()[0]) for c in glyph.components] - if any(componentColors): - for component in glyph.components: - componentName, trans = component.getComponentInfo() - componentColor = getGlyphColor(componentName) - - if componentColor is None: - # Special palette index that means the glyph has no - # specified color and takes the text color. - componentColor = 0xFFFF - else: - componentColor = palette.index(componentColor) - - # Unique identifier for each layer, so we can reuse - # identical layers and avoid needless duplication. - width = hmtx[name][0] - lsb = hmtx[componentName][1] + trans[4] - componentHash = hash((trans, width, lsb)) - - if componentName not in HASHES: - HASHES[componentName] = [] - - if componentHash not in HASHES[componentName]: - HASHES[componentName].append(componentHash) - - index = HASHES[componentName].index(componentHash) - newName = "%s.l%s" % (componentName, index) - - if newName not in font.glyphOrder: - font.glyphOrder.append(newName) - - newGlyph = getTableModule("glyf").Glyph() - newGlyph.numberOfContours = -1 - newGlyph.components = [component] - glyf.glyphs[newName] = newGlyph - assert(len(glyf.glyphs) == len(font.glyphOrder)), (name, newName) - - hmtx.metrics[newName] = [width, lsb] - layers.append(newLayer(newName, componentColor)) - - if not layers: - color = getGlyphColor(name) - if color is not None: - layers = [newLayer(name, palette.index(color))] - - if layers: - COLR[name] = layers - - font["COLR"] = COLR - font["CPAL"] = CPAL - -def rename(font): - for name in font["name"].names: - if name.nameID in (1, 3, 4, 6): - string = name.toUnicode() - if name.nameID in (3, 6): - string = string.replace("Quran", "QuranColored") - else: - string = string.replace("Quran", "Quran Colored") - - name.string = string.encode(name.getEncoding()) - -def main(): - parser = argparse.ArgumentParser(description="Create a version of Amiri with colored marks using COLR/CPAL tables.") - parser.add_argument("infile", metavar="INFILE", type=str, help="input font to process") - parser.add_argument("outfile", metavar="OUTFILE", type=str, help="output font to write") - - args = parser.parse_args() - - font = TTFont(args.infile, recalcTimestamp=False) - - colorize(font) - rename(font) - - font.save(args.outfile) - -if __name__ == "__main__": - main() diff -Nru fonts-hosny-amiri-0.112/tools/makecss.py fonts-hosny-amiri-0.113/tools/makecss.py --- fonts-hosny-amiri-0.112/tools/makecss.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/makecss.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,52 +0,0 @@ -import argparse -import os - -from fontTools.ttLib import TTFont - -def genCSS(font, base): - """Generates a CSS snippet for webfont usage based on: - http://www.fontspring.com/blog/the-new-bulletproof-font-face-syntax""" - - style = "normal" - if font["post"].italicAngle != 0: - style = "oblique" - weight = font["OS/2"].usWeightClass - family = font["name"].getName(nameID=1, platformID=3, platEncID=1) - family = str(family).replace(" ", "") - - css = """ -@font-face { - font-family: %(family)sWeb; - font-style: %(style)s; - font-weight: %(weight)s; - src: url('%(base)s.woff2') format('woff2'), - url('%(base)s.woff') format('woff'); -} -""" %{"style":style, "weight":weight, "family":family, "base":base} - - return css - -def makeCss(infiles, outfile): - """Builds a CSS file for the entire font family.""" - - css = "/* Example CSS snippet for using Amiri as web font */\n" - - for f in infiles.split(): - base = os.path.splitext(os.path.basename(f))[0] - font = TTFont(f) - css += genCSS(font, base) - - with open(outfile, "w") as out: - out.write(css) - -def main(): - parser = argparse.ArgumentParser(description="Create a CSS snippet from Amiri fonts.") - parser.add_argument("--fonts", metavar="FILES", help="input fonts to process", required=True) - parser.add_argument("--css", metavar="FILE", help="output font to write", required=True) - - args = parser.parse_args() - - makeCss(args.fonts, args.css) - -if __name__ == "__main__": - main() diff -Nru fonts-hosny-amiri-0.112/tools/makeweb.py fonts-hosny-amiri-0.113/tools/makeweb.py --- fonts-hosny-amiri-0.112/tools/makeweb.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/makeweb.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,49 +0,0 @@ -import argparse -import os - -from fontTools.ttLib import TTFont -from fontTools import subset - -def makeWeb(args): - """If we are building a web version then try to minimise file size""" - - font = TTFont(args.file, recalcTimestamp=False) - - # removed compatibility glyphs that of little use on the web - ranges = ( - (0xfb50, 0xfbb1), - (0xfbd3, 0xfd3d), - (0xfd50, 0xfdf9), - (0xfdfc, 0xfdfc), - (0xfe70, 0xfefc), - ) - - cmap = font['cmap'].buildReversed() - unicodes = set([min(cmap[c]) for c in cmap]) - for r in ranges: - unicodes -= set(range(r[0], r[1] + 1)) - - options = subset.Options() - options.set(layout_features='*', name_IDs='*', drop_tables=['DSIG']) - subsetter = subset.Subsetter(options=options) - subsetter.populate(unicodes=unicodes) - subsetter.subset(font) - - base, ext = os.path.splitext(args.file) - for flavor in ("woff", "woff2"): - font.flavor = flavor - font.save(args.dir + "/" + base + "." + flavor) - font.close() - - -def main(): - parser = argparse.ArgumentParser(description="Create web optimised version of Amiri fonts.") - parser.add_argument("file", help="input font to process") - parser.add_argument("dir", help="output directory to write fonts to") - - args = parser.parse_args() - - makeWeb(args) - -if __name__ == "__main__": - main() diff -Nru fonts-hosny-amiri-0.112/tools/rebuild_composite.py fonts-hosny-amiri-0.113/tools/rebuild_composite.py --- fonts-hosny-amiri-0.112/tools/rebuild_composite.py 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/tools/rebuild_composite.py 1970-01-01 00:00:00.000000000 +0000 @@ -1,81 +0,0 @@ -top_marks = ("Dot.a", "TwoDots.a", "ThreeDots.a", "iThreeDots.a", - "vTwoDots.a", "FourDots.a", "hThreeDots.a", "aTwo.above", - "aThree.above", "smalltaa.above", "uni0654", - "hamza.above", "smallv.above", "smallv.above.inverted") -bot_marks = ("Dot.b", "TwoDots.b", "ThreeDots.b", "iThreeDots.b", "vTwoDots.b", - "FourDots.b", "hThreeDots.b", "ring.below", "aFour.below", - "smallv.below", "smallv.below.inverted", "smallv.below.low", - "smallv.below.inverted.low", - "Dot.b.l", "TwoDots.b.l", "ThreeDots.b.l", "iThreeDots.b.l", "vTwoDots.b.l", - "FourDots.b.l", "hThreeDots.b.l") - -def RebuildGlyph(glyph): - font = glyph.font - base = "" - marks = [] - anchors = [] - for ref in glyph.references: - klass = font[ref[0]].glyphclass - if klass != "mark" and (klass == "baseglyph" or klass == "automatic"): - if not base: - base = ref[0] - else: - print "error" - elif klass == "mark": - marks.append(ref[0]) - - for a in glyph.anchorPoints: - anchors.append(a[0]) - - glyph.clear() - glyph.addReference(base) - glyph.useRefsMetrics(base) - for mark in marks: - glyph.appendAccent(mark) - glyph.build() - for anchor in font[base].anchorPoints: - if anchor[0] in anchors: - glyph.addAnchorPoint(anchor[0], anchor[1], anchor[2], anchor[3]) - -def FixTashilOverTopMarks(glyph): - font = glyph.font - - for ref in glyph.references: - if ref[0] in top_marks: - for anchor in glyph.anchorPoints: - if anchor[0] == "TashkilAbove": - oldanchor = anchor - - transform = ref[1] - ymax = font[ref[0]].boundingBox()[3] - - if oldanchor[-1] < (ymax + transform[-1]): - for anchor in font[ref[0]].anchorPoints: - if anchor[0] == "TashkilAboveDot" or anchor[0] =="TashkilTashkilAbove": - newanchor = anchor - glyph.addAnchorPoint("TashkilAbove", "base", newanchor[-2] + transform[-2], newanchor[-1] + transform[-1] - 100) - -def FixTashilUnderBottomMarks(glyph): - font = glyph.font - for ref in glyph.references: - if ref[0] in bot_marks: - for anchor in glyph.anchorPoints: - if anchor[0] == "TashkilBelow": - oldanchor = anchor - - transform = ref[1] - ymin = font[ref[0]].boundingBox()[1] - - if oldanchor[-1] > (ymin + transform[-1]): - for anchor in font[ref[0]].anchorPoints: - if anchor[0] == "TashkilBelowDot": - newanchor = anchor - glyph.addAnchorPoint("TashkilBelow", "base", newanchor[-2] + transform[-2], newanchor[-1] + transform[-1]) - -def RebuildGlyphs(crap, font): - for glyph in font.selection.byGlyphs: - RebuildGlyph(glyph) - FixTashilUnderBottomMarks(glyph) - FixTashilOverTopMarks(glyph) - -fontforge.registerMenuItem(RebuildGlyphs, None, None, "Font", None, "Rebuild Glyphs") diff -Nru fonts-hosny-amiri-0.112/.travis.yml fonts-hosny-amiri-0.113/.travis.yml --- fonts-hosny-amiri-0.112/.travis.yml 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/.travis.yml 2020-06-02 19:42:15.000000000 +0000 @@ -1,17 +1,9 @@ -dist: xenial +dist: bionic language: python -python: 2.7 -virtualenv: - system_site_packages: true - -addons: - apt: - packages: - - python-fontforge +python: 3.6 install: - pip install -r requirements.txt script: - - make ttf - #- make check + - make diff -Nru fonts-hosny-amiri-0.112/webfonts/README fonts-hosny-amiri-0.113/webfonts/README --- fonts-hosny-amiri-0.112/webfonts/README 2019-09-29 20:54:53.000000000 +0000 +++ fonts-hosny-amiri-0.113/webfonts/README 1970-01-01 00:00:00.000000000 +0000 @@ -1,4 +0,0 @@ -This directory contains a version of the Amiri fonts for use as web fonts (via -CSS @font-face) in various file formats to support as many browsers as -possible, in addition to a CSS snippet outlining best practice for cross -browser support.