├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Lib └── designspaceProblems │ ├── __init__.py │ ├── __main__.py │ └── problems.py ├── README.md ├── problems.md ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── tests ├── axismapping.designspace ├── badly_populated.designspace ├── discrete_axes.designspace ├── empty.designspace ├── instance_without_location.designspace ├── makeTests.py ├── malformed.designspace ├── malformed_axis.designspace ├── malformed_file.designspace ├── masters │ ├── geometryMaster1.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── broken_component.glif │ │ │ ├── contents.plist │ │ │ ├── extra.glyph.for.neutral.glif │ │ │ ├── glyphF_ive.glif │ │ │ ├── glyphF_our.glif │ │ │ ├── glyphO_ne.glif │ │ │ ├── glyphT_hree.glif │ │ │ ├── glyphT_wo.glif │ │ │ ├── glyph_with_many_contours.glif │ │ │ ├── layerinfo.plist │ │ │ ├── narrow.component.glif │ │ │ ├── narrow.glif │ │ │ ├── offC_urveC_ompatibilityT_est.glif │ │ │ ├── wide.component.glif │ │ │ └── wide.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── geometryMaster1_no_kerning.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs │ │ │ ├── contents.plist │ │ │ ├── extra.glyph.for.neutral.glif │ │ │ ├── glyphF_ive.glif │ │ │ ├── glyphF_our.glif │ │ │ ├── glyphO_ne.glif │ │ │ ├── glyphT_hree.glif │ │ │ ├── glyphT_wo.glif │ │ │ ├── glyph_with_many_contours.glif │ │ │ ├── layerinfo.plist │ │ │ ├── narrow.component.glif │ │ │ ├── narrow.glif │ │ │ ├── offC_urveC_ompatibilityT_est.glif │ │ │ ├── wide.component.glif │ │ │ └── wide.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ ├── geometryMaster2.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs.support │ │ │ ├── contents.plist │ │ │ ├── glyphF_ive.glif │ │ │ ├── glyphO_ne.glif │ │ │ └── layerinfo.plist │ │ ├── glyphs │ │ │ ├── broken_component.glif │ │ │ ├── contents.plist │ │ │ ├── extra.glyph.for.master2.glif │ │ │ ├── glyphF_ive.glif │ │ │ ├── glyphF_our.glif │ │ │ ├── glyphO_ne.glif │ │ │ ├── glyphT_hree.glif │ │ │ ├── glyphT_wo.glif │ │ │ ├── glyph_with_many_contours.glif │ │ │ ├── layerinfo.plist │ │ │ ├── narrow.component.glif │ │ │ ├── narrow.glif │ │ │ ├── offC_urveC_ompatibilityT_est.glif │ │ │ ├── wide.component.glif │ │ │ └── wide.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ └── geometryMaster3.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs.support │ │ ├── contents.plist │ │ ├── glyphF_ive.glif │ │ ├── glyphO_ne.glif │ │ └── layerinfo.plist │ │ ├── glyphs │ │ ├── broken_component.glif │ │ ├── contents.plist │ │ ├── extra.glyph.for.master2.glif │ │ ├── glyphF_ive.glif │ │ ├── glyphF_our.glif │ │ ├── glyphO_ne.glif │ │ ├── glyphT_hree.glif │ │ ├── glyphT_wo.glif │ │ ├── glyph_with_many_contours.glif │ │ ├── layerinfo.plist │ │ ├── narrow.component.glif │ │ ├── narrow.glif │ │ ├── offC_urveC_ompatibilityT_est.glif │ │ ├── wide.component.glif │ │ └── wide.glif │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist ├── multiple_defaults.designspace ├── multiple_sources_on_same_location.designspace ├── no-kerning-in-default.designspace ├── no_default.designspace ├── source-ufo-missing.designspace ├── source-without-location.designspace ├── viable.designspace └── viable_ds5.designspace └── tests_ds5 ├── ds5.designspace ├── ds5_addKerningToTheseMasters.py ├── ds5_log.txt ├── ds5_makeTestDoc.py ├── ds5_test_designspaceProblems.py ├── instances ├── geometryInstance_c_(400, 700)_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ ├── glyphT_wo.glif │ │ └── layerinfo.plist │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_(400, 700)_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1000_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_1100_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_300_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_400_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_550_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_700_d1_1_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_700_d1_1_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_700_d1_2_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_700_d1_2_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── geometryInstance_c_700_d1_3_d2_0.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── glyphO_ne.glif │ │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist └── geometryInstance_c_700_d1_3_d2_1.ufo │ ├── features.fea │ ├── fontinfo.plist │ ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ └── glyphT_wo.glif │ ├── groups.plist │ ├── kerning.plist │ ├── layercontents.plist │ ├── lib.plist │ └── metainfo.plist ├── sources.jpg └── sources ├── geometrySource_c_1000_d1_1_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_1000_d1_1_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_1000_d1_2_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_1000_d1_2_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_1000_d1_3_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_1000_d1_3_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_400_d1_1_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_400_d1_1_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_400_d1_2_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_400_d1_2_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist ├── geometrySource_c_400_d1_3_d2_0.ufo ├── features.fea ├── fontinfo.plist ├── glyphs │ ├── contents.plist │ ├── glyphO_ne.glif │ ├── glyphT_wo.glif │ └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist └── geometrySource_c_400_d1_3_d2_1.ufo ├── features.fea ├── fontinfo.plist ├── glyphs ├── contents.plist ├── glyphO_ne.glif ├── glyphT_wo.glif └── layerinfo.plist ├── groups.plist ├── kerning.plist ├── layercontents.plist ├── lib.plist └── metainfo.plist /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/designspaceProblems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/Lib/designspaceProblems/__init__.py -------------------------------------------------------------------------------- /Lib/designspaceProblems/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/Lib/designspaceProblems/__main__.py -------------------------------------------------------------------------------- /Lib/designspaceProblems/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/Lib/designspaceProblems/problems.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/README.md -------------------------------------------------------------------------------- /problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/problems.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/setup.py -------------------------------------------------------------------------------- /tests/axismapping.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/axismapping.designspace -------------------------------------------------------------------------------- /tests/badly_populated.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/badly_populated.designspace -------------------------------------------------------------------------------- /tests/discrete_axes.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/discrete_axes.designspace -------------------------------------------------------------------------------- /tests/empty.designspace: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /tests/instance_without_location.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/instance_without_location.designspace -------------------------------------------------------------------------------- /tests/makeTests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/makeTests.py -------------------------------------------------------------------------------- /tests/malformed.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/malformed.designspace -------------------------------------------------------------------------------- /tests/malformed_axis.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/malformed_axis.designspace -------------------------------------------------------------------------------- /tests/malformed_file.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/malformed_file.designspace -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features text from master 1 -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/broken_component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/broken_component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/extra.glyph.for.neutral.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/extra.glyph.for.neutral.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyphF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyphF_our.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyphT_hree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyphT_hree.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/glyph_with_many_contours.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/glyph_with_many_contours.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/narrow.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/narrow.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/narrow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/narrow.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/offC_urveC_ompatibilityT_est.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/offC_urveC_ompatibilityT_est.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/wide.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/wide.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/glyphs/wide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/glyphs/wide.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/groups.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/lib.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features text from master 1 -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/extra.glyph.for.neutral.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/extra.glyph.for.neutral.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphF_our.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphT_hree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphT_hree.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyph_with_many_contours.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/glyph_with_many_contours.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/narrow.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/narrow.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/narrow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/narrow.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/offC_urveC_ompatibilityT_est.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/offC_urveC_ompatibilityT_est.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/wide.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/wide.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/glyphs/wide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/glyphs/wide.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/lib.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster1_no_kerning.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster1_no_kerning.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features text from master 2 -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs.support/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs.support/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs.support/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs.support/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs.support/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs.support/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs.support/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs.support/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/broken_component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/broken_component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/extra.glyph.for.master2.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/extra.glyph.for.master2.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyphF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyphF_our.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyphT_hree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyphT_hree.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/glyph_with_many_contours.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/glyph_with_many_contours.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/narrow.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/narrow.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/narrow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/narrow.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/offC_urveC_ompatibilityT_est.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/offC_urveC_ompatibilityT_est.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/wide.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/wide.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/glyphs/wide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/glyphs/wide.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/groups.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/kerning.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/lib.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster2.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster2.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features text from master 2 -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs.support/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs.support/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs.support/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs.support/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs.support/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs.support/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs.support/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs.support/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/broken_component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/broken_component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/extra.glyph.for.master2.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/extra.glyph.for.master2.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyphF_ive.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyphF_ive.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyphF_our.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyphF_our.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyphT_hree.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyphT_hree.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/glyph_with_many_contours.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/glyph_with_many_contours.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/narrow.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/narrow.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/narrow.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/narrow.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/offC_urveC_ompatibilityT_est.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/offC_urveC_ompatibilityT_est.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/wide.component.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/wide.component.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/glyphs/wide.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/glyphs/wide.glif -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/lib.plist -------------------------------------------------------------------------------- /tests/masters/geometryMaster3.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/masters/geometryMaster3.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests/multiple_defaults.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/multiple_defaults.designspace -------------------------------------------------------------------------------- /tests/multiple_sources_on_same_location.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/multiple_sources_on_same_location.designspace -------------------------------------------------------------------------------- /tests/no-kerning-in-default.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/no-kerning-in-default.designspace -------------------------------------------------------------------------------- /tests/no_default.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/no_default.designspace -------------------------------------------------------------------------------- /tests/source-ufo-missing.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/source-ufo-missing.designspace -------------------------------------------------------------------------------- /tests/source-without-location.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/source-without-location.designspace -------------------------------------------------------------------------------- /tests/viable.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/viable.designspace -------------------------------------------------------------------------------- /tests/viable_ds5.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests/viable_ds5.designspace -------------------------------------------------------------------------------- /tests_ds5/ds5.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/ds5.designspace -------------------------------------------------------------------------------- /tests_ds5/ds5_addKerningToTheseMasters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/ds5_addKerningToTheseMasters.py -------------------------------------------------------------------------------- /tests_ds5/ds5_log.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/ds5_log.txt -------------------------------------------------------------------------------- /tests_ds5/ds5_makeTestDoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/ds5_makeTestDoc.py -------------------------------------------------------------------------------- /tests_ds5/ds5_test_designspaceProblems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/ds5_test_designspaceProblems.py -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_0___single.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_(400, 700)_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1000_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_1100_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_300_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_400_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_550_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/instances/geometryInstance_c_700_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources.jpg -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_1_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_2_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_2_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_3_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_1000_d1_3_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_1000_d1_3_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_1_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_1_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_2_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_2_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_2_d2_1.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_3_d2_0.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_0.ufo/metainfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/features.fea: -------------------------------------------------------------------------------- 1 | # features from ufo: geometryMaster_c_400_d1_3_d2_1.ufo -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/fontinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/fontinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/contents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/glyphO_ne.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/glyphT_wo.glif -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/layerinfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/glyphs/layerinfo.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/groups.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/groups.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/kerning.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/kerning.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/layercontents.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/layercontents.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/lib.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/lib.plist -------------------------------------------------------------------------------- /tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/metainfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LettError/DesignspaceProblems/HEAD/tests_ds5/sources/geometrySource_c_400_d1_3_d2_1.ufo/metainfo.plist --------------------------------------------------------------------------------