Skip to content

Commit

Permalink
some big fixes (potential revert)
Browse files Browse the repository at this point in the history
  • Loading branch information
molarmanful committed Apr 3, 2024
1 parent fe5f197 commit b6dbe9f
Show file tree
Hide file tree
Showing 16 changed files with 129 additions and 75 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Benjamin Pang (ben.10@nyu.edu) github.com/molarmanful
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2024 Benjamin Pang (@molarmanful)
Copyright 2024 The kirsch Project Authors (https://github.com/molarmanful/kirsch)

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ Patched Nerd Fonts are available. The "Mono" variant uses smaller glyphs
(single- instead of double-width) and works for terminals that can't mix
widths.

I would generally discourage usage of kirsch on the web due to lack of bitmap
support. But for the stubborn and the brave, WOFF2 is available.

### Manually Building

Requirements:
Expand All @@ -96,8 +99,9 @@ Requirements:
Optional:

- HarfBuzz utilities (e.g. `apt install libharfbuzz-bin`)
- bdfresize (e.g. `apt install bdfresize`)
- bdftopcf (e.g. `apt install xfonts-utils`)
- `bdfresize` (e.g. `apt install bdfresize`)
- `bdftopcf` (e.g. `apt install xfonts-utils`)
- `compress_woff2` (e.g. `apt install woff2`)

`git clone` and run `build.sh`. Font files output to `out/`.

Expand All @@ -112,7 +116,7 @@ Optional:
HarfBuzz utilities are necessary if you wish to use `img.sh` to generate the
images found in `img/`, but is otherwise unused in the building of the final
font files. `bdfresize` is for generating HiDPI fonts. `bdftopcf` is for
generating PCF fonts.
generating PCF fonts. `compress_woff2` is for generating WOFF2 fonts.

## Design Notes

Expand Down
50 changes: 12 additions & 38 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash -e

. ./fns.sh

while getopts "v:n" o; do
case $o in
v)
Expand All @@ -17,52 +19,24 @@ done
rm -rf out
mkdir -p deps out

[ ! -f deps/BitsNPicas.jar ] && wget -O deps/BitsNPicas.jar https://github.com/kreativekorp/bitsnpicas/releases/latest/download/BitsNPicas.jar
[ ! -f deps/fontforge ] && wget -O deps/fontforge https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage && chmod +x deps/fontforge
[ ! -f deps/font-patcher ] && wget -O deps/FontPatcher.zip https://github.com/ryanoasis/nerd-fonts/releases/latest/download/FontPatcher.zip && unzip deps/FontPatcher.zip -d deps && chmod +x deps/font-patcher

cp LICENSE out
cp README.md out
cp LICENSE out
cp AUTHORS out

bnp() {
java -jar deps/BitsNPicas.jar convertbitmap -f "$3" -o out/"$2.$3" "$1"
}

ff() {
s=$(
cat <<-'END'
f = open(argv[1])
f.encoding = "UnicodeFull"
f.fullname = argv[3]
f.fontname = argv[3]
f.generate(argv[2], "otb")
f.generate(argv[2] + "dfont", "sbit")
END
)
deps/fontforge -c "$s" "$PWD"/out/"$1".bdf "$PWD"/out/"$1". "$1"
}

pcf() {
if command -v bdftopcf &>/dev/null; then
perl scripts/ffff.pl <out/"$1".bdf >tmp.bdf
sed -i "s/^CHARS .*/CHARS $(grep -c '^ENDCHAR' tmp.bdf)/" tmp.bdf
bdftopcf -o out/"$1".pcf tmp.bdf
fi
}

nerd() {
if [ "$n" != "" ]; then
deps/fontforge -script "$PWD"/deps/font-patcher "$PWD"/out/kirsch.ttf -out "$PWD"/out --careful -c "$@"
fi
}
bnp_dep
ff_dep
nerd_dep

bnp src/kirsch.kbitx kirsch ttf
nerd
nerd -s
ttfix kirsch
bnp src/kirsch.kbitx kirsch bdf
sed -i -e '/^FONT/s/-[pc]-/-M-/i' -e '/^FONT/s/-80-/-50-/' out/kirsch.bdf
ff kirsch
pcf kirsch
if [ "$n" != "" ]; then
nerd
nerd -s
fi

if command -v bdfresize &>/dev/null; then
for n in 2 3; do
Expand Down
60 changes: 60 additions & 0 deletions fns.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
#!/bin/bash -e

bnp_dep() {
if [ ! -f deps/BitsNPicas.jar ]; then
wget -O deps/BitsNPicas.jar https://github.com/kreativekorp/bitsnpicas/releases/latest/download/BitsNPicas.jar
fi
}

