├── fonts ├── .gitkeep ├── otf │ ├── Printline-Thin.otf │ ├── Printline-Black.otf │ └── Printline-Regular.otf ├── ttf │ ├── Printline-Thin.ttf │ ├── Printline-Black.ttf │ └── Printline-Regular.ttf └── variable │ └── Printline[wght].ttf ├── sources ├── masters │ ├── .gitkeep │ ├── Printline-Black.ufo │ │ ├── glyphs │ │ │ ├── space.glif │ │ │ ├── periodcentered.glif │ │ │ ├── nbspace.glif │ │ │ ├── multiply.glif │ │ │ ├── ringcomb.glif │ │ │ ├── tildecomb.glif │ │ │ ├── caroncomb.glif │ │ │ ├── gravecomb.glif │ │ │ ├── macroncomb.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.glif │ │ │ ├── brevecomb.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── underscore.glif │ │ │ ├── acutecomb.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── idotaccent.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── emdash.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_tilde.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── abreve.glif │ │ │ ├── asciicircum.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── braceright.glif │ │ │ ├── exclamdown.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── rcaron.glif │ │ │ ├── umacron.glif │ │ │ ├── I_J_.glif │ │ │ ├── ij.glif │ │ │ ├── nacute.glif │ │ │ ├── nine.glif │ │ │ ├── racute.glif │ │ │ ├── sacute.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── semicolon.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── D_croat.glif │ │ │ ├── grave.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── T_caron.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── yen.glif │ │ │ ├── E_macron.glif │ │ │ ├── ae.glif │ │ │ ├── bar.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_grave.glif │ │ │ ├── U_macron.glif │ │ │ └── quotedblright.glif │ │ ├── layercontents.plist │ │ └── metainfo.plist │ ├── Printline-Bold.ufo │ │ ├── glyphs │ │ │ ├── space.glif │ │ │ ├── periodcentered.glif │ │ │ ├── nbspace.glif │ │ │ ├── multiply.glif │ │ │ ├── ringcomb.glif │ │ │ ├── caroncomb.glif │ │ │ ├── gravecomb.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── tildecomb.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── macroncomb.glif │ │ │ ├── periodcentered.loclC_A_T_.glif │ │ │ ├── brevecomb.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── underscore.glif │ │ │ ├── acutecomb.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── idotaccent.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── emdash.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_tilde.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── abreve.glif │ │ │ ├── asciicircum.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── braceright.glif │ │ │ ├── exclamdown.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── rcaron.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── ij.glif │ │ │ ├── umacron.glif │ │ │ ├── I_J_.glif │ │ │ ├── nacute.glif │ │ │ ├── nine.glif │ │ │ ├── racute.glif │ │ │ ├── sacute.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── semicolon.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── grave.glif │ │ │ ├── D_croat.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── T_caron.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── yen.glif │ │ │ ├── E_macron.glif │ │ │ ├── bar.glif │ │ │ ├── ae.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_grave.glif │ │ │ ├── U_macron.glif │ │ │ └── quotedblright.glif │ │ ├── layercontents.plist │ │ └── metainfo.plist │ ├── Printline-Light.ufo │ │ ├── glyphs │ │ │ ├── space.glif │ │ │ ├── periodcentered.glif │ │ │ ├── nbspace.glif │ │ │ ├── multiply.glif │ │ │ ├── ringcomb.glif │ │ │ ├── caroncomb.glif │ │ │ ├── macroncomb.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.glif │ │ │ ├── brevecomb.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── gravecomb.glif │ │ │ ├── tildecomb.glif │ │ │ ├── underscore.glif │ │ │ ├── acutecomb.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── idotaccent.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── emdash.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_breve.glif │ │ │ ├── W_grave.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_tilde.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── abreve.glif │ │ │ ├── asciicircum.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── braceright.glif │ │ │ ├── exclamdown.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── ij.glif │ │ │ ├── quoteright.glif │ │ │ ├── umacron.glif │ │ │ ├── I_J_.glif │ │ │ ├── nacute.glif │ │ │ ├── racute.glif │ │ │ ├── sacute.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── nine.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── semicolon.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── grave.glif │ │ │ ├── D_croat.glif │ │ │ ├── T_caron.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── rcaron.glif │ │ │ ├── quotedbl.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── E_macron.glif │ │ │ ├── ae.glif │ │ │ ├── bar.glif │ │ │ ├── E_acute.glif │ │ │ ├── U_macron.glif │ │ │ ├── quotedblright.glif │ │ │ ├── E_grave.glif │ │ │ └── yen.glif │ │ ├── layercontents.plist │ │ └── metainfo.plist │ ├── Printline-Thin.ufo │ │ ├── glyphs │ │ │ ├── space.glif │ │ │ ├── periodcentered.glif │ │ │ ├── nbspace.glif │ │ │ ├── multiply.glif │ │ │ ├── ringcomb.glif │ │ │ ├── caroncomb.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── macroncomb.glif │ │ │ ├── periodcentered.loclC_A_T_.glif │ │ │ ├── brevecomb.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── gravecomb.glif │ │ │ ├── tildecomb.glif │ │ │ ├── underscore.glif │ │ │ ├── acutecomb.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── idotaccent.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── periodcentered.loclC_A_T_.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── emdash.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_ring.glif │ │ │ ├── W_grave.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_tilde.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── abreve.glif │ │ │ ├── asciicircum.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── braceright.glif │ │ │ ├── exclamdown.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── ij.glif │ │ │ ├── umacron.glif │ │ │ ├── I_J_.glif │ │ │ ├── nacute.glif │ │ │ ├── racute.glif │ │ │ ├── sacute.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── guillemotright.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── nine.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── zdotaccent.glif │ │ │ ├── semicolon.glif │ │ │ ├── grave.glif │ │ │ ├── D_croat.glif │ │ │ ├── T_caron.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── rcaron.glif │ │ │ ├── quotedbl.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── guillemotleft.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── bar.glif │ │ │ ├── E_macron.glif │ │ │ ├── ae.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_grave.glif │ │ │ ├── U_macron.glif │ │ │ ├── quotedblright.glif │ │ │ └── yen.glif │ │ ├── layercontents.plist │ │ └── metainfo.plist │ └── Printline-Regular.ufo │ │ ├── glyphs │ │ ├── space.glif │ │ ├── periodcentered.glif │ │ ├── nbspace.glif │ │ ├── multiply.glif │ │ ├── ringcomb.glif │ │ ├── caroncomb.glif │ │ ├── macroncomb.glif │ │ ├── cedillacomb.glif │ │ ├── periodcentered.loclC_A_T_.glif │ │ ├── brevecomb.glif │ │ ├── dieresiscomb.glif │ │ ├── dotaccentcomb.glif │ │ ├── ogonekcomb.glif │ │ ├── circumflexcomb.glif │ │ ├── gravecomb.glif │ │ ├── tildecomb.glif │ │ ├── underscore.glif │ │ ├── acutecomb.glif │ │ ├── idotaccent.glif │ │ ├── hungarumlautcomb.glif │ │ ├── periodcentered.loclC_A_T_.case.glif │ │ ├── commaaccentcomb.glif │ │ ├── emdash.glif │ │ ├── A_ring.glif │ │ ├── A_breve.glif │ │ ├── A_tilde.glif │ │ ├── W_acute.glif │ │ ├── W_grave.glif │ │ ├── asciicircum.glif │ │ ├── A_acute.glif │ │ ├── G_dotaccent.glif │ │ ├── W_dieresis.glif │ │ ├── abreve.glif │ │ ├── braceright.glif │ │ ├── exclamdown.glif │ │ ├── quoteright.glif │ │ ├── quotesinglbase.glif │ │ ├── umacron.glif │ │ ├── A_dieresis.glif │ │ ├── Y_circumflex.glif │ │ ├── nine.glif │ │ ├── gcommaaccent.glif │ │ ├── nacute.glif │ │ ├── racute.glif │ │ ├── rcaron.glif │ │ ├── sacute.glif │ │ ├── wdieresis.glif │ │ ├── wgrave.glif │ │ ├── I_J_.glif │ │ ├── guillemotright.glif │ │ ├── guilsinglright.glif │ │ ├── ij.glif │ │ ├── quotedblleft.glif │ │ ├── gdotaccent.glif │ │ ├── semicolon.glif │ │ ├── zdotaccent.glif │ │ ├── D_croat.glif │ │ ├── grave.glif │ │ ├── uhungarumlaut.glif │ │ ├── T_caron.glif │ │ ├── Z_dotaccent.glif │ │ ├── quotedbl.glif │ │ ├── guillemotleft.glif │ │ ├── quotedblbase.glif │ │ ├── U_macron.glif │ │ ├── E_macron.glif │ │ ├── ae.glif │ │ ├── bar.glif │ │ ├── E_acute.glif │ │ └── quotedblright.glif │ │ ├── layercontents.plist │ │ └── metainfo.plist ├── build.sh └── config.yaml ├── AUTHORS.txt ├── documentation └── image.png └── .gitignore /fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/masters/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Archit Pujar < archittype@gmail.com > -------------------------------------------------------------------------------- /documentation/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/documentation/image.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.vfbak 2 | *.pyc 3 | .DS_Store 4 | *.ninja 5 | *.ninja_log 6 | instance_ufos/ 7 | test/* 8 | -------------------------------------------------------------------------------- /fonts/otf/Printline-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/otf/Printline-Thin.otf -------------------------------------------------------------------------------- /fonts/ttf/Printline-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/ttf/Printline-Thin.ttf -------------------------------------------------------------------------------- /fonts/otf/Printline-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/otf/Printline-Black.otf -------------------------------------------------------------------------------- /fonts/otf/Printline-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/otf/Printline-Regular.otf -------------------------------------------------------------------------------- /fonts/ttf/Printline-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/ttf/Printline-Black.ttf -------------------------------------------------------------------------------- /fonts/ttf/Printline-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/ttf/Printline-Regular.ttf -------------------------------------------------------------------------------- /fonts/variable/Printline[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArchitType/Printline/HEAD/fonts/variable/Printline[wght].ttf -------------------------------------------------------------------------------- /sources/build.sh: -------------------------------------------------------------------------------- 1 | echo " Cleaning fonts..." 2 | rm ../fonts 3 | 4 | echo "Building fonts..." 5 | gftools builder config.yaml 6 | 7 | echo "Printline has been built!" -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/periodcentered.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/nbspace.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | public.markColor 8 | 0.6,0.602,1,1 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/nbspace.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | public.markColor 8 | 0.6,0.602,1,1 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/nbspace.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | public.markColor 8 | 0.6,0.602,1,1 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/nbspace.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | public.markColor 8 | 0.6,0.602,1,1 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/nbspace.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | public.markColor 8 | 0.6,0.602,1,1 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /sources/config.yaml: -------------------------------------------------------------------------------- 1 | sources: 2 | - Printline.designspace 3 | 4 | axisOrder: 5 | - wght 6 | 7 | familyName: Printline 8 | outputDir: ../fonts 9 | flattenComponents: false 10 | removeOutlineOverlaps: false 11 | decomposeTransformedComponents: false 12 | buildVariable: true 13 | buildStatic: true 14 | buildWebfont: false 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/multiply.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/multiply.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/multiply.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/multiply.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/layercontents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | public.default 7 | glyphs 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/layercontents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | public.default 7 | glyphs 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/layercontents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | public.default 7 | glyphs 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/multiply.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/layercontents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | public.default 7 | glyphs 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/layercontents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | public.default 7 | glyphs 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | com.fontlab.ufoLib 7 | formatVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | com.fontlab.ufoLib 7 | formatVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | com.fontlab.ufoLib 7 | formatVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | com.fontlab.ufoLib 7 | formatVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | com.fontlab.ufoLib 7 | formatVersion 8 | 3 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ring% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ring% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ring% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ring% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ring% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | tilde% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | caron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | grave% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ogonek% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | tilde% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | caron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ogonek% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | caron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | grave% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | macron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ogonek% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/periodcentered.loclC_A_T_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | cedilla% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | macron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/periodcentered.loclC_A_T_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | caron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | macron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ogonek% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/periodcentered.loclC_A_T_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | caron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | macron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | cedilla% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | macron% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/periodcentered.loclC_A_T_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | breve% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | cedilla% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dieresis% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | breve% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dieresis% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | breve% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | cedilla% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dieresis% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | cedilla% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/periodcentered.loclC_A_T_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | breve% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dieresis% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dotaccent% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dotaccent% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dotaccent% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | grave% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | tilde% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | breve% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dieresis% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dotaccent% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | ogonek% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | dotaccent% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | grave% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | tilde% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | acute% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | circumflex% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | acute% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | circumflex% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | acute% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | circumflex% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | circumflex% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | grave% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | tilde% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/underscore.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | acute% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | circumflex% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsLeft 10 | =i 11 | com.fontlab.metricsRight 12 | =i 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsLeft 10 | =i 11 | com.fontlab.metricsRight 12 | =i 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsLeft 10 | =i 11 | com.fontlab.metricsRight 12 | =i 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | acute% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsLeft 10 | =i 11 | com.fontlab.metricsRight 12 | =i 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsLeft 10 | =i 11 | com.fontlab.metricsRight 12 | =i 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | hungarumlaut% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/periodcentered.loclC_A_T_.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | hungarumlaut% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/periodcentered.loclC_A_T_.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | hungarumlaut% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/periodcentered.loclC_A_T_.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | hungarumlaut% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/periodcentered.loclC_A_T_.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | hungarumlaut% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/periodcentered.loclC_A_T_.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | com.fontlab.metricsRight 10 | =0 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | space+^comma% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | space+^comma% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | space+^comma% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | space+^comma% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.recipe 11 | space+^comma% 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+ring 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+ring 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+ring 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/emdash.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+ring 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+tildecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+tildecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/A_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+ring 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | a+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | a+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+tildecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | a+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+tildecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | a+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | G+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =H 12 | com.fontlab.metricsRight 13 | =H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | G+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =H 12 | com.fontlab.metricsRight 13 | =H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | com.fontlab.metricsRight 13 | =0 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+caron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | G+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =H 12 | com.fontlab.metricsRight 13 | =H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/A_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+tildecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/asciicircum.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | G+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/Y_circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | Y+circumflex 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =H 12 | com.fontlab.metricsRight 13 | =H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+^quoteleft 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | com.fontlab.metricsRight 13 | =0 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/Y_circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | Y+circumflex 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+^quoteleft 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | com.fontlab.metricsRight 13 | =0 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+caron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+macron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/Y_circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | Y+circumflex 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+^quoteleft 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | i_j 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+macron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/Y_circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | Y+circumflex 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+^quoteleft 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | i_j 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | com.fontlab.metricsRight 13 | =0 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+macron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/A_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | G+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | W+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | a+breve 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/braceright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =H 12 | com.fontlab.metricsRight 13 | =H 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/exclamdown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quoteright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =0 12 | com.fontlab.metricsRight 13 | =0 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quotesinglbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+macron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | i_j 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+macron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | I_J 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | i_j 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | n+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =O 12 | com.fontlab.metricsRight 13 | =O 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | s+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | I_J 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | n+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =O 12 | com.fontlab.metricsRight 13 | =O 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | s+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | I_J 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | n+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | s+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/A_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | A+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/Y_circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | Y+circumflex 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =O 12 | com.fontlab.metricsRight 13 | =O 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | I_J 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | n+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | s+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =O 12 | com.fontlab.metricsRight 13 | =O 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+^quoteleft 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | n+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | r+caron 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | s+acutecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+dieresis 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | w+gravecomb 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/nine.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =O 12 | com.fontlab.metricsRight 13 | =O 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | z+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | z+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | z+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | z+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | I_J 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/guillemotright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/guilsinglright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =V 12 | com.fontlab.metricsRight 13 | =V 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/ij.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | i_j 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quotedblleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =30 12 | com.fontlab.metricsRight 13 | =30 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | g+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/semicolon.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | z+dotaccent 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =D 12 | com.fontlab.metricsRight 13 | =D 14 | com.fontlab.recipe 15 | Eth% 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/uhungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+hungarumlaut 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =D 12 | com.fontlab.metricsRight 13 | =D 14 | com.fontlab.recipe 15 | Eth% 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/uhungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+hungarumlaut 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =D 12 | com.fontlab.metricsRight 13 | =D 14 | com.fontlab.recipe 15 | Eth% 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | T+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/uhungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+hungarumlaut 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =D 12 | com.fontlab.metricsRight 13 | =D 14 | com.fontlab.recipe 15 | Eth% 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/uhungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+hungarumlaut 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | com.fontlab.metricsLeft 11 | =D 12 | com.fontlab.metricsRight 13 | =D 14 | com.fontlab.recipe 15 | Eth% 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | T+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/uhungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | com.fontlab.recipe 13 | u+hungarumlaut 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | T+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | T+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =V 13 | com.fontlab.metricsRight 14 | =V 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | r+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | T+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | r+caron 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =V 13 | com.fontlab.metricsRight 14 | =V 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | Z+dotaccent 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | Z+dotaccent 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | Z+dotaccent 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | Z+dotaccent 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | com.fontlab.recipe 14 | Z+dotaccent 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quotedbl.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =V 13 | com.fontlab.metricsRight 14 | =V 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =V 13 | com.fontlab.metricsRight 14 | =V 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/guillemotleft.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =V 13 | com.fontlab.metricsRight 14 | =V 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =0 13 | com.fontlab.metricsRight 14 | =0 15 | com.fontlab.recipe 16 | Y+equal% 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quotedblbase.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =0 13 | com.fontlab.metricsRight 14 | =0 15 | com.fontlab.recipe 16 | Y+equal% 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | com.fontlab.metricsRight 16 | =0 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | com.fontlab.metricsRight 16 | =0 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =a 13 | com.fontlab.metricsRight 14 | =e 15 | com.fontlab.recipe 16 | a_e 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | com.fontlab.metricsRight 16 | =0 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =a 13 | com.fontlab.metricsRight 14 | =e 15 | com.fontlab.recipe 16 | a_e 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =a 13 | com.fontlab.metricsRight 14 | =e 15 | com.fontlab.recipe 16 | a_e 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | com.fontlab.metricsRight 16 | =0 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | U+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =a 13 | com.fontlab.metricsRight 14 | =e 15 | com.fontlab.recipe 16 | a_e 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+acutecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/E_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+gravecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | U+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Black.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+acutecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/E_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+gravecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | U+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Bold.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+acutecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | U+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/ae.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =a 13 | com.fontlab.metricsRight 14 | =e 15 | com.fontlab.recipe 16 | a_e 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/bar.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | com.fontlab.metricsRight 16 | =0 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+acutecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/E_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+gravecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | U+macron 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/E_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+gravecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Light.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =0 13 | com.fontlab.metricsRight 14 | =0 15 | com.fontlab.recipe 16 | Y+equal% 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | com.fontlab.recipe 15 | E+acutecomb 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /sources/masters/Printline-Regular.ufo/glyphs/quotedblright.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =30 13 | com.fontlab.metricsRight 14 | =30 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /sources/masters/Printline-Thin.ufo/glyphs/yen.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | com.fontlab.metricsLeft 12 | =0 13 | com.fontlab.metricsRight 14 | =0 15 | com.fontlab.recipe 16 | Y+equal% 17 | 18 | 19 | 20 | --------------------------------------------------------------------------------