├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── DESCRIPTION.en_us.html ├── FONTLOG.txt ├── OFL.txt ├── README.md ├── docs ├── Google Global : African │ ├── All i18n-text processed_v1.1.txt │ └── Glyphs for Google Global.txt ├── v2034 options A and B │ ├── DancingScript v2034 Option A.jpg │ └── DancingScript v2034 Option B.jpg └── v2053 vs 2061 │ ├── DancingScript v2053.jpg │ └── DancingScript v2061.jpg ├── fonts ├── DancingScript-Bold.otf ├── DancingScript-Medium.otf ├── DancingScript-Regular.otf └── DancingScript-SemiBold.otf ├── legacy ├── version-1.002 │ ├── DESCRIPTION.en_us.html │ ├── DancingScript-Bold.ttf │ ├── DancingScript-Regular.ttf │ ├── FONTLOG.txt │ ├── METADATA.json │ ├── OFL.txt │ └── src │ │ ├── DancingScript-Bold-TTF.vfb │ │ ├── DancingScript-Bold-VTT.ttf │ │ ├── DancingScript-Bold.otf │ │ ├── DancingScript-Bold.vfb │ │ ├── DancingScript-Regular-TTF.vfb │ │ ├── DancingScript-Regular-VTT.ttf │ │ ├── DancingScript-Regular.otf │ │ ├── DancingScript-Regular.vfb │ │ ├── METADATA_comments.txt │ │ └── VERSIONS.txt ├── version-2.001 │ ├── AUTHORS.txt │ ├── CONTRIBUTORS.txt │ ├── DESCRIPTION.en_us.html │ ├── FONTLOG.txt │ ├── Makefile │ ├── OFL.txt │ ├── README.md │ ├── fonts │ │ ├── otf │ │ │ ├── DancingScript-Bold.otf │ │ │ ├── DancingScript-Medium.otf │ │ │ ├── DancingScript-Regular.otf │ │ │ └── DancingScript-SemiBold.otf │ │ ├── ttf │ │ │ ├── DancingScript-Bold.ttf │ │ │ ├── DancingScript-Medium.ttf │ │ │ ├── DancingScript-Regular.ttf │ │ │ └── DancingScript-SemiBold.ttf │ │ ├── variable │ │ │ └── DancingScript[wght].ttf │ │ └── webfonts │ │ │ ├── DancingScript-Bold.woff2 │ │ │ ├── DancingScript-Medium.woff2 │ │ │ ├── DancingScript-Regular.woff2 │ │ │ └── DancingScript-SemiBold.woff2 │ ├── requirements.txt │ └── sources │ │ ├── DancingScript-Bold.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs.background │ │ │ ├── b_r.glif │ │ │ ├── contents.plist │ │ │ ├── dagger.glif │ │ │ ├── dcroat.glif │ │ │ ├── hbar.glif │ │ │ ├── layerinfo.plist │ │ │ ├── o_r.glif │ │ │ ├── oe.glif │ │ │ ├── onequarter.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotesingle.glif │ │ │ ├── thorn.glif │ │ │ ├── threequarters.glif │ │ │ └── trademark.glif │ │ ├── glyphs │ │ │ ├── A_.glif │ │ │ ├── A_E_.glif │ │ │ ├── A_E_acute.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_breveacute.glif │ │ │ ├── A_brevedotbelow.glif │ │ │ ├── A_brevegrave.glif │ │ │ ├── A_brevehookabove.glif │ │ │ ├── A_brevetilde.glif │ │ │ ├── A_circumflex.glif │ │ │ ├── A_circumflexacute.glif │ │ │ ├── A_circumflexdotbelow.glif │ │ │ ├── A_circumflexgrave.glif │ │ │ ├── A_circumflexhookabove.glif │ │ │ ├── A_circumflextilde.glif │ │ │ ├── A_dblgrave.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_dotbelow.glif │ │ │ ├── A_grave.glif │ │ │ ├── A_hookabove.glif │ │ │ ├── A_invertedbreve.glif │ │ │ ├── A_macron.glif │ │ │ ├── A_ogonek.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_ringacute.glif │ │ │ ├── A_tilde.glif │ │ │ ├── B_.glif │ │ │ ├── C_.glif │ │ │ ├── C_R_.glif │ │ │ ├── C_acute.glif │ │ │ ├── C_caron.glif │ │ │ ├── C_cedilla.glif │ │ │ ├── C_circumflex.glif │ │ │ ├── C_dotaccent.glif │ │ │ ├── D_.glif │ │ │ ├── D_Z_caron.glif │ │ │ ├── D_caron.glif │ │ │ ├── D_croat.glif │ │ │ ├── D_zcaron.glif │ │ │ ├── E_.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_breve.glif │ │ │ ├── E_caron.glif │ │ │ ├── E_circumflex.glif │ │ │ ├── E_circumflexacute.glif │ │ │ ├── E_circumflexdotbelow.glif │ │ │ ├── E_circumflexgrave.glif │ │ │ ├── E_circumflexhookabove.glif │ │ │ ├── E_circumflextilde.glif │ │ │ ├── E_dblgrave.glif │ │ │ ├── E_dieresis.glif │ │ │ ├── E_dotaccent.glif │ │ │ ├── E_dotbelow.glif │ │ │ ├── E_grave.glif │ │ │ ├── E_hookabove.glif │ │ │ ├── E_invertedbreve.glif │ │ │ ├── E_macron.glif │ │ │ ├── E_ng.glif │ │ │ ├── E_ogonek.glif │ │ │ ├── E_th.glif │ │ │ ├── E_tilde.glif │ │ │ ├── F_.glif │ │ │ ├── F_.salt.glif │ │ │ ├── G_.glif │ │ │ ├── G_breve.glif │ │ │ ├── G_caron.glif │ │ │ ├── G_circumflex.glif │ │ │ ├── G_commaaccent.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── G_ermandbls.glif │ │ │ ├── H_.glif │ │ │ ├── H_bar.glif │ │ │ ├── H_circumflex.glif │ │ │ ├── I_.glif │ │ │ ├── I_J_.glif │ │ │ ├── I_J_acute.glif │ │ │ ├── I_acute.glif │ │ │ ├── I_breve.glif │ │ │ ├── I_circumflex.glif │ │ │ ├── I_dblgrave.glif │ │ │ ├── I_dieresis.glif │ │ │ ├── I_dotaccent.glif │ │ │ ├── I_dotbelow.glif │ │ │ ├── I_grave.glif │ │ │ ├── I_hookabove.glif │ │ │ ├── I_invertedbreve.glif │ │ │ ├── I_macron.glif │ │ │ ├── I_ogonek.glif │ │ │ ├── I_tilde.glif │ │ │ ├── J_.glif │ │ │ ├── J_circumflex.glif │ │ │ ├── K_.glif │ │ │ ├── K_commaaccent.glif │ │ │ ├── L_.glif │ │ │ ├── L_J_.glif │ │ │ ├── L_acute.glif │ │ │ ├── L_caron.glif │ │ │ ├── L_commaaccent.glif │ │ │ ├── L_dot.glif │ │ │ ├── L_j.glif │ │ │ ├── L_slash.glif │ │ │ ├── M_.glif │ │ │ ├── M_.salt.glif │ │ │ ├── N_.glif │ │ │ ├── N_J_.glif │ │ │ ├── N_U_L_L_.glif │ │ │ ├── N_acute.glif │ │ │ ├── N_caron.glif │ │ │ ├── N_commaaccent.glif │ │ │ ├── N_j.glif │ │ │ ├── N_tilde.glif │ │ │ ├── O_.glif │ │ │ ├── O_E_.glif │ │ │ ├── O_acute.glif │ │ │ ├── O_breve.glif │ │ │ ├── O_circumflex.glif │ │ │ ├── O_circumflexacute.glif │ │ │ ├── O_circumflexdotbelow.glif │ │ │ ├── O_circumflexgrave.glif │ │ │ ├── O_circumflexhookabove.glif │ │ │ ├── O_circumflextilde.glif │ │ │ ├── O_dblgrave.glif │ │ │ ├── O_dieresis.glif │ │ │ ├── O_dieresismacron.glif │ │ │ ├── O_dotaccentmacron.glif │ │ │ ├── O_dotbelow.glif │ │ │ ├── O_grave.glif │ │ │ ├── O_hookabove.glif │ │ │ ├── O_horn.glif │ │ │ ├── O_hornacute.glif │ │ │ ├── O_horndotbelow.glif │ │ │ ├── O_horngrave.glif │ │ │ ├── O_hornhookabove.glif │ │ │ ├── O_horntilde.glif │ │ │ ├── O_hungarumlaut.glif │ │ │ ├── O_invertedbreve.glif │ │ │ ├── O_macron.glif │ │ │ ├── O_ogonek.glif │ │ │ ├── O_slash.glif │ │ │ ├── O_slashacute.glif │ │ │ ├── O_tilde.glif │ │ │ ├── O_tildemacron.glif │ │ │ ├── P_.glif │ │ │ ├── Q_.glif │ │ │ ├── R_.glif │ │ │ ├── R_acute.glif │ │ │ ├── R_caron.glif │ │ │ ├── R_commaaccent.glif │ │ │ ├── R_dblgrave.glif │ │ │ ├── R_invertedbreve.glif │ │ │ ├── S_.glif │ │ │ ├── S_acute.glif │ │ │ ├── S_caron.glif │ │ │ ├── S_cedilla.glif │ │ │ ├── S_chwa.glif │ │ │ ├── S_circumflex.glif │ │ │ ├── S_commaaccent.glif │ │ │ ├── T_.glif │ │ │ ├── T_bar.glif │ │ │ ├── T_caron.glif │ │ │ ├── T_cedilla.glif │ │ │ ├── T_commaaccent.glif │ │ │ ├── T_horn.glif │ │ │ ├── U_.glif │ │ │ ├── U_.salt.glif │ │ │ ├── U_acute.glif │ │ │ ├── U_acute.salt.glif │ │ │ ├── U_breve.glif │ │ │ ├── U_breve.salt.glif │ │ │ ├── U_circumflex.glif │ │ │ ├── U_circumflex.salt.glif │ │ │ ├── U_dblgrave.glif │ │ │ ├── U_dblgrave.salt.glif │ │ │ ├── U_dieresis.glif │ │ │ ├── U_dieresis.salt.glif │ │ │ ├── U_dotbelow.glif │ │ │ ├── U_dotbelow.salt.glif │ │ │ ├── U_grave.glif │ │ │ ├── U_grave.salt.glif │ │ │ ├── U_hookabove.glif │ │ │ ├── U_hookabove.salt.glif │ │ │ ├── U_horn.glif │ │ │ ├── U_horn.salt.glif │ │ │ ├── U_hornacute.glif │ │ │ ├── U_hornacute.salt.glif │ │ │ ├── U_horndotbelow.glif │ │ │ ├── U_horndotbelow.salt.glif │ │ │ ├── U_horngrave.glif │ │ │ ├── U_horngrave.salt.glif │ │ │ ├── U_hornhookabove.glif │ │ │ ├── U_hornhookabove.salt.glif │ │ │ ├── U_horntilde.glif │ │ │ ├── U_horntilde.salt.glif │ │ │ ├── U_hungarumlaut.glif │ │ │ ├── U_hungarumlaut.salt.glif │ │ │ ├── U_invertedbreve.glif │ │ │ ├── U_invertedbreve.salt.glif │ │ │ ├── U_macron.glif │ │ │ ├── U_macron.salt.glif │ │ │ ├── U_ogonek.glif │ │ │ ├── U_ogonek.salt.glif │ │ │ ├── U_ring.glif │ │ │ ├── U_ring.salt.glif │ │ │ ├── U_tilde.glif │ │ │ ├── U_tilde.salt.glif │ │ │ ├── V_.glif │ │ │ ├── W_.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_circumflex.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── X_.glif │ │ │ ├── Y_.glif │ │ │ ├── Y_acute.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── Y_dieresis.glif │ │ │ ├── Y_dotbelow.glif │ │ │ ├── Y_grave.glif │ │ │ ├── Y_hookabove.glif │ │ │ ├── Y_macron.glif │ │ │ ├── Y_tilde.glif │ │ │ ├── Z_.glif │ │ │ ├── Z_acute.glif │ │ │ ├── Z_caron.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── _notdef.glif │ │ │ ├── a.glif │ │ │ ├── aacute.glif │ │ │ ├── abreve.glif │ │ │ ├── abreveacute.glif │ │ │ ├── abrevedotbelow.glif │ │ │ ├── abrevegrave.glif │ │ │ ├── abrevehookabove.glif │ │ │ ├── abrevetilde.glif │ │ │ ├── acircumflex.glif │ │ │ ├── acircumflexacute.glif │ │ │ ├── acircumflexdotbelow.glif │ │ │ ├── acircumflexgrave.glif │ │ │ ├── acircumflexhookabove.glif │ │ │ ├── acircumflextilde.glif │ │ │ ├── acute.glif │ │ │ ├── acutecomb.case.glif │ │ │ ├── acutecomb.glif │ │ │ ├── adblgrave.glif │ │ │ ├── adieresis.glif │ │ │ ├── adotbelow.glif │ │ │ ├── ae.glif │ │ │ ├── aeacute.glif │ │ │ ├── agrave.glif │ │ │ ├── ahookabove.glif │ │ │ ├── ainvertedbreve.glif │ │ │ ├── amacron.glif │ │ │ ├── ampersand.glif │ │ │ ├── aogonek.glif │ │ │ ├── apostrophemod.glif │ │ │ ├── approxequal.glif │ │ │ ├── aring.glif │ │ │ ├── aringacute.glif │ │ │ ├── asciicircum.glif │ │ │ ├── asciitilde.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atilde.glif │ │ │ ├── b.glif │ │ │ ├── b_r.glif │ │ │ ├── b_racute.glif │ │ │ ├── b_rcaron.glif │ │ │ ├── b_rcommaaccent.glif │ │ │ ├── backslash.glif │ │ │ ├── bar.glif │ │ │ ├── braceleft.glif │ │ │ ├── braceright.glif │ │ │ ├── bracketleft.glif │ │ │ ├── bracketright.glif │ │ │ ├── breve.glif │ │ │ ├── brevebelowcomb.case.glif │ │ │ ├── brevebelowcomb.glif │ │ │ ├── brevecomb.case.glif │ │ │ ├── brevecomb.glif │ │ │ ├── brevecomb_acutecomb.glif │ │ │ ├── brevecomb_gravecomb.glif │ │ │ ├── brevecomb_hookabovecomb.glif │ │ │ ├── brevecomb_tildecomb.glif │ │ │ ├── breveinvertedcomb.case.glif │ │ │ ├── breveinvertedcomb.glif │ │ │ ├── brokenbar.glif │ │ │ ├── bullet.glif │ │ │ ├── bulletoperator.glif │ │ │ ├── c.glif │ │ │ ├── cacute.glif │ │ │ ├── caron.glif │ │ │ ├── caroncomb.alt.glif │ │ │ ├── caroncomb.case.glif │ │ │ ├── caroncomb.glif │ │ │ ├── ccaron.glif │ │ │ ├── ccedilla.glif │ │ │ ├── ccircumflex.glif │ │ │ ├── cdotaccent.glif │ │ │ ├── cedi.glif │ │ │ ├── cedilla.glif │ │ │ ├── cedillacomb.case.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── cent.glif │ │ │ ├── circumflex.glif │ │ │ ├── circumflexcomb.case.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── circumflexcomb_acutecomb.glif │ │ │ ├── circumflexcomb_gravecomb.glif │ │ │ ├── circumflexcomb_hookabovecomb.glif │ │ │ ├── circumflexcomb_tildecomb.glif │ │ │ ├── colon.glif │ │ │ ├── colonsign.glif │ │ │ ├── comma.glif │ │ │ ├── commaaccentcomb.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── commaturnedabovecomb.glif │ │ │ ├── contents.plist │ │ │ ├── copyright.glif │ │ │ ├── currency.glif │ │ │ ├── d.glif │ │ │ ├── dagger.glif │ │ │ ├── daggerdbl.glif │ │ │ ├── dblgravecomb.case.glif │ │ │ ├── dblgravecomb.glif │ │ │ ├── dcaron.glif │ │ │ ├── dcroat.glif │ │ │ ├── degree.glif │ │ │ ├── dieresis.glif │ │ │ ├── dieresisbelowcomb.case.glif │ │ │ ├── dieresisbelowcomb.glif │ │ │ ├── dieresiscomb.case.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── divide.glif │ │ │ ├── divisionslash.glif │ │ │ ├── dollar.glif │ │ │ ├── dong.glif │ │ │ ├── dotaccent.glif │ │ │ ├── dotaccentcomb.case.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── dotbelowcomb.case.glif │ │ │ ├── dotbelowcomb.glif │ │ │ ├── dzcaron.glif │ │ │ ├── e.glif │ │ │ ├── e_e.glif │ │ │ ├── eacute.glif │ │ │ ├── ebreve.glif │ │ │ ├── ecaron.glif │ │ │ ├── ecircumflex.glif │ │ │ ├── ecircumflexacute.glif │ │ │ ├── ecircumflexdotbelow.glif │ │ │ ├── ecircumflexgrave.glif │ │ │ ├── ecircumflexhookabove.glif │ │ │ ├── ecircumflextilde.glif │ │ │ ├── edblgrave.glif │ │ │ ├── edieresis.glif │ │ │ ├── edotaccent.glif │ │ │ ├── edotbelow.glif │ │ │ ├── egrave.glif │ │ │ ├── ehookabove.glif │ │ │ ├── eight.glif │ │ │ ├── einvertedbreve.glif │ │ │ ├── ellipsis.glif │ │ │ ├── emacron.glif │ │ │ ├── emdash.glif │ │ │ ├── emptyset.glif │ │ │ ├── endash.glif │ │ │ ├── eng.calt.glif │ │ │ ├── eng.glif │ │ │ ├── eogonek.glif │ │ │ ├── equal.glif │ │ │ ├── eth.glif │ │ │ ├── etilde.glif │ │ │ ├── euro.glif │ │ │ ├── exclam.glif │ │ │ ├── exclamdown.glif │ │ │ ├── f.glif │ │ │ ├── fi.glif │ │ │ ├── firsttonechinese.glif │ │ │ ├── five.glif │ │ │ ├── fl.glif │ │ │ ├── florin.glif │ │ │ ├── four.glif │ │ │ ├── foursuperior.glif │ │ │ ├── fraction.glif │ │ │ ├── franc.glif │ │ │ ├── g.glif │ │ │ ├── gbreve.glif │ │ │ ├── gcaron.glif │ │ │ ├── gcircumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── germandbls.glif │ │ │ ├── grave.glif │ │ │ ├── gravecomb.case.glif │ │ │ ├── gravecomb.glif │ │ │ ├── greater.glif │ │ │ ├── greaterequal.glif │ │ │ ├── guarani.glif │ │ │ ├── guillemetleft.glif │ │ │ ├── guillemetright.glif │ │ │ ├── guilsinglleft.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── h.glif │ │ │ ├── hbar.glif │ │ │ ├── hcircumflex.glif │ │ │ ├── hookabovecomb.case.glif │ │ │ ├── hookabovecomb.glif │ │ │ ├── horncomb.case.glif │ │ │ ├── horncomb.glif │ │ │ ├── hungarumlaut.glif │ │ │ ├── hungarumlautcomb.case.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── hyphen.glif │ │ │ ├── i.glif │ │ │ ├── iacute.glif │ │ │ ├── ibreve.glif │ │ │ ├── icircumflex.glif │ │ │ ├── idblgrave.glif │ │ │ ├── idieresis.glif │ │ │ ├── idotaccent.glif │ │ │ ├── idotbelow.glif │ │ │ ├── idotless.glif │ │ │ ├── igrave.glif │ │ │ ├── ihookabove.glif │ │ │ ├── iinvertedbreve.glif │ │ │ ├── ij.glif │ │ │ ├── ijacute.glif │ │ │ ├── imacron.glif │ │ │ ├── iogonek.glif │ │ │ ├── itilde.glif │ │ │ ├── j.glif │ │ │ ├── jcircumflex.glif │ │ │ ├── jdotless.glif │ │ │ ├── k.glif │ │ │ ├── kcommaaccent.glif │ │ │ ├── kgreenlandic.glif │ │ │ ├── kip.glif │ │ │ ├── l.glif │ │ │ ├── l_l.glif │ │ │ ├── lacute.glif │ │ │ ├── layerinfo.plist │ │ │ ├── lcaron.glif │ │ │ ├── lcommaaccent.glif │ │ │ ├── ldot.glif │ │ │ ├── less.glif │ │ │ ├── lessequal.glif │ │ │ ├── lira.glif │ │ │ ├── liraT_urkish.glif │ │ │ ├── lj.glif │ │ │ ├── logicalnot.glif │ │ │ ├── lslash.glif │ │ │ ├── m.glif │ │ │ ├── macron.glif │ │ │ ├── macronbelowcomb.case.glif │ │ │ ├── macronbelowcomb.glif │ │ │ ├── macroncomb.case.glif │ │ │ ├── macroncomb.glif │ │ │ ├── manat.glif │ │ │ ├── micro.glif │ │ │ ├── minus.glif │ │ │ ├── multiply.glif │ │ │ ├── n.glif │ │ │ ├── nacute.glif │ │ │ ├── naira.glif │ │ │ ├── napostrophe.glif │ │ │ ├── nbspace.glif │ │ │ ├── ncaron.glif │ │ │ ├── ncommaaccent.glif │ │ │ ├── nine.glif │ │ │ ├── nj.glif │ │ │ ├── notequal.glif │ │ │ ├── ntilde.glif │ │ │ ├── numbersign.glif │ │ │ ├── numero.glif │ │ │ ├── o.glif │ │ │ ├── o_r.glif │ │ │ ├── o_racute.glif │ │ │ ├── o_rcaron.glif │ │ │ ├── o_rcommaaccent.glif │ │ │ ├── o_rdblgrave.glif │ │ │ ├── oacute.glif │ │ │ ├── obreve.glif │ │ │ ├── ocircumflex.glif │ │ │ ├── ocircumflexacute.glif │ │ │ ├── ocircumflexdotbelow.glif │ │ │ ├── ocircumflexgrave.glif │ │ │ ├── ocircumflexhookabove.glif │ │ │ ├── ocircumflextilde.glif │ │ │ ├── odblgrave.glif │ │ │ ├── odieresis.glif │ │ │ ├── odieresismacron.glif │ │ │ ├── odotaccentmacron.glif │ │ │ ├── odotbelow.glif │ │ │ ├── oe.glif │ │ │ ├── ogonek.glif │ │ │ ├── ogonekcomb.case.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── ograve.glif │ │ │ ├── ohookabove.glif │ │ │ ├── ohorn.glif │ │ │ ├── ohornacute.glif │ │ │ ├── ohorndotbelow.glif │ │ │ ├── ohorngrave.glif │ │ │ ├── ohornhookabove.glif │ │ │ ├── ohorntilde.glif │ │ │ ├── ohungarumlaut.glif │ │ │ ├── oinvertedbreve.glif │ │ │ ├── omacron.glif │ │ │ ├── one.glif │ │ │ ├── onehalf.glif │ │ │ ├── onequarter.glif │ │ │ ├── onesuperior.glif │ │ │ ├── oogonek.glif │ │ │ ├── ordfeminine.glif │ │ │ ├── ordmasculine.glif │ │ │ ├── oslash.glif │ │ │ ├── oslashacute.glif │ │ │ ├── otilde.glif │ │ │ ├── otildemacron.glif │ │ │ ├── p.glif │ │ │ ├── paragraph.glif │ │ │ ├── parenleft.glif │ │ │ ├── parenright.glif │ │ │ ├── percent.glif │ │ │ ├── period.glif │ │ │ ├── periodcentered.glif │ │ │ ├── perthousand.glif │ │ │ ├── peseta.glif │ │ │ ├── peso.glif │ │ │ ├── plus.glif │ │ │ ├── plusminus.glif │ │ │ ├── q.glif │ │ │ ├── question.glif │ │ │ ├── questiondown.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quotedblright.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── quotesingle.glif │ │ │ ├── r.glif │ │ │ ├── r.init.glif │ │ │ ├── racute.glif │ │ │ ├── racute.init.glif │ │ │ ├── rcaron.glif │ │ │ ├── rcaron.init.glif │ │ │ ├── rcommaaccent.glif │ │ │ ├── rcommaaccent.init.glif │ │ │ ├── rdblgrave.glif │ │ │ ├── registered.glif │ │ │ ├── ring.glif │ │ │ ├── ringcomb.case.glif │ │ │ ├── ringcomb.glif │ │ │ ├── rinvertedbreve.glif │ │ │ ├── ruble.glif │ │ │ ├── rupeeI_ndian.glif │ │ │ ├── s.glif │ │ │ ├── s.salt.glif │ │ │ ├── sacute.glif │ │ │ ├── sacute.salt.glif │ │ │ ├── scaron.glif │ │ │ ├── scaron.salt.glif │ │ │ ├── scedilla.glif │ │ │ ├── scedilla.salt.glif │ │ │ ├── schwa.glif │ │ │ ├── scircumflex.glif │ │ │ ├── scircumflex.salt.glif │ │ │ ├── scommaaccent.glif │ │ │ ├── scommaaccent.salt.glif │ │ │ ├── section.glif │ │ │ ├── semicolon.glif │ │ │ ├── seven.glif │ │ │ ├── six.glif │ │ │ ├── slash.glif │ │ │ ├── softhyphen.glif │ │ │ ├── space.glif │ │ │ ├── sterling.glif │ │ │ ├── strokeshortcomb.glif │ │ │ ├── t.glif │ │ │ ├── t_h.glif │ │ │ ├── tbar.glif │ │ │ ├── tcaron.glif │ │ │ ├── tcedilla.glif │ │ │ ├── tcommaaccent.glif │ │ │ ├── thorn.glif │ │ │ ├── three.glif │ │ │ ├── threequarters.glif │ │ │ ├── threesuperior.glif │ │ │ ├── tilde.glif │ │ │ ├── tildecomb.case.glif │ │ │ ├── tildecomb.glif │ │ │ ├── trademark.glif │ │ │ ├── two.glif │ │ │ ├── twosuperior.glif │ │ │ ├── u.glif │ │ │ ├── uacute.glif │ │ │ ├── ubreve.glif │ │ │ ├── ucircumflex.glif │ │ │ ├── udblgrave.glif │ │ │ ├── udieresis.glif │ │ │ ├── udotbelow.glif │ │ │ ├── ugrave.glif │ │ │ ├── uhookabove.glif │ │ │ ├── uhorn.glif │ │ │ ├── uhornacute.glif │ │ │ ├── uhorndotbelow.glif │ │ │ ├── uhorngrave.glif │ │ │ ├── uhornhookabove.glif │ │ │ ├── uhorntilde.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── uinvertedbreve.glif │ │ │ ├── umacron.glif │ │ │ ├── underscore.glif │ │ │ ├── uogonek.glif │ │ │ ├── uring.glif │ │ │ ├── utilde.glif │ │ │ ├── v.glif │ │ │ ├── v_a.glif │ │ │ ├── v_r.glif │ │ │ ├── w.glif │ │ │ ├── w_r.glif │ │ │ ├── wacute.glif │ │ │ ├── wcircumflex.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── won.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ ├── yacute.glif │ │ │ ├── ycircumflex.glif │ │ │ ├── ydieresis.glif │ │ │ ├── ydotbelow.glif │ │ │ ├── yen.glif │ │ │ ├── ygrave.glif │ │ │ ├── yhookabove.glif │ │ │ ├── ymacron.glif │ │ │ ├── ytilde.glif │ │ │ ├── z.glif │ │ │ ├── zacute.glif │ │ │ ├── zcaron.glif │ │ │ ├── zdotaccent.glif │ │ │ └── zero.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ │ ├── DancingScript-Regular.ufo │ │ ├── features.fea │ │ ├── fontinfo.plist │ │ ├── glyphs.background │ │ │ ├── H_bar.glif │ │ │ ├── O_E_.glif │ │ │ ├── O_slash.glif │ │ │ ├── asterisk.glif │ │ │ ├── cent.glif │ │ │ ├── contents.plist │ │ │ ├── daggerdbl.glif │ │ │ ├── e_e.glif │ │ │ ├── euro.glif │ │ │ ├── florin.glif │ │ │ ├── germandbls.glif │ │ │ ├── ij.glif │ │ │ ├── iogonek.glif │ │ │ ├── l_l.glif │ │ │ ├── layerinfo.plist │ │ │ ├── lira.glif │ │ │ ├── onequarter.glif │ │ │ ├── onesuperior.glif │ │ │ ├── oslash.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── sterling.glif │ │ │ ├── t_h.glif │ │ │ ├── tbar.glif │ │ │ ├── threequarters.glif │ │ │ ├── trademark.glif │ │ │ ├── twosuperior.glif │ │ │ └── yen.glif │ │ ├── glyphs │ │ │ ├── A_.glif │ │ │ ├── A_E_.glif │ │ │ ├── A_E_acute.glif │ │ │ ├── A_acute.glif │ │ │ ├── A_breve.glif │ │ │ ├── A_breveacute.glif │ │ │ ├── A_brevedotbelow.glif │ │ │ ├── A_brevegrave.glif │ │ │ ├── A_brevehookabove.glif │ │ │ ├── A_brevetilde.glif │ │ │ ├── A_circumflex.glif │ │ │ ├── A_circumflexacute.glif │ │ │ ├── A_circumflexdotbelow.glif │ │ │ ├── A_circumflexgrave.glif │ │ │ ├── A_circumflexhookabove.glif │ │ │ ├── A_circumflextilde.glif │ │ │ ├── A_dblgrave.glif │ │ │ ├── A_dieresis.glif │ │ │ ├── A_dotbelow.glif │ │ │ ├── A_grave.glif │ │ │ ├── A_hookabove.glif │ │ │ ├── A_invertedbreve.glif │ │ │ ├── A_macron.glif │ │ │ ├── A_ogonek.glif │ │ │ ├── A_ring.glif │ │ │ ├── A_ringacute.glif │ │ │ ├── A_tilde.glif │ │ │ ├── B_.glif │ │ │ ├── C_.glif │ │ │ ├── C_R_.glif │ │ │ ├── C_acute.glif │ │ │ ├── C_caron.glif │ │ │ ├── C_cedilla.glif │ │ │ ├── C_circumflex.glif │ │ │ ├── C_dotaccent.glif │ │ │ ├── D_.glif │ │ │ ├── D_Z_caron.glif │ │ │ ├── D_caron.glif │ │ │ ├── D_croat.glif │ │ │ ├── D_zcaron.glif │ │ │ ├── E_.glif │ │ │ ├── E_acute.glif │ │ │ ├── E_breve.glif │ │ │ ├── E_caron.glif │ │ │ ├── E_circumflex.glif │ │ │ ├── E_circumflexacute.glif │ │ │ ├── E_circumflexdotbelow.glif │ │ │ ├── E_circumflexgrave.glif │ │ │ ├── E_circumflexhookabove.glif │ │ │ ├── E_circumflextilde.glif │ │ │ ├── E_dblgrave.glif │ │ │ ├── E_dieresis.glif │ │ │ ├── E_dotaccent.glif │ │ │ ├── E_dotbelow.glif │ │ │ ├── E_grave.glif │ │ │ ├── E_hookabove.glif │ │ │ ├── E_invertedbreve.glif │ │ │ ├── E_macron.glif │ │ │ ├── E_ng.glif │ │ │ ├── E_ogonek.glif │ │ │ ├── E_th.glif │ │ │ ├── E_tilde.glif │ │ │ ├── F_.glif │ │ │ ├── F_.salt.glif │ │ │ ├── G_.glif │ │ │ ├── G_breve.glif │ │ │ ├── G_caron.glif │ │ │ ├── G_circumflex.glif │ │ │ ├── G_commaaccent.glif │ │ │ ├── G_dotaccent.glif │ │ │ ├── G_ermandbls.glif │ │ │ ├── H_.glif │ │ │ ├── H_bar.glif │ │ │ ├── H_circumflex.glif │ │ │ ├── I_.glif │ │ │ ├── I_J_.glif │ │ │ ├── I_J_acute.glif │ │ │ ├── I_acute.glif │ │ │ ├── I_breve.glif │ │ │ ├── I_circumflex.glif │ │ │ ├── I_dblgrave.glif │ │ │ ├── I_dieresis.glif │ │ │ ├── I_dotaccent.glif │ │ │ ├── I_dotbelow.glif │ │ │ ├── I_grave.glif │ │ │ ├── I_hookabove.glif │ │ │ ├── I_invertedbreve.glif │ │ │ ├── I_macron.glif │ │ │ ├── I_ogonek.glif │ │ │ ├── I_tilde.glif │ │ │ ├── J_.glif │ │ │ ├── J_circumflex.glif │ │ │ ├── K_.glif │ │ │ ├── K_commaaccent.glif │ │ │ ├── L_.glif │ │ │ ├── L_J_.glif │ │ │ ├── L_acute.glif │ │ │ ├── L_caron.glif │ │ │ ├── L_commaaccent.glif │ │ │ ├── L_dot.glif │ │ │ ├── L_j.glif │ │ │ ├── L_slash.glif │ │ │ ├── M_.glif │ │ │ ├── M_.salt.glif │ │ │ ├── N_.glif │ │ │ ├── N_J_.glif │ │ │ ├── N_U_L_L_.glif │ │ │ ├── N_acute.glif │ │ │ ├── N_caron.glif │ │ │ ├── N_commaaccent.glif │ │ │ ├── N_j.glif │ │ │ ├── N_tilde.glif │ │ │ ├── O_.glif │ │ │ ├── O_E_.glif │ │ │ ├── O_acute.glif │ │ │ ├── O_breve.glif │ │ │ ├── O_circumflex.glif │ │ │ ├── O_circumflexacute.glif │ │ │ ├── O_circumflexdotbelow.glif │ │ │ ├── O_circumflexgrave.glif │ │ │ ├── O_circumflexhookabove.glif │ │ │ ├── O_circumflextilde.glif │ │ │ ├── O_dblgrave.glif │ │ │ ├── O_dieresis.glif │ │ │ ├── O_dieresismacron.glif │ │ │ ├── O_dotaccentmacron.glif │ │ │ ├── O_dotbelow.glif │ │ │ ├── O_grave.glif │ │ │ ├── O_hookabove.glif │ │ │ ├── O_horn.glif │ │ │ ├── O_hornacute.glif │ │ │ ├── O_horndotbelow.glif │ │ │ ├── O_horngrave.glif │ │ │ ├── O_hornhookabove.glif │ │ │ ├── O_horntilde.glif │ │ │ ├── O_hungarumlaut.glif │ │ │ ├── O_invertedbreve.glif │ │ │ ├── O_macron.glif │ │ │ ├── O_ogonek.glif │ │ │ ├── O_slash.glif │ │ │ ├── O_slashacute.glif │ │ │ ├── O_tilde.glif │ │ │ ├── O_tildemacron.glif │ │ │ ├── P_.glif │ │ │ ├── Q_.glif │ │ │ ├── R_.glif │ │ │ ├── R_acute.glif │ │ │ ├── R_caron.glif │ │ │ ├── R_commaaccent.glif │ │ │ ├── R_dblgrave.glif │ │ │ ├── R_invertedbreve.glif │ │ │ ├── S_.glif │ │ │ ├── S_acute.glif │ │ │ ├── S_caron.glif │ │ │ ├── S_cedilla.glif │ │ │ ├── S_chwa.glif │ │ │ ├── S_circumflex.glif │ │ │ ├── S_commaaccent.glif │ │ │ ├── T_.glif │ │ │ ├── T_bar.glif │ │ │ ├── T_caron.glif │ │ │ ├── T_cedilla.glif │ │ │ ├── T_commaaccent.glif │ │ │ ├── T_horn.glif │ │ │ ├── U_.glif │ │ │ ├── U_.salt.glif │ │ │ ├── U_acute.glif │ │ │ ├── U_acute.salt.glif │ │ │ ├── U_breve.glif │ │ │ ├── U_breve.salt.glif │ │ │ ├── U_circumflex.glif │ │ │ ├── U_circumflex.salt.glif │ │ │ ├── U_dblgrave.glif │ │ │ ├── U_dblgrave.salt.glif │ │ │ ├── U_dieresis.glif │ │ │ ├── U_dieresis.salt.glif │ │ │ ├── U_dotbelow.glif │ │ │ ├── U_dotbelow.salt.glif │ │ │ ├── U_grave.glif │ │ │ ├── U_grave.salt.glif │ │ │ ├── U_hookabove.glif │ │ │ ├── U_hookabove.salt.glif │ │ │ ├── U_horn.glif │ │ │ ├── U_horn.salt.glif │ │ │ ├── U_hornacute.glif │ │ │ ├── U_hornacute.salt.glif │ │ │ ├── U_horndotbelow.glif │ │ │ ├── U_horndotbelow.salt.glif │ │ │ ├── U_horngrave.glif │ │ │ ├── U_horngrave.salt.glif │ │ │ ├── U_hornhookabove.glif │ │ │ ├── U_hornhookabove.salt.glif │ │ │ ├── U_horntilde.glif │ │ │ ├── U_horntilde.salt.glif │ │ │ ├── U_hungarumlaut.glif │ │ │ ├── U_hungarumlaut.salt.glif │ │ │ ├── U_invertedbreve.glif │ │ │ ├── U_invertedbreve.salt.glif │ │ │ ├── U_macron.glif │ │ │ ├── U_macron.salt.glif │ │ │ ├── U_ogonek.glif │ │ │ ├── U_ogonek.salt.glif │ │ │ ├── U_ring.glif │ │ │ ├── U_ring.salt.glif │ │ │ ├── U_tilde.glif │ │ │ ├── U_tilde.salt.glif │ │ │ ├── V_.glif │ │ │ ├── W_.glif │ │ │ ├── W_acute.glif │ │ │ ├── W_circumflex.glif │ │ │ ├── W_dieresis.glif │ │ │ ├── W_grave.glif │ │ │ ├── X_.glif │ │ │ ├── Y_.glif │ │ │ ├── Y_acute.glif │ │ │ ├── Y_circumflex.glif │ │ │ ├── Y_dieresis.glif │ │ │ ├── Y_dotbelow.glif │ │ │ ├── Y_grave.glif │ │ │ ├── Y_hookabove.glif │ │ │ ├── Y_macron.glif │ │ │ ├── Y_tilde.glif │ │ │ ├── Z_.glif │ │ │ ├── Z_acute.glif │ │ │ ├── Z_caron.glif │ │ │ ├── Z_dotaccent.glif │ │ │ ├── _notdef.glif │ │ │ ├── a.glif │ │ │ ├── aacute.glif │ │ │ ├── abreve.glif │ │ │ ├── abreveacute.glif │ │ │ ├── abrevedotbelow.glif │ │ │ ├── abrevegrave.glif │ │ │ ├── abrevehookabove.glif │ │ │ ├── abrevetilde.glif │ │ │ ├── acircumflex.glif │ │ │ ├── acircumflexacute.glif │ │ │ ├── acircumflexdotbelow.glif │ │ │ ├── acircumflexgrave.glif │ │ │ ├── acircumflexhookabove.glif │ │ │ ├── acircumflextilde.glif │ │ │ ├── acute.glif │ │ │ ├── acutecomb.case.glif │ │ │ ├── acutecomb.glif │ │ │ ├── adblgrave.glif │ │ │ ├── adieresis.glif │ │ │ ├── adotbelow.glif │ │ │ ├── ae.glif │ │ │ ├── aeacute.glif │ │ │ ├── agrave.glif │ │ │ ├── ahookabove.glif │ │ │ ├── ainvertedbreve.glif │ │ │ ├── amacron.glif │ │ │ ├── ampersand.glif │ │ │ ├── aogonek.glif │ │ │ ├── apostrophemod.glif │ │ │ ├── approxequal.glif │ │ │ ├── aring.glif │ │ │ ├── aringacute.glif │ │ │ ├── asciicircum.glif │ │ │ ├── asciitilde.glif │ │ │ ├── asterisk.glif │ │ │ ├── at.glif │ │ │ ├── atilde.glif │ │ │ ├── b.glif │ │ │ ├── b_r.glif │ │ │ ├── b_racute.glif │ │ │ ├── b_rcaron.glif │ │ │ ├── b_rcommaaccent.glif │ │ │ ├── backslash.glif │ │ │ ├── bar.glif │ │ │ ├── braceleft.glif │ │ │ ├── braceright.glif │ │ │ ├── bracketleft.glif │ │ │ ├── bracketright.glif │ │ │ ├── breve.glif │ │ │ ├── brevebelowcomb.case.glif │ │ │ ├── brevebelowcomb.glif │ │ │ ├── brevecomb.case.glif │ │ │ ├── brevecomb.glif │ │ │ ├── brevecomb_acutecomb.glif │ │ │ ├── brevecomb_gravecomb.glif │ │ │ ├── brevecomb_hookabovecomb.glif │ │ │ ├── brevecomb_tildecomb.glif │ │ │ ├── breveinvertedcomb.case.glif │ │ │ ├── breveinvertedcomb.glif │ │ │ ├── brokenbar.glif │ │ │ ├── bullet.glif │ │ │ ├── bulletoperator.glif │ │ │ ├── c.glif │ │ │ ├── cacute.glif │ │ │ ├── caron.glif │ │ │ ├── caroncomb.alt.glif │ │ │ ├── caroncomb.case.glif │ │ │ ├── caroncomb.glif │ │ │ ├── ccaron.glif │ │ │ ├── ccedilla.glif │ │ │ ├── ccircumflex.glif │ │ │ ├── cdotaccent.glif │ │ │ ├── cedi.glif │ │ │ ├── cedilla.glif │ │ │ ├── cedillacomb.case.glif │ │ │ ├── cedillacomb.glif │ │ │ ├── cent.glif │ │ │ ├── circumflex.glif │ │ │ ├── circumflexcomb.case.glif │ │ │ ├── circumflexcomb.glif │ │ │ ├── circumflexcomb_acutecomb.glif │ │ │ ├── circumflexcomb_gravecomb.glif │ │ │ ├── circumflexcomb_hookabovecomb.glif │ │ │ ├── circumflexcomb_tildecomb.glif │ │ │ ├── colon.glif │ │ │ ├── colonsign.glif │ │ │ ├── comma.glif │ │ │ ├── commaaccentcomb.case.glif │ │ │ ├── commaaccentcomb.glif │ │ │ ├── commaturnedabovecomb.glif │ │ │ ├── contents.plist │ │ │ ├── copyright.glif │ │ │ ├── currency.glif │ │ │ ├── d.glif │ │ │ ├── dagger.glif │ │ │ ├── daggerdbl.glif │ │ │ ├── dblgravecomb.case.glif │ │ │ ├── dblgravecomb.glif │ │ │ ├── dcaron.glif │ │ │ ├── dcroat.glif │ │ │ ├── degree.glif │ │ │ ├── dieresis.glif │ │ │ ├── dieresisbelowcomb.case.glif │ │ │ ├── dieresisbelowcomb.glif │ │ │ ├── dieresiscomb.case.glif │ │ │ ├── dieresiscomb.glif │ │ │ ├── divide.glif │ │ │ ├── divisionslash.glif │ │ │ ├── dollar.glif │ │ │ ├── dong.glif │ │ │ ├── dotaccent.glif │ │ │ ├── dotaccentcomb.case.glif │ │ │ ├── dotaccentcomb.glif │ │ │ ├── dotbelowcomb.case.glif │ │ │ ├── dotbelowcomb.glif │ │ │ ├── dzcaron.glif │ │ │ ├── e.glif │ │ │ ├── e_e.glif │ │ │ ├── eacute.glif │ │ │ ├── ebreve.glif │ │ │ ├── ecaron.glif │ │ │ ├── ecircumflex.glif │ │ │ ├── ecircumflexacute.glif │ │ │ ├── ecircumflexdotbelow.glif │ │ │ ├── ecircumflexgrave.glif │ │ │ ├── ecircumflexhookabove.glif │ │ │ ├── ecircumflextilde.glif │ │ │ ├── edblgrave.glif │ │ │ ├── edieresis.glif │ │ │ ├── edotaccent.glif │ │ │ ├── edotbelow.glif │ │ │ ├── egrave.glif │ │ │ ├── ehookabove.glif │ │ │ ├── eight.glif │ │ │ ├── einvertedbreve.glif │ │ │ ├── ellipsis.glif │ │ │ ├── emacron.glif │ │ │ ├── emdash.glif │ │ │ ├── emptyset.glif │ │ │ ├── endash.glif │ │ │ ├── eng.calt.glif │ │ │ ├── eng.glif │ │ │ ├── eogonek.glif │ │ │ ├── equal.glif │ │ │ ├── eth.glif │ │ │ ├── etilde.glif │ │ │ ├── euro.glif │ │ │ ├── exclam.glif │ │ │ ├── exclamdown.glif │ │ │ ├── f.glif │ │ │ ├── fi.glif │ │ │ ├── firsttonechinese.glif │ │ │ ├── five.glif │ │ │ ├── fl.glif │ │ │ ├── florin.glif │ │ │ ├── four.glif │ │ │ ├── foursuperior.glif │ │ │ ├── fraction.glif │ │ │ ├── franc.glif │ │ │ ├── g.glif │ │ │ ├── gbreve.glif │ │ │ ├── gcaron.glif │ │ │ ├── gcircumflex.glif │ │ │ ├── gcommaaccent.glif │ │ │ ├── gdotaccent.glif │ │ │ ├── germandbls.glif │ │ │ ├── grave.glif │ │ │ ├── gravecomb.case.glif │ │ │ ├── gravecomb.glif │ │ │ ├── greater.glif │ │ │ ├── greaterequal.glif │ │ │ ├── guarani.glif │ │ │ ├── guillemetleft.glif │ │ │ ├── guillemetright.glif │ │ │ ├── guilsinglleft.glif │ │ │ ├── guilsinglright.glif │ │ │ ├── h.glif │ │ │ ├── hbar.glif │ │ │ ├── hcircumflex.glif │ │ │ ├── hookabovecomb.case.glif │ │ │ ├── hookabovecomb.glif │ │ │ ├── horncomb.case.glif │ │ │ ├── horncomb.glif │ │ │ ├── hungarumlaut.glif │ │ │ ├── hungarumlautcomb.case.glif │ │ │ ├── hungarumlautcomb.glif │ │ │ ├── hyphen.glif │ │ │ ├── i.glif │ │ │ ├── iacute.glif │ │ │ ├── ibreve.glif │ │ │ ├── icircumflex.glif │ │ │ ├── idblgrave.glif │ │ │ ├── idieresis.glif │ │ │ ├── idotaccent.glif │ │ │ ├── idotbelow.glif │ │ │ ├── idotless.glif │ │ │ ├── igrave.glif │ │ │ ├── ihookabove.glif │ │ │ ├── iinvertedbreve.glif │ │ │ ├── ij.glif │ │ │ ├── ijacute.glif │ │ │ ├── imacron.glif │ │ │ ├── iogonek.glif │ │ │ ├── itilde.glif │ │ │ ├── j.glif │ │ │ ├── jcircumflex.glif │ │ │ ├── jdotless.glif │ │ │ ├── k.glif │ │ │ ├── kcommaaccent.glif │ │ │ ├── kgreenlandic.glif │ │ │ ├── kip.glif │ │ │ ├── l.glif │ │ │ ├── l_l.glif │ │ │ ├── lacute.glif │ │ │ ├── layerinfo.plist │ │ │ ├── lcaron.glif │ │ │ ├── lcommaaccent.glif │ │ │ ├── ldot.glif │ │ │ ├── less.glif │ │ │ ├── lessequal.glif │ │ │ ├── lira.glif │ │ │ ├── liraT_urkish.glif │ │ │ ├── lj.glif │ │ │ ├── logicalnot.glif │ │ │ ├── lslash.glif │ │ │ ├── m.glif │ │ │ ├── macron.glif │ │ │ ├── macronbelowcomb.case.glif │ │ │ ├── macronbelowcomb.glif │ │ │ ├── macroncomb.case.glif │ │ │ ├── macroncomb.glif │ │ │ ├── manat.glif │ │ │ ├── micro.glif │ │ │ ├── minus.glif │ │ │ ├── multiply.glif │ │ │ ├── n.glif │ │ │ ├── nacute.glif │ │ │ ├── naira.glif │ │ │ ├── napostrophe.glif │ │ │ ├── nbspace.glif │ │ │ ├── ncaron.glif │ │ │ ├── ncommaaccent.glif │ │ │ ├── nine.glif │ │ │ ├── nj.glif │ │ │ ├── notequal.glif │ │ │ ├── ntilde.glif │ │ │ ├── numbersign.glif │ │ │ ├── numero.glif │ │ │ ├── o.glif │ │ │ ├── o_r.glif │ │ │ ├── o_racute.glif │ │ │ ├── o_rcaron.glif │ │ │ ├── o_rcommaaccent.glif │ │ │ ├── o_rdblgrave.glif │ │ │ ├── oacute.glif │ │ │ ├── obreve.glif │ │ │ ├── ocircumflex.glif │ │ │ ├── ocircumflexacute.glif │ │ │ ├── ocircumflexdotbelow.glif │ │ │ ├── ocircumflexgrave.glif │ │ │ ├── ocircumflexhookabove.glif │ │ │ ├── ocircumflextilde.glif │ │ │ ├── odblgrave.glif │ │ │ ├── odieresis.glif │ │ │ ├── odieresismacron.glif │ │ │ ├── odotaccentmacron.glif │ │ │ ├── odotbelow.glif │ │ │ ├── oe.glif │ │ │ ├── ogonek.glif │ │ │ ├── ogonekcomb.case.glif │ │ │ ├── ogonekcomb.glif │ │ │ ├── ograve.glif │ │ │ ├── ohookabove.glif │ │ │ ├── ohorn.glif │ │ │ ├── ohornacute.glif │ │ │ ├── ohorndotbelow.glif │ │ │ ├── ohorngrave.glif │ │ │ ├── ohornhookabove.glif │ │ │ ├── ohorntilde.glif │ │ │ ├── ohungarumlaut.glif │ │ │ ├── oinvertedbreve.glif │ │ │ ├── omacron.glif │ │ │ ├── one.glif │ │ │ ├── onehalf.glif │ │ │ ├── onequarter.glif │ │ │ ├── onesuperior.glif │ │ │ ├── oogonek.glif │ │ │ ├── ordfeminine.glif │ │ │ ├── ordmasculine.glif │ │ │ ├── oslash.glif │ │ │ ├── oslashacute.glif │ │ │ ├── otilde.glif │ │ │ ├── otildemacron.glif │ │ │ ├── p.glif │ │ │ ├── paragraph.glif │ │ │ ├── parenleft.glif │ │ │ ├── parenright.glif │ │ │ ├── percent.glif │ │ │ ├── period.glif │ │ │ ├── periodcentered.glif │ │ │ ├── perthousand.glif │ │ │ ├── peseta.glif │ │ │ ├── peso.glif │ │ │ ├── plus.glif │ │ │ ├── plusminus.glif │ │ │ ├── q.glif │ │ │ ├── question.glif │ │ │ ├── questiondown.glif │ │ │ ├── quotedbl.glif │ │ │ ├── quotedblbase.glif │ │ │ ├── quotedblleft.glif │ │ │ ├── quotedblright.glif │ │ │ ├── quoteleft.glif │ │ │ ├── quoteright.glif │ │ │ ├── quotesinglbase.glif │ │ │ ├── quotesingle.glif │ │ │ ├── r.glif │ │ │ ├── r.init.glif │ │ │ ├── racute.glif │ │ │ ├── racute.init.glif │ │ │ ├── rcaron.glif │ │ │ ├── rcaron.init.glif │ │ │ ├── rcommaaccent.glif │ │ │ ├── rcommaaccent.init.glif │ │ │ ├── rdblgrave.glif │ │ │ ├── registered.glif │ │ │ ├── ring.glif │ │ │ ├── ringcomb.case.glif │ │ │ ├── ringcomb.glif │ │ │ ├── rinvertedbreve.glif │ │ │ ├── ruble.glif │ │ │ ├── rupeeI_ndian.glif │ │ │ ├── s.glif │ │ │ ├── s.salt.glif │ │ │ ├── sacute.glif │ │ │ ├── sacute.salt.glif │ │ │ ├── scaron.glif │ │ │ ├── scaron.salt.glif │ │ │ ├── scedilla.glif │ │ │ ├── scedilla.salt.glif │ │ │ ├── schwa.glif │ │ │ ├── scircumflex.glif │ │ │ ├── scircumflex.salt.glif │ │ │ ├── scommaaccent.glif │ │ │ ├── scommaaccent.salt.glif │ │ │ ├── section.glif │ │ │ ├── semicolon.glif │ │ │ ├── seven.glif │ │ │ ├── six.glif │ │ │ ├── slash.glif │ │ │ ├── softhyphen.glif │ │ │ ├── space.glif │ │ │ ├── sterling.glif │ │ │ ├── strokeshortcomb.glif │ │ │ ├── t.glif │ │ │ ├── t_h.glif │ │ │ ├── tbar.glif │ │ │ ├── tcaron.glif │ │ │ ├── tcedilla.glif │ │ │ ├── tcommaaccent.glif │ │ │ ├── thorn.glif │ │ │ ├── three.glif │ │ │ ├── threequarters.glif │ │ │ ├── threesuperior.glif │ │ │ ├── tilde.glif │ │ │ ├── tildecomb.case.glif │ │ │ ├── tildecomb.glif │ │ │ ├── trademark.glif │ │ │ ├── two.glif │ │ │ ├── twosuperior.glif │ │ │ ├── u.glif │ │ │ ├── uacute.glif │ │ │ ├── ubreve.glif │ │ │ ├── ucircumflex.glif │ │ │ ├── udblgrave.glif │ │ │ ├── udieresis.glif │ │ │ ├── udotbelow.glif │ │ │ ├── ugrave.glif │ │ │ ├── uhookabove.glif │ │ │ ├── uhorn.glif │ │ │ ├── uhornacute.glif │ │ │ ├── uhorndotbelow.glif │ │ │ ├── uhorngrave.glif │ │ │ ├── uhornhookabove.glif │ │ │ ├── uhorntilde.glif │ │ │ ├── uhungarumlaut.glif │ │ │ ├── uinvertedbreve.glif │ │ │ ├── umacron.glif │ │ │ ├── underscore.glif │ │ │ ├── uogonek.glif │ │ │ ├── uring.glif │ │ │ ├── utilde.glif │ │ │ ├── v.glif │ │ │ ├── v_a.glif │ │ │ ├── v_r.glif │ │ │ ├── w.glif │ │ │ ├── w_r.glif │ │ │ ├── wacute.glif │ │ │ ├── wcircumflex.glif │ │ │ ├── wdieresis.glif │ │ │ ├── wgrave.glif │ │ │ ├── won.glif │ │ │ ├── x.glif │ │ │ ├── y.glif │ │ │ ├── yacute.glif │ │ │ ├── ycircumflex.glif │ │ │ ├── ydieresis.glif │ │ │ ├── ydotbelow.glif │ │ │ ├── yen.glif │ │ │ ├── ygrave.glif │ │ │ ├── yhookabove.glif │ │ │ ├── ymacron.glif │ │ │ ├── ytilde.glif │ │ │ ├── z.glif │ │ │ ├── zacute.glif │ │ │ ├── zcaron.glif │ │ │ ├── zdotaccent.glif │ │ │ └── zero.glif │ │ ├── groups.plist │ │ ├── kerning.plist │ │ ├── layercontents.plist │ │ ├── lib.plist │ │ └── metainfo.plist │ │ ├── DancingScript.designspace │ │ ├── Metrics │ │ ├── DS-Bold.metrics │ │ └── DS-Regular.metrics │ │ └── config.yaml └── version-2.031 │ ├── AUTHORS.txt │ ├── CONTRIBUTORS.txt │ ├── DESCRIPTION.en_us.html │ ├── FONTLOG.txt │ ├── OFL.txt │ ├── README.md │ ├── fonts │ ├── DancingScript-Bold.otf │ ├── DancingScript-Medium.otf │ ├── DancingScript-Regular.otf │ └── DancingScript-SemiBold.otf │ └── sources │ └── DancingScript v2031.glyphs └── sources └── DancingScript.glyphs /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | venv 3 | build.stamp 4 | proof 5 | 6 | # OS generated files # 7 | ###################### 8 | .DS_Store 9 | .DS_Store? 10 | ._* 11 | .Spotlight-V100 12 | .Trashes 13 | ehthumbs.db 14 | Thumbs.db 15 | -------------------------------------------------------------------------------- /docs/v2034 options A and B/DancingScript v2034 Option A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/docs/v2034 options A and B/DancingScript v2034 Option A.jpg -------------------------------------------------------------------------------- /docs/v2034 options A and B/DancingScript v2034 Option B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/docs/v2034 options A and B/DancingScript v2034 Option B.jpg -------------------------------------------------------------------------------- /docs/v2053 vs 2061/DancingScript v2053.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/docs/v2053 vs 2061/DancingScript v2053.jpg -------------------------------------------------------------------------------- /docs/v2053 vs 2061/DancingScript v2061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/docs/v2053 vs 2061/DancingScript v2061.jpg -------------------------------------------------------------------------------- /fonts/DancingScript-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/fonts/DancingScript-Bold.otf -------------------------------------------------------------------------------- /fonts/DancingScript-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/fonts/DancingScript-Medium.otf -------------------------------------------------------------------------------- /fonts/DancingScript-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/fonts/DancingScript-Regular.otf -------------------------------------------------------------------------------- /fonts/DancingScript-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/fonts/DancingScript-SemiBold.otf -------------------------------------------------------------------------------- /legacy/version-1.002/DancingScript-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/DancingScript-Bold.ttf -------------------------------------------------------------------------------- /legacy/version-1.002/DancingScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/DancingScript-Regular.ttf -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Bold-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Bold-TTF.vfb -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Bold-VTT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Bold-VTT.ttf -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Bold.otf -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Bold.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Bold.vfb -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Regular-TTF.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Regular-TTF.vfb -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Regular-VTT.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Regular-VTT.ttf -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Regular.otf -------------------------------------------------------------------------------- /legacy/version-1.002/src/DancingScript-Regular.vfb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-1.002/src/DancingScript-Regular.vfb -------------------------------------------------------------------------------- /legacy/version-1.002/src/METADATA_comments.txt: -------------------------------------------------------------------------------- 1 | # COMMENTS 2 | # cd ~/src/font-optimizer; \ 3 | # ./subset.pl -v --licensesubst="SIL OFL 1.1" \ 4 | # --exclude="c2sc,smcp,ordn,sups,sinf,subs,dlig,frac" \ 5 | # --chars="Dancing Script" \ 6 | # ~/googlefontdirectory/dancingscript/DancingScript-Regular.{ttf,menu}; \ 7 | # cd ~/googlefontdirectory/dancingscript/; 8 | -------------------------------------------------------------------------------- /legacy/version-1.002/src/VERSIONS.txt: -------------------------------------------------------------------------------- 1 | DancingScript-Bold.ttf: Version 1.002 2 | DancingScript-Regular.ttf: Version 1.002 3 | -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/otf/DancingScript-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/otf/DancingScript-Bold.otf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/otf/DancingScript-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/otf/DancingScript-Medium.otf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/otf/DancingScript-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/otf/DancingScript-Regular.otf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/otf/DancingScript-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/otf/DancingScript-SemiBold.otf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/ttf/DancingScript-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/ttf/DancingScript-Bold.ttf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/ttf/DancingScript-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/ttf/DancingScript-Medium.ttf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/ttf/DancingScript-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/ttf/DancingScript-Regular.ttf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/ttf/DancingScript-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/ttf/DancingScript-SemiBold.ttf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/variable/DancingScript[wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/variable/DancingScript[wght].ttf -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/webfonts/DancingScript-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/webfonts/DancingScript-Bold.woff2 -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/webfonts/DancingScript-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/webfonts/DancingScript-Medium.woff2 -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/webfonts/DancingScript-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/webfonts/DancingScript-Regular.woff2 -------------------------------------------------------------------------------- /legacy/version-2.001/fonts/webfonts/DancingScript-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.001/fonts/webfonts/DancingScript-SemiBold.woff2 -------------------------------------------------------------------------------- /legacy/version-2.001/requirements.txt: -------------------------------------------------------------------------------- 1 | fontmake>=2.4 2 | fontbakery>=0.7 3 | gftools>=0.7 4 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs.background/layerinfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | color 6 | 0.5,1,0,0.7 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/A_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/C_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/C_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/C_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/D_Z_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/D_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/D_zcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/E_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/G_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/G_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/G_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/I_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/L_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/L_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/L_j.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/N_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/N_U_L_L_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/N_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/N_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/N_j.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_horn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_hornacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_horngrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_horntilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/O_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/R_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/R_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/R_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/S_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/S_cedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/T_cedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_acute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_breve.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_circumflex.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_dblgrave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_dieresis.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_dotbelow.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_grave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hookabove.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horn.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hornacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hornacute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horndotbelow.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horngrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horngrave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hornhookabove.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horntilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_horntilde.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_hungarumlaut.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_invertedbreve.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_macron.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_ogonek.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_ring.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/U_tilde.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/W_dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Y_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Y_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Y_hookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Y_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Y_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Z_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/Z_dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/abreveacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/abrevegrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/abrevetilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/adblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/adotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/aeacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ahookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/aogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/apostrophemod.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/b_rcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/brevebelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/brevebelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/breveinvertedcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/bulletoperator.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ccaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ccircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/cdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/cedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/commaaccentcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dblgravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dieresisbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dieresisbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dong.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dotbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dotbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/dzcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ebreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ecaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/edblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/edotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/edotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ehookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/emacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/eogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/etilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/firsttonechinese.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/gbreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/gcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/gcircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/greaterequal.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/hookabovecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/horncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/hungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ibreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/idblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ihookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/imacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/itilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/kcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/lacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/lcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/lcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/lj.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/macronbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/macronbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ncaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ncommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/nj.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/o_rcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/obreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/odblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/odotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ohookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ohorn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ohornacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ohorndotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ohorngrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/omacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/oogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/oslashacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/rcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/rcommaaccent.init.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/sacute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scaron.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scedilla.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scircumflex.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/scommaaccent.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/strokeshortcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/tcedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/tcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ubreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/udblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/udotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uhookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uhorn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uhornacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uhorngrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/utilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/wacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/wcircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ycircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ydotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ygrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/yhookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ymacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/ytilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/zacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Bold.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs.background/layerinfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | color 6 | 0.5,1,0,0.7 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_E_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/A_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/C_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/C_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/D_Z_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/D_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/D_croat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/D_zcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/E_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/G_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/G_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_dblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/I_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/L_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/L_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/L_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/L_dot.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/L_j.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/N_J_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/N_U_L_L_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/N_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/N_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/N_j.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/O_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/O_horn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/O_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/O_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/R_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/R_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/S_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/T_caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_acute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_breve.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_circumflex.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_dblgrave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_dieresis.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_dotbelow.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_grave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_hookabove.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_horn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_horn.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_hornacute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_horndotbelow.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_horngrave.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_hornhookabove.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_horntilde.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_hungarumlaut.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_invertedbreve.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_macron.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_ogonek.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_ring.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/U_tilde.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/W_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/W_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/Y_dotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/Y_grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/Y_macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/Y_tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/Z_acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/abreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/acute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/acutecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/adotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/aeacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ahookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/amacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/aogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/apostrophemod.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/b_rcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/breve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/brevebelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/brevebelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/brevecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/breveinvertedcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/bulletoperator.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/cacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/caron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/caroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ccaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ccircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/cdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/cedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/cedillacomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/circumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/circumflexcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/commaaccentcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/commaaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dblgravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dieresisbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dieresisbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dieresiscomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dong.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dotaccentcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dotbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dotbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/dzcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ebreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ecaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/edblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/edotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/edotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ehookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/emacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/eogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/etilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/firsttonechinese.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gbreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gcircumflex.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/grave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/gravecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/greaterequal.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/hookabovecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/horncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/hungarumlaut.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/hungarumlautcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ibreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/idotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/idotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/imacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/iogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/itilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/lacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/lcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/lj.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/macron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/macronbelowcomb.case.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/macronbelowcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/macroncomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/nacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ncaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ncommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/nj.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/o_rcommaaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/obreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/odblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/odotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ogonekcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ohookabove.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ohorn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ohornacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ohorngrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/omacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/oogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/racute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/rcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/rcommaaccent.init.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ringcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/sacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/sacute.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/scaron.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/scedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/scedilla.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/scircumflex.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/scommaaccent.salt.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/strokeshortcomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/tcaron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/tcedilla.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/tilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/tildecomb.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ubreve.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/udblgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/udotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/uhorn.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/umacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/uogonek.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/uring.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/utilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/wacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/wdieresis.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/wgrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ydotbelow.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ygrave.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ymacron.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/ytilde.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/zacute.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.001/sources/DancingScript-Regular.ufo/glyphs/zdotaccent.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /legacy/version-2.031/fonts/DancingScript-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.031/fonts/DancingScript-Bold.otf -------------------------------------------------------------------------------- /legacy/version-2.031/fonts/DancingScript-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.031/fonts/DancingScript-Medium.otf -------------------------------------------------------------------------------- /legacy/version-2.031/fonts/DancingScript-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.031/fonts/DancingScript-Regular.otf -------------------------------------------------------------------------------- /legacy/version-2.031/fonts/DancingScript-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/impallari/DancingScript/09b7abf420f296894dc6c878e7b0da4f9f8d27a6/legacy/version-2.031/fonts/DancingScript-SemiBold.otf --------------------------------------------------------------------------------