ff_dep() {
if [ ! -f deps/fontforge ]; then
wget -O deps/fontforge https://github.com/fontforge/fontforge/releases/download/20230101/FontForge-2023-01-01-a1dad3e-x86_64.AppImage
chmod +x deps/fontforge
fi
}

nerd_dep() {
if [ ! -f deps/font-patcher ]; then
wget -O deps/FontPatcher.zip https://github.com/ryanoasis/nerd-fonts/releases/latest/download/FontPatcher.zip
unzip deps/FontPatcher.zip -d deps
chmod +x deps/font-patcher
fi
}

bnp() {
java -jar deps/BitsNPicas.jar convertbitmap -f "$3" -o out/"$2.$3" "$1"
}

ff() {
nl=$'\n'
si0=$(cat scripts/si0.py)
si1=$(cat scripts/si1.py)
so0=$(cat scripts/so0.py)
so1=$(cat scripts/so1.py)
fix=$(cat scripts/fix.py)
deps/fontforge -c "$si0$nl$si1$nl$fix$nl$so0" "$PWD"/out/"$1".bdf "$PWD"/out/"$1". "$1"
}

ttfix() {
nl=$'\n'
si0=$(cat scripts/si0.py)
so1=$(cat scripts/so1.py)
fix=$(cat scripts/fix.py)
deps/fontforge -c "$si0$nl$fix$nl$so1" "$PWD"/out/"$1".ttf
}

pcf() {
if command -v bdftopcf &>/dev/null; then
perl scripts/ffff.pl <out/"$1".bdf >tmp.bdf
sed -i "s/^CHARS .*/CHARS $(grep -c '^ENDCHAR' tmp.bdf)/" tmp.bdf
bdftopcf -o out/"$1".pcf tmp.bdf
fi
}

nerd() {
deps/fontforge -script "$PWD"/deps/font-patcher "$PWD"/out/kirsch.ttf -out "$PWD"/out --careful -c "$@"
}

hb() {
hb-view --text-file="$1" --font-size=16 -o img/"$2".png --foreground=#86CB92 --background=#1F0318 out/kirsch.ttf
}
10 changes: 2 additions & 8 deletions img.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,9 @@
rm -rf out
mkdir -p deps out img

[ ! -f deps/BitsNPicas.jar ] && wget -O deps/BitsNPicas.jar https://github.com/kreativekorp/bitsnpicas/releases/latest/download/BitsNPicas.jar
. ./fns.sh

bnp() {
java -jar deps/BitsNPicas.jar convertbitmap -f "$3" -o out/"$2.$3" "$1"
}

hb() {
hb-view --text-file="$1" --font-size=16 -o img/"$2".png --foreground=#86CB92 --background=#1F0318 out/kirsch.ttf
}
bnp_dep

