gitextract_wvu_xg61/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── Dockerfile ├── FiraCode.glyphs ├── LEEME.md ├── LEIAME.md ├── LICENSE ├── Makefile ├── README.md ├── README_CN.md ├── README_JA.md ├── classes/ │ ├── ClosingBracket.fea │ ├── Digit.fea │ ├── DigitTosf.fea │ ├── HexDigit.fea │ ├── OpeningBracket.fea │ └── Tall.fea ├── clojure/ │ ├── fira_code/ │ │ ├── calt.clj │ │ ├── checks.clj │ │ ├── classes.clj │ │ ├── coll.clj │ │ ├── features.clj │ │ ├── files.clj │ │ ├── glyphs.clj │ │ ├── main.clj │ │ ├── not_space.clj │ │ ├── spacers.clj │ │ └── time.clj │ └── user.clj ├── deps.edn ├── distr/ │ ├── README.txt │ ├── fira_code.css │ └── specimen.html ├── docs/ │ └── calt_performance.md ├── extras/ │ └── showcases.txt ├── features/ │ ├── calt/ │ │ ├── center.fea │ │ ├── conj_disj.fea │ │ ├── cross.fea │ │ ├── dashes.fea │ │ ├── equal_arrows.fea │ │ ├── fi_fl.fea │ │ ├── greek.fea │ │ ├── hyphen_arrows.fea │ │ ├── match_case.fea │ │ ├── numbersigns.fea │ │ └── underscores.fea │ ├── cv01.fea │ ├── cv02.fea │ ├── cv03.fea │ ├── cv04.fea │ ├── cv05.fea │ ├── cv06.fea │ ├── cv07.fea │ ├── cv08.fea │ ├── cv09.fea │ ├── cv10.fea │ ├── cv11.fea │ ├── cv12.fea │ ├── cv13.fea │ ├── cv14.fea │ ├── cv15.fea │ ├── cv16.fea │ ├── cv17.fea │ ├── cv18.fea │ ├── cv19.fea │ ├── cv20.fea │ ├── cv21.fea │ ├── cv22.fea │ ├── cv23.fea │ ├── cv24.fea │ ├── cv25.fea │ ├── cv26.fea │ ├── cv27.fea │ ├── cv28.fea │ ├── cv29.fea │ ├── cv30.fea │ ├── cv31.fea │ ├── cv32.fea │ ├── onum.fea │ ├── ss01.fea │ ├── ss02.fea │ ├── ss03.fea │ ├── ss04.fea │ ├── ss05.fea │ ├── ss06.fea │ ├── ss07.fea │ ├── ss08.fea │ ├── ss09.fea │ ├── ss10.fea │ └── zero.fea ├── googlefonts-qa/ │ ├── METADATA.pb │ ├── README.md │ ├── checks/ │ │ ├── FiraCode-Light.checks.md │ │ └── static/ │ │ ├── FiraCode-Bold.checks.md │ │ ├── FiraCode-Light.checks.md │ │ ├── FiraCode-Medium.checks.md │ │ ├── FiraCode-Regular.checks.md │ │ └── FiraCode-Retina.checks.md │ ├── gfonts-description.html │ ├── notes/ │ │ ├── QA-notes.md │ │ └── outline-checks.md │ └── scripts/ │ ├── get-version.py │ ├── move-check.sh │ ├── requirements.txt │ └── set-vertical-metrics.py ├── package.json ├── requirements.txt └── script/ ├── bake_in_features.sh ├── bootstrap_linux.sh ├── bootstrap_macos.sh ├── build.sh ├── build_docker.sh ├── build_otf.sh ├── build_ttf.sh ├── build_variable.sh ├── build_woff.sh ├── build_woff2.sh ├── check ├── check_widths ├── clean.sh ├── common.py ├── everything ├── package.sh ├── progress.clj ├── release.py ├── repl.sh ├── update_glyphs.sh └── update_version.py