├── .flake8 ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── actionsosx ├── README.txt └── UFO Normalize.workflow │ └── Contents │ ├── Info.plist │ ├── QuickLook │ └── Thumbnail.png │ └── document.wflow ├── docs ├── complex-text-with-pysilfont-guide.txt ├── complex-text-with-pysilfont.ipynb ├── composite.md ├── docs.md ├── examples.md ├── parameters.md ├── release.md ├── scripts.md ├── technical.md ├── tests.md └── ufo.md ├── examples ├── FFmapGdlNames.py ├── FFmapGdlNames2.py ├── FLWriteXml.py ├── FTMLnorm.py ├── FTaddEmptyOT.py ├── accesslibplist.py ├── chaindemo.py ├── fbonecheck.py ├── fbttfchecks.py ├── ffchangeglyphnames.py ├── ffcopyglyphs.py ├── ffremovealloverlaps.py ├── fontforge-old │ ├── FFaddPUA.py │ ├── FFcheckDupUSV.py │ ├── FFcolourGlyphs.py │ ├── FFcompareFonts.py │ ├── FFdblEncode.py │ ├── FFfromAP.py │ ├── FFlistAPNum.py │ ├── FFlistGlyphNames.py │ ├── FFlistGlyphinfo.py │ ├── FFlistRefNum.py │ ├── FFnameSearchNReplace.py │ ├── FFundblEncode.py │ ├── demoAddToMenu.py │ ├── demoExecuteScript.py │ └── demoFunctions.py ├── gdl │ ├── __init__.py │ ├── font.py │ ├── glyph.py │ ├── makeGdl.py │ ├── ot.py │ └── psnames.py ├── preflight ├── psfaddGlyphDemo.py ├── psfexpandstroke.py ├── psfexportnamesunicodesfp.py ├── psfgenftml.py ├── psftidyfontlabufo.py ├── psftoneletters.py └── xmlDemo.py ├── preflight └── update-preflight-libs-pyenv ├── pyproject.toml ├── pytest.ini ├── src └── silfont │ ├── __init__.py │ ├── comp.py │ ├── core.py │ ├── data │ ├── required_chars.csv │ └── required_chars.md │ ├── etutil.py │ ├── fbtests │ ├── __init__.py │ ├── checks.py │ └── profile.py │ ├── ftml.py │ ├── ftml_builder.py │ ├── gfr.py │ ├── harfbuzz.py │ ├── ipython.py │ ├── scripts │ ├── __init__.py │ ├── psfaddanchors.py │ ├── psfbuildcomp.py │ ├── psfbuildcompgc.py │ ├── psfbuildfea.py │ ├── psfchangegdlnames.py │ ├── psfchangettfglyphnames.py │ ├── psfcheckbasicchars.py │ ├── psfcheckclassorders.py │ ├── psfcheckftml.py │ ├── psfcheckglyphinventory.py │ ├── psfcheckinterpolatable.py │ ├── psfcheckproject.py │ ├── psfcompdef2xml.py │ ├── psfcompressgr.py │ ├── psfcopyglyphs.py │ ├── psfcopymeta.py │ ├── psfcreateinstances.py │ ├── psfcsv2comp.py │ ├── psfcsv2kern.py │ ├── psfdeflang.py │ ├── psfdeleteglyphs.py │ ├── psfdupglyphs.py │ ├── psfexportanchors.py │ ├── psfexportmarkcolors.py │ ├── psfexportpsnames.py │ ├── psfexportunicodes.py │ ├── psffixffglifs.py │ ├── psffixfontlab.py │ ├── psfftml2TThtml.py │ ├── psfftml2odt.py │ ├── psfgetglyphnames.py │ ├── psfglyphs2ufo.py │ ├── psfkern2csv.py │ ├── psfmakedeprecated.py │ ├── psfmakefea.py │ ├── psfmakescaledshifted.py │ ├── psfmakewoffmetadata.py │ ├── psfnormalize.py │ ├── psfpreflightversion.py │ ├── psfremovegliflibkeys.py │ ├── psfrenameglyphs.py │ ├── psfrunfbchecks.py │ ├── psfsetassocfeat.py │ ├── psfsetassocuids.py │ ├── psfsetdummydsig.py │ ├── psfsetglyphdata.py │ ├── psfsetglyphorder.py │ ├── psfsetkeys.py │ ├── psfsetmarkcolors.py │ ├── psfsetpsnames.py │ ├── psfsetunicodes.py │ ├── psfsetversion.py │ ├── psfshownames.py │ ├── psfsubset.py │ ├── psfsyncmasters.py │ ├── psfsyncmeta.py │ ├── psftuneraliases.py │ ├── psfufo2glyphs.py │ ├── psfufo2ttf.py │ ├── psfversion.py │ ├── psfwoffit.py │ └── psfxml2compdef.py │ ├── ufo.py │ └── util.py └── tests ├── fontparts └── test_10_psfbuildcompgc.py ├── input ├── PsfTest-R.ttf ├── font-psf-test │ ├── FONTLOG.txt │ ├── OFL-FAQ.txt │ ├── OFL.txt │ ├── README.md │ ├── README.txt │ ├── preflight │ ├── preflightg │ ├── source │ │ ├── PsfTest-Bold.ufo │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── A_mpersand.glif │ │ │ │ ├── A_pos.glif │ │ │ │ ├── A_sterisk.glif │ │ │ │ ├── A_tS_gn.glif │ │ │ │ ├── C_ircumA_ccent.glif │ │ │ │ ├── C_olon.glif │ │ │ │ ├── C_ombA_cute.glif │ │ │ │ ├── C_ombC_ircum.glif │ │ │ │ ├── C_ombD_iaer.glif │ │ │ │ ├── C_ombG_rave.glif │ │ │ │ ├── C_ombR_ingA_bv.glif │ │ │ │ ├── C_ombT_ilde.glif │ │ │ │ ├── C_omma.glif │ │ │ │ ├── D_igitE_ight.glif │ │ │ │ ├── D_igitF_ive.glif │ │ │ │ ├── D_igitF_our.glif │ │ │ │ ├── D_igitN_ine.glif │ │ │ │ ├── D_igitO_ne.glif │ │ │ │ ├── D_igitS_even.glif │ │ │ │ ├── D_igitS_ix.glif │ │ │ │ ├── D_igitT_hree.glif │ │ │ │ ├── D_igitT_wo.glif │ │ │ │ ├── D_igitZ_ero.glif │ │ │ │ ├── D_ollarS_gn.glif │ │ │ │ ├── D_ottedC_irc.glif │ │ │ │ ├── E_qS_gn.glif │ │ │ │ ├── E_xclamationM_rk.glif │ │ │ │ ├── F_ullS_top.glif │ │ │ │ ├── G_T_S_gn.glif │ │ │ │ ├── G_raveA_ccent.glif │ │ │ │ ├── H_yphen.glif │ │ │ │ ├── H_yphenM_inus.glif │ │ │ │ ├── H_yphen_S_oft.glif │ │ │ │ ├── L_T_S_gn.glif │ │ │ │ ├── L_ftC_urlyB_rac.glif │ │ │ │ ├── L_ftP_aren.glif │ │ │ │ ├── L_ftS_qrB_rac.glif │ │ │ │ ├── L_owL_ine.glif │ │ │ │ ├── L_tnC_apA_.alt.glif │ │ │ │ ├── L_tnC_apA_.glif │ │ │ │ ├── L_tnC_apA_D_iaer.glif │ │ │ │ ├── L_tnC_apB_.glif │ │ │ │ ├── L_tnC_apC_.glif │ │ │ │ ├── L_tnC_apD_.glif │ │ │ │ ├── L_tnC_apE_.glif │ │ │ │ ├── L_tnC_apF_.glif │ │ │ │ ├── L_tnC_apG_.glif │ │ │ │ ├── L_tnC_apH_.glif │ │ │ │ ├── L_tnC_apI_.glif │ │ │ │ ├── L_tnC_apJ_.glif │ │ │ │ ├── L_tnC_apK_.glif │ │ │ │ ├── L_tnC_apL_.glif │ │ │ │ ├── L_tnC_apM_.glif │ │ │ │ ├── L_tnC_apN_.glif │ │ │ │ ├── L_tnC_apO_.glif │ │ │ │ ├── L_tnC_apP_.glif │ │ │ │ ├── L_tnC_apQ_.glif │ │ │ │ ├── L_tnC_apR_.glif │ │ │ │ ├── L_tnC_apS_.glif │ │ │ │ ├── L_tnC_apT_.glif │ │ │ │ ├── L_tnC_apU_.glif │ │ │ │ ├── L_tnC_apV_.glif │ │ │ │ ├── L_tnC_apW_.glif │ │ │ │ ├── L_tnC_apX_.glif │ │ │ │ ├── L_tnC_apY_.glif │ │ │ │ ├── L_tnS_mA_.glif │ │ │ │ ├── L_tnS_mA_A_cute.glif │ │ │ │ ├── L_tnS_mA_C_ircum.glif │ │ │ │ ├── L_tnS_mA_D_iaer.glif │ │ │ │ ├── L_tnS_mA_G_rave.glif │ │ │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ │ │ ├── L_tnS_mA_T_ilde.glif │ │ │ │ ├── L_tnS_mB_.glif │ │ │ │ ├── L_tnS_mC_.glif │ │ │ │ ├── L_tnS_mD_.glif │ │ │ │ ├── L_tnS_mE_.glif │ │ │ │ ├── L_tnS_mF_.glif │ │ │ │ ├── L_tnS_mG_.glif │ │ │ │ ├── L_tnS_mH_.glif │ │ │ │ ├── L_tnS_mI_.glif │ │ │ │ ├── L_tnS_mJ_.glif │ │ │ │ ├── L_tnS_mK_.glif │ │ │ │ ├── L_tnS_mL_.glif │ │ │ │ ├── L_tnS_mM_.glif │ │ │ │ ├── L_tnS_mN_.glif │ │ │ │ ├── L_tnS_mO_.glif │ │ │ │ ├── L_tnS_mP_.glif │ │ │ │ ├── L_tnS_mQ_.glif │ │ │ │ ├── L_tnS_mR_.glif │ │ │ │ ├── L_tnS_mS_.glif │ │ │ │ ├── L_tnS_mT_.glif │ │ │ │ ├── L_tnS_mU_.glif │ │ │ │ ├── L_tnS_mV_.glif │ │ │ │ ├── L_tnS_mW_.glif │ │ │ │ ├── L_tnS_mX_.glif │ │ │ │ ├── L_tnS_mY_.glif │ │ │ │ ├── N_onB_reakingH_yphen.glif │ │ │ │ ├── N_umS_gn.glif │ │ │ │ ├── P_ercentS_gn.glif │ │ │ │ ├── P_lusS_gn.glif │ │ │ │ ├── Q_stnM_rk.glif │ │ │ │ ├── Q_uotM_rk.glif │ │ │ │ ├── R_everseS_olidus.glif │ │ │ │ ├── R_tC_urlyB_rac.glif │ │ │ │ ├── R_tP_aren.glif │ │ │ │ ├── R_tS_qrB_rac.glif │ │ │ │ ├── S_emicolon.glif │ │ │ │ ├── S_olidus.glif │ │ │ │ ├── S_pace.glif │ │ │ │ ├── T_ilde.glif │ │ │ │ ├── V_ertL_ine.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── _null.glif │ │ │ │ ├── contents.plist │ │ │ │ └── nonmarkingreturn.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── PsfTest-BoldItalic.ufo │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── A_mpersand.glif │ │ │ │ ├── A_pos.glif │ │ │ │ ├── A_sterisk.glif │ │ │ │ ├── A_tS_gn.glif │ │ │ │ ├── C_ircumA_ccent.glif │ │ │ │ ├── C_olon.glif │ │ │ │ ├── C_ombA_cute.glif │ │ │ │ ├── C_ombC_ircum.glif │ │ │ │ ├── C_ombD_iaer.glif │ │ │ │ ├── C_ombG_rave.glif │ │ │ │ ├── C_ombR_ingA_bv.glif │ │ │ │ ├── C_ombT_ilde.glif │ │ │ │ ├── C_omma.glif │ │ │ │ ├── D_igitE_ight.glif │ │ │ │ ├── D_igitF_ive.glif │ │ │ │ ├── D_igitF_our.glif │ │ │ │ ├── D_igitN_ine.glif │ │ │ │ ├── D_igitO_ne.glif │ │ │ │ ├── D_igitS_even.glif │ │ │ │ ├── D_igitS_ix.glif │ │ │ │ ├── D_igitT_hree.glif │ │ │ │ ├── D_igitT_wo.glif │ │ │ │ ├── D_igitZ_ero.glif │ │ │ │ ├── D_ollarS_gn.glif │ │ │ │ ├── D_ottedC_irc.glif │ │ │ │ ├── E_qS_gn.glif │ │ │ │ ├── E_xclamationM_rk.glif │ │ │ │ ├── F_ullS_top.glif │ │ │ │ ├── G_T_S_gn.glif │ │ │ │ ├── G_raveA_ccent.glif │ │ │ │ ├── H_yphen.glif │ │ │ │ ├── H_yphenM_inus.glif │ │ │ │ ├── H_yphen_S_oft.glif │ │ │ │ ├── L_T_S_gn.glif │ │ │ │ ├── L_ftC_urlyB_rac.glif │ │ │ │ ├── L_ftP_aren.glif │ │ │ │ ├── L_ftS_qrB_rac.glif │ │ │ │ ├── L_owL_ine.glif │ │ │ │ ├── L_tnC_apA_.glif │ │ │ │ ├── L_tnC_apA_D_iaer.glif │ │ │ │ ├── L_tnC_apB_.glif │ │ │ │ ├── L_tnC_apC_.glif │ │ │ │ ├── L_tnC_apD_.glif │ │ │ │ ├── L_tnC_apE_.glif │ │ │ │ ├── L_tnC_apF_.glif │ │ │ │ ├── L_tnC_apG_.glif │ │ │ │ ├── L_tnC_apH_.glif │ │ │ │ ├── L_tnC_apI_.glif │ │ │ │ ├── L_tnC_apJ_.glif │ │ │ │ ├── L_tnC_apK_.glif │ │ │ │ ├── L_tnC_apL_.glif │ │ │ │ ├── L_tnC_apM_.glif │ │ │ │ ├── L_tnC_apN_.glif │ │ │ │ ├── L_tnC_apO_.glif │ │ │ │ ├── L_tnC_apP_.glif │ │ │ │ ├── L_tnC_apQ_.glif │ │ │ │ ├── L_tnC_apR_.glif │ │ │ │ ├── L_tnC_apS_.glif │ │ │ │ ├── L_tnC_apT_.glif │ │ │ │ ├── L_tnC_apU_.glif │ │ │ │ ├── L_tnC_apV_.glif │ │ │ │ ├── L_tnC_apW_.glif │ │ │ │ ├── L_tnC_apX_.glif │ │ │ │ ├── L_tnC_apY_.glif │ │ │ │ ├── L_tnS_mA_.glif │ │ │ │ ├── L_tnS_mA_A_cute.glif │ │ │ │ ├── L_tnS_mA_C_ircum.glif │ │ │ │ ├── L_tnS_mA_D_iaer.glif │ │ │ │ ├── L_tnS_mA_G_rave.glif │ │ │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ │ │ ├── L_tnS_mA_T_ilde.glif │ │ │ │ ├── L_tnS_mB_.glif │ │ │ │ ├── L_tnS_mC_.glif │ │ │ │ ├── L_tnS_mD_.glif │ │ │ │ ├── L_tnS_mE_.glif │ │ │ │ ├── L_tnS_mF_.glif │ │ │ │ ├── L_tnS_mG_.glif │ │ │ │ ├── L_tnS_mH_.glif │ │ │ │ ├── L_tnS_mI_.glif │ │ │ │ ├── L_tnS_mJ_.glif │ │ │ │ ├── L_tnS_mK_.glif │ │ │ │ ├── L_tnS_mL_.glif │ │ │ │ ├── L_tnS_mM_.glif │ │ │ │ ├── L_tnS_mN_.glif │ │ │ │ ├── L_tnS_mO_.glif │ │ │ │ ├── L_tnS_mP_.glif │ │ │ │ ├── L_tnS_mQ_.glif │ │ │ │ ├── L_tnS_mR_.glif │ │ │ │ ├── L_tnS_mS_.glif │ │ │ │ ├── L_tnS_mT_.glif │ │ │ │ ├── L_tnS_mU_.glif │ │ │ │ ├── L_tnS_mV_.glif │ │ │ │ ├── L_tnS_mW_.glif │ │ │ │ ├── L_tnS_mX_.glif │ │ │ │ ├── L_tnS_mY_.glif │ │ │ │ ├── N_onB_reakingH_yphen.glif │ │ │ │ ├── N_umS_gn.glif │ │ │ │ ├── P_ercentS_gn.glif │ │ │ │ ├── P_lusS_gn.glif │ │ │ │ ├── Q_stnM_rk.glif │ │ │ │ ├── Q_uotM_rk.glif │ │ │ │ ├── R_everseS_olidus.glif │ │ │ │ ├── R_tC_urlyB_rac.glif │ │ │ │ ├── R_tP_aren.glif │ │ │ │ ├── R_tS_qrB_rac.glif │ │ │ │ ├── S_emicolon.glif │ │ │ │ ├── S_olidus.glif │ │ │ │ ├── S_pace.glif │ │ │ │ ├── T_ilde.glif │ │ │ │ ├── V_ertL_ine.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── _null.glif │ │ │ │ ├── contents.plist │ │ │ │ └── nonmarkingreturn.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── PsfTest-Italic.ufo │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── A_mpersand.glif │ │ │ │ ├── A_pos.glif │ │ │ │ ├── A_sterisk.glif │ │ │ │ ├── A_tS_gn.glif │ │ │ │ ├── C_ircumA_ccent.glif │ │ │ │ ├── C_olon.glif │ │ │ │ ├── C_ombA_cute.glif │ │ │ │ ├── C_ombC_ircum.glif │ │ │ │ ├── C_ombD_iaer.glif │ │ │ │ ├── C_ombG_rave.glif │ │ │ │ ├── C_ombR_ingA_bv.glif │ │ │ │ ├── C_ombT_ilde.glif │ │ │ │ ├── C_omma.glif │ │ │ │ ├── D_igitE_ight.glif │ │ │ │ ├── D_igitF_ive.glif │ │ │ │ ├── D_igitF_our.glif │ │ │ │ ├── D_igitN_ine.glif │ │ │ │ ├── D_igitO_ne.glif │ │ │ │ ├── D_igitS_even.glif │ │ │ │ ├── D_igitS_ix.glif │ │ │ │ ├── D_igitT_hree.glif │ │ │ │ ├── D_igitT_wo.glif │ │ │ │ ├── D_igitZ_ero.glif │ │ │ │ ├── D_ollarS_gn.glif │ │ │ │ ├── D_ottedC_irc.glif │ │ │ │ ├── E_qS_gn.glif │ │ │ │ ├── E_xclamationM_rk.glif │ │ │ │ ├── F_ullS_top.glif │ │ │ │ ├── G_T_S_gn.glif │ │ │ │ ├── G_raveA_ccent.glif │ │ │ │ ├── H_yphen.glif │ │ │ │ ├── H_yphenM_inus.glif │ │ │ │ ├── H_yphen_S_oft.glif │ │ │ │ ├── L_T_S_gn.glif │ │ │ │ ├── L_ftC_urlyB_rac.glif │ │ │ │ ├── L_ftP_aren.glif │ │ │ │ ├── L_ftS_qrB_rac.glif │ │ │ │ ├── L_owL_ine.glif │ │ │ │ ├── L_tnC_apA_.glif │ │ │ │ ├── L_tnC_apA_D_iaer.glif │ │ │ │ ├── L_tnC_apB_.glif │ │ │ │ ├── L_tnC_apC_.glif │ │ │ │ ├── L_tnC_apD_.glif │ │ │ │ ├── L_tnC_apE_.glif │ │ │ │ ├── L_tnC_apF_.glif │ │ │ │ ├── L_tnC_apG_.glif │ │ │ │ ├── L_tnC_apH_.glif │ │ │ │ ├── L_tnC_apI_.glif │ │ │ │ ├── L_tnC_apJ_.glif │ │ │ │ ├── L_tnC_apK_.glif │ │ │ │ ├── L_tnC_apL_.glif │ │ │ │ ├── L_tnC_apM_.glif │ │ │ │ ├── L_tnC_apN_.glif │ │ │ │ ├── L_tnC_apO_.glif │ │ │ │ ├── L_tnC_apP_.glif │ │ │ │ ├── L_tnC_apQ_.glif │ │ │ │ ├── L_tnC_apR_.glif │ │ │ │ ├── L_tnC_apS_.glif │ │ │ │ ├── L_tnC_apT_.glif │ │ │ │ ├── L_tnC_apU_.glif │ │ │ │ ├── L_tnC_apV_.glif │ │ │ │ ├── L_tnC_apW_.glif │ │ │ │ ├── L_tnC_apX_.glif │ │ │ │ ├── L_tnC_apY_.glif │ │ │ │ ├── L_tnS_mA_.glif │ │ │ │ ├── L_tnS_mA_A_cute.glif │ │ │ │ ├── L_tnS_mA_C_ircum.glif │ │ │ │ ├── L_tnS_mA_D_iaer.glif │ │ │ │ ├── L_tnS_mA_G_rave.glif │ │ │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ │ │ ├── L_tnS_mA_T_ilde.glif │ │ │ │ ├── L_tnS_mB_.glif │ │ │ │ ├── L_tnS_mC_.glif │ │ │ │ ├── L_tnS_mD_.glif │ │ │ │ ├── L_tnS_mE_.glif │ │ │ │ ├── L_tnS_mF_.glif │ │ │ │ ├── L_tnS_mG_.glif │ │ │ │ ├── L_tnS_mH_.glif │ │ │ │ ├── L_tnS_mI_.glif │ │ │ │ ├── L_tnS_mJ_.glif │ │ │ │ ├── L_tnS_mK_.glif │ │ │ │ ├── L_tnS_mL_.glif │ │ │ │ ├── L_tnS_mM_.glif │ │ │ │ ├── L_tnS_mN_.glif │ │ │ │ ├── L_tnS_mO_.glif │ │ │ │ ├── L_tnS_mP_.glif │ │ │ │ ├── L_tnS_mQ_.glif │ │ │ │ ├── L_tnS_mR_.glif │ │ │ │ ├── L_tnS_mS_.glif │ │ │ │ ├── L_tnS_mT_.glif │ │ │ │ ├── L_tnS_mU_.glif │ │ │ │ ├── L_tnS_mV_.glif │ │ │ │ ├── L_tnS_mW_.glif │ │ │ │ ├── L_tnS_mX_.glif │ │ │ │ ├── L_tnS_mY_.glif │ │ │ │ ├── N_onB_reakingH_yphen.glif │ │ │ │ ├── N_umS_gn.glif │ │ │ │ ├── P_ercentS_gn.glif │ │ │ │ ├── P_lusS_gn.glif │ │ │ │ ├── Q_stnM_rk.glif │ │ │ │ ├── Q_uotM_rk.glif │ │ │ │ ├── R_everseS_olidus.glif │ │ │ │ ├── R_tC_urlyB_rac.glif │ │ │ │ ├── R_tP_aren.glif │ │ │ │ ├── R_tS_qrB_rac.glif │ │ │ │ ├── S_emicolon.glif │ │ │ │ ├── S_olidus.glif │ │ │ │ ├── S_pace.glif │ │ │ │ ├── T_ilde.glif │ │ │ │ ├── V_ertL_ine.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── _null.glif │ │ │ │ ├── contents.plist │ │ │ │ └── nonmarkingreturn.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── PsfTest-Regular.ufo │ │ │ ├── fontinfo.plist │ │ │ ├── glyphs │ │ │ │ ├── A_mpersand.glif │ │ │ │ ├── A_pos.glif │ │ │ │ ├── A_sterisk.glif │ │ │ │ ├── A_tS_gn.glif │ │ │ │ ├── C_ircumA_ccent.glif │ │ │ │ ├── C_olon.glif │ │ │ │ ├── C_ombA_cute.glif │ │ │ │ ├── C_ombC_ircum.glif │ │ │ │ ├── C_ombD_iaer.glif │ │ │ │ ├── C_ombG_rave.glif │ │ │ │ ├── C_ombR_ingA_bv.glif │ │ │ │ ├── C_ombT_ilde.glif │ │ │ │ ├── C_omma.glif │ │ │ │ ├── D_igitE_ight.glif │ │ │ │ ├── D_igitF_ive.glif │ │ │ │ ├── D_igitF_our.glif │ │ │ │ ├── D_igitN_ine.glif │ │ │ │ ├── D_igitO_ne.glif │ │ │ │ ├── D_igitS_even.glif │ │ │ │ ├── D_igitS_ix.glif │ │ │ │ ├── D_igitT_hree.glif │ │ │ │ ├── D_igitT_wo.glif │ │ │ │ ├── D_igitZ_ero.glif │ │ │ │ ├── D_ollarS_gn.glif │ │ │ │ ├── D_ottedC_irc.glif │ │ │ │ ├── E_qS_gn.glif │ │ │ │ ├── E_xclamationM_rk.glif │ │ │ │ ├── F_ullS_top.glif │ │ │ │ ├── G_T_S_gn.glif │ │ │ │ ├── G_raveA_ccent.glif │ │ │ │ ├── H_yphen.glif │ │ │ │ ├── H_yphenM_inus.glif │ │ │ │ ├── H_yphen_S_oft.glif │ │ │ │ ├── L_T_S_gn.glif │ │ │ │ ├── L_ftC_urlyB_rac.glif │ │ │ │ ├── L_ftP_aren.glif │ │ │ │ ├── L_ftS_qrB_rac.glif │ │ │ │ ├── L_owL_ine.glif │ │ │ │ ├── L_tnC_apA_.alt.glif │ │ │ │ ├── L_tnC_apA_.glif │ │ │ │ ├── L_tnC_apA_D_iaer.glif │ │ │ │ ├── L_tnC_apB_.glif │ │ │ │ ├── L_tnC_apC_.glif │ │ │ │ ├── L_tnC_apD_.glif │ │ │ │ ├── L_tnC_apE_.glif │ │ │ │ ├── L_tnC_apF_.glif │ │ │ │ ├── L_tnC_apG_.glif │ │ │ │ ├── L_tnC_apH_.glif │ │ │ │ ├── L_tnC_apI_.glif │ │ │ │ ├── L_tnC_apJ_.glif │ │ │ │ ├── L_tnC_apK_.glif │ │ │ │ ├── L_tnC_apL_.glif │ │ │ │ ├── L_tnC_apM_.glif │ │ │ │ ├── L_tnC_apN_.glif │ │ │ │ ├── L_tnC_apO_.glif │ │ │ │ ├── L_tnC_apP_.glif │ │ │ │ ├── L_tnC_apQ_.glif │ │ │ │ ├── L_tnC_apR_.glif │ │ │ │ ├── L_tnC_apS_.glif │ │ │ │ ├── L_tnC_apT_.glif │ │ │ │ ├── L_tnC_apU_.glif │ │ │ │ ├── L_tnC_apV_.glif │ │ │ │ ├── L_tnC_apW_.glif │ │ │ │ ├── L_tnC_apX_.glif │ │ │ │ ├── L_tnC_apY_.glif │ │ │ │ ├── L_tnS_mA_.glif │ │ │ │ ├── L_tnS_mA_A_cute.glif │ │ │ │ ├── L_tnS_mA_C_ircum.glif │ │ │ │ ├── L_tnS_mA_D_iaer.glif │ │ │ │ ├── L_tnS_mA_G_rave.glif │ │ │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ │ │ ├── L_tnS_mA_T_ilde.glif │ │ │ │ ├── L_tnS_mB_.glif │ │ │ │ ├── L_tnS_mC_.glif │ │ │ │ ├── L_tnS_mD_.glif │ │ │ │ ├── L_tnS_mE_.glif │ │ │ │ ├── L_tnS_mF_.glif │ │ │ │ ├── L_tnS_mG_.glif │ │ │ │ ├── L_tnS_mH_.glif │ │ │ │ ├── L_tnS_mI_.glif │ │ │ │ ├── L_tnS_mJ_.glif │ │ │ │ ├── L_tnS_mK_.glif │ │ │ │ ├── L_tnS_mL_.glif │ │ │ │ ├── L_tnS_mM_.glif │ │ │ │ ├── L_tnS_mN_.glif │ │ │ │ ├── L_tnS_mO_.glif │ │ │ │ ├── L_tnS_mP_.glif │ │ │ │ ├── L_tnS_mQ_.glif │ │ │ │ ├── L_tnS_mR_.glif │ │ │ │ ├── L_tnS_mS_.glif │ │ │ │ ├── L_tnS_mT_.glif │ │ │ │ ├── L_tnS_mU_.glif │ │ │ │ ├── L_tnS_mV_.glif │ │ │ │ ├── L_tnS_mW_.glif │ │ │ │ ├── L_tnS_mX_.glif │ │ │ │ ├── L_tnS_mY_.glif │ │ │ │ ├── N_onB_reakingH_yphen.glif │ │ │ │ ├── N_umS_gn.glif │ │ │ │ ├── P_ercentS_gn.glif │ │ │ │ ├── P_lusS_gn.glif │ │ │ │ ├── Q_stnM_rk.glif │ │ │ │ ├── Q_uotM_rk.glif │ │ │ │ ├── R_everseS_olidus.glif │ │ │ │ ├── R_tC_urlyB_rac.glif │ │ │ │ ├── R_tP_aren.glif │ │ │ │ ├── R_tS_qrB_rac.glif │ │ │ │ ├── S_emicolon.glif │ │ │ │ ├── S_olidus.glif │ │ │ │ ├── S_pace.glif │ │ │ │ ├── T_ilde.glif │ │ │ │ ├── V_ertL_ine.glif │ │ │ │ ├── _notdef.glif │ │ │ │ ├── _null.glif │ │ │ │ ├── contents.plist │ │ │ │ └── nonmarkingreturn.glif │ │ │ ├── layercontents.plist │ │ │ ├── lib.plist │ │ │ └── metainfo.plist │ │ ├── PsfTestItalic.designspace │ │ ├── PsfTestItalic.glyphs │ │ ├── PsfTestRoman.designspace │ │ ├── PsfTestRoman.glyphs │ │ ├── glyph_data.csv │ │ └── logs │ │ │ └── readme.txt │ └── wscript ├── glyph_data.csv ├── issue65.feax ├── ligatures.feax ├── psfbuildcomp.txt ├── psfcopyglyphs.csv ├── psfdeleteglyphs.txt ├── psfgenftml.csv ├── psfmakefea.feax ├── psfmakefea_2.feax ├── psfmakefea_3.feax ├── psfmakewoffmetadata.txt ├── psfrenameglyphs.csv ├── psfsetassocfeat.csv ├── psfsetassocuids.csv ├── psfsetunicodes.csv └── psfsubset.csv ├── localufos.csv.sample ├── reference ├── fontparts │ ├── psfbuildcompgc.lg │ └── psfbuildcompgc.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apC_A_cute.glif │ │ ├── L_tnC_apC_A_cuteC_edilla.glif │ │ ├── L_tnC_apC_C_ircum.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apI_J_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mC_A_cute.glif │ │ ├── L_tnS_mC_A_cuteC_edilla.glif │ │ ├── L_tnS_mC_C_ircum.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mI_J_.glif │ │ ├── L_tnS_mI_T_ilde.glif │ │ ├── L_tnS_mI_T_ildeG_rave.glif │ │ ├── L_tnS_mI_T_ildeG_raveC_edilla.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist └── ufo │ ├── psfbuildcomp.lg │ ├── psfbuildcomp.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apC_A_cute.glif │ │ ├── L_tnC_apC_A_cuteC_edilla.glif │ │ ├── L_tnC_apC_C_ircum.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apI_J_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mC_A_cute.glif │ │ ├── L_tnS_mC_A_cuteC_edilla.glif │ │ ├── L_tnS_mC_C_ircum.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mI_J_.glif │ │ ├── L_tnS_mI_T_ilde.glif │ │ ├── L_tnS_mI_T_ildeG_rave.glif │ │ ├── L_tnS_mI_T_ildeG_raveC_edilla.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfchangettfglyphnames.lg │ ├── psfchangettfglyphnames.ttf │ ├── psfcheckbasicchars.lg │ ├── psfcopyglyphs.lg │ ├── psfcopyglyphs.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpergravel.glif │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── F_ullstart.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── S_tar.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfdeleteglyphs.lg │ ├── psfdeleteglyphs.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfexportanchors.lg │ ├── psfexportanchors.xml │ ├── psfexportunicodes.csv │ ├── psfexportunicodes.lg │ ├── psfgenftml.ftml │ ├── psfgenftml.lg │ ├── psfglyphs2ufo.lg │ ├── psfglyphs2ufo │ ├── PsfTest-Bold.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── A_mpersand.glif │ │ │ ├── A_pos.glif │ │ │ ├── A_sterisk.glif │ │ │ ├── A_tS_gn.glif │ │ │ ├── C_ircumA_ccent.glif │ │ │ ├── C_olon.glif │ │ │ ├── C_ombA_cute.glif │ │ │ ├── C_ombC_ircum.glif │ │ │ ├── C_ombD_iaer.glif │ │ │ ├── C_ombG_rave.glif │ │ │ ├── C_ombR_ingA_bv.glif │ │ │ ├── C_ombT_ilde.glif │ │ │ ├── C_omma.glif │ │ │ ├── D_igitE_ight.glif │ │ │ ├── D_igitF_ive.glif │ │ │ ├── D_igitF_our.glif │ │ │ ├── D_igitN_ine.glif │ │ │ ├── D_igitO_ne.glif │ │ │ ├── D_igitS_even.glif │ │ │ ├── D_igitS_ix.glif │ │ │ ├── D_igitT_hree.glif │ │ │ ├── D_igitT_wo.glif │ │ │ ├── D_igitZ_ero.glif │ │ │ ├── D_ollarS_gn.glif │ │ │ ├── D_ottedC_irc.glif │ │ │ ├── E_qS_gn.glif │ │ │ ├── E_xclamationM_rk.glif │ │ │ ├── F_ullS_top.glif │ │ │ ├── G_T_S_gn.glif │ │ │ ├── G_raveA_ccent.glif │ │ │ ├── H_yphen.glif │ │ │ ├── H_yphenM_inus.glif │ │ │ ├── H_yphen_S_oft.glif │ │ │ ├── L_T_S_gn.glif │ │ │ ├── L_ftC_urlyB_rac.glif │ │ │ ├── L_ftP_aren.glif │ │ │ ├── L_ftS_qrB_rac.glif │ │ │ ├── L_owL_ine.glif │ │ │ ├── L_tnC_apA_.alt.glif │ │ │ ├── L_tnC_apA_.glif │ │ │ ├── L_tnC_apA_D_iaer.glif │ │ │ ├── L_tnC_apB_.glif │ │ │ ├── L_tnC_apC_.glif │ │ │ ├── L_tnC_apD_.glif │ │ │ ├── L_tnC_apE_.glif │ │ │ ├── L_tnC_apF_.glif │ │ │ ├── L_tnC_apG_.glif │ │ │ ├── L_tnC_apH_.glif │ │ │ ├── L_tnC_apI_.glif │ │ │ ├── L_tnC_apJ_.glif │ │ │ ├── L_tnC_apK_.glif │ │ │ ├── L_tnC_apL_.glif │ │ │ ├── L_tnC_apM_.glif │ │ │ ├── L_tnC_apN_.glif │ │ │ ├── L_tnC_apO_.glif │ │ │ ├── L_tnC_apP_.glif │ │ │ ├── L_tnC_apQ_.glif │ │ │ ├── L_tnC_apR_.glif │ │ │ ├── L_tnC_apS_.glif │ │ │ ├── L_tnC_apT_.glif │ │ │ ├── L_tnC_apU_.glif │ │ │ ├── L_tnC_apV_.glif │ │ │ ├── L_tnC_apW_.glif │ │ │ ├── L_tnC_apX_.glif │ │ │ ├── L_tnC_apY_.glif │ │ │ ├── L_tnS_mA_.glif │ │ │ ├── L_tnS_mA_A_cute.glif │ │ │ ├── L_tnS_mA_C_ircum.glif │ │ │ ├── L_tnS_mA_D_iaer.glif │ │ │ ├── L_tnS_mA_G_rave.glif │ │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ │ ├── L_tnS_mA_T_ilde.glif │ │ │ ├── L_tnS_mB_.glif │ │ │ ├── L_tnS_mC_.glif │ │ │ ├── L_tnS_mD_.glif │ │ │ ├── L_tnS_mE_.glif │ │ │ ├── L_tnS_mF_.glif │ │ │ ├── L_tnS_mG_.glif │ │ │ ├── L_tnS_mH_.glif │ │ │ ├── L_tnS_mI_.glif │ │ │ ├── L_tnS_mJ_.glif │ │ │ ├── L_tnS_mK_.glif │ │ │ ├── L_tnS_mL_.glif │ │ │ ├── L_tnS_mM_.glif │ │ │ ├── L_tnS_mN_.glif │ │ │ ├── L_tnS_mO_.glif │ │ │ ├── L_tnS_mP_.glif │ │ │ ├── L_tnS_mQ_.glif │ │ │ ├── L_tnS_mR_.glif │ │ │ ├── L_tnS_mS_.glif │ │ │ ├── L_tnS_mT_.glif │ │ │ ├── L_tnS_mU_.glif │ │ │ ├── L_tnS_mV_.glif │ │ │ ├── L_tnS_mW_.glif │ │ │ ├── L_tnS_mX_.glif │ │ │ ├── L_tnS_mY_.glif │ │ │ ├── N_onB_reakingH_yphen.glif │ │ │ ├── N_umS_gn.glif │ │ │ ├── P_ercentS_gn.glif │ │ │ ├── P_lusS_gn.glif │ │ │ ├── Q_stnM_rk.glif │ │ │ ├── Q_uotM_rk.glif │ │ │ ├── R_everseS_olidus.glif │ │ │ ├── R_tC_urlyB_rac.glif │ │ │ ├── R_tP_aren.glif │ │ │ ├── R_tS_qrB_rac.glif │ │ │ ├── S_emicolon.glif │ │ │ ├── S_olidus.glif │ │ │ ├── S_pace.glif │ │ │ ├── T_ilde.glif │ │ │ ├── V_ertL_ine.glif │ │ │ ├── _notdef.glif │ │ │ ├── _null.glif │ │ │ ├── contents.plist │ │ │ └── nonmarkingreturn.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ └── PsfTest-Regular.ufo │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── psfmakewoffmetadata.lg │ ├── psfmakewoffmetadata.xml │ ├── psfnormalize.lg │ ├── psfnormalize.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfrenameglyphs.lg │ ├── psfrenameglyphs.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_tS_gn.glif │ │ ├── B_pos.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── S_tar.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetassocfeat.lg │ ├── psfsetassocfeat.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetassocuids.lg │ ├── psfsetassocuids.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.alt.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetglyphorder.lg │ ├── psfsetglyphorder.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetkeys.lg │ ├── psfsetkeys.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetpsnames.lg │ ├── psfsetpsnames.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsetunicodes.lg │ ├── psfsetunicodes.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── A_mpersand.glif │ │ ├── A_pos.glif │ │ ├── A_sterisk.glif │ │ ├── A_tS_gn.glif │ │ ├── C_ircumA_ccent.glif │ │ ├── C_olon.glif │ │ ├── C_ombA_cute.glif │ │ ├── C_ombC_ircum.glif │ │ ├── C_ombD_iaer.glif │ │ ├── C_ombG_rave.glif │ │ ├── C_ombR_ingA_bv.glif │ │ ├── C_ombT_ilde.glif │ │ ├── C_omma.glif │ │ ├── D_igitE_ight.glif │ │ ├── D_igitF_ive.glif │ │ ├── D_igitF_our.glif │ │ ├── D_igitN_ine.glif │ │ ├── D_igitO_ne.glif │ │ ├── D_igitS_even.glif │ │ ├── D_igitS_ix.glif │ │ ├── D_igitT_hree.glif │ │ ├── D_igitT_wo.glif │ │ ├── D_igitZ_ero.glif │ │ ├── D_ollarS_gn.glif │ │ ├── D_ottedC_irc.glif │ │ ├── E_qS_gn.glif │ │ ├── E_xclamationM_rk.glif │ │ ├── F_ullS_top.glif │ │ ├── G_T_S_gn.glif │ │ ├── G_raveA_ccent.glif │ │ ├── H_yphen.glif │ │ ├── H_yphenM_inus.glif │ │ ├── H_yphen_S_oft.glif │ │ ├── L_T_S_gn.glif │ │ ├── L_ftC_urlyB_rac.glif │ │ ├── L_ftP_aren.glif │ │ ├── L_ftS_qrB_rac.glif │ │ ├── L_owL_ine.glif │ │ ├── L_tnC_apA_.glif │ │ ├── L_tnC_apA_D_iaer.glif │ │ ├── L_tnC_apB_.glif │ │ ├── L_tnC_apC_.glif │ │ ├── L_tnC_apD_.glif │ │ ├── L_tnC_apE_.glif │ │ ├── L_tnC_apF_.glif │ │ ├── L_tnC_apG_.glif │ │ ├── L_tnC_apH_.glif │ │ ├── L_tnC_apI_.glif │ │ ├── L_tnC_apJ_.glif │ │ ├── L_tnC_apK_.glif │ │ ├── L_tnC_apL_.glif │ │ ├── L_tnC_apM_.glif │ │ ├── L_tnC_apN_.glif │ │ ├── L_tnC_apO_.glif │ │ ├── L_tnC_apP_.glif │ │ ├── L_tnC_apQ_.glif │ │ ├── L_tnC_apR_.glif │ │ ├── L_tnC_apS_.glif │ │ ├── L_tnC_apT_.glif │ │ ├── L_tnC_apU_.glif │ │ ├── L_tnC_apV_.glif │ │ ├── L_tnC_apW_.glif │ │ ├── L_tnC_apX_.glif │ │ ├── L_tnC_apY_.glif │ │ ├── L_tnS_mA_.glif │ │ ├── L_tnS_mA_A_cute.glif │ │ ├── L_tnS_mA_C_ircum.glif │ │ ├── L_tnS_mA_D_iaer.glif │ │ ├── L_tnS_mA_G_rave.glif │ │ ├── L_tnS_mA_R_ingA_bv.glif │ │ ├── L_tnS_mA_T_ilde.glif │ │ ├── L_tnS_mB_.glif │ │ ├── L_tnS_mC_.glif │ │ ├── L_tnS_mD_.glif │ │ ├── L_tnS_mE_.glif │ │ ├── L_tnS_mF_.glif │ │ ├── L_tnS_mG_.glif │ │ ├── L_tnS_mH_.glif │ │ ├── L_tnS_mI_.glif │ │ ├── L_tnS_mJ_.glif │ │ ├── L_tnS_mK_.glif │ │ ├── L_tnS_mL_.glif │ │ ├── L_tnS_mM_.glif │ │ ├── L_tnS_mN_.glif │ │ ├── L_tnS_mO_.glif │ │ ├── L_tnS_mP_.glif │ │ ├── L_tnS_mQ_.glif │ │ ├── L_tnS_mR_.glif │ │ ├── L_tnS_mS_.glif │ │ ├── L_tnS_mT_.glif │ │ ├── L_tnS_mU_.glif │ │ ├── L_tnS_mV_.glif │ │ ├── L_tnS_mW_.glif │ │ ├── L_tnS_mX_.glif │ │ ├── L_tnS_mY_.glif │ │ ├── N_onB_reakingH_yphen.glif │ │ ├── N_umS_gn.glif │ │ ├── P_ercentS_gn.glif │ │ ├── P_lusS_gn.glif │ │ ├── Q_stnM_rk.glif │ │ ├── Q_uotM_rk.glif │ │ ├── R_everseS_olidus.glif │ │ ├── R_tC_urlyB_rac.glif │ │ ├── R_tP_aren.glif │ │ ├── R_tS_qrB_rac.glif │ │ ├── S_emicolon.glif │ │ ├── S_olidus.glif │ │ ├── S_pace.glif │ │ ├── T_ilde.glif │ │ ├── V_ertL_ine.glif │ │ ├── _notdef.glif │ │ ├── _null.glif │ │ ├── contents.plist │ │ └── nonmarkingreturn.glif │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist │ ├── psfsyncmasters-Bold-fontinfo.plist │ ├── psfsyncmasters-Bold-lib.plist │ ├── psfsyncmasters-BoldItalic-fontinfo.plist │ ├── psfsyncmasters-Italic-fontinfo.plist │ ├── psfsyncmasters.lg │ ├── psfufo2ttf.lg │ ├── psfufo2ttf.ttf │ └── psfufo2ttf.ttx ├── resetreferencelogs.py ├── runlocalufotests.py ├── setuplocalufotests.py ├── setuptestdata.py └── ufo ├── test_10_psfbuildcomp.py ├── test_16_psfchangettfglyphnames.py ├── test_18_psfcheckbasicchars.py ├── test_23_psfcopyglyphs.py ├── test_30_psfdeleteglyphs.py ├── test_34_psfexportanchors.py ├── test_36_psfexportunicodes.py ├── test_38_psfgenftml.py ├── test_40_psfglyphs2ufo.py ├── test_44_psfmakewoffmetatdata.py ├── test_46_psfrenameglyphs.py ├── test_50_psfsetassocfeat.py ├── test_52_psfsetassocuids.py ├── test_54_psfsetglyphorder.py ├── test_56_psfsetkeys.py ├── test_60_psfsetpsnames.py ├── test_62_psfsetunicodes.py ├── test_80_psfsyncmasters.py ├── test_88_psfufo2ttf.py └── test_99_psfnormalize.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/README.md -------------------------------------------------------------------------------- /actionsosx/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/actionsosx/README.txt -------------------------------------------------------------------------------- /actionsosx/UFO Normalize.workflow/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/actionsosx/UFO Normalize.workflow/Contents/Info.plist -------------------------------------------------------------------------------- /actionsosx/UFO Normalize.workflow/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/actionsosx/UFO Normalize.workflow/Contents/document.wflow -------------------------------------------------------------------------------- /docs/complex-text-with-pysilfont-guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/complex-text-with-pysilfont-guide.txt -------------------------------------------------------------------------------- /docs/complex-text-with-pysilfont.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/complex-text-with-pysilfont.ipynb -------------------------------------------------------------------------------- /docs/composite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/composite.md -------------------------------------------------------------------------------- /docs/docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/docs.md -------------------------------------------------------------------------------- /docs/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/examples.md -------------------------------------------------------------------------------- /docs/parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/parameters.md -------------------------------------------------------------------------------- /docs/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/release.md -------------------------------------------------------------------------------- /docs/scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/scripts.md -------------------------------------------------------------------------------- /docs/technical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/technical.md -------------------------------------------------------------------------------- /docs/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/tests.md -------------------------------------------------------------------------------- /docs/ufo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/docs/ufo.md -------------------------------------------------------------------------------- /examples/FFmapGdlNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/FFmapGdlNames.py -------------------------------------------------------------------------------- /examples/FFmapGdlNames2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/FFmapGdlNames2.py -------------------------------------------------------------------------------- /examples/FLWriteXml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/FLWriteXml.py -------------------------------------------------------------------------------- /examples/FTMLnorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/FTMLnorm.py -------------------------------------------------------------------------------- /examples/FTaddEmptyOT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/FTaddEmptyOT.py -------------------------------------------------------------------------------- /examples/accesslibplist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/accesslibplist.py -------------------------------------------------------------------------------- /examples/chaindemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/chaindemo.py -------------------------------------------------------------------------------- /examples/fbonecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fbonecheck.py -------------------------------------------------------------------------------- /examples/fbttfchecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fbttfchecks.py -------------------------------------------------------------------------------- /examples/ffchangeglyphnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/ffchangeglyphnames.py -------------------------------------------------------------------------------- /examples/ffcopyglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/ffcopyglyphs.py -------------------------------------------------------------------------------- /examples/ffremovealloverlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/ffremovealloverlaps.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFaddPUA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFaddPUA.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFcheckDupUSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFcheckDupUSV.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFcolourGlyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFcolourGlyphs.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFcompareFonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFcompareFonts.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFdblEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFdblEncode.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFfromAP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFfromAP.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFlistAPNum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFlistAPNum.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFlistGlyphNames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFlistGlyphNames.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFlistGlyphinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFlistGlyphinfo.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFlistRefNum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFlistRefNum.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFnameSearchNReplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFnameSearchNReplace.py -------------------------------------------------------------------------------- /examples/fontforge-old/FFundblEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/FFundblEncode.py -------------------------------------------------------------------------------- /examples/fontforge-old/demoAddToMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/demoAddToMenu.py -------------------------------------------------------------------------------- /examples/fontforge-old/demoExecuteScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/demoExecuteScript.py -------------------------------------------------------------------------------- /examples/fontforge-old/demoFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/fontforge-old/demoFunctions.py -------------------------------------------------------------------------------- /examples/gdl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/__init__.py -------------------------------------------------------------------------------- /examples/gdl/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/font.py -------------------------------------------------------------------------------- /examples/gdl/glyph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/glyph.py -------------------------------------------------------------------------------- /examples/gdl/makeGdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/makeGdl.py -------------------------------------------------------------------------------- /examples/gdl/ot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/ot.py -------------------------------------------------------------------------------- /examples/gdl/psnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/gdl/psnames.py -------------------------------------------------------------------------------- /examples/preflight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/preflight -------------------------------------------------------------------------------- /examples/psfaddGlyphDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psfaddGlyphDemo.py -------------------------------------------------------------------------------- /examples/psfexpandstroke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psfexpandstroke.py -------------------------------------------------------------------------------- /examples/psfexportnamesunicodesfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psfexportnamesunicodesfp.py -------------------------------------------------------------------------------- /examples/psfgenftml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psfgenftml.py -------------------------------------------------------------------------------- /examples/psftidyfontlabufo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psftidyfontlabufo.py -------------------------------------------------------------------------------- /examples/psftoneletters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/psftoneletters.py -------------------------------------------------------------------------------- /examples/xmlDemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/examples/xmlDemo.py -------------------------------------------------------------------------------- /preflight/update-preflight-libs-pyenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/preflight/update-preflight-libs-pyenv -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/silfont/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/__init__.py -------------------------------------------------------------------------------- /src/silfont/comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/comp.py -------------------------------------------------------------------------------- /src/silfont/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/core.py -------------------------------------------------------------------------------- /src/silfont/data/required_chars.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/data/required_chars.csv -------------------------------------------------------------------------------- /src/silfont/data/required_chars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/data/required_chars.md -------------------------------------------------------------------------------- /src/silfont/etutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/etutil.py -------------------------------------------------------------------------------- /src/silfont/fbtests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/silfont/fbtests/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/fbtests/checks.py -------------------------------------------------------------------------------- /src/silfont/fbtests/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/fbtests/profile.py -------------------------------------------------------------------------------- /src/silfont/ftml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/ftml.py -------------------------------------------------------------------------------- /src/silfont/ftml_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/ftml_builder.py -------------------------------------------------------------------------------- /src/silfont/gfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/gfr.py -------------------------------------------------------------------------------- /src/silfont/harfbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/harfbuzz.py -------------------------------------------------------------------------------- /src/silfont/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/ipython.py -------------------------------------------------------------------------------- /src/silfont/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/silfont/scripts/psfaddanchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfaddanchors.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfbuildcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfbuildcomp.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfbuildcompgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfbuildcompgc.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfbuildfea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfbuildfea.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfchangegdlnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfchangegdlnames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfchangettfglyphnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfchangettfglyphnames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckbasicchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckbasicchars.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckclassorders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckclassorders.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckftml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckftml.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckglyphinventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckglyphinventory.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckinterpolatable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckinterpolatable.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcheckproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcheckproject.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcompdef2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcompdef2xml.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcompressgr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcompressgr.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcopyglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcopyglyphs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcopymeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcopymeta.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcreateinstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcreateinstances.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcsv2comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcsv2comp.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfcsv2kern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfcsv2kern.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfdeflang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfdeflang.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfdeleteglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfdeleteglyphs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfdupglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfdupglyphs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfexportanchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfexportanchors.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfexportmarkcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfexportmarkcolors.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfexportpsnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfexportpsnames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfexportunicodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfexportunicodes.py -------------------------------------------------------------------------------- /src/silfont/scripts/psffixffglifs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psffixffglifs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psffixfontlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psffixfontlab.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfftml2TThtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfftml2TThtml.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfftml2odt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfftml2odt.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfgetglyphnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfgetglyphnames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfglyphs2ufo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfglyphs2ufo.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfkern2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfkern2csv.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfmakedeprecated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfmakedeprecated.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfmakefea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfmakefea.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfmakescaledshifted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfmakescaledshifted.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfmakewoffmetadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfmakewoffmetadata.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfnormalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfnormalize.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfpreflightversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfpreflightversion.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfremovegliflibkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfremovegliflibkeys.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfrenameglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfrenameglyphs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfrunfbchecks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfrunfbchecks.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetassocfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetassocfeat.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetassocuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetassocuids.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetdummydsig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetdummydsig.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetglyphdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetglyphdata.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetglyphorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetglyphorder.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetkeys.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetmarkcolors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetmarkcolors.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetpsnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetpsnames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetunicodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetunicodes.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsetversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsetversion.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfshownames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfshownames.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsubset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsubset.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsyncmasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsyncmasters.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfsyncmeta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfsyncmeta.py -------------------------------------------------------------------------------- /src/silfont/scripts/psftuneraliases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psftuneraliases.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfufo2glyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfufo2glyphs.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfufo2ttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfufo2ttf.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfversion.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfwoffit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfwoffit.py -------------------------------------------------------------------------------- /src/silfont/scripts/psfxml2compdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/scripts/psfxml2compdef.py -------------------------------------------------------------------------------- /src/silfont/ufo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/ufo.py -------------------------------------------------------------------------------- /src/silfont/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/src/silfont/util.py -------------------------------------------------------------------------------- /tests/fontparts/test_10_psfbuildcompgc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/fontparts/test_10_psfbuildcompgc.py -------------------------------------------------------------------------------- /tests/input/PsfTest-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/PsfTest-R.ttf -------------------------------------------------------------------------------- /tests/input/font-psf-test/FONTLOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/FONTLOG.txt -------------------------------------------------------------------------------- /tests/input/font-psf-test/OFL-FAQ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/OFL-FAQ.txt -------------------------------------------------------------------------------- /tests/input/font-psf-test/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/OFL.txt -------------------------------------------------------------------------------- /tests/input/font-psf-test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/README.md -------------------------------------------------------------------------------- /tests/input/font-psf-test/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/README.txt -------------------------------------------------------------------------------- /tests/input/font-psf-test/preflight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/preflight -------------------------------------------------------------------------------- /tests/input/font-psf-test/preflightg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/preflightg -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/PsfTest-Bold.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/PsfTest-Bold.ufo/lib.plist -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/PsfTestItalic.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/PsfTestItalic.designspace -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/PsfTestItalic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/PsfTestItalic.glyphs -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/PsfTestRoman.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/PsfTestRoman.designspace -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/PsfTestRoman.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/PsfTestRoman.glyphs -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/glyph_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/glyph_data.csv -------------------------------------------------------------------------------- /tests/input/font-psf-test/source/logs/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/source/logs/readme.txt -------------------------------------------------------------------------------- /tests/input/font-psf-test/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/font-psf-test/wscript -------------------------------------------------------------------------------- /tests/input/glyph_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/glyph_data.csv -------------------------------------------------------------------------------- /tests/input/issue65.feax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/issue65.feax -------------------------------------------------------------------------------- /tests/input/ligatures.feax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/ligatures.feax -------------------------------------------------------------------------------- /tests/input/psfbuildcomp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfbuildcomp.txt -------------------------------------------------------------------------------- /tests/input/psfcopyglyphs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfcopyglyphs.csv -------------------------------------------------------------------------------- /tests/input/psfdeleteglyphs.txt: -------------------------------------------------------------------------------- 1 | Apos 2 | Comma 3 | Missing 4 | -------------------------------------------------------------------------------- /tests/input/psfgenftml.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfgenftml.csv -------------------------------------------------------------------------------- /tests/input/psfmakefea.feax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfmakefea.feax -------------------------------------------------------------------------------- /tests/input/psfmakefea_2.feax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfmakefea_2.feax -------------------------------------------------------------------------------- /tests/input/psfmakefea_3.feax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfmakefea_3.feax -------------------------------------------------------------------------------- /tests/input/psfmakewoffmetadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfmakewoffmetadata.txt -------------------------------------------------------------------------------- /tests/input/psfrenameglyphs.csv: -------------------------------------------------------------------------------- 1 | Apos,Bpos 2 | Asterisk,Star 3 | Commer,NotThere 4 | -------------------------------------------------------------------------------- /tests/input/psfsetassocfeat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfsetassocfeat.csv -------------------------------------------------------------------------------- /tests/input/psfsetassocuids.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfsetassocuids.csv -------------------------------------------------------------------------------- /tests/input/psfsetunicodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfsetunicodes.csv -------------------------------------------------------------------------------- /tests/input/psfsubset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/input/psfsubset.csv -------------------------------------------------------------------------------- /tests/localufos.csv.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/localufos.csv.sample -------------------------------------------------------------------------------- /tests/reference/fontparts/psfbuildcompgc.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/fontparts/psfbuildcompgc.lg -------------------------------------------------------------------------------- /tests/reference/fontparts/psfbuildcompgc.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/fontparts/psfbuildcompgc.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/fontparts/psfbuildcompgc.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/fontparts/psfbuildcompgc.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/fontparts/psfbuildcompgc.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/fontparts/psfbuildcompgc.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_mpersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_mpersand.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_sterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_sterisk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombA_cute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombA_cute.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombD_iaer.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombD_iaer.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombG_rave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombG_rave.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombT_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_ombT_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitF_ive.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitF_our.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitN_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitN_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitO_ne.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitS_ix.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitS_ix.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitT_wo.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitZ_ero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_igitZ_ero.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_ollarS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/D_ollarS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/F_ullS_top.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/F_ullS_top.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_ftP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_ftP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_owL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_owL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnC_apY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mI_J_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mI_J_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/L_tnS_mY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/P_lusS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/P_lusS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/Q_stnM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/Q_stnM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/Q_uotM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/Q_uotM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/R_tP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/R_tP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_emicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_emicolon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/V_ertL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/V_ertL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfbuildcomp.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfbuildcomp.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfchangettfglyphnames.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfchangettfglyphnames.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfchangettfglyphnames.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfchangettfglyphnames.ttf -------------------------------------------------------------------------------- /tests/reference/ufo/psfcheckbasicchars.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcheckbasicchars.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_mpersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_mpersand.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_sterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_sterisk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitO_ne.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitS_ix.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitS_ix.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/D_igitT_wo.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/F_ullS_top.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/F_ullS_top.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/F_ullstart.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/F_ullstart.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_ftP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_ftP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_owL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_owL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnC_apY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/L_tnS_mY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/P_lusS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/P_lusS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/Q_stnM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/Q_stnM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/Q_uotM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/Q_uotM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/R_tP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/R_tP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_emicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_emicolon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_tar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/S_tar.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/V_ertL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/V_ertL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfcopyglyphs.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfcopyglyphs.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfdeleteglyphs.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfdeleteglyphs.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfexportanchors.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfexportanchors.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfexportanchors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfexportanchors.xml -------------------------------------------------------------------------------- /tests/reference/ufo/psfexportunicodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfexportunicodes.csv -------------------------------------------------------------------------------- /tests/reference/ufo/psfexportunicodes.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfexportunicodes.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfgenftml.ftml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfgenftml.ftml -------------------------------------------------------------------------------- /tests/reference/ufo/psfgenftml.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfgenftml.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfglyphs2ufo.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfglyphs2ufo.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfglyphs2ufo/PsfTest-Bold.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfglyphs2ufo/PsfTest-Bold.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfmakewoffmetadata.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfmakewoffmetadata.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfmakewoffmetadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfmakewoffmetadata.xml -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/A_mpersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/A_mpersand.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/A_sterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/A_sterisk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombA_cute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombA_cute.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombD_iaer.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombD_iaer.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombG_rave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombG_rave.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombT_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_ombT_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitF_ive.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitF_our.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitN_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitN_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitO_ne.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitS_ix.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitS_ix.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitT_wo.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitZ_ero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_igitZ_ero.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/D_ollarS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/D_ollarS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/F_ullS_top.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/F_ullS_top.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_ftP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_ftP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_owL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_owL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnC_apY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/L_tnS_mY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/P_lusS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/P_lusS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/Q_stnM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/Q_stnM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/Q_uotM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/Q_uotM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/R_tP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/R_tP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/S_emicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/S_emicolon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/V_ertL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/V_ertL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfnormalize.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfnormalize.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/B_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/B_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_tar.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/S_tar.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfrenameglyphs.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfrenameglyphs.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocfeat.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocfeat.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetassocuids.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetassocuids.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetglyphorder.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetglyphorder.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/A_mpersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/A_mpersand.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/A_sterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/A_sterisk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombA_cute.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombA_cute.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombC_ircum.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombC_ircum.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombD_iaer.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombD_iaer.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombG_rave.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombG_rave.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombT_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_ombT_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitE_ight.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitE_ight.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitF_ive.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitF_our.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitN_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitN_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitO_ne.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitS_even.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitS_even.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitS_ix.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitS_ix.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitT_hree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitT_hree.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitT_wo.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitZ_ero.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_igitZ_ero.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_ollarS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_ollarS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/D_ottedC_irc.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/D_ottedC_irc.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/F_ullS_top.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/F_ullS_top.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/G_raveA_ccent.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/G_raveA_ccent.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphenM_inus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphenM_inus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphen_S_oft.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/H_yphen_S_oft.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_ftP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_ftP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_ftS_qrB_rac.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_ftS_qrB_rac.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_owL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_owL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnC_apY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/L_tnS_mY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/N_umS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/N_umS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/P_ercentS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/P_ercentS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/P_lusS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/P_lusS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/Q_stnM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/Q_stnM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/Q_uotM_rk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/Q_uotM_rk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/R_tP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/R_tP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/R_tS_qrB_rac.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/R_tS_qrB_rac.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/S_emicolon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/S_emicolon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/S_olidus.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/S_olidus.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/V_ertL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/V_ertL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetkeys.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetkeys.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_mpersand.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_mpersand.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_sterisk.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_sterisk.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_tS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/A_tS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitO_ne.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitS_ix.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitS_ix.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/D_igitT_wo.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/E_qS_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/E_qS_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/F_ullS_top.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/F_ullS_top.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/G_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/G_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/H_yphen.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/H_yphen.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_T_S_gn.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_T_S_gn.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_ftP_aren.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_ftP_aren.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_owL_ine.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_owL_ine.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apL_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apL_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apM_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apM_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apN_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apN_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apO_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apO_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apP_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apP_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apQ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apQ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apR_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apR_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apS_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apS_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apT_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apT_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apU_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apU_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apV_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apV_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apW_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apW_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apX_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apX_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apY_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnC_apY_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mA_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mA_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mB_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mB_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mC_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mC_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mD_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mD_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mE_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mE_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mF_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mF_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mG_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mG_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mH_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mH_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mI_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mI_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mJ_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mJ_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mK_.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/L_tnS_mK_.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/_notdef.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/_notdef.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetpsnames.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetpsnames.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/A_pos.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/A_pos.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/C_olon.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/C_olon.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/C_omma.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/C_omma.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/S_pace.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/S_pace.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/T_ilde.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/T_ilde.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/glyphs/_null.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/glyphs/_null.glif -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsetunicodes.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsetunicodes.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsyncmasters-Bold-fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsyncmasters-Bold-fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsyncmasters-Bold-lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsyncmasters-Bold-lib.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsyncmasters-Italic-fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsyncmasters-Italic-fontinfo.plist -------------------------------------------------------------------------------- /tests/reference/ufo/psfsyncmasters.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfsyncmasters.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfufo2ttf.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfufo2ttf.lg -------------------------------------------------------------------------------- /tests/reference/ufo/psfufo2ttf.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfufo2ttf.ttf -------------------------------------------------------------------------------- /tests/reference/ufo/psfufo2ttf.ttx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/reference/ufo/psfufo2ttf.ttx -------------------------------------------------------------------------------- /tests/resetreferencelogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/resetreferencelogs.py -------------------------------------------------------------------------------- /tests/runlocalufotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/runlocalufotests.py -------------------------------------------------------------------------------- /tests/setuplocalufotests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/setuplocalufotests.py -------------------------------------------------------------------------------- /tests/setuptestdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/setuptestdata.py -------------------------------------------------------------------------------- /tests/ufo/test_10_psfbuildcomp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_10_psfbuildcomp.py -------------------------------------------------------------------------------- /tests/ufo/test_16_psfchangettfglyphnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_16_psfchangettfglyphnames.py -------------------------------------------------------------------------------- /tests/ufo/test_18_psfcheckbasicchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_18_psfcheckbasicchars.py -------------------------------------------------------------------------------- /tests/ufo/test_23_psfcopyglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_23_psfcopyglyphs.py -------------------------------------------------------------------------------- /tests/ufo/test_30_psfdeleteglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_30_psfdeleteglyphs.py -------------------------------------------------------------------------------- /tests/ufo/test_34_psfexportanchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_34_psfexportanchors.py -------------------------------------------------------------------------------- /tests/ufo/test_36_psfexportunicodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_36_psfexportunicodes.py -------------------------------------------------------------------------------- /tests/ufo/test_38_psfgenftml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_38_psfgenftml.py -------------------------------------------------------------------------------- /tests/ufo/test_40_psfglyphs2ufo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_40_psfglyphs2ufo.py -------------------------------------------------------------------------------- /tests/ufo/test_44_psfmakewoffmetatdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_44_psfmakewoffmetatdata.py -------------------------------------------------------------------------------- /tests/ufo/test_46_psfrenameglyphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_46_psfrenameglyphs.py -------------------------------------------------------------------------------- /tests/ufo/test_50_psfsetassocfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_50_psfsetassocfeat.py -------------------------------------------------------------------------------- /tests/ufo/test_52_psfsetassocuids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_52_psfsetassocuids.py -------------------------------------------------------------------------------- /tests/ufo/test_54_psfsetglyphorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_54_psfsetglyphorder.py -------------------------------------------------------------------------------- /tests/ufo/test_56_psfsetkeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_56_psfsetkeys.py -------------------------------------------------------------------------------- /tests/ufo/test_60_psfsetpsnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_60_psfsetpsnames.py -------------------------------------------------------------------------------- /tests/ufo/test_62_psfsetunicodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_62_psfsetunicodes.py -------------------------------------------------------------------------------- /tests/ufo/test_80_psfsyncmasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_80_psfsyncmasters.py -------------------------------------------------------------------------------- /tests/ufo/test_88_psfufo2ttf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_88_psfufo2ttf.py -------------------------------------------------------------------------------- /tests/ufo/test_99_psfnormalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/silnrsi/pysilfont/HEAD/tests/ufo/test_99_psfnormalize.py --------------------------------------------------------------------------------