bnp src/kirsch.kbitx kirsch ttf
bnp src/kirsch.kbitx kirsch bdf
Expand Down
Binary file modified img/chars.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/map.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions scripts/fix.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
f.os2_panose = (2, 0, 6, 9, 0, 0, 0, 0, 0, 0)
f.os2_weight_width_slope_only = True
f.selection.all()
f.correctDirection()
f.removeOverlap()
f.em = 2048
for g in f:
if f[g].unicode != -1:
f[g].glyphname = nameFromUnicode(f[g].unicode, "AGL with PUA")
f.encoding = "UnicodeFull"
1 change: 1 addition & 0 deletions scripts/si0.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f = open(argv[1])
2 changes: 2 additions & 0 deletions scripts/si1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
f.fullname = argv[3]
f.fontname = argv[3]
2 changes: 2 additions & 0 deletions scripts/so0.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
f.generate(argv[2], "otb")
f.generate(argv[2] + "dfont", "sbit")
1 change: 1 addition & 0 deletions scripts/so1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
f.generate(argv[1])
14 changes: 9 additions & 5 deletions src/kirsch.kbitx
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,19 @@
<prop id="lineGap" value="0"/>
<prop id="xHeight" value="5"/>
<prop id="capHeight" value="9"/>
<name id="0" value="Copyright (c) 2024, Benjamin Pang (@molarmanful)"/>
<name id="0" value="Copyright 2024 The kirsch Project Authors (https://github.com/molarmanful/kirsch)"/>
<name id="1" value="kirsch"/>
<name id="2" value="Medium"/>
<name id="3" value="molarmanful: kirsch: 2024"/>
<name id="4" value="kirsch"/>
<name id="5" value="Version 1.0"/>
<name id="6" value="kirsch"/>
<name id="8" value="Benjamin Pang"/>
<name id="9" value="Benjamin Pang"/>
<name id="11" value="https://github.com/molarmanful/kirsch"/>
<name id="13" value="SIL Open Font License 1.1"/>
<name id="14" value="https://github.com/molarmanful/kirsch/blob/main/LICENSE"/>
<name id="12" value="https://bennyboy.tech"/>
<name id="13" value="This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL"/>
<name id="14" value="https://scripts.sil.org/OFL"/>
<g u="32" x="0" y="0" w="6" d="AAA"/>
<g u="33" x="3" y="9" w="6" d="CQFHwgD/"/>
<g u="34" x="2" y="9" w="6" d="AwPC/wBCAULCAP8"/>
Expand Down Expand Up @@ -114,6 +116,7 @@
<g u="124" x="3" y="9" w="6" d="CwFL"/>
<g u="125" x="1" y="9" w="6" d="CwVCBUEEQQRBBEEFQgJBBEEEQQRBAkID"/>
<g u="126" x="1" y="5" w="6" d="AwXCAP8CQsMA/wBCAsL/AA"/>
<g u="160" x="0" y="0" w="6" d="AAA"/>
<g u="161" x="3" y="7" w="6" d="CQHC/wBH"/>
<g u="162" x="1" y="8" w="6" d="CQUCQQRBA0PEAP8A/wLD/wD/Asb/AP8A/wBDA0EEQQI"/>
<g u="163" x="1" y="8" w="6" d="CAUCQQPD/wD/AkEEQQNDA0EEQQJCAUIB"/>
Expand All @@ -126,7 +129,6 @@
<g u="170" x="2" y="9" w="6" d="BgMBQwFCwwD/AEIDQw"/>
<g u="171" x="1" y="6" w="6" d="BQUCy/8A/wD/AP8A/wD/A8P/AP8Dw/8A/w"/>
<g u="172" x="1" y="4" w="6" d="AwVFBEEEQQ"/>
<g u="173" x="2" y="4" w="6" d="AQND"/>
<g u="174" x="0" y="8" w="6" d="CAcCQwNBA8T/AP8AQgJCxQD/AP8AQgFCAkLIAP8A/wD/AP8DQQNDAg"/>
<g u="175" x="1" y="9" w="6" d="AQVF"/>
<g u="176" x="2" y="9" w="6" d="AwPJAP8A/wD/AP8A"/>
Expand Down Expand Up @@ -2137,7 +2139,7 @@
<g u="8569" x="1" y="5" w="6" d="BQVCAULEAP8A/wNBA8T/AP8AQgFC"/>
<g u="8570" x="1" y="7" w="6" d="BwUEQQXE/wD/AELGAP8A/wD/AkLDAP8AQsQA/wD/"/>
<g u="8571" x="0" y="7" w="6" d="BwcEw/8A/wfG/wD/AP8AQsgA/wD/AP8A/wLC/wBCxQD/AP8AQsYA/wD/AP8"/>
<g u="8572" x="1" y="8" w="5" d="CANCAkECQQJBAkECQQLC/wBD"/>
<g u="8572" x="3" y="8" w="7" d="CANCAkECQQJBAkECQQLC/wBD"/>
<g u="8573" x="1" y="5" w="6" d="BQUBQ8IA/wLD/wD/BEEDwv8AQwE"/>
<g u="8574" x="1" y="8" w="6" d="CAUCQgRBBEECQ8IA/wLD/wD/AsP/AP8CQQJE"/>
<g u="8575" x="1" y="5" w="6" d="BQVCxwD/AP8A/wBCwwD/AELDAP8AQsQA/wD/"/>
Expand Down Expand Up @@ -4083,6 +4085,7 @@
<g u="43005" x="1" y="9" w="6" d="CQVBA0IDQsMA/wBCwwD/AELDAP8AQwFEAUMDQgNB"/>
<g u="43006" x="1" y="9" w="6" d="DAVFAkEEQQRBBEEEQQRBBEEEQQRBBEECRQ"/>
<g u="43007" x="0" y="9" w="6" d="CQfCAP8Cxf8A/wD/AsL/AELFAP8A/wBCxQD/AP8AQsUA/wD/AELFAP8A/wBCxQD/AP8AQgLF/wD/AP8CxP8A/wA"/>
<g u="43859" x="1" y="5" w="6" d="CAVBA8X/AP8A/wLD/wD/A0EEQQPD/wD/AsX/AP8A/wNB"/>
<g u="57504" x="1" y="9" w="6" d="CgVBBEECxP8A/wBEAsP/AP8CQQNBA0EDQQRBBEEE"/>
<g u="57505" x="1" y="9" w="6" d="CQVBBEEEQQRDCEECwv8AQsUA/wD/AELCAP8CQQ"/>
<g u="57506" x="1" y="8" w="6" d="CAUBQwLD/wD/AsT/AP8ARwFEAUcBQwE"/>
Expand Down Expand Up @@ -4883,4 +4886,5 @@
<g u="130039" x="2" y="9" w="6" d="CARDBEEDQQNBB0EDQQNB"/>
<g u="130040" x="1" y="9" w="6" d="CQUBQ8IA/wNCA0IDwv8AQ8IA/wNCA0IDwv8AQwE"/>
<g u="130041" x="1" y="9" w="6" d="CQUBQ8IA/wNCA0IDwv8AQwVBBEEEwv8AQwE"/>
<g n=".notdef" x="1" y="12" w="6" d="DwVGA0IDQsMA/wBDAUMCQwJDwwD/AELDAP8AQsMA/wBCA0LDAP8AQgNCA0Y"/>
</kbits>
38 changes: 19 additions & 19 deletions txt/chars.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q
R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~ ¡ ¢ £ ¤ ¥
¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö ×
R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~   ¡ ¢ £ ¤
¥ ¦ § ¨ © ª « ¬ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö ×
Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ Ā ā Ă ă Ą ą Ć ć Ĉ ĉ
Ċ ċ Č č Ď ď Đ đ Ē ē Ĕ ĕ Ė ė Ę ę Ě ě Ĝ ĝ Ğ ğ Ġ ġ Ģ ģ Ĥ ĥ Ħ ħ Ĩ ĩ Ī ī Ĭ ĭ Į į İ ı IJ ij Ĵ ĵ Ķ ķ ĸ Ĺ ĺ Ļ
ļ Ľ ľ Ŀ ŀ Ł ł Ń ń Ņ ņ Ň ň ʼn Ŋ ŋ Ō ō Ŏ ŏ Ő ő Œ œ Ŕ ŕ Ŗ ŗ Ř ř Ś ś Ŝ ŝ Ş ş Š š Ţ ţ Ť ť Ŧ ŧ Ũ ũ Ū ū Ŭ ŭ
Expand Down Expand Up @@ -78,20 +78,20 @@ R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y
Ꜯ ꜯ ꜰ ꜱ Ꜳ ꜳ Ꜵ ꜵ Ꜷ ꜷ Ꜹ ꜹ Ꜻ ꜻ Ꜽ ꜽ Ꜿ ꜿ Ꝁ ꝁ Ꝃ ꝃ Ꝅ ꝅ Ꝇ ꝇ Ꝉ ꝉ Ꝋ ꝋ Ꝍ ꝍ Ꝏ ꝏ Ꝑ ꝑ Ꝓ ꝓ Ꝕ ꝕ Ꝗ ꝗ Ꝙ ꝙ Ꝛ ꝛ Ꝝ ꝝ Ꝟ ꝟ
Ꝡ ꝡ Ꝣ ꝣ Ꝥ ꝥ Ꝧ ꝧ Ꝩ ꝩ Ꝫ ꝫ Ꝭ ꝭ Ꝯ ꝯ ꝰ ꝱ ꝲ ꝳ ꝴ ꝵ ꝶ ꝷ ꝸ Ꝺ ꝺ Ꝼ ꝼ Ᵹ Ꝿ ꝿ Ꞁ ꞁ Ꞃ ꞃ Ꞅ ꞅ Ꞇ ꞇ ꞈ ꞉ ꞊ Ꞌ ꞌ Ɥ ꞎ ꞏ Ꞑ ꞑ
Ꞓ ꞓ ꞔ ꞕ Ꞗ ꞗ Ꞙ ꞙ Ꞛ ꞛ Ꞝ ꞝ Ꞟ ꞟ Ꞡ ꞡ Ꞣ ꞣ Ꞥ ꞥ Ꞧ ꞧ Ꞩ ꞩ Ɦ Ɜ Ɡ Ɬ Ɪ ꞯ Ʞ Ʇ Ʝ Ꭓ Ꞵ ꞵ Ꞷ ꞷ Ꞹ ꞹ Ꞻ ꞻ Ꞽ ꞽ Ꞿ ꞿ Ꟁ ꟁ Ꟃ ꟃ
Ꞔ Ʂ Ᶎ Ꟈ ꟈ Ꟊ ꟊ Ꟑ ꟑ ꟓ ꟕ Ꟗ ꟗ Ꟙ ꟙ ꟲ ꟳ ꟴ Ꟶ ꟶ ꟷ ꟸ ꟹ ꟺ ꟻ ꟼ ꟽ ꟾ ꟿ                    
 ff fi fl ffi ffl ſt st 𝐀 𝐁 𝐂 𝐃 𝐄 𝐅 𝐆 𝐇 𝐈 𝐉 𝐊 𝐋 𝐌 𝐍 𝐎 𝐏 𝐐 𝐑 𝐒 𝐓 𝐔 𝐕 𝐖 𝐗 𝐘 𝐙 𝐚 𝐛 𝐜 𝐝 𝐞 𝐟 𝐠 𝐡 𝐢 𝐣 𝐤 𝐥 𝐦 𝐧 𝐨 𝐩
𝐪 𝐫 𝐬 𝐭 𝐮 𝐯 𝐰 𝐱 𝐲 𝐳 𝐴 𝐵 𝐶 𝐷 𝐸 𝐹 𝐺 𝐻 𝐼 𝐽 𝐾 𝐿 𝑀 𝑁 𝑂 𝑃 𝑄 𝑅 𝑆 𝑇 𝑈 𝑉 𝑊 𝑋 𝑌 𝑍 𝑎 𝑏 𝑐 𝑑 𝑒 𝑓 𝑔 𝑖 𝑗 𝑘 𝑙 𝑚 𝑛 𝑜
𝑝 𝑞 𝑟 𝑠 𝑡 𝑢 𝑣 𝑤 𝑥 𝑦 𝑧 𝑨 𝑩 𝑪 𝑫 𝑬 𝑭 𝑮 𝑯 𝑰 𝑱 𝑲 𝑳 𝑴 𝑵 𝑶 𝑷 𝑸 𝑹 𝑺 𝑻 𝑼 𝑽 𝑾 𝑿 𝒀 𝒁 𝒂 𝒃 𝒄 𝒅 𝒆 𝒇 𝒈 𝒉 𝒊 𝒋 𝒌 𝒍 𝒎
𝒏 𝒐 𝒑 𝒒 𝒓 𝒔 𝒕 𝒖 𝒗 𝒘 𝒙 𝒚 𝒛 𝔄 𝔅 𝔇 𝔈 𝔉 𝔊 𝔍 𝔎 𝔏 𝔐 𝔑 𝔒 𝔓 𝔔 𝔖 𝔗 𝔘 𝔙 𝔚 𝔛 𝔜 𝔞 𝔟 𝔠 𝔡 𝔢 𝔣 𝔤 𝔥 𝔦 𝔧 𝔨 𝔩 𝔪 𝔫 𝔬 𝔭
𝔮 𝔯 𝔰 𝔱 𝔲 𝔳 𝔴 𝔵 𝔶 𝔷 𝔸 𝔹 𝔻 𝔼 𝔽 𝔾 𝕀 𝕁 𝕂 𝕃 𝕄 𝕆 𝕊 𝕋 𝕌 𝕍 𝕎 𝕏 𝕐 𝕒 𝕓 𝕔 𝕕 𝕖 𝕗 𝕘 𝕙 𝕚 𝕛 𝕜 𝕝 𝕞 𝕟 𝕠 𝕡 𝕢 𝕣 𝕤 𝕥 𝕦
𝕧 𝕨 𝕩 𝕪 𝕫 𝖠 𝖡 𝖢 𝖣 𝖤 𝖥 𝖦 𝖧 𝖨 𝖩 𝖪 𝖫 𝖬 𝖭 𝖮 𝖯 𝖰 𝖱 𝖲 𝖳 𝖴 𝖵 𝖶 𝖷 𝖸 𝖹 𝖺 𝖻 𝖼 𝖽 𝖾 𝖿 𝗀 𝗁 𝗂 𝗃 𝗄 𝗅 𝗆 𝗇 𝗈 𝗉 𝗊 𝗋 𝗌
𝗍 𝗎 𝗏 𝗐 𝗑 𝗒 𝗓 𝗔 𝗕 𝗖 𝗗 𝗘 𝗙 𝗚 𝗛 𝗜 𝗝 𝗞 𝗟 𝗠 𝗡 𝗢 𝗣 𝗤 𝗥 𝗦 𝗧 𝗨 𝗩 𝗪 𝗫 𝗬 𝗭 𝗮 𝗯 𝗰 𝗱 𝗲 𝗳 𝗴 𝗵 𝗶 𝗷 𝗸 𝗹 𝗺 𝗻 𝗼 𝗽 𝗾
𝗿 𝘀 𝘁 𝘂 𝘃 𝘄 𝘅 𝘆 𝘇 𝘈 𝘉 𝘊 𝘋 𝘌 𝘍 𝘎 𝘏 𝘐 𝘑 𝘒 𝘓 𝘔 𝘕 𝘖 𝘗 𝘘 𝘙 𝘚 𝘛 𝘜 𝘝 𝘞 𝘟 𝘠 𝘡 𝘢 𝘣 𝘤 𝘥 𝘦 𝘧 𝘨 𝘩 𝘪 𝘫 𝘬 𝘭 𝘮 𝘯 𝘰
𝘱 𝘲 𝘳 𝘴 𝘵 𝘶 𝘷 𝘸 𝘹 𝘺 𝘻 𝘼 𝘽 𝘾 𝘿 𝙀 𝙁 𝙂 𝙃 𝙄 𝙅 𝙆 𝙇 𝙈 𝙉 𝙊 𝙋 𝙌 𝙍 𝙎 𝙏 𝙐 𝙑 𝙒 𝙓 𝙔 𝙕 𝙖 𝙗 𝙘 𝙙 𝙚 𝙛 𝙜 𝙝 𝙞 𝙟 𝙠 𝙡 𝙢
𝙣 𝙤 𝙥 𝙦 𝙧 𝙨 𝙩 𝙪 𝙫 𝙬 𝙭 𝙮 𝙯 𝙰 𝙱 𝙲 𝙳 𝙴 𝙵 𝙶 𝙷 𝙸 𝙹 𝙺 𝙻 𝙼 𝙽 𝙾 𝙿 𝚀 𝚁 𝚂 𝚃 𝚄 𝚅 𝚆 𝚇 𝚈 𝚉 𝚊 𝚋 𝚌 𝚍 𝚎 𝚏 𝚐 𝚑 𝚒 𝚓 𝚔
𝚕 𝚖 𝚗 𝚘 𝚙 𝚚 𝚛 𝚜 𝚝 𝚞 𝚟 𝚠 𝚡 𝚢 𝚣 𝚤 𝚥 𝟎 𝟏 𝟐 𝟑 𝟒 𝟓 𝟔 𝟕 𝟖 𝟗 𝟘 𝟙 𝟚 𝟛 𝟜 𝟝 𝟞 𝟟 𝟠 𝟡 𝟢 𝟣 𝟤 𝟥 𝟦 𝟧 𝟨 𝟩 𝟪 𝟫 𝟬 𝟭 𝟮
𝟯 𝟰 𝟱 𝟲 𝟳 𝟴 𝟵 𝟶 𝟷 𝟸 𝟹 𝟺 𝟻 𝟼 𝟽 𝟾 𝟿 🬀 🬁 🬂 🬃 🬄 🬅 🬆 🬇 🬈 🬉 🬊 🬋 🬌 🬍 🬎 🬏 🬐 🬑 🬒 🬓 🬔 🬕 🬖 🬗 🬘 🬙 🬚 🬛 🬜 🬝 🬞 🬟 🬠
🬡 🬢 🬣 🬤 🬥 🬦 🬧 🬨 🬩 🬪 🬫 🬬 🬭 🬮 🬯 🬰 🬱 🬲 🬳 🬴 🬵 🬶 🬷 🬸 🬹 🬺 🬻 🬼 🬽 🬾 🬿 🭀 🭁 🭂 🭃 🭄 🭅 🭆 🭇 🭈 🭉 🭊 🭋 🭌 🭍 🭎 🭏 🭐 🭑 🭒
🭓 🭔 🭕 🭖 🭗 🭘 🭙 🭚 🭛 🭜 🭝 🭞 🭟 🭠 🭡 🭢 🭣 🭤 🭥 🭦 🭧 🭨 🭩 🭪 🭫 🭬 🭭 🭮 🭯 🭰 🭱 🭲 🭳 🭴 🭵 🭶 🭷 🭸 🭹 🭺 🭻 🭼 🭽 🭾 🭿 🮀 🮁 🮂 🮃 🮄
🮅 🮆 🮇 🮈 🮉 🮊 🮋 🮌 🮍 🮎 🮏 🮐 🮑 🮒 🮔 🮕 🮖 🮗 🮘 🮙 🮚 🮛 🮜 🮝 🮞 🮟 🮠 🮡 🮢 🮣 🮤 🮥 🮦 🮧 🮨 🮩 🮪 🮫 🮬 🮭 🮮 🮯 🮰 🮱 🮲 🮳 🮴 🮵 🮶 🮷
🮸 🮹 🮺 🮻 🮼 🮽 🮾 🮿 🯀 🯁 🯂 🯃 🯄 🯅 🯆 🯇 🯈 🯉 🯊 🯰 🯱 🯲 🯳 🯴 🯵 🯶 🯷 🯸 🯹
Ꞔ Ʂ Ᶎ Ꟈ ꟈ Ꟊ ꟊ Ꟑ ꟑ ꟓ ꟕ Ꟗ ꟗ Ꟙ ꟙ ꟲ ꟳ ꟴ Ꟶ ꟶ ꟷ ꟸ ꟹ ꟺ ꟻ ꟼ ꟽ ꟾ ꟿ                    
 ff fi fl ffi ffl ſt st 𝐀 𝐁 𝐂 𝐃 𝐄 𝐅 𝐆 𝐇 𝐈 𝐉 𝐊 𝐋 𝐌 𝐍 𝐎 𝐏 𝐐 𝐑 𝐒 𝐓 𝐔 𝐕 𝐖 𝐗 𝐘 𝐙 𝐚 𝐛 𝐜 𝐝 𝐞 𝐟 𝐠 𝐡 𝐢 𝐣 𝐤 𝐥 𝐦 𝐧 𝐨
𝐩 𝐪 𝐫 𝐬 𝐭 𝐮 𝐯 𝐰 𝐱 𝐲 𝐳 𝐴 𝐵 𝐶 𝐷 𝐸 𝐹 𝐺 𝐻 𝐼 𝐽 𝐾 𝐿 𝑀 𝑁 𝑂 𝑃 𝑄 𝑅 𝑆 𝑇 𝑈 𝑉 𝑊 𝑋 𝑌 𝑍 𝑎 𝑏 𝑐 𝑑 𝑒 𝑓 𝑔 𝑖 𝑗 𝑘 𝑙 𝑚 𝑛
𝑜 𝑝 𝑞 𝑟 𝑠 𝑡 𝑢 𝑣 𝑤 𝑥 𝑦 𝑧 𝑨 𝑩 𝑪 𝑫 𝑬 𝑭 𝑮 𝑯 𝑰 𝑱 𝑲 𝑳 𝑴 𝑵 𝑶 𝑷 𝑸 𝑹 𝑺 𝑻 𝑼 𝑽 𝑾 𝑿 𝒀 𝒁 𝒂 𝒃 𝒄 𝒅 𝒆 𝒇 𝒈 𝒉 𝒊 𝒋 𝒌 𝒍
𝒎 𝒏 𝒐 𝒑 𝒒 𝒓 𝒔 𝒕 𝒖 𝒗 𝒘 𝒙 𝒚 𝒛 𝔄 𝔅 𝔇 𝔈 𝔉 𝔊 𝔍 𝔎 𝔏 𝔐 𝔑 𝔒 𝔓 𝔔 𝔖 𝔗 𝔘 𝔙 𝔚 𝔛 𝔜 𝔞 𝔟 𝔠 𝔡 𝔢 𝔣 𝔤 𝔥 𝔦 𝔧 𝔨 𝔩 𝔪 𝔫 𝔬
𝔭 𝔮 𝔯 𝔰 𝔱 𝔲 𝔳 𝔴 𝔵 𝔶 𝔷 𝔸 𝔹 𝔻 𝔼 𝔽 𝔾 𝕀 𝕁 𝕂 𝕃 𝕄 𝕆 𝕊 𝕋 𝕌 𝕍 𝕎 𝕏 𝕐 𝕒 𝕓 𝕔 𝕕 𝕖 𝕗 𝕘 𝕙 𝕚 𝕛 𝕜 𝕝 𝕞 𝕟 𝕠 𝕡 𝕢 𝕣 𝕤 𝕥
𝕦 𝕧 𝕨 𝕩 𝕪 𝕫 𝖠 𝖡 𝖢 𝖣 𝖤 𝖥 𝖦 𝖧 𝖨 𝖩 𝖪 𝖫 𝖬 𝖭 𝖮 𝖯 𝖰 𝖱 𝖲 𝖳 𝖴 𝖵 𝖶 𝖷 𝖸 𝖹 𝖺 𝖻 𝖼 𝖽 𝖾 𝖿 𝗀 𝗁 𝗂 𝗃 𝗄 𝗅 𝗆 𝗇 𝗈 𝗉 𝗊 𝗋
𝗌 𝗍 𝗎 𝗏 𝗐 𝗑 𝗒 𝗓 𝗔 𝗕 𝗖 𝗗 𝗘 𝗙 𝗚 𝗛 𝗜 𝗝 𝗞 𝗟 𝗠 𝗡 𝗢 𝗣 𝗤 𝗥 𝗦 𝗧 𝗨 𝗩 𝗪 𝗫 𝗬 𝗭 𝗮 𝗯 𝗰 𝗱 𝗲 𝗳 𝗴 𝗵 𝗶 𝗷 𝗸 𝗹 𝗺 𝗻 𝗼 𝗽
𝗾 𝗿 𝘀 𝘁 𝘂 𝘃 𝘄 𝘅 𝘆 𝘇 𝘈 𝘉 𝘊 𝘋 𝘌 𝘍 𝘎 𝘏 𝘐 𝘑 𝘒 𝘓 𝘔 𝘕 𝘖 𝘗 𝘘 𝘙 𝘚 𝘛 𝘜 𝘝 𝘞 𝘟 𝘠 𝘡 𝘢 𝘣 𝘤 𝘥 𝘦 𝘧 𝘨 𝘩 𝘪 𝘫 𝘬 𝘭 𝘮 𝘯
𝘰 𝘱 𝘲 𝘳 𝘴 𝘵 𝘶 𝘷 𝘸 𝘹 𝘺 𝘻 𝘼 𝘽 𝘾 𝘿 𝙀 𝙁 𝙂 𝙃 𝙄 𝙅 𝙆 𝙇 𝙈 𝙉 𝙊 𝙋 𝙌 𝙍 𝙎 𝙏 𝙐 𝙑 𝙒 𝙓 𝙔 𝙕 𝙖 𝙗 𝙘 𝙙 𝙚 𝙛 𝙜 𝙝 𝙞 𝙟 𝙠 𝙡
𝙢 𝙣 𝙤 𝙥 𝙦 𝙧 𝙨 𝙩 𝙪 𝙫 𝙬 𝙭 𝙮 𝙯 𝙰 𝙱 𝙲 𝙳 𝙴 𝙵 𝙶 𝙷 𝙸 𝙹 𝙺 𝙻 𝙼 𝙽 𝙾 𝙿 𝚀 𝚁 𝚂 𝚃 𝚄 𝚅 𝚆 𝚇 𝚈 𝚉 𝚊 𝚋 𝚌 𝚍 𝚎 𝚏 𝚐 𝚑 𝚒 𝚓
𝚔 𝚕 𝚖 𝚗 𝚘 𝚙 𝚚 𝚛 𝚜 𝚝 𝚞 𝚟 𝚠 𝚡 𝚢 𝚣 𝚤 𝚥 𝟎 𝟏 𝟐 𝟑 𝟒 𝟓 𝟔 𝟕 𝟖 𝟗 𝟘 𝟙 𝟚 𝟛 𝟜 𝟝 𝟞 𝟟 𝟠 𝟡 𝟢 𝟣 𝟤 𝟥 𝟦 𝟧 𝟨 𝟩 𝟪 𝟫 𝟬 𝟭
𝟮 𝟯 𝟰 𝟱 𝟲 𝟳 𝟴 𝟵 𝟶 𝟷 𝟸 𝟹 𝟺 𝟻 𝟼 𝟽 𝟾 𝟿 🬀 🬁 🬂 🬃 🬄 🬅 🬆 🬇 🬈 🬉 🬊 🬋 🬌 🬍 🬎 🬏 🬐 🬑 🬒 🬓 🬔 🬕 🬖 🬗 🬘 🬙 🬚 🬛 🬜 🬝 🬞 🬟
🬠 🬡 🬢 🬣 🬤 🬥 🬦 🬧 🬨 🬩 🬪 🬫 🬬 🬭 🬮 🬯 🬰 🬱 🬲 🬳 🬴 🬵 🬶 🬷 🬸 🬹 🬺 🬻 🬼 🬽 🬾 🬿 🭀 🭁 🭂 🭃 🭄 🭅 🭆 🭇 🭈 🭉 🭊 🭋 🭌 🭍 🭎 🭏 🭐 🭑
🭒 🭓 🭔 🭕 🭖 🭗 🭘 🭙 🭚 🭛 🭜 🭝 🭞 🭟 🭠 🭡 🭢 🭣 🭤 🭥 🭦 🭧 🭨 🭩 🭪 🭫 🭬 🭭 🭮 🭯 🭰 🭱 🭲 🭳 🭴 🭵 🭶 🭷 🭸 🭹 🭺 🭻 🭼 🭽 🭾 🭿 🮀 🮁 🮂 🮃
🮄 🮅 🮆 🮇 🮈 🮉 🮊 🮋 🮌 🮍 🮎 🮏 🮐 🮑 🮒 🮔 🮕 🮖 🮗 🮘 🮙 🮚 🮛 🮜 🮝 🮞 🮟 🮠 🮡 🮢 🮣 🮤 🮥 🮦 🮧 🮨 🮩 🮪 🮫 🮬 🮭 🮮 🮯 🮰 🮱 🮲 🮳 🮴 🮵 🮶
🮷 🮸 🮹 🮺 🮻 🮼 🮽 🮾 🮿 🯀 🯁 🯂 🯃 🯄 🯅 🯆 🯇 🯈 🯉 🯊 🯰 🯱 🯲 🯳 🯴 🯵 🯶 🯷 🯸 🯹
Loading

0 comments on commit b6dbe9f

Please sign in to comment.