summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/source/generic/tex4ht
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2022-01-20 22:20:38 +0000
committerKarl Berry <karl@freefriends.org>2022-01-20 22:20:38 +0000
commite97a73371919b527bd57cfe7163c5da60cf45973 (patch)
treef2c093d150784eb2361533c1894dc9417fe90704 /Master/texmf-dist/source/generic/tex4ht
parent5597c98c7297769c02e0b212e2f0c69ef97d80be (diff)
htfonts updates, tex4hr r1057,r1058
git-svn-id: svn://tug.org/texlive/trunk@61673 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/generic/tex4ht')
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/ChangeLog14
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/Makefile85
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex8223
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex14
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex216
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex66
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex24
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex510
-rw-r--r--Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex8
-rwxr-xr-xMaster/texmf-dist/source/generic/tex4ht/update-htfonts130
10 files changed, 6015 insertions, 3275 deletions
diff --git a/Master/texmf-dist/source/generic/tex4ht/ChangeLog b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
index dc66ea6549e..156a82c70be 100644
--- a/Master/texmf-dist/source/generic/tex4ht/ChangeLog
+++ b/Master/texmf-dist/source/generic/tex4ht/ChangeLog
@@ -1,3 +1,17 @@
+2022-01-20 Karl Berry <karl@freefriends.org>
+
+ * update-htfonts: new script to compare/update htfonts from
+ dev to the installed (TL) tree.
+ * Makefile (diff-htfonts): just run the new script.
+ (update-htfonts): new target to run the script.
+ (diff-all): also depend on diff-src and diff-htfonts.
+ (update-all-fonts): new target to rerun all the *-fonts-*.tex files.
+
+2022-01-20 Michal Hoftich <michal.h21@gmail.com>
+
+ * tex4ht-html5.tex (html5.4ht): add space after caption label.
+ https://github.com/michal-h21/tex4ebook/issues/88
+
2022-01-19 Michal Hoftich <michal.h21@gmail.com>
* tex4ht-ooffice.tex (ooffice.4ht): added support for the Framed
diff --git a/Master/texmf-dist/source/generic/tex4ht/Makefile b/Master/texmf-dist/source/generic/tex4ht/Makefile
index 9eeac4bbf91..5916f5504c2 100644
--- a/Master/texmf-dist/source/generic/tex4ht/Makefile
+++ b/Master/texmf-dist/source/generic/tex4ht/Makefile
@@ -1,4 +1,4 @@
-# $Id: Makefile 1039 2021-12-25 21:56:53Z karl $
+# $Id: Makefile 1061 2022-01-20 22:17:17Z karl $
# This file is public domain. Originally written 2010, Karl Berry.
# Assumes GNU make.
@@ -13,12 +13,8 @@ ht_bin = ../bin/ht/unix
PATH := $(shell echo $$PATH)
#
# per-user addition to PATH. We need to use LaTeX out of current TeX Live,
-# since changes that affect tex4ht are often made. Include trailing :.
-ifeq ($(USER),karl)
-user_bin := /usr/local/texlive/dev/bin/x86_64-linux:
-else
+# since changes that affect tex4ht are often made. If set, include trailing :.
user_bin :=
-endif
#
export PATH := $(ht_bin):$(extra_bin):$(user_bin)$(PATH)
@@ -32,14 +28,15 @@ texmf_t4ht_bin = texmf/tex4ht/bin
dirs = homedir wd htmldir xtpipesdir deriveddir texmf_t4ht_bin
# do_java variable to control how tex4ht.jar is built.
-# do_java=1 works only if tex4ht-dir.tex is not already built with
-# do_java=0 option.
-# Similarly do_java=0 will keep java compilation in tex in addition to
-# building in Makefile if tex4ht-dir.tex was already built with
-# do_java=1
# 0 = in Makefile only
# 1 = in .tex only
# 2 = no java compilation
+#
+# do_java=1 works only if tex4ht-dir.tex is not already built with
+# the do_java=0 option.
+# do_java=0 will keep java compilation in tex in addition to
+# building in Makefile if tex4ht-dir.tex was already built
+# with do_java=1
do_java ?= 2
java_in_make := false
java_in_tex := false
@@ -560,6 +557,20 @@ $(xtpipes_derived): xtpipes.tex $(common)
# (corresponds to src/java for xtpipes.tex)
#
+# Remake all *-fonts-*.tex files, i.e., update all htf. Since we list
+# few dependencies for these, have to have some other way. Assume GNU make.
+# Takes ~20 min and generates ~50MB of output.
+update-all-fonts:
+ date; for f in *-fonts-*.tex; do \
+ printf "\n\f making $$f"; \
+ $(MAKE) -W $$f || exit $?; done
+ @echo "update-all-fonts done."
+
+# Simple make abbrev for convenience.
+upmake upm:
+ svn update && make
+
+#
# Test installation. Does not work.
destdir = update.dir
dest_texmf = $(destdir)/texmf/tex/generic/tex4ht
@@ -705,7 +716,7 @@ texmf = /r/tug/home/texlive/karl/Master/texmf-dist
inst_dir_4ht = $(texmf)/tex/generic/tex4ht
inst_dir_top = $(texmf)/tex4ht
inst_dir_scripts = $(texmf)/scripts/tex4ht
-inst_dir_source = $(texmf)/source/tex4ht
+inst_dir_source = $(texmf)/source/generic/tex4ht
# Simple command to "install" from dev to TL.
# (Other methods are also used.)
@@ -742,11 +753,12 @@ srcfiles = $(shell svn status -v | awk '{print $$NF}' \
# Diff source files from installed to dev.
diff-src:
- for f in $(srcfiles); do $(diff) $$f $(inst_dir_source)/$$f; done
+ for f in $(srcfiles); do $(diff) $(inst_dir_source)/$$f $$f; done
#
# Install from dev to installed.
-install-src:
+update-src:
for f in $(srcfiles); do $(install_data) $$f $(inst_dir_source); done
+ svn status $(inst_dir_source)
#
# Just list the files.
list-src:
@@ -754,39 +766,18 @@ list-src:
#
# Checking and updating font support files.
-#
+
+# Where they are in the installed tree.
ht_fonts_instdir = $(inst_dir_top)/ht-fonts
-#
-install-unicode-4hf:
- cd $(ht_fonts_devdir) && tar cf - `find . -name unicode.4hf` \
- | (cd $(ht_fonts_instdir) && tar xf -)
- svn diff $(ht_fonts_instdir)
-#
-# copy fonts listed in /tmp/htf (must be filenames relative to
-# ht_fonts_devdir, like those created by diff-htfonts below)
-# to ht_fonts_instdir. Or to use /tmp/htnew instead of /tmp/htf, override:
-tmp_htf = /tmp/htf
-install-htfonts-tmp:
- cd $(ht_fonts_devdir) && tar cfT - $(tmp_htf) \
- | (cd $(ht_fonts_instdir) && tar xvf -)
- svn status $(ht_fonts_instdir)
+# Compare only.
diff-htfonts:
-# put the raw diff in /tmp/htd:
- -$(diff) -r $(ht_fonts_instdir) $(ht_fonts_devdir) >/tmp/htd
-# just the changed filenames in /tmp/htf; but this includes date changes,
-# so will have lots of false matches. must fixx ...
-# also we don't ever remove $(ht_fonts_instdir), so old stuff stays
-# around; must fixx again.
- sed -n 's,^diff.*ht-fonts/,,p' /tmp/htd | sort >/tmp/htf
-# and new filenames in /tmp/htnew:
- sed -n -e 's,^Only in.*ht-fonts/,,' \
- -e 's,: ,/,p' /tmp/htd >/tmp/htnew
-# for human consumption, remove generation lines (hopefully there are no
-# real diffs on those lines); also the @@ lines from diff -u and the
-# redundant diff invocations.
- egrep -v '^(diff |@@ |[-+][^-+].*20[0-9][0-9]-[0-9][0-9]-[0-9][0-9])' \
- /tmp/htd | tee /tmp/htchanges
+ ./update-htfonts diff $(ht_fonts_devdir) $(ht_fonts_instdir) | tee /tmp/htdif
+
+# Compare and update.
+update-htfonts:
+ ./update-htfonts update $(ht_fonts_devdir) $(ht_fonts_instdir) | tee /tmp/htdif
+.PHONY: update-htfonts
#
# diff all files in the main TeX Live installation directory against
@@ -798,7 +789,7 @@ diff-htfonts:
#
# The diff-scripts output is usually empty, so we can run that;
# but diff-htfonts is too verbose to run every time.
-diff-all: diff-scripts #diff-htfonts
+diff-all: diff-src diff-scripts diff-htfonts
@echo; echo '>>> $@'
-for f in $(inst_dir_4ht)/*; do $(diff) $$f .; done \
| tee /tmp/u | egrep -v '^ *[-+]%|^@@ |^- *$$|-1.version' \
@@ -852,7 +843,3 @@ diff = diff -u0 --ignore-all-space --ignore-blank-lines \
croncheck: diff-all \
inst-check-copyright inst-check-files inst-check-version \
diff-htfonts
-
-# final simple abbrev for convenience.
-upmake upm:
- svn update && make
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex
index 0a596cd4639..439d4b6abea 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-ebgaramond.tex
@@ -1,10 +1,11 @@
-% $Id: tex4ht-fonts-ebgaramond.tex 792 2020-09-01 09:58:35Z michal_h21 $
+% $Id: tex4ht-fonts-ebgaramond.tex 1057 2022-01-18 09:17:45Z michal_h21 $
% etex tex4ht-fonts-ebgaramond.tex
%
-% Copyright 2018-2020 TeX Users Group
+% Copyright 2018-2021 TeX Users Group.
% Released under LPPL 1.3c+.
% See tex4ht-cpright.tex for license text.
+
\input tex4ht.sty
\Preamble{xhtml,th4,sections+}
\EndPreamble
@@ -59,7 +60,3044 @@
\fi
}
-% writing EBGaramond-Regular-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+% writing EBGaramond-Regular-inf-lgr.htf hash: 1a380cc4f870acc75e792b8544955021
+\<EBGaramond-Regular-inf-lgr\><<<
+EBGaramond-Regular-inf-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x03DB;' '' uni03DB 6
+'&#x03DB;' '' uni03DB 7
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'&#x03D9;' '' uni03D9 19
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'&#x03E1;' '' uni03E1 27
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sinf 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sinf 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sinf 40
+')' '' parenright.sinf 41
+'*' '' asterisk.sinf 42
+'+' '' plus.sinf 43
+',' '' comma.sinf 44
+'-' '' hyphen.sinf 45
+'.' '' period.sinf 46
+'/' '' slash.sinf 47
+'&#x2080;' '' uni2080 48
+'&#x2081;' '' uni2081 49
+'&#x2082;' '' uni2082 50
+'&#x2083;' '' uni2083 51
+'&#x2084;' '' uni2084 52
+'&#x2085;' '' uni2085 53
+'&#x2086;' '' uni2086 54
+'&#x2087;' '' uni2087 55
+'&#x2088;' '' uni2088 56
+'&#x2089;' '' uni2089 57
+':' '' colon.sinf 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sinf 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sinf 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sinf 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sinf 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'&#x03DD;' '' uni03DD 147
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Regular-inf-lgr 0 255
+htfcss: EBGaramond-Regular-inf-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-inf-lgr}{unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-lgr}{}
+% writing EBGaramond-Italic-inf-lgr.htf hash: 622dcee15a825c0e450fcf8c448f9229
+\<EBGaramond-Italic-inf-lgr\><<<
+EBGaramond-Italic-inf-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'' ''
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'' ''
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sinf 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sinf 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sinf 40
+')' '' parenright.sinf 41
+'*' '' asterisk.sinf 42
+'+' '' plus.sinf 43
+',' '' comma.sinf 44
+'-' '' hyphen.sinf 45
+'.' '' period.sinf 46
+'/' '' slash.sinf 47
+'&#x2080;' '' uni2080 48
+'&#x2081;' '' uni2081 49
+'&#x2082;' '' uni2082 50
+'&#x2083;' '' uni2083 51
+'&#x2084;' '' uni2084 52
+'&#x2085;' '' uni2085 53
+'&#x2086;' '' uni2086 54
+'&#x2087;' '' uni2087 55
+'&#x2088;' '' uni2088 56
+'&#x2089;' '' uni2089 57
+':' '' colon.sinf 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sinf 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sinf 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sinf 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sinf 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'' ''
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Italic-inf-lgr 0 255
+htfcss: EBGaramond-Italic-inf-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-inf-lgr}{unicode/EB_Garamond_Italic/EBGaramond-Italic-inf-lgr}{}
+% writing EBGaramond-SemiBold-inf-lgr.htf hash: 1a380cc4f870acc75e792b8544955021
+\<EBGaramond-SemiBold-inf-lgr\><<<
+.EBGaramond-Regular-inf-lgr
+htfcss: EBGaramond-SemiBold-inf-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-inf-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-inf-lgr.htf hash: 622dcee15a825c0e450fcf8c448f9229
+\<EBGaramond-SemiBoldItalic-inf-lgr\><<<
+.EBGaramond-Italic-inf-lgr
+htfcss: EBGaramond-SemiBoldItalic-inf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-inf-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-lgr}{}
+% writing EBGaramond-Bold-inf-lgr.htf hash: 1a380cc4f870acc75e792b8544955021
+\<EBGaramond-Bold-inf-lgr\><<<
+.EBGaramond-Regular-inf-lgr
+htfcss: EBGaramond-Bold-inf-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-inf-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-inf-lgr}{}
+% writing EBGaramond-BoldItalic-inf-lgr.htf hash: 622dcee15a825c0e450fcf8c448f9229
+\<EBGaramond-BoldItalic-inf-lgr\><<<
+.EBGaramond-Italic-inf-lgr
+htfcss: EBGaramond-BoldItalic-inf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-inf-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-lgr}{}
+% writing EBGaramond-Medium-inf-lgr.htf hash: 1a380cc4f870acc75e792b8544955021
+\<EBGaramond-Medium-inf-lgr\><<<
+.EBGaramond-Regular-inf-lgr
+htfcss: EBGaramond-Medium-inf-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-inf-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-inf-lgr}{}
+% writing EBGaramond-MediumItalic-inf-lgr.htf hash: 622dcee15a825c0e450fcf8c448f9229
+\<EBGaramond-MediumItalic-inf-lgr\><<<
+.EBGaramond-Italic-inf-lgr
+htfcss: EBGaramond-MediumItalic-inf-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-inf-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-lgr}{}
+% writing EBGaramond-ExtraBold-inf-lgr.htf hash: 1a380cc4f870acc75e792b8544955021
+\<EBGaramond-ExtraBold-inf-lgr\><<<
+.EBGaramond-Regular-inf-lgr
+htfcss: EBGaramond-ExtraBold-inf-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-inf-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-inf-lgr.htf hash: 622dcee15a825c0e450fcf8c448f9229
+\<EBGaramond-ExtraBoldItalic-inf-lgr\><<<
+.EBGaramond-Italic-inf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-inf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-inf-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-lgr}{}
+% font parser error: Cannot load font EBGaramondInitials-tlf-lgr
+% writing EBGaramond-Regular-lf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Regular-lf-sc-lgr\><<<
+EBGaramond-Regular-lf-sc-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x03DB;' '' uni03DB 6
+'&#x03DB;' '' uni03DB 7
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha.sc 14
+'&#x03CB;' '' upsilondieresis.sc 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'&#x03D9;' '' uni03D9 19
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'&#x03E1;' '' uni03E1 27
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron.sc 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sc 33
+'&#x00A8;' '' dieresis.sc 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sc 37
+'&#x00B7;' '' periodcentered.sc 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sc 40
+')' '' parenright.sc 41
+'*' '' asterisk.sc 42
+'+' '' plus.sc 43
+',' '' comma.sc 44
+'-' '' hyphen.sc 45
+'.' '' period.sc 46
+'/' '' slash.sc 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon.sc 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sc 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sc 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sc 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sc 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha.sc 97
+'&#x03B2;' '' beta.sc 98
+'&#x03C2;' '' uni03C2.sc 99
+'&#x03B4;' '' delta.sc 100
+'&#x03B5;' '' epsilon.sc 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma.sc 103
+'&#x03B7;' '' eta.sc 104
+'&#x03B9;' '' iota.sc 105
+'&#x03B8;' '' theta.sc 106
+'&#x03BA;' '' kappa.sc 107
+'&#x03BB;' '' lambda.sc 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu.sc 110
+'&#x03BF;' '' omicron.sc 111
+'&#x03C0;' '' pi.sc 112
+'&#x03C7;' '' chi.sc 113
+'&#x03C1;' '' rho.sc 114
+'&#x03C3;' '' sigma.sc 115
+'&#x03C4;' '' tau.sc 116
+'&#x03C5;' '' upsilon.sc 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega.sc 119
+'&#x03BE;' '' xi.sc 120
+'&#x03C8;' '' psi.sc 121
+'&#x03B6;' '' zeta.sc 122
+'&#x00AB;' '' guillemotleft.sc 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright.sc 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos.sc 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'&#x03DD;' '' uni03DD 147
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos.sc 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos.sc 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos.sc 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos.sc 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos.sc 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos.sc 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis.sc 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos.sc 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis.sc 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos.sc 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Regular-lf-sc-lgr 0 255
+htfcss: EBGaramond-Regular-lf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-lf-sc-lgr}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-lgr}{}
+% writing EBGaramond-Regular-lf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-lf-lgr\><<<
+EBGaramond-Regular-lf-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x03DB;' '' uni03DB 6
+'&#x03DB;' '' uni03DB 7
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'&#x03D9;' '' uni03D9 19
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'&#x03E1;' '' uni03E1 27
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft 40
+')' '' parenright 41
+'*' '' asterisk 42
+'+' '' plus 43
+',' '' comma 44
+'-' '' hyphen 45
+'.' '' period 46
+'/' '' slash 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'=' '' equal 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'&#x03DD;' '' uni03DD 147
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Regular-lf-lgr 0 255
+htfcss: EBGaramond-Regular-lf-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-lf-lgr}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-lgr}{}
+% writing EBGaramond-Italic-lf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-lf-lgr\><<<
+EBGaramond-Italic-lf-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'' ''
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'' ''
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft 40
+')' '' parenright 41
+'*' '' asterisk 42
+'+' '' plus 43
+',' '' comma 44
+'-' '' hyphen 45
+'.' '' period 46
+'/' '' slash 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'=' '' equal 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'' ''
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Italic-lf-lgr 0 255
+htfcss: EBGaramond-Italic-lf-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-lgr}{unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-lgr}{}
+% writing EBGaramond-Italic-lf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-Italic-lf-sc-lgr\><<<
+EBGaramond-Italic-lf-sc-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'' ''
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'' ''
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron.sc 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sc 33
+'&#x00A8;' '' dieresis.sc 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sc 37
+'&#x00B7;' '' periodcentered.sc 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sc 40
+')' '' parenright.sc 41
+'*' '' asterisk.sc 42
+'+' '' plus.sc 43
+',' '' comma.sc 44
+'-' '' hyphen.sc 45
+'.' '' period.sc 46
+'/' '' slash.sc 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon.sc 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sc 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sc 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sc 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sc 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft.sc 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright.sc 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'' ''
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Italic-lf-sc-lgr 0 255
+htfcss: EBGaramond-Italic-lf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-sc-lgr}{unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-lgr}{}
+% writing EBGaramond-Italic-lf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-lf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-lf-swash-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-swash-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-lgr}{}
+% writing EBGaramond-Regular-lf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-lf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-lf-swash-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-lf-swash-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-lgr}{}
+% writing EBGaramond-SemiBold-lf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-SemiBold-lf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-SemiBold-lf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-lf-sc-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-lgr}{}
+% writing EBGaramond-SemiBold-lf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-lf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-lf-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-lf-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-lf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-lf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-lf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-lf-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-lf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-SemiBoldItalic-lf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-SemiBoldItalic-lf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-lf-sc-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-lgr}{}
+% writing EBGaramond-SemiBoldItalic-lf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-lf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-lf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-lf-swash-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-lgr}{}
+% writing EBGaramond-SemiBold-lf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-lf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-lf-swash-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-lf-swash-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-lgr}{}
+% writing EBGaramond-Bold-lf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Bold-lf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Bold-lf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-lf-sc-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-lgr}{}
+% writing EBGaramond-Bold-lf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-lf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-lf-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-lf-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-lgr}{}
+% writing EBGaramond-BoldItalic-lf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-lf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-lf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-lf-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-lgr}{}
+% writing EBGaramond-BoldItalic-lf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-BoldItalic-lf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-BoldItalic-lf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-lf-sc-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-lgr}{}
+% writing EBGaramond-BoldItalic-lf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-lf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-lf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-lf-swash-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-lgr}{}
+% writing EBGaramond-Bold-lf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-lf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-lf-swash-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-lf-swash-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-lgr}{}
+% writing EBGaramond-Medium-lf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Medium-lf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Medium-lf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-lf-sc-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-lgr}{}
+% writing EBGaramond-Medium-lf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-lf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-lf-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-lf-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-lgr}{}
+% writing EBGaramond-MediumItalic-lf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-lf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-lf-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-lf-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-lgr}{}
+% writing EBGaramond-MediumItalic-lf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-MediumItalic-lf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-MediumItalic-lf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-lf-sc-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-lgr}{}
+% writing EBGaramond-MediumItalic-lf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-lf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-lf-swash-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-lf-swash-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-lgr}{}
+% writing EBGaramond-Medium-lf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-lf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-lf-swash-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-lf-swash-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-lf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-ExtraBold-lf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-ExtraBold-lf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-lf-sc-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-lgr}{}
+% writing EBGaramond-ExtraBold-lf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-lf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-lf-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-lf-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-lf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-lf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-lf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-lf-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-lf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-ExtraBoldItalic-lf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-ExtraBoldItalic-lf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-lf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-lf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-lf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-lf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-lf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-lf-swash-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-lf-swash-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-lgr}{}
+% writing EBGaramond-Regular-osf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Regular-osf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Regular-osf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-osf-sc-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-lgr}{}
+% writing EBGaramond-Regular-osf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-osf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-osf-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-osf-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-lgr}{}
+% writing EBGaramond-Italic-osf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-osf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-osf-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-osf-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-lgr}{}
+% writing EBGaramond-Italic-osf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-Italic-osf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-Italic-osf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-osf-sc-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-lgr}{}
+% writing EBGaramond-Italic-osf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-osf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-osf-swash-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-osf-swash-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-lgr}{}
+% writing EBGaramond-Regular-osf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-osf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-osf-swash-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-osf-swash-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-lgr}{}
+% writing EBGaramond-SemiBold-osf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-SemiBold-osf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-SemiBold-osf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-osf-sc-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-lgr}{}
+% writing EBGaramond-SemiBold-osf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-osf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-osf-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-osf-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-osf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-osf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-osf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-osf-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-osf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-SemiBoldItalic-osf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-SemiBoldItalic-osf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-osf-sc-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-lgr}{}
+% writing EBGaramond-SemiBoldItalic-osf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-osf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-osf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-osf-swash-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-lgr}{}
+% writing EBGaramond-SemiBold-osf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-osf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-osf-swash-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-osf-swash-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-lgr}{}
+% writing EBGaramond-Bold-osf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Bold-osf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Bold-osf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-osf-sc-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-lgr}{}
+% writing EBGaramond-Bold-osf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-osf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-osf-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-osf-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-lgr}{}
+% writing EBGaramond-BoldItalic-osf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-osf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-osf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-osf-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-lgr}{}
+% writing EBGaramond-BoldItalic-osf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-BoldItalic-osf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-BoldItalic-osf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-osf-sc-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-lgr}{}
+% writing EBGaramond-BoldItalic-osf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-osf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-osf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-osf-swash-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-lgr}{}
+% writing EBGaramond-Bold-osf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-osf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-osf-swash-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-osf-swash-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-lgr}{}
+% writing EBGaramond-Medium-osf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Medium-osf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Medium-osf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-osf-sc-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-lgr}{}
+% writing EBGaramond-Medium-osf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-osf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-osf-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-osf-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-lgr}{}
+% writing EBGaramond-MediumItalic-osf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-osf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-osf-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-osf-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-lgr}{}
+% writing EBGaramond-MediumItalic-osf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-MediumItalic-osf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-MediumItalic-osf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-osf-sc-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-lgr}{}
+% writing EBGaramond-MediumItalic-osf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-osf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-osf-swash-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-osf-swash-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-lgr}{}
+% writing EBGaramond-Medium-osf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-osf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-osf-swash-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-osf-swash-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-osf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-ExtraBold-osf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-ExtraBold-osf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-osf-sc-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-lgr}{}
+% writing EBGaramond-ExtraBold-osf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-osf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-osf-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-osf-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-osf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-osf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-osf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-osf-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-osf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-ExtraBoldItalic-osf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-ExtraBoldItalic-osf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-osf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-osf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-osf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-osf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-osf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-osf-swash-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-osf-swash-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-lgr}{}
+% writing EBGaramond-Regular-sup-lgr.htf hash: 3f4813f138c30cc965d5f16806f2afa3
+\<EBGaramond-Regular-sup-lgr\><<<
+EBGaramond-Regular-sup-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x03DB;' '' uni03DB 6
+'&#x03DB;' '' uni03DB 7
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'&#x03D9;' '' uni03D9 19
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'&#x03E1;' '' uni03E1 27
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sups 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sups 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sups 40
+')' '' parenright.sups 41
+'*' '' asterisk.sups 42
+'+' '' plus.sups 43
+',' '' comma.sups 44
+'-' '' hyphen.sups 45
+'.' '' period.sups 46
+'/' '' slash.sups 47
+'&#x2070;' '' uni2070 48
+'&#x00B9;' '' uni00B9 49
+'&#x00B2;' '' uni00B2 50
+'&#x00B3;' '' uni00B3 51
+'&#x2074;' '' uni2074 52
+'&#x2075;' '' uni2075 53
+'&#x2076;' '' uni2076 54
+'&#x2077;' '' uni2077 55
+'&#x2078;' '' uni2078 56
+'&#x2079;' '' uni2079 57
+':' '' colon.sups 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sups 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sups 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sups 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sups 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'&#x03DD;' '' uni03DD 147
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Regular-sup-lgr 0 255
+htfcss: EBGaramond-Regular-sup-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-sup-lgr}{unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-lgr}{}
+% writing EBGaramond-Italic-sup-lgr.htf hash: 0dd04963a7c5657ef4a0b72e9e75411d
+\<EBGaramond-Italic-sup-lgr\><<<
+EBGaramond-Italic-sup-lgr 0 255
+'&#x2013;' '' endash 0
+'&#x032F;' '' uni032F 1
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x1FBE;' '' uni1FBE 8
+'&#x1FBC;' '' uni1FBC 9
+'&#x1FCC;' '' uni1FCC 10
+'&#x1FFC;' '' uni1FFC 11
+'&#x0391;' '' Alpha 12
+'&#x03AB;' '' Upsilondieresis 13
+'&#x03B1;' '' alpha 14
+'&#x03CB;' '' upsilondieresis 15
+'&#x0316;' '' uni0316 16
+'&#x0317;' '' uni0317 17
+'' ''
+'' ''
+'&#x032E;' '' uni032E 20
+'' ''
+'' ''
+'' ''
+'&#x20AC;' '' Euro 24
+'&#x2030;' '' perthousand 25
+'&#x0259;' '' uni0259 26
+'' ''
+'&#x2018;' '' quoteleft 28
+'&#x2019;' '' quoteright 29
+'&#x02D8;' '' breve 30
+'&#x00AF;' '' macron 31
+'&#x1FC1;' '' uni1FC1 32
+'!' '' exclam.sups 33
+'&#x00A8;' '' dieresis 34
+'&#x0385;' '' dieresistonos 35
+'&#x1FED;' '' uni1FED 36
+'%' '' percent.sups 37
+'&#x00B7;' '' periodcentered 38
+'&#x0384;' '' tonos 39
+'(' '' parenleft.sups 40
+')' '' parenright.sups 41
+'*' '' asterisk.sups 42
+'+' '' plus.sups 43
+',' '' comma.sups 44
+'-' '' hyphen.sups 45
+'.' '' period.sups 46
+'/' '' slash.sups 47
+'&#x2070;' '' uni2070 48
+'&#x00B9;' '' uni00B9 49
+'&#x00B2;' '' uni00B2 50
+'&#x00B3;' '' uni00B3 51
+'&#x2074;' '' uni2074 52
+'&#x2075;' '' uni2075 53
+'&#x2076;' '' uni2076 54
+'&#x2077;' '' uni2077 55
+'&#x2078;' '' uni2078 56
+'&#x2079;' '' uni2079 57
+':' '' colon.sups 58
+'&#x0387;' '' anoteleia 59
+'&#x1FFE;' '' uni1FFE 60
+'&#xa;' '' equal.sups 61
+'&#x1FBF;' '' uni1FBF 62
+';' '' semicolon.sups 63
+'&#x1FDF;' '' uni1FDF 64
+'&#x0391;' '' Alpha 65
+'&#x0392;' '' Beta 66
+'&#x1FDD;' '' uni1FDD 67
+'&#x2206;' '' uni2206 68
+'&#x0395;' '' Epsilon 69
+'&#x03A6;' '' Phi 70
+'&#x0393;' '' Gamma 71
+'&#x0397;' '' Eta 72
+'&#x0399;' '' Iota 73
+'&#x0398;' '' Theta 74
+'&#x039A;' '' Kappa 75
+'&#x039B;' '' Lambda 76
+'&#x039C;' '' Mu 77
+'&#x039D;' '' Nu 78
+'&#x039F;' '' Omicron 79
+'&#x03A0;' '' Pi 80
+'&#x03A7;' '' Chi 81
+'&#x03A1;' '' Rho 82
+'&#x03A3;' '' Sigma 83
+'&#x03A4;' '' Tau 84
+'&#x03A5;' '' Upsilon 85
+'&#x1FDE;' '' uni1FDE 86
+'&#x2126;' '' uni2126 87
+'&#x039E;' '' Xi 88
+'&#x03A8;' '' Psi 89
+'&#x0396;' '' Zeta 90
+'[' '' bracketleft.sups 91
+'&#x1FCF;' '' uni1FCF 92
+']' '' bracketright.sups 93
+'&#x1FCE;' '' uni1FCE 94
+'&#x1FCD;' '' uni1FCD 95
+'&#x1FEF;' '' uni1FEF 96
+'&#x03B1;' '' alpha 97
+'&#x03B2;' '' beta 98
+'&#x03C2;' '' uni03C2 99
+'&#x03B4;' '' delta 100
+'&#x03B5;' '' epsilon 101
+'&#x03D5;' '' uni03D5 102
+'&#x03B3;' '' gamma 103
+'&#x03B7;' '' eta 104
+'&#x03B9;' '' iota 105
+'&#x03B8;' '' theta 106
+'&#x03BA;' '' kappa 107
+'&#x03BB;' '' lambda 108
+'&#x00B5;' '' uni00B5 109
+'&#x03BD;' '' nu 110
+'&#x03BF;' '' omicron 111
+'&#x03C0;' '' pi 112
+'&#x03C7;' '' chi 113
+'&#x03C1;' '' rho 114
+'&#x03C3;' '' sigma 115
+'&#x03C4;' '' tau 116
+'&#x03C5;' '' upsilon 117
+'&#x200C;' '' uni200C 118
+'&#x03C9;' '' omega 119
+'&#x03BE;' '' xi 120
+'&#x03C8;' '' psi 121
+'&#x03B6;' '' zeta 122
+'&#x00AB;' '' guillemotleft 123
+'&#x037A;' '' uni037A 124
+'&#x00BB;' '' guillemotright 125
+'&#x1FC0;' '' uni1FC0 126
+'&#x2014;' '' emdash 127
+'&#x1F70;' '' uni1F70 128
+'&#x1F01;' '' uni1F01 129
+'&#x1F00;' '' uni1F00 130
+'&#x1F03;' '' uni1F03 131
+'&#x1FB2;' '' uni1FB2 132
+'&#x1F81;' '' uni1F81 133
+'&#x1F80;' '' uni1F80 134
+'&#x1F83;' '' uni1F83 135
+'&#x03AC;' '' alphatonos 136
+'&#x1F05;' '' uni1F05 137
+'&#x1F04;' '' uni1F04 138
+'&#x1F02;' '' uni1F02 139
+'&#x1FB4;' '' uni1FB4 140
+'&#x1F85;' '' uni1F85 141
+'&#x1F84;' '' uni1F84 142
+'&#x1F82;' '' uni1F82 143
+'&#x1FB6;' '' uni1FB6 144
+'&#x1F07;' '' uni1F07 145
+'&#x1F06;' '' uni1F06 146
+'' ''
+'&#x1FB7;' '' uni1FB7 148
+'&#x1F87;' '' uni1F87 149
+'&#x1F86;' '' uni1F86 150
+'&#x038C;' '' Omicrontonos 151
+'&#x1F74;' '' uni1F74 152
+'&#x1F21;' '' uni1F21 153
+'&#x1F20;' '' uni1F20 154
+'&#x038A;' '' Iotatonos 155
+'&#x1FC2;' '' uni1FC2 156
+'&#x1F91;' '' uni1F91 157
+'&#x1F90;' '' uni1F90 158
+'&#x0389;' '' Etatonos 159
+'&#x03AE;' '' etatonos 160
+'&#x1F25;' '' uni1F25 161
+'&#x1F24;' '' uni1F24 162
+'&#x1F23;' '' uni1F23 163
+'&#x1FC4;' '' uni1FC4 164
+'&#x1F95;' '' uni1F95 165
+'&#x1F94;' '' uni1F94 166
+'&#x1F93;' '' uni1F93 167
+'&#x1FC6;' '' uni1FC6 168
+'&#x1F27;' '' uni1F27 169
+'&#x1F26;' '' uni1F26 170
+'&#x1F22;' '' uni1F22 171
+'&#x1FC7;' '' uni1FC7 172
+'&#x1F97;' '' uni1F97 173
+'&#x1F96;' '' uni1F96 174
+'&#x1F92;' '' uni1F92 175
+'&#x1F7C;' '' uni1F7C 176
+'&#x1F61;' '' uni1F61 177
+'&#x1F60;' '' uni1F60 178
+'&#x1F63;' '' uni1F63 179
+'&#x1FF2;' '' uni1FF2 180
+'&#x1FA1;' '' uni1FA1 181
+'&#x1FA0;' '' uni1FA0 182
+'&#x1FA3;' '' uni1FA3 183
+'&#x03CE;' '' omegatonos 184
+'&#x1F65;' '' uni1F65 185
+'&#x1F64;' '' uni1F64 186
+'&#x1F62;' '' uni1F62 187
+'&#x1FF4;' '' uni1FF4 188
+'&#x1FA5;' '' uni1FA5 189
+'&#x1FA4;' '' uni1FA4 190
+'&#x1FA2;' '' uni1FA2 191
+'&#x1FF6;' '' uni1FF6 192
+'&#x1F67;' '' uni1F67 193
+'&#x1F66;' '' uni1F66 194
+'&#x03DC;' '' uni03DC 195
+'&#x1FF7;' '' uni1FF7 196
+'&#x1FA7;' '' uni1FA7 197
+'&#x1FA6;' '' uni1FA6 198
+'&#x0388;' '' Epsilontonos 199
+'&#x1F76;' '' uni1F76 200
+'&#x1F31;' '' uni1F31 201
+'&#x1F30;' '' uni1F30 202
+'&#x1F33;' '' uni1F33 203
+'&#x1F7A;' '' uni1F7A 204
+'&#x1F51;' '' uni1F51 205
+'&#x1F50;' '' uni1F50 206
+'&#x1F53;' '' uni1F53 207
+'&#x03AF;' '' iotatonos 208
+'&#x1F35;' '' uni1F35 209
+'&#x1F34;' '' uni1F34 210
+'&#x1F32;' '' uni1F32 211
+'&#x03CD;' '' upsilontonos 212
+'&#x1F55;' '' uni1F55 213
+'&#x1F54;' '' uni1F54 214
+'&#x1F52;' '' uni1F52 215
+'&#x1FD6;' '' uni1FD6 216
+'&#x1F37;' '' uni1F37 217
+'&#x1F36;' '' uni1F36 218
+'&#x03AA;' '' Iotadieresis 219
+'&#x1FE6;' '' uni1FE6 220
+'&#x1F57;' '' uni1F57 221
+'&#x1F56;' '' uni1F56 222
+'&#x03AB;' '' Upsilondieresis 223
+'&#x1F72;' '' uni1F72 224
+'&#x1F11;' '' uni1F11 225
+'&#x1F10;' '' uni1F10 226
+'&#x1F13;' '' uni1F13 227
+'&#x1F78;' '' uni1F78 228
+'&#x1F41;' '' uni1F41 229
+'&#x1F40;' '' uni1F40 230
+'&#x1F43;' '' uni1F43 231
+'&#x03AD;' '' epsilontonos 232
+'&#x1F15;' '' uni1F15 233
+'&#x1F14;' '' uni1F14 234
+'&#x1F12;' '' uni1F12 235
+'&#x03CC;' '' omicrontonos 236
+'&#x1F45;' '' uni1F45 237
+'&#x1F44;' '' uni1F44 238
+'&#x1F42;' '' uni1F42 239
+'&#x03CA;' '' iotadieresis 240
+'&#x1FD2;' '' uni1FD2 241
+'&#x0390;' '' iotadieresistonos 242
+'&#x1FD7;' '' uni1FD7 243
+'&#x03CB;' '' upsilondieresis 244
+'&#x1FE2;' '' uni1FE2 245
+'&#x03B0;' '' upsilondieresistonos 246
+'&#x1FE7;' '' uni1FE7 247
+'&#x1FB3;' '' uni1FB3 248
+'&#x1FC3;' '' uni1FC3 249
+'&#x1FF3;' '' uni1FF3 250
+'&#x1FE5;' '' uni1FE5 251
+'&#x1FE4;' '' uni1FE4 252
+'&#x0386;' '' Alphatonos 253
+'&#x0374;' '' uni0374 254
+'&#x0375;' '' uni0375 255
+EBGaramond-Italic-sup-lgr 0 255
+htfcss: EBGaramond-Italic-sup-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-sup-lgr}{unicode/EB_Garamond_Italic/EBGaramond-Italic-sup-lgr}{}
+% writing EBGaramond-SemiBold-sup-lgr.htf hash: 3f4813f138c30cc965d5f16806f2afa3
+\<EBGaramond-SemiBold-sup-lgr\><<<
+.EBGaramond-Regular-sup-lgr
+htfcss: EBGaramond-SemiBold-sup-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-sup-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-lgr}{}
+% writing EBGaramond-SemiBoldItalic-sup-lgr.htf hash: 0dd04963a7c5657ef4a0b72e9e75411d
+\<EBGaramond-SemiBoldItalic-sup-lgr\><<<
+.EBGaramond-Italic-sup-lgr
+htfcss: EBGaramond-SemiBoldItalic-sup-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-sup-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-lgr}{}
+% writing EBGaramond-Bold-sup-lgr.htf hash: 3f4813f138c30cc965d5f16806f2afa3
+\<EBGaramond-Bold-sup-lgr\><<<
+.EBGaramond-Regular-sup-lgr
+htfcss: EBGaramond-Bold-sup-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-sup-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-sup-lgr}{}
+% writing EBGaramond-BoldItalic-sup-lgr.htf hash: 0dd04963a7c5657ef4a0b72e9e75411d
+\<EBGaramond-BoldItalic-sup-lgr\><<<
+.EBGaramond-Italic-sup-lgr
+htfcss: EBGaramond-BoldItalic-sup-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-sup-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-lgr}{}
+% writing EBGaramond-Medium-sup-lgr.htf hash: 3f4813f138c30cc965d5f16806f2afa3
+\<EBGaramond-Medium-sup-lgr\><<<
+.EBGaramond-Regular-sup-lgr
+htfcss: EBGaramond-Medium-sup-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-sup-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-sup-lgr}{}
+% writing EBGaramond-MediumItalic-sup-lgr.htf hash: 0dd04963a7c5657ef4a0b72e9e75411d
+\<EBGaramond-MediumItalic-sup-lgr\><<<
+.EBGaramond-Italic-sup-lgr
+htfcss: EBGaramond-MediumItalic-sup-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-sup-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-lgr}{}
+% writing EBGaramond-ExtraBold-sup-lgr.htf hash: 3f4813f138c30cc965d5f16806f2afa3
+\<EBGaramond-ExtraBold-sup-lgr\><<<
+.EBGaramond-Regular-sup-lgr
+htfcss: EBGaramond-ExtraBold-sup-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-sup-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-sup-lgr.htf hash: 0dd04963a7c5657ef4a0b72e9e75411d
+\<EBGaramond-ExtraBoldItalic-sup-lgr\><<<
+.EBGaramond-Italic-sup-lgr
+htfcss: EBGaramond-ExtraBoldItalic-sup-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-sup-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-lgr}{}
+% writing EBGaramond-Regular-tlf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Regular-tlf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Regular-tlf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tlf-sc-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-lgr}{}
+% writing EBGaramond-Regular-tlf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-tlf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-tlf-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tlf-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-lgr}{}
+% writing EBGaramond-Italic-tlf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-tlf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-tlf-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tlf-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-lgr}{}
+% writing EBGaramond-Italic-tlf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-Italic-tlf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-Italic-tlf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tlf-sc-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-lgr}{}
+% writing EBGaramond-Italic-tlf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-tlf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-tlf-swash-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tlf-swash-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-lgr}{}
+% writing EBGaramond-Regular-tlf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-tlf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-tlf-swash-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tlf-swash-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-lgr}{}
+% writing EBGaramond-SemiBold-tlf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-SemiBold-tlf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-SemiBold-tlf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tlf-sc-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-lgr}{}
+% writing EBGaramond-SemiBold-tlf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-tlf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-tlf-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tlf-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tlf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-tlf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-tlf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tlf-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tlf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-SemiBoldItalic-tlf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-SemiBoldItalic-tlf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tlf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-tlf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-tlf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-lgr}{}
+% writing EBGaramond-SemiBold-tlf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-tlf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-tlf-swash-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tlf-swash-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-lgr}{}
+% writing EBGaramond-Bold-tlf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Bold-tlf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Bold-tlf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tlf-sc-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-lgr}{}
+% writing EBGaramond-Bold-tlf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-tlf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-tlf-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tlf-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-lgr}{}
+% writing EBGaramond-BoldItalic-tlf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-tlf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-tlf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tlf-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-lgr}{}
+% writing EBGaramond-BoldItalic-tlf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-BoldItalic-tlf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-BoldItalic-tlf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tlf-sc-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-lgr}{}
+% writing EBGaramond-BoldItalic-tlf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-tlf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-tlf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tlf-swash-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-lgr}{}
+% writing EBGaramond-Bold-tlf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-tlf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-tlf-swash-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tlf-swash-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-lgr}{}
+% writing EBGaramond-Medium-tlf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Medium-tlf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Medium-tlf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tlf-sc-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-lgr}{}
+% writing EBGaramond-Medium-tlf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-tlf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-tlf-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tlf-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-lgr}{}
+% writing EBGaramond-MediumItalic-tlf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-tlf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-tlf-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tlf-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-lgr}{}
+% writing EBGaramond-MediumItalic-tlf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-MediumItalic-tlf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-MediumItalic-tlf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tlf-sc-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-lgr}{}
+% writing EBGaramond-MediumItalic-tlf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-tlf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-tlf-swash-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tlf-swash-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-lgr}{}
+% writing EBGaramond-Medium-tlf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-tlf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-tlf-swash-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tlf-swash-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-tlf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-ExtraBold-tlf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-ExtraBold-tlf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tlf-sc-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-lgr}{}
+% writing EBGaramond-ExtraBold-tlf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-tlf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-tlf-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tlf-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-tlf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tlf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-ExtraBoldItalic-tlf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-tlf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-tlf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-tlf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-tlf-swash-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tlf-swash-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-lgr}{}
+% writing EBGaramond-Regular-tosf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Regular-tosf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Regular-tosf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tosf-sc-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-lgr}{}
+% writing EBGaramond-Regular-tosf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-tosf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-tosf-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tosf-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-lgr}{}
+% writing EBGaramond-Italic-tosf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-tosf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-tosf-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tosf-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-lgr}{}
+% writing EBGaramond-Italic-tosf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-Italic-tosf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-Italic-tosf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tosf-sc-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-lgr}{}
+% writing EBGaramond-Italic-tosf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-Italic-tosf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-Italic-tosf-swash-lgr font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-tosf-swash-lgr}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-lgr}{}
+% writing EBGaramond-Regular-tosf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Regular-tosf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Regular-tosf-swash-lgr font-family: 'EB Garamond Regular', serif;
+
+>>>
+\AddFont{EBGaramond-Regular-tosf-swash-lgr}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-lgr}{}
+% writing EBGaramond-SemiBold-tosf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-SemiBold-tosf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-SemiBold-tosf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tosf-sc-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-lgr}{}
+% writing EBGaramond-SemiBold-tosf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-tosf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-tosf-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tosf-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tosf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-tosf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-tosf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tosf-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tosf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-SemiBoldItalic-tosf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-SemiBoldItalic-tosf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-lgr}{}
+% writing EBGaramond-SemiBoldItalic-tosf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-SemiBoldItalic-tosf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-SemiBoldItalic-tosf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-lgr}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-lgr}{}
+% writing EBGaramond-SemiBold-tosf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-SemiBold-tosf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-SemiBold-tosf-swash-lgr font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
+
+>>>
+\AddFont{EBGaramond-SemiBold-tosf-swash-lgr}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-lgr}{}
+% writing EBGaramond-Bold-tosf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Bold-tosf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Bold-tosf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tosf-sc-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-lgr}{}
+% writing EBGaramond-Bold-tosf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-tosf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-tosf-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tosf-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-lgr}{}
+% writing EBGaramond-BoldItalic-tosf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-tosf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-tosf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tosf-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-lgr}{}
+% writing EBGaramond-BoldItalic-tosf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-BoldItalic-tosf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-BoldItalic-tosf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tosf-sc-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-lgr}{}
+% writing EBGaramond-BoldItalic-tosf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-BoldItalic-tosf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-BoldItalic-tosf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-BoldItalic-tosf-swash-lgr}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-lgr}{}
+% writing EBGaramond-Bold-tosf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Bold-tosf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Bold-tosf-swash-lgr font-weight: bold; font-family: 'EB Garamond Bold', serif;
+
+>>>
+\AddFont{EBGaramond-Bold-tosf-swash-lgr}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-lgr}{}
+% writing EBGaramond-Medium-tosf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-Medium-tosf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-Medium-tosf-sc-lgr font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tosf-sc-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-lgr}{}
+% writing EBGaramond-Medium-tosf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-tosf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-tosf-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tosf-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-lgr}{}
+% writing EBGaramond-MediumItalic-tosf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-tosf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-tosf-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tosf-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-lgr}{}
+% writing EBGaramond-MediumItalic-tosf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-MediumItalic-tosf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-MediumItalic-tosf-sc-lgr font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tosf-sc-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-lgr}{}
+% writing EBGaramond-MediumItalic-tosf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-MediumItalic-tosf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-MediumItalic-tosf-swash-lgr font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
+
+>>>
+\AddFont{EBGaramond-MediumItalic-tosf-swash-lgr}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-lgr}{}
+% writing EBGaramond-Medium-tosf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-Medium-tosf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-Medium-tosf-swash-lgr font-family: 'EB Garamond Medium', serif;
+
+>>>
+\AddFont{EBGaramond-Medium-tosf-swash-lgr}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-tosf-sc-lgr.htf hash: adba848c0015abb70c29a9ee43bfb8d7
+\<EBGaramond-ExtraBold-tosf-sc-lgr\><<<
+.EBGaramond-Regular-lf-sc-lgr
+htfcss: EBGaramond-ExtraBold-tosf-sc-lgr font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tosf-sc-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-lgr}{}
+% writing EBGaramond-ExtraBold-tosf-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-tosf-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-tosf-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tosf-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-tosf-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tosf-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-sc-lgr.htf hash: b53740620e25e61882eca1829b1b2e38
+\<EBGaramond-ExtraBoldItalic-tosf-sc-lgr\><<<
+.EBGaramond-Italic-lf-sc-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-lgr font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-lgr}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-swash-lgr.htf hash: 3aa1d7cff79fd1618953b7c6286321cf
+\<EBGaramond-ExtraBoldItalic-tosf-swash-lgr\><<<
+.EBGaramond-Italic-lf-lgr
+htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-lgr font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-lgr}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-lgr}{}
+% writing EBGaramond-ExtraBold-tosf-swash-lgr.htf hash: ba155cbdf6fd08031455a0e9bfe0c4f1
+\<EBGaramond-ExtraBold-tosf-swash-lgr\><<<
+.EBGaramond-Regular-lf-lgr
+htfcss: EBGaramond-ExtraBold-tosf-swash-lgr font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
+
+>>>
+\AddFont{EBGaramond-ExtraBold-tosf-swash-lgr}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-lgr}{}
+% writing EBGaramond-Regular-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-Regular-inf-ly1\><<<
EBGaramond-Regular-inf-ly1 1 255
'&#x20AC;' '' Euro 1
@@ -72,11 +3110,11 @@ EBGaramond-Regular-inf-ly1 1 255
'' ''
'' ''
'&#x200C;' '' uni200C 10
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' uniFB00 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave.sinf 18
@@ -190,7 +3228,7 @@ EBGaramond-Regular-inf-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle.sinf 129
+'&#x0027;' '' quotesingle.sinf 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -321,70 +3359,70 @@ EBGaramond-Regular-inf-ly1 1 255
htfcss: EBGaramond-Regular-inf-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-inf-ly1}{unicode/EB_Garamond/EBGaramond-Regular-inf-ly1}{}
-% writing EBGaramond-Italic-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+\AddFont{EBGaramond-Regular-inf-ly1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-ly1}{}
+% writing EBGaramond-Italic-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-Italic-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-Italic-inf-ly1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-inf-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-inf-ly1}{alias/EB_Garamond/EBGaramond-Italic-inf-ly1}{}
-% writing EBGaramond-Bold-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
-\<EBGaramond-Bold-inf-ly1\><<<
+\AddFont{EBGaramond-Italic-inf-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-inf-ly1}{}
+% writing EBGaramond-SemiBold-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
+\<EBGaramond-SemiBold-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-Bold-inf-ly1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-inf-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-inf-ly1}{alias/EB_Garamond/EBGaramond-Bold-inf-ly1}{}
-% writing EBGaramond-BoldItalic-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
-\<EBGaramond-BoldItalic-inf-ly1\><<<
+\AddFont{EBGaramond-SemiBold-inf-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
+\<EBGaramond-SemiBoldItalic-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-BoldItalic-inf-ly1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-inf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-inf-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-inf-ly1}{}
-% writing EBGaramond-SemiBold-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
-\<EBGaramond-SemiBold-inf-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-inf-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-ly1}{}
+% writing EBGaramond-Bold-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
+\<EBGaramond-Bold-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-SemiBold-inf-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-inf-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-inf-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-inf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
-\<EBGaramond-SemiBoldItalic-inf-ly1\><<<
+\AddFont{EBGaramond-Bold-inf-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-inf-ly1}{}
+% writing EBGaramond-BoldItalic-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
+\<EBGaramond-BoldItalic-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-SemiBoldItalic-inf-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-inf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-inf-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ly1}{}
-% writing EBGaramond-Medium-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+\AddFont{EBGaramond-BoldItalic-inf-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-ly1}{}
+% writing EBGaramond-Medium-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-Medium-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
htfcss: EBGaramond-Medium-inf-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-inf-ly1}{alias/EB_Garamond/EBGaramond-Medium-inf-ly1}{}
-% writing EBGaramond-MediumItalic-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+\AddFont{EBGaramond-Medium-inf-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-inf-ly1}{}
+% writing EBGaramond-MediumItalic-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-MediumItalic-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-MediumItalic-inf-ly1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-inf-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-inf-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-inf-ly1}{}
-% writing EBGaramond-ExtraBold-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+\AddFont{EBGaramond-MediumItalic-inf-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-ly1}{}
+% writing EBGaramond-ExtraBold-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-ExtraBold-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-ExtraBold-inf-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-inf-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-inf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-inf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-inf-ly1.htf hash: da9aa282f23f736eb2e27c9c6f88b342
+\AddFont{EBGaramond-ExtraBold-inf-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-inf-ly1.htf hash: dd2dd279739391daa6a7e34a36eaef70
\<EBGaramond-ExtraBoldItalic-inf-ly1\><<<
.EBGaramond-Regular-inf-ly1
-htfcss: EBGaramond-ExtraBoldItalic-inf-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-inf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-inf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ly1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-inf-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-ly1}{}
% writing EBGaramondInitials-tlf-ly1.htf hash: e864e0ef6f6a2c9afa4e3d8d01d98b69
\<EBGaramondInitials-tlf-ly1\><<<
EBGaramondInitials-tlf-ly1 10 111
@@ -494,272 +3532,8 @@ EBGaramondInitials-tlf-ly1 10 111
htfcss: EBGaramondInitials-tlf-ly1 font-family: 'EB Garamond Initials', serif;
>>>
-\AddFont{EBGaramondInitials-tlf-ly1}{unicode/EB_Garamond/EBGaramondInitials-tlf-ly1}{}
-% writing EBGaramond-Regular-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Regular-lf-titling-ly1\><<<
-EBGaramond-Regular-lf-titling-ly1 0 255
-'&#xFB00;' '' f_f 0
-'&#x20AC;' '' Euro 1
-'&#xFB01;' '' f_i 2
-'&#xFB02;' '' f_l 3
-'&#x2044;' '' fraction 4
-'&#x02D9;' '' dotaccent 5
-'&#x02DD;' '' hungarumlaut 6
-'&#x02DB;' '' ogonek 7
-'&#xFB03;' '' f_f_i 8
-'&#xFB04;' '' f_f_l 9
-'&#x200C;' '' uni200C 10
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
-'&#x0131;' '' dotlessi 16
-'&#x0237;' '' uni0237 17
-'&#x60;' '' grave 18
-'&#x00B4;' '' acute 19
-'&#x02C7;' '' caron 20
-'&#x02D8;' '' breve 21
-'&#x00AF;' '' macron 22
-'&#x02DA;' '' ring 23
-'&#x00B8;' '' cedilla 24
-'&#x00DF;' '' germandbls 25
-'&#x00E6;' '' ae 26
-'&#x0153;' '' oe 27
-'&#x00F8;' '' oslash 28
-'&#x00C6;' '' AE 29
-'&#x0152;' '' OE 30
-'&#x00D8;' '' Oslash 31
-' ' '' space 32
-'!' '' exclam 33
-'"' '' quotedbl 34
-'#' '' numbersign 35
-'$' '' dollar 36
-'%' '' percent 37
-'&amp;' '' ampersand 38
-'&#x2019;' '' quoteright 39
-'(' '' parenleft 40
-')' '' parenright 41
-'*' '' asterisk 42
-'+' '' plus 43
-',' '' comma 44
-'-' '' hyphen 45
-'.' '' period 46
-'/' '' slash 47
-'0' '' zero.lf 48
-'1' '' one.lf 49
-'2' '' two.lf 50
-'3' '' three.lf 51
-'4' '' four.lf 52
-'5' '' five.lf 53
-'6' '' six.lf 54
-'7' '' seven.lf 55
-'8' '' eight.lf 56
-'9' '' nine.lf 57
-':' '' colon 58
-';' '' semicolon 59
-'&lt;' '' less 60
-'=' '' equal 61
-'&gt;' '' greater 62
-'?' '' question 63
-'@' '' at 64
-'A' '' A 65
-'B' '' B 66
-'C' '' C 67
-'D' '' D 68
-'E' '' E 69
-'F' '' F 70
-'G' '' G 71
-'H' '' H 72
-'I' '' I 73
-'J' '' J 74
-'K' '' K 75
-'L' '' L 76
-'M' '' M 77
-'N' '' N 78
-'O' '' O 79
-'P' '' P 80
-'Q' '' Q 81
-'R' '' R 82
-'S' '' S 83
-'T' '' T 84
-'U' '' U 85
-'V' '' V 86
-'W' '' W 87
-'X' '' X 88
-'Y' '' Y 89
-'Z' '' Z 90
-'[' '' bracketleft 91
-'\' '' backslash 92
-']' '' bracketright 93
-'&#x02C6;' '' circumflex 94
-'_' '' underscore 95
-'&#x2018;' '' quoteleft 96
-'a' '' a 97
-'b' '' b 98
-'c' '' c 99
-'d' '' d 100
-'e' '' e 101
-'f' '' f 102
-'g' '' g 103
-'h' '' h 104
-'i' '' i 105
-'j' '' j 106
-'k' '' k 107
-'l' '' l 108
-'m' '' m 109
-'n' '' n 110
-'o' '' o 111
-'p' '' p 112
-'q' '' q 113
-'r' '' r 114
-'s' '' s 115
-'t' '' t 116
-'u' '' u 117
-'v' '' v 118
-'w' '' w 119
-'x' '' x 120
-'y' '' y 121
-'z' '' z 122
-'{' '' braceleft 123
-'|' '' bar 124
-'}' '' braceright 125
-'&#x02DC;' '' tilde 126
-'&#x00A8;' '' dieresis 127
-'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
-'&#x201A;' '' quotesinglbase 130
-'&#x0192;' '' florin 131
-'&#x201E;' '' quotedblbase 132
-'&#x2026;' '' ellipsis 133
-'&#x2020;' '' dagger 134
-'&#x2021;' '' daggerdbl 135
-'&#x02C6;' '' circumflex 136
-'&#x2030;' '' perthousand 137
-'&#x0160;' '' Scaron 138
-'&#x2039;' '' guilsinglleft 139
-'&#x0152;' '' OE 140
-'&#x017D;' '' Zcaron 141
-'^' '' asciicircum 142
-'&#x2212;' '' minus 143
-'&#x0142;' '' lslash 144
-'&#x2018;' '' quoteleft 145
-'&#x2019;' '' quoteright 146
-'&#x201C;' '' quotedblleft 147
-'&#x201D;' '' quotedblright 148
-'&#x2022;' '' bullet 149
-'&#x2013;' '' endash 150
-'&#x2014;' '' emdash 151
-'&#x02DC;' '' tilde 152
-'&#x2122;' '' trademark 153
-'&#x0161;' '' scaron 154
-'&#x203A;' '' guilsinglright 155
-'&#x0153;' '' oe 156
-'&#x017E;' '' zcaron 157
-'~' '' asciitilde 158
-'&#x0178;' '' Ydieresis 159
-'&#x00A0;' '' uni00A0 160
-'&#x00A1;' '' exclamdown 161
-'&#x00A2;' '' cent 162
-'&#x00A3;' '' sterling 163
-'&#x00A4;' '' currency 164
-'&#x00A5;' '' yen 165
-'&#x00A6;' '' brokenbar 166
-'&#x00A7;' '' section 167
-'&#x00A8;' '' dieresis 168
-'&#x00A9;' '' copyright 169
-'&#x00AA;' '' ordfeminine 170
-'&#x00AB;' '' guillemotleft 171
-'&#x00AC;' '' logicalnot 172
-'&#x00AD;' '' uni00AD 173
-'&#x00AE;' '' registered 174
-'&#x00AF;' '' macron 175
-'&#x00B0;' '' degree 176
-'&#x00B1;' '' plusminus 177
-'&#x00B2;' '' uni00B2 178
-'&#x00B3;' '' uni00B3 179
-'&#x00B4;' '' acute 180
-'&#x00B5;' '' uni00B5 181
-'&#x00B6;' '' paragraph 182
-'&#x00B7;' '' periodcentered 183
-'&#x00B8;' '' cedilla 184
-'&#x00B9;' '' uni00B9 185
-'&#x00BA;' '' ordmasculine 186
-'&#x00BB;' '' guillemotright 187
-'&#x00BC;' '' onequarter 188
-'&#x00BD;' '' onehalf 189
-'&#x00BE;' '' threequarters 190
-'&#x00BF;' '' questiondown 191
-'&#x00C0;' '' Agrave 192
-'&#x00C1;' '' Aacute 193
-'&#x00C2;' '' Acircumflex 194
-'&#x00C3;' '' Atilde 195
-'&#x00C4;' '' Adieresis 196
-'&#x00C5;' '' Aring 197
-'&#x00C6;' '' AE 198
-'&#x00C7;' '' Ccedilla 199
-'&#x00C8;' '' Egrave 200
-'&#x00C9;' '' Eacute 201
-'&#x00CA;' '' Ecircumflex 202
-'&#x00CB;' '' Edieresis 203
-'&#x00CC;' '' Igrave 204
-'&#x00CD;' '' Iacute 205
-'&#x00CE;' '' Icircumflex 206
-'&#x00CF;' '' Idieresis 207
-'&#x00D0;' '' Eth 208
-'&#x00D1;' '' Ntilde 209
-'&#x00D2;' '' Ograve 210
-'&#x00D3;' '' Oacute 211
-'&#x00D4;' '' Ocircumflex 212
-'&#x00D5;' '' Otilde 213
-'&#x00D6;' '' Odieresis 214
-'&#x00D7;' '' multiply 215
-'&#x00D8;' '' Oslash 216
-'&#x00D9;' '' Ugrave 217
-'&#x00DA;' '' Uacute 218
-'&#x00DB;' '' Ucircumflex 219
-'&#x00DC;' '' Udieresis 220
-'&#x00DD;' '' Yacute 221
-'&#x00DE;' '' Thorn 222
-'&#x00DF;' '' germandbls 223
-'&#x00E0;' '' agrave 224
-'&#x00E1;' '' aacute 225
-'&#x00E2;' '' acircumflex 226
-'&#x00E3;' '' atilde 227
-'&#x00E4;' '' adieresis 228
-'&#x00E5;' '' aring 229
-'&#x00E6;' '' ae 230
-'&#x00E7;' '' ccedilla 231
-'&#x00E8;' '' egrave 232
-'&#x00E9;' '' eacute 233
-'&#x00EA;' '' ecircumflex 234
-'&#x00EB;' '' edieresis 235
-'&#x00EC;' '' igrave 236
-'&#x00ED;' '' iacute 237
-'&#x00EE;' '' icircumflex 238
-'&#x00EF;' '' idieresis 239
-'&#x00F0;' '' eth 240
-'&#x00F1;' '' ntilde 241
-'&#x00F2;' '' ograve 242
-'&#x00F3;' '' oacute 243
-'&#x00F4;' '' ocircumflex 244
-'&#x00F5;' '' otilde 245
-'&#x00F6;' '' odieresis 246
-'&#x00F7;' '' divide 247
-'&#x00F8;' '' oslash 248
-'&#x00F9;' '' ugrave 249
-'&#x00FA;' '' uacute 250
-'&#x00FB;' '' ucircumflex 251
-'&#x00FC;' '' udieresis 252
-'&#x00FD;' '' yacute 253
-'&#x00FE;' '' thorn 254
-'&#x00FF;' '' ydieresis 255
-EBGaramond-Regular-lf-titling-ly1 0 255
-htfcss: EBGaramond-Regular-lf-titling-ly1 font-family: 'EB Garamond Regular', serif;
-
->>>
-\AddFont{EBGaramond-Regular-lf-titling-ly1}{unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ly1}{}
-% writing EBGaramond-Regular-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramondInitials-tlf-ly1}{unicode/EB_Garamond_Initials/EBGaramondInitials-tlf-ly1}{}
+% writing EBGaramond-Regular-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Regular-lf-sc-ly1\><<<
EBGaramond-Regular-lf-sc-ly1 1 255
'&#x20AC;' '' Euro 1
@@ -772,11 +3546,11 @@ EBGaramond-Regular-lf-sc-ly1 1 255
'' ''
'' ''
'&#x200C;' '' uni200C 10
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' uniFB00 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
'&#x0131;' '' dotlessi.sc 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave.sc 18
@@ -786,7 +3560,7 @@ EBGaramond-Regular-lf-sc-ly1 1 255
'&#x00AF;' '' macron.sc 22
'&#x02DA;' '' ring 23
'&#x00B8;' '' cedilla.sc 24
-'ss' '' s.sc s.sc 25
+'s' '' s.sc s.sc 25
'&#x00E6;' '' ae.sc 26
'&#x0153;' '' oe.sc 27
'&#x00F8;' '' oslash.sc 28
@@ -890,7 +3664,7 @@ EBGaramond-Regular-lf-sc-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis.sc 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle.sc 129
+'&#x0027;' '' quotesingle.sc 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -984,7 +3758,7 @@ EBGaramond-Regular-lf-sc-ly1 1 255
'&#x00DC;' '' Udieresis 220
'&#x00DD;' '' Yacute 221
'&#x00DE;' '' Thorn 222
-'ss' '' s.sc s.sc 223
+'s' '' s.sc s.sc 223
'&#x00E0;' '' agrave.sc 224
'&#x00E1;' '' aacute.sc 225
'&#x00E2;' '' acircumflex.sc 226
@@ -1021,40 +3795,303 @@ EBGaramond-Regular-lf-sc-ly1 1 255
htfcss: EBGaramond-Regular-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-sc-ly1}{unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ly1}{}
-% writing EBGaramond-Regular-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-lf-sc-ly1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-ly1}{}
+% writing EBGaramond-Regular-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Regular-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+EBGaramond-Regular-lf-ly1 1 255
+'&#x20AC;' '' Euro 1
+'' ''
+'' ''
+'&#x2044;' '' fraction 4
+'&#x02D9;' '' dotaccent 5
+'&#x02DD;' '' hungarumlaut 6
+'&#x02DB;' '' ogonek 7
+'' ''
+'' ''
+'&#x200C;' '' uni200C 10
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' uniFB00 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
+'&#x0131;' '' dotlessi 16
+'&#x0237;' '' uni0237 17
+'&#x60;' '' grave 18
+'&#x00B4;' '' acute 19
+'&#x02C7;' '' caron 20
+'&#x02D8;' '' breve 21
+'&#x00AF;' '' macron 22
+'&#x02DA;' '' ring 23
+'&#x00B8;' '' cedilla 24
+'&#x00DF;' '' germandbls 25
+'&#x00E6;' '' ae 26
+'&#x0153;' '' oe 27
+'&#x00F8;' '' oslash 28
+'&#x00C6;' '' AE 29
+'&#x0152;' '' OE 30
+'&#x00D8;' '' Oslash 31
+' ' '' space 32
+'!' '' exclam 33
+'"' '' quotedbl 34
+'#' '' numbersign 35
+'$' '' dollar 36
+'%' '' percent 37
+'&amp;' '' ampersand 38
+'&#x2019;' '' quoteright 39
+'(' '' parenleft 40
+')' '' parenright 41
+'*' '' asterisk 42
+'+' '' plus 43
+',' '' comma 44
+'-' '' hyphen 45
+'.' '' period 46
+'/' '' slash 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon 58
+';' '' semicolon 59
+'&lt;' '' less 60
+'=' '' equal 61
+'&gt;' '' greater 62
+'?' '' question 63
+'@' '' at 64
+'A' '' A 65
+'B' '' B 66
+'C' '' C 67
+'D' '' D 68
+'E' '' E 69
+'F' '' F 70
+'G' '' G 71
+'H' '' H 72
+'I' '' I 73
+'J' '' J 74
+'K' '' K 75
+'L' '' L 76
+'M' '' M 77
+'N' '' N 78
+'O' '' O 79
+'P' '' P 80
+'Q' '' Q 81
+'R' '' R 82
+'S' '' S 83
+'T' '' T 84
+'U' '' U 85
+'V' '' V 86
+'W' '' W 87
+'X' '' X 88
+'Y' '' Y 89
+'Z' '' Z 90
+'[' '' bracketleft 91
+'\' '' backslash 92
+']' '' bracketright 93
+'&#x02C6;' '' circumflex 94
+'_' '' underscore 95
+'&#x2018;' '' quoteleft 96
+'a' '' a 97
+'b' '' b 98
+'c' '' c 99
+'d' '' d 100
+'e' '' e 101
+'f' '' f 102
+'g' '' g 103
+'h' '' h 104
+'i' '' i 105
+'j' '' j 106
+'k' '' k 107
+'l' '' l 108
+'m' '' m 109
+'n' '' n 110
+'o' '' o 111
+'p' '' p 112
+'q' '' q 113
+'r' '' r 114
+'s' '' s 115
+'t' '' t 116
+'u' '' u 117
+'v' '' v 118
+'w' '' w 119
+'x' '' x 120
+'y' '' y 121
+'z' '' z 122
+'{' '' braceleft 123
+'|' '' bar 124
+'}' '' braceright 125
+'&#x02DC;' '' tilde 126
+'&#x00A8;' '' dieresis 127
+'&#x0141;' '' Lslash 128
+'&#x0027;' '' quotesingle 129
+'&#x201A;' '' quotesinglbase 130
+'&#x0192;' '' florin 131
+'&#x201E;' '' quotedblbase 132
+'&#x2026;' '' ellipsis 133
+'&#x2020;' '' dagger 134
+'&#x2021;' '' daggerdbl 135
+'&#x02C6;' '' circumflex 136
+'&#x2030;' '' perthousand 137
+'&#x0160;' '' Scaron 138
+'&#x2039;' '' guilsinglleft 139
+'&#x0152;' '' OE 140
+'&#x017D;' '' Zcaron 141
+'^' '' asciicircum 142
+'&#x2212;' '' minus 143
+'&#x0142;' '' lslash 144
+'&#x2018;' '' quoteleft 145
+'&#x2019;' '' quoteright 146
+'&#x201C;' '' quotedblleft 147
+'&#x201D;' '' quotedblright 148
+'&#x2022;' '' bullet 149
+'&#x2013;' '' endash 150
+'&#x2014;' '' emdash 151
+'&#x02DC;' '' tilde 152
+'&#x2122;' '' trademark 153
+'&#x0161;' '' scaron 154
+'&#x203A;' '' guilsinglright 155
+'&#x0153;' '' oe 156
+'&#x017E;' '' zcaron 157
+'~' '' asciitilde 158
+'&#x0178;' '' Ydieresis 159
+'&#x00A0;' '' uni00A0 160
+'&#x00A1;' '' exclamdown 161
+'&#x00A2;' '' cent 162
+'&#x00A3;' '' sterling 163
+'&#x00A4;' '' currency 164
+'&#x00A5;' '' yen 165
+'&#x00A6;' '' brokenbar 166
+'&#x00A7;' '' section 167
+'&#x00A8;' '' dieresis 168
+'&#x00A9;' '' copyright 169
+'&#x00AA;' '' ordfeminine 170
+'&#x00AB;' '' guillemotleft 171
+'&#x00AC;' '' logicalnot 172
+'&#x00AD;' '' uni00AD 173
+'&#x00AE;' '' registered 174
+'&#x00AF;' '' macron 175
+'&#x00B0;' '' degree 176
+'&#x00B1;' '' plusminus 177
+'&#x00B2;' '' uni00B2 178
+'&#x00B3;' '' uni00B3 179
+'&#x00B4;' '' acute 180
+'&#x00B5;' '' uni00B5 181
+'&#x00B6;' '' paragraph 182
+'&#x00B7;' '' periodcentered 183
+'&#x00B8;' '' cedilla 184
+'&#x00B9;' '' uni00B9 185
+'&#x00BA;' '' ordmasculine 186
+'&#x00BB;' '' guillemotright 187
+'&#x00BC;' '' onequarter 188
+'&#x00BD;' '' onehalf 189
+'&#x00BE;' '' threequarters 190
+'&#x00BF;' '' questiondown 191
+'&#x00C0;' '' Agrave 192
+'&#x00C1;' '' Aacute 193
+'&#x00C2;' '' Acircumflex 194
+'&#x00C3;' '' Atilde 195
+'&#x00C4;' '' Adieresis 196
+'&#x00C5;' '' Aring 197
+'&#x00C6;' '' AE 198
+'&#x00C7;' '' Ccedilla 199
+'&#x00C8;' '' Egrave 200
+'&#x00C9;' '' Eacute 201
+'&#x00CA;' '' Ecircumflex 202
+'&#x00CB;' '' Edieresis 203
+'&#x00CC;' '' Igrave 204
+'&#x00CD;' '' Iacute 205
+'&#x00CE;' '' Icircumflex 206
+'&#x00CF;' '' Idieresis 207
+'&#x00D0;' '' Eth 208
+'&#x00D1;' '' Ntilde 209
+'&#x00D2;' '' Ograve 210
+'&#x00D3;' '' Oacute 211
+'&#x00D4;' '' Ocircumflex 212
+'&#x00D5;' '' Otilde 213
+'&#x00D6;' '' Odieresis 214
+'&#x00D7;' '' multiply 215
+'&#x00D8;' '' Oslash 216
+'&#x00D9;' '' Ugrave 217
+'&#x00DA;' '' Uacute 218
+'&#x00DB;' '' Ucircumflex 219
+'&#x00DC;' '' Udieresis 220
+'&#x00DD;' '' Yacute 221
+'&#x00DE;' '' Thorn 222
+'&#x00DF;' '' germandbls 223
+'&#x00E0;' '' agrave 224
+'&#x00E1;' '' aacute 225
+'&#x00E2;' '' acircumflex 226
+'&#x00E3;' '' atilde 227
+'&#x00E4;' '' adieresis 228
+'&#x00E5;' '' aring 229
+'&#x00E6;' '' ae 230
+'&#x00E7;' '' ccedilla 231
+'&#x00E8;' '' egrave 232
+'&#x00E9;' '' eacute 233
+'&#x00EA;' '' ecircumflex 234
+'&#x00EB;' '' edieresis 235
+'&#x00EC;' '' igrave 236
+'&#x00ED;' '' iacute 237
+'&#x00EE;' '' icircumflex 238
+'&#x00EF;' '' idieresis 239
+'&#x00F0;' '' eth 240
+'&#x00F1;' '' ntilde 241
+'&#x00F2;' '' ograve 242
+'&#x00F3;' '' oacute 243
+'&#x00F4;' '' ocircumflex 244
+'&#x00F5;' '' otilde 245
+'&#x00F6;' '' odieresis 246
+'&#x00F7;' '' divide 247
+'&#x00F8;' '' oslash 248
+'&#x00F9;' '' ugrave 249
+'&#x00FA;' '' uacute 250
+'&#x00FB;' '' ucircumflex 251
+'&#x00FC;' '' udieresis 252
+'&#x00FD;' '' yacute 253
+'&#x00FE;' '' thorn 254
+'&#x00FF;' '' ydieresis 255
+EBGaramond-Regular-lf-ly1 1 255
htfcss: EBGaramond-Regular-lf-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-ly1}{alias/EB_Garamond/EBGaramond-Regular-lf-ly1}{}
-% writing EBGaramond-Italic-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-lf-ly1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ly1}{}
+% writing EBGaramond-Italic-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Italic-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-lf-ly1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Italic-lf-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ly1}{}
+% writing EBGaramond-Italic-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-Italic-lf-sc-ly1\><<<
+.EBGaramond-Regular-lf-sc-ly1
+htfcss: EBGaramond-Italic-lf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-ly1}{alias/EB_Garamond/EBGaramond-Italic-lf-ly1}{}
-% writing EBGaramond-Italic-lf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-Italic-lf-sc-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-ly1}{}
+% writing EBGaramond-Italic-lf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-Italic-lf-swash-ly1\><<<
EBGaramond-Italic-lf-swash-ly1 0 255
-'&#xFB00;' '' f_f 0
+'aq' '' a_s 0
'&#x20AC;' '' Euro 1
-'&#xFB01;' '' uniFB01 2
-'&#xFB02;' '' uniFB02 3
+'ch' '' c_h 2
+'c{' '' c_k 3
'&#x2044;' '' fraction 4
'&#x02D9;' '' dotaccent 5
'&#x02DD;' '' hungarumlaut 6
'&#x02DB;' '' ogonek 7
-'&#xFB03;' '' uniFB03 8
-'&#xFB04;' '' uniFB04 9
+'ct' '' c_t 8
+'eq' '' e_s 9
'&#x200C;' '' uni200C 10
-'aq' '' a_s 11
-'ch' '' c_h 12
-'c{' '' c_k 13
-'ct' '' c_t 14
-'eq' '' e_s 15
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' f_f 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave 18
@@ -1168,7 +4205,7 @@ EBGaramond-Italic-lf-swash-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -1296,43 +4333,29 @@ EBGaramond-Italic-lf-swash-ly1 0 255
'&#x00FE;' '' thorn 254
'&#x00FF;' '' ydieresis 255
EBGaramond-Italic-lf-swash-ly1 0 255
-htfcss: EBGaramond-Italic-lf-swash-ly1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-lf-swash-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-swash-ly1}{unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ly1}{}
-% writing EBGaramond-Italic-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-Italic-lf-sc-ly1\><<<
-.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Italic-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-Italic-lf-sc-ly1}{}
-% writing EBGaramond-Italic-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Italic-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-lf-titling-ly1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-Italic-lf-titling-ly1}{}
-% writing EBGaramond-Regular-lf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-Italic-lf-swash-ly1}{unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-ly1}{}
+% writing EBGaramond-Regular-lf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Regular-lf-swash-ly1\><<<
EBGaramond-Regular-lf-swash-ly1 0 255
-'&#xFB00;' '' f_f 0
+'ch' '' c_h 0
'&#x20AC;' '' Euro 1
-'&#xFB01;' '' f_i 2
-'&#xFB02;' '' f_l 3
+'c{' '' c_k 2
+'ct' '' c_t 3
'&#x2044;' '' fraction 4
'&#x02D9;' '' dotaccent 5
'&#x02DD;' '' hungarumlaut 6
'&#x02DB;' '' ogonek 7
-'&#xFB03;' '' f_f_i 8
-'&#xFB04;' '' f_f_l 9
+'fb' '' f_b 8
+'fh' '' f_h 9
'&#x200C;' '' uni200C 10
-'ch' '' c_h 11
-'c{' '' c_k 12
-'ct' '' c_t 13
-'fb' '' f_b 14
-'fh' '' f_h 15
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' uniFB00 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave 18
@@ -1446,7 +4469,7 @@ EBGaramond-Regular-lf-swash-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -1577,442 +4600,386 @@ EBGaramond-Regular-lf-swash-ly1 0 255
htfcss: EBGaramond-Regular-lf-swash-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-swash-ly1}{unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ly1}{}
-% writing EBGaramond-Bold-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-lf-titling-ly1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-Bold-lf-titling-ly1}{}
-% writing EBGaramond-Bold-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-Bold-lf-sc-ly1\><<<
+\AddFont{EBGaramond-Regular-lf-swash-ly1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-ly1}{}
+% writing EBGaramond-SemiBold-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBold-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Bold-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-Bold-lf-sc-ly1}{}
-% writing EBGaramond-Bold-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-lf-ly1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-ly1}{alias/EB_Garamond/EBGaramond-Bold-lf-ly1}{}
-% writing EBGaramond-BoldItalic-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-lf-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-sc-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-ly1}{}
+% writing EBGaramond-SemiBold-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBold-lf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBold-lf-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-ly1}{}
-% writing EBGaramond-BoldItalic-lf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-BoldItalic-lf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-BoldItalic-lf-swash-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBoldItalic-lf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBoldItalic-lf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ly1}{}
-% writing EBGaramond-BoldItalic-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-BoldItalic-lf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBoldItalic-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-BoldItalic-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-lf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ly1}{}
-% writing EBGaramond-BoldItalic-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-lf-titling-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-lf-sc-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-ly1}{}
+% writing EBGaramond-SemiBoldItalic-lf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-SemiBoldItalic-lf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-SemiBoldItalic-lf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ly1}{}
-% writing EBGaramond-Bold-lf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-Bold-lf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-swash-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-ly1}{}
+% writing EBGaramond-SemiBold-lf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-SemiBold-lf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-Bold-lf-swash-ly1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-swash-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-Bold-lf-swash-ly1}{}
-% writing EBGaramond-SemiBold-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-lf-titling-ly1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ly1}{}
-% writing EBGaramond-SemiBold-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBold-lf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBold-lf-swash-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-ly1}{}
+% writing EBGaramond-Bold-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-Bold-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBold-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ly1}{}
-% writing EBGaramond-SemiBold-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-lf-ly1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-lf-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-lf-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-sc-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-ly1}{}
+% writing EBGaramond-Bold-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-Bold-lf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Bold-lf-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-lf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-SemiBoldItalic-lf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-SemiBoldItalic-lf-swash-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ly1}{}
+% writing EBGaramond-BoldItalic-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-BoldItalic-lf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-BoldItalic-lf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ly1}{}
-% writing EBGaramond-SemiBoldItalic-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBoldItalic-lf-sc-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ly1}{}
+% writing EBGaramond-BoldItalic-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-BoldItalic-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBoldItalic-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-lf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ly1}{}
-% writing EBGaramond-SemiBoldItalic-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-lf-titling-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-lf-sc-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-ly1}{}
+% writing EBGaramond-BoldItalic-lf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-BoldItalic-lf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-BoldItalic-lf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ly1}{}
-% writing EBGaramond-SemiBold-lf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-SemiBold-lf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-swash-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-ly1}{}
+% writing EBGaramond-Bold-lf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-Bold-lf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-SemiBold-lf-swash-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-swash-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ly1}{}
-% writing EBGaramond-Medium-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Medium-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Medium-lf-titling-ly1 font-family: 'EB Garamond Medium', serif;
-
->>>
-\AddFont{EBGaramond-Medium-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-Medium-lf-titling-ly1}{}
-% writing EBGaramond-Medium-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Bold-lf-swash-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-ly1}{}
+% writing EBGaramond-Medium-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Medium-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Medium-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-Medium-lf-sc-ly1}{}
-% writing EBGaramond-Medium-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-lf-sc-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-ly1}{}
+% writing EBGaramond-Medium-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Medium-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Medium-lf-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-ly1}{alias/EB_Garamond/EBGaramond-Medium-lf-ly1}{}
-% writing EBGaramond-MediumItalic-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-lf-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ly1}{}
+% writing EBGaramond-MediumItalic-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-MediumItalic-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-lf-ly1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-lf-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-ly1}{}
-% writing EBGaramond-MediumItalic-lf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-MediumItalic-lf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-MediumItalic-lf-swash-ly1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-MediumItalic-lf-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ly1}{}
-% writing EBGaramond-MediumItalic-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-MediumItalic-lf-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ly1}{}
+% writing EBGaramond-MediumItalic-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-MediumItalic-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-MediumItalic-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-lf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ly1}{}
-% writing EBGaramond-MediumItalic-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-MediumItalic-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-lf-titling-ly1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-lf-sc-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-ly1}{}
+% writing EBGaramond-MediumItalic-lf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-MediumItalic-lf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-MediumItalic-lf-swash-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ly1}{}
-% writing EBGaramond-Medium-lf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-MediumItalic-lf-swash-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-ly1}{}
+% writing EBGaramond-Medium-lf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Medium-lf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Medium-lf-swash-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-Medium-lf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-ExtraBold-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-lf-titling-ly1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ly1}{}
-% writing EBGaramond-ExtraBold-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Medium-lf-swash-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBold-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBold-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ly1}{}
-% writing EBGaramond-ExtraBold-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-lf-sc-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-ly1}{}
+% writing EBGaramond-ExtraBold-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBold-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-lf-ly1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBold-lf-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-lf-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBoldItalic-lf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-lf-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-ExtraBoldItalic-lf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-ExtraBoldItalic-lf-swash-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBoldItalic-lf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBoldItalic-lf-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBoldItalic-lf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBoldItalic-lf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-lf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-ExtraBoldItalic-lf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-lf-titling-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-ExtraBoldItalic-lf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-ExtraBoldItalic-lf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-titling-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ly1}{}
-% writing EBGaramond-ExtraBold-lf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-lf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-ExtraBold-lf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-ExtraBold-lf-swash-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-swash-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ly1}{}
-% writing EBGaramond-Regular-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBold-lf-swash-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-ly1}{}
+% writing EBGaramond-Regular-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Regular-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Regular-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-Regular-osf-sc-ly1}{}
-% writing EBGaramond-Regular-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-osf-sc-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-ly1}{}
+% writing EBGaramond-Regular-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Regular-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Regular-osf-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-ly1}{alias/EB_Garamond/EBGaramond-Regular-osf-ly1}{}
-% writing EBGaramond-Italic-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-osf-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ly1}{}
+% writing EBGaramond-Italic-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Italic-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-osf-ly1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Italic-osf-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-ly1}{alias/EB_Garamond/EBGaramond-Italic-osf-ly1}{}
-% writing EBGaramond-Italic-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Italic-osf-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ly1}{}
+% writing EBGaramond-Italic-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Italic-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Italic-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-Italic-osf-sc-ly1}{}
-% writing EBGaramond-Italic-osf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-Italic-osf-sc-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-ly1}{}
+% writing EBGaramond-Italic-osf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-Italic-osf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-Italic-osf-swash-ly1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-swash-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-Italic-osf-swash-ly1}{}
-% writing EBGaramond-Regular-osf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-Italic-osf-swash-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-ly1}{}
+% writing EBGaramond-Regular-osf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Regular-osf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Regular-osf-swash-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-Regular-osf-swash-ly1}{}
-% writing EBGaramond-Bold-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-Bold-osf-sc-ly1\><<<
+\AddFont{EBGaramond-Regular-osf-swash-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-ly1}{}
+% writing EBGaramond-SemiBold-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBold-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Bold-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-Bold-osf-sc-ly1}{}
-% writing EBGaramond-Bold-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-osf-ly1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-osf-sc-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-ly1}{}
+% writing EBGaramond-SemiBold-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBold-osf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBold-osf-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-ly1}{alias/EB_Garamond/EBGaramond-Bold-osf-ly1}{}
-% writing EBGaramond-BoldItalic-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-osf-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-osf-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBoldItalic-osf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBoldItalic-osf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-ly1}{}
-% writing EBGaramond-BoldItalic-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-BoldItalic-osf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBoldItalic-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-BoldItalic-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ly1}{}
-% writing EBGaramond-BoldItalic-osf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-BoldItalic-osf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-sc-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-ly1}{}
+% writing EBGaramond-SemiBoldItalic-osf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-SemiBoldItalic-osf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-BoldItalic-osf-swash-ly1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ly1}{}
-% writing EBGaramond-Bold-osf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-Bold-osf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-swash-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-ly1}{}
+% writing EBGaramond-SemiBold-osf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-SemiBold-osf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-Bold-osf-swash-ly1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-swash-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-Bold-osf-swash-ly1}{}
-% writing EBGaramond-SemiBold-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBold-osf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBold-osf-swash-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-ly1}{}
+% writing EBGaramond-Bold-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-Bold-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBold-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ly1}{}
-% writing EBGaramond-SemiBold-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-osf-ly1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-osf-sc-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-ly1}{}
+% writing EBGaramond-Bold-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-Bold-osf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Bold-osf-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-osf-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-osf-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ly1}{}
+% writing EBGaramond-BoldItalic-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-BoldItalic-osf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-BoldItalic-osf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBoldItalic-osf-sc-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ly1}{}
+% writing EBGaramond-BoldItalic-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-BoldItalic-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBoldItalic-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ly1}{}
-% writing EBGaramond-SemiBoldItalic-osf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-SemiBoldItalic-osf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-sc-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-ly1}{}
+% writing EBGaramond-BoldItalic-osf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-BoldItalic-osf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-SemiBoldItalic-osf-swash-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ly1}{}
-% writing EBGaramond-SemiBold-osf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-SemiBold-osf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-swash-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-ly1}{}
+% writing EBGaramond-Bold-osf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-Bold-osf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-SemiBold-osf-swash-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-swash-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ly1}{}
-% writing EBGaramond-Medium-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Bold-osf-swash-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-ly1}{}
+% writing EBGaramond-Medium-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Medium-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Medium-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-Medium-osf-sc-ly1}{}
-% writing EBGaramond-Medium-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-osf-sc-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-ly1}{}
+% writing EBGaramond-Medium-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Medium-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Medium-osf-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-ly1}{alias/EB_Garamond/EBGaramond-Medium-osf-ly1}{}
-% writing EBGaramond-MediumItalic-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-osf-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ly1}{}
+% writing EBGaramond-MediumItalic-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-MediumItalic-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-osf-ly1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-MediumItalic-osf-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-ly1}{}
-% writing EBGaramond-MediumItalic-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-MediumItalic-osf-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ly1}{}
+% writing EBGaramond-MediumItalic-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-MediumItalic-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-MediumItalic-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ly1}{}
-% writing EBGaramond-MediumItalic-osf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-MediumItalic-osf-sc-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-ly1}{}
+% writing EBGaramond-MediumItalic-osf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-MediumItalic-osf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-MediumItalic-osf-swash-ly1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-swash-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ly1}{}
-% writing EBGaramond-Medium-osf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-MediumItalic-osf-swash-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-ly1}{}
+% writing EBGaramond-Medium-osf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Medium-osf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Medium-osf-swash-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-Medium-osf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Medium-osf-swash-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBold-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBold-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ly1}{}
-% writing EBGaramond-ExtraBold-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-osf-sc-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-ly1}{}
+% writing EBGaramond-ExtraBold-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBold-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-osf-ly1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBold-osf-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-osf-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBoldItalic-osf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-osf-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBoldItalic-osf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBoldItalic-osf-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBoldItalic-osf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBoldItalic-osf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-ExtraBoldItalic-osf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-ExtraBoldItalic-osf-swash-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-osf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-osf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-ExtraBold-osf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-ExtraBold-osf-swash-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-swash-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ly1}{}
-% writing EBGaramond-Regular-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-ExtraBold-osf-swash-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-ly1}{}
+% writing EBGaramond-Regular-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-Regular-sup-ly1\><<<
EBGaramond-Regular-sup-ly1 1 255
'&#x20AC;' '' Euro 1
@@ -2025,11 +4992,11 @@ EBGaramond-Regular-sup-ly1 1 255
'' ''
'' ''
'&#x200C;' '' uni200C 10
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'&#xFB04;' '' uniFB04 11
+'&#xFB03;' '' uniFB03 12
+'&#xFB00;' '' uniFB00 13
+'&#xFB02;' '' uniFB02 14
+'&#xFB01;' '' uniFB01 15
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave.sups 18
@@ -2143,7 +5110,7 @@ EBGaramond-Regular-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle.sups 129
+'&#x0027;' '' quotesingle.sups 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -2274,560 +5241,490 @@ EBGaramond-Regular-sup-ly1 1 255
htfcss: EBGaramond-Regular-sup-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-sup-ly1}{unicode/EB_Garamond/EBGaramond-Regular-sup-ly1}{}
-% writing EBGaramond-Italic-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-Regular-sup-ly1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-ly1}{}
+% writing EBGaramond-Italic-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-Italic-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-Italic-sup-ly1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-sup-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-sup-ly1}{alias/EB_Garamond/EBGaramond-Italic-sup-ly1}{}
-% writing EBGaramond-Bold-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
-\<EBGaramond-Bold-sup-ly1\><<<
+\AddFont{EBGaramond-Italic-sup-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-sup-ly1}{}
+% writing EBGaramond-SemiBold-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
+\<EBGaramond-SemiBold-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-Bold-sup-ly1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-sup-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-sup-ly1}{alias/EB_Garamond/EBGaramond-Bold-sup-ly1}{}
-% writing EBGaramond-BoldItalic-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
-\<EBGaramond-BoldItalic-sup-ly1\><<<
+\AddFont{EBGaramond-SemiBold-sup-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-ly1}{}
+% writing EBGaramond-SemiBoldItalic-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
+\<EBGaramond-SemiBoldItalic-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-BoldItalic-sup-ly1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-sup-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-sup-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-sup-ly1}{}
-% writing EBGaramond-SemiBold-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
-\<EBGaramond-SemiBold-sup-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-sup-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-ly1}{}
+% writing EBGaramond-Bold-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
+\<EBGaramond-Bold-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-SemiBold-sup-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-sup-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-sup-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-sup-ly1}{}
-% writing EBGaramond-SemiBoldItalic-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
-\<EBGaramond-SemiBoldItalic-sup-ly1\><<<
+\AddFont{EBGaramond-Bold-sup-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-sup-ly1}{}
+% writing EBGaramond-BoldItalic-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
+\<EBGaramond-BoldItalic-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-SemiBoldItalic-sup-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-sup-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-sup-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ly1}{}
-% writing EBGaramond-Medium-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-BoldItalic-sup-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-ly1}{}
+% writing EBGaramond-Medium-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-Medium-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
htfcss: EBGaramond-Medium-sup-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-sup-ly1}{alias/EB_Garamond/EBGaramond-Medium-sup-ly1}{}
-% writing EBGaramond-MediumItalic-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-Medium-sup-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-sup-ly1}{}
+% writing EBGaramond-MediumItalic-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-MediumItalic-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-MediumItalic-sup-ly1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-sup-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-sup-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-sup-ly1}{}
-% writing EBGaramond-ExtraBold-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-MediumItalic-sup-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-ly1}{}
+% writing EBGaramond-ExtraBold-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-ExtraBold-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-ExtraBold-sup-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-sup-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-sup-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-sup-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-sup-ly1.htf hash: 904c487c6dda967a7e8bc11846e4a11e
+\AddFont{EBGaramond-ExtraBold-sup-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-sup-ly1.htf hash: b74999a4de06c9edef75c5922926cecb
\<EBGaramond-ExtraBoldItalic-sup-ly1\><<<
.EBGaramond-Regular-sup-ly1
-htfcss: EBGaramond-ExtraBoldItalic-sup-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-sup-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-sup-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ly1}{}
-% writing EBGaramond-Regular-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Regular-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Regular-tlf-titling-ly1 font-family: 'EB Garamond Regular', serif;
-
->>>
-\AddFont{EBGaramond-Regular-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ly1}{}
-% writing EBGaramond-Regular-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBoldItalic-sup-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-ly1}{}
+% writing EBGaramond-Regular-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Regular-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Regular-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ly1}{}
-% writing EBGaramond-Regular-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-tlf-sc-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-ly1}{}
+% writing EBGaramond-Regular-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Regular-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Regular-tlf-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-ly1}{alias/EB_Garamond/EBGaramond-Regular-tlf-ly1}{}
-% writing EBGaramond-Italic-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-tlf-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ly1}{}
+% writing EBGaramond-Italic-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Italic-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-tlf-ly1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Italic-tlf-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-ly1}{alias/EB_Garamond/EBGaramond-Italic-tlf-ly1}{}
-% writing EBGaramond-Italic-tlf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-Italic-tlf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-Italic-tlf-swash-ly1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ly1}{}
-% writing EBGaramond-Italic-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Italic-tlf-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ly1}{}
+% writing EBGaramond-Italic-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Italic-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Italic-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tlf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ly1}{}
-% writing EBGaramond-Italic-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Italic-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-tlf-titling-ly1 font-family: 'EB Garamond Italic', serif;
+\AddFont{EBGaramond-Italic-tlf-sc-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-ly1}{}
+% writing EBGaramond-Italic-tlf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-Italic-tlf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-Italic-tlf-swash-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ly1}{}
-% writing EBGaramond-Regular-tlf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-Italic-tlf-swash-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-ly1}{}
+% writing EBGaramond-Regular-tlf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Regular-tlf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Regular-tlf-swash-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ly1}{}
-% writing EBGaramond-Bold-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-tlf-titling-ly1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ly1}{}
-% writing EBGaramond-Bold-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-Bold-tlf-sc-ly1\><<<
+\AddFont{EBGaramond-Regular-tlf-swash-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-ly1}{}
+% writing EBGaramond-SemiBold-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBold-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Bold-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tlf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ly1}{}
-% writing EBGaramond-Bold-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-tlf-ly1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-ly1}{alias/EB_Garamond/EBGaramond-Bold-tlf-ly1}{}
-% writing EBGaramond-BoldItalic-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-tlf-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-sc-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-ly1}{}
+% writing EBGaramond-SemiBold-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBold-tlf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBold-tlf-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ly1}{}
-% writing EBGaramond-BoldItalic-tlf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-BoldItalic-tlf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-BoldItalic-tlf-swash-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBoldItalic-tlf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBoldItalic-tlf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ly1}{}
-% writing EBGaramond-BoldItalic-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-BoldItalic-tlf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBoldItalic-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-BoldItalic-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tlf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ly1}{}
-% writing EBGaramond-BoldItalic-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-tlf-titling-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-SemiBoldItalic-tlf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-SemiBoldItalic-tlf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ly1}{}
-% writing EBGaramond-Bold-tlf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-Bold-tlf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-ly1}{}
+% writing EBGaramond-SemiBold-tlf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-SemiBold-tlf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-Bold-tlf-swash-ly1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ly1}{}
-% writing EBGaramond-SemiBold-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-tlf-titling-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-SemiBold-tlf-swash-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ly1}{}
-% writing EBGaramond-SemiBold-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBold-tlf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBold-tlf-swash-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-ly1}{}
+% writing EBGaramond-Bold-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-Bold-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBold-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ly1}{}
-% writing EBGaramond-SemiBold-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-tlf-ly1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-tlf-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-tlf-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-sc-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-ly1}{}
+% writing EBGaramond-Bold-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-Bold-tlf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Bold-tlf-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-SemiBoldItalic-tlf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-SemiBoldItalic-tlf-swash-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ly1}{}
+% writing EBGaramond-BoldItalic-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-BoldItalic-tlf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-BoldItalic-tlf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBoldItalic-tlf-sc-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ly1}{}
+% writing EBGaramond-BoldItalic-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-BoldItalic-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBoldItalic-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tlf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-tlf-titling-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-tlf-sc-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-ly1}{}
+% writing EBGaramond-BoldItalic-tlf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-BoldItalic-tlf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-BoldItalic-tlf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ly1}{}
-% writing EBGaramond-SemiBold-tlf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-SemiBold-tlf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-swash-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-ly1}{}
+% writing EBGaramond-Bold-tlf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-Bold-tlf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-SemiBold-tlf-swash-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-swash-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ly1}{}
-% writing EBGaramond-Medium-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Medium-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Medium-tlf-titling-ly1 font-family: 'EB Garamond Medium', serif;
-
->>>
-\AddFont{EBGaramond-Medium-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ly1}{}
-% writing EBGaramond-Medium-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Bold-tlf-swash-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-ly1}{}
+% writing EBGaramond-Medium-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Medium-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Medium-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ly1}{}
-% writing EBGaramond-Medium-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-tlf-sc-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-ly1}{}
+% writing EBGaramond-Medium-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Medium-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Medium-tlf-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-ly1}{alias/EB_Garamond/EBGaramond-Medium-tlf-ly1}{}
-% writing EBGaramond-MediumItalic-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-tlf-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ly1}{}
+% writing EBGaramond-MediumItalic-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-MediumItalic-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-tlf-ly1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-MediumItalic-tlf-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ly1}{}
-% writing EBGaramond-MediumItalic-tlf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-MediumItalic-tlf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-MediumItalic-tlf-swash-ly1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ly1}{}
-% writing EBGaramond-MediumItalic-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-MediumItalic-tlf-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ly1}{}
+% writing EBGaramond-MediumItalic-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-MediumItalic-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-MediumItalic-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tlf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ly1}{}
-% writing EBGaramond-MediumItalic-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-MediumItalic-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-tlf-titling-ly1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-tlf-sc-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-ly1}{}
+% writing EBGaramond-MediumItalic-tlf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-MediumItalic-tlf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-MediumItalic-tlf-swash-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ly1}{}
-% writing EBGaramond-Medium-tlf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-MediumItalic-tlf-swash-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-ly1}{}
+% writing EBGaramond-Medium-tlf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Medium-tlf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Medium-tlf-swash-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-ExtraBold-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-tlf-titling-ly1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ly1}{}
-% writing EBGaramond-ExtraBold-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Medium-tlf-swash-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBold-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBold-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ly1}{}
-% writing EBGaramond-ExtraBold-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-tlf-sc-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-ly1}{}
+% writing EBGaramond-ExtraBold-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBold-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-tlf-ly1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBold-tlf-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-tlf-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBoldItalic-tlf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-ExtraBoldItalic-tlf-swash-ly1\><<<
-.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBoldItalic-tlf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-titling-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-ExtraBoldItalic-tlf-titling-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-titling-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-ExtraBoldItalic-tlf-swash-ly1\><<<
+.EBGaramond-Italic-lf-swash-ly1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-titling-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ly1}{}
-% writing EBGaramond-ExtraBold-tlf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-tlf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-ExtraBold-tlf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-ExtraBold-tlf-swash-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-swash-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ly1}{}
-% writing EBGaramond-Regular-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBold-tlf-swash-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-ly1}{}
+% writing EBGaramond-Regular-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Regular-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Regular-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ly1}{}
-% writing EBGaramond-Regular-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-tosf-sc-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-ly1}{}
+% writing EBGaramond-Regular-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Regular-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Regular-tosf-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-ly1}{alias/EB_Garamond/EBGaramond-Regular-tosf-ly1}{}
-% writing EBGaramond-Italic-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Regular-tosf-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ly1}{}
+% writing EBGaramond-Italic-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Italic-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Italic-tosf-ly1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Italic-tosf-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-ly1}{alias/EB_Garamond/EBGaramond-Italic-tosf-ly1}{}
-% writing EBGaramond-Italic-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Italic-tosf-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ly1}{}
+% writing EBGaramond-Italic-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Italic-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Italic-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ly1}{}
-% writing EBGaramond-Italic-tosf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-Italic-tosf-sc-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-ly1}{}
+% writing EBGaramond-Italic-tosf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-Italic-tosf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-Italic-tosf-swash-ly1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-swash-ly1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ly1}{}
-% writing EBGaramond-Regular-tosf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-Italic-tosf-swash-ly1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-ly1}{}
+% writing EBGaramond-Regular-tosf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Regular-tosf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Regular-tosf-swash-ly1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ly1}{}
-% writing EBGaramond-Bold-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-Bold-tosf-sc-ly1\><<<
+\AddFont{EBGaramond-Regular-tosf-swash-ly1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-ly1}{}
+% writing EBGaramond-SemiBold-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBold-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-Bold-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ly1}{}
-% writing EBGaramond-Bold-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-Bold-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-Bold-tosf-ly1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-tosf-sc-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-ly1}{}
+% writing EBGaramond-SemiBold-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBold-tosf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBold-tosf-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-ly1}{alias/EB_Garamond/EBGaramond-Bold-tosf-ly1}{}
-% writing EBGaramond-BoldItalic-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-BoldItalic-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-BoldItalic-tosf-ly1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tosf-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-SemiBoldItalic-tosf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-SemiBoldItalic-tosf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ly1}{}
-% writing EBGaramond-BoldItalic-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-BoldItalic-tosf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-SemiBoldItalic-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-BoldItalic-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ly1}{}
-% writing EBGaramond-BoldItalic-tosf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-BoldItalic-tosf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-ly1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-SemiBoldItalic-tosf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-BoldItalic-tosf-swash-ly1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ly1}{}
-% writing EBGaramond-Bold-tosf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-Bold-tosf-swash-ly1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-ly1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-ly1}{}
+% writing EBGaramond-SemiBold-tosf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-SemiBold-tosf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-Bold-tosf-swash-ly1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-swash-ly1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ly1}{}
-% writing EBGaramond-SemiBold-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBold-tosf-sc-ly1\><<<
+\AddFont{EBGaramond-SemiBold-tosf-swash-ly1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-ly1}{}
+% writing EBGaramond-Bold-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-Bold-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBold-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ly1}{}
-% writing EBGaramond-SemiBold-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBold-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBold-tosf-ly1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-tosf-sc-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-ly1}{}
+% writing EBGaramond-Bold-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-Bold-tosf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-Bold-tosf-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
-\<EBGaramond-SemiBoldItalic-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-SemiBoldItalic-tosf-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tosf-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ly1}{}
+% writing EBGaramond-BoldItalic-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
+\<EBGaramond-BoldItalic-tosf-ly1\><<<
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-BoldItalic-tosf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
-\<EBGaramond-SemiBoldItalic-tosf-sc-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ly1}{}
+% writing EBGaramond-BoldItalic-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
+\<EBGaramond-BoldItalic-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-SemiBoldItalic-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ly1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
-\<EBGaramond-SemiBoldItalic-tosf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-sc-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-ly1}{}
+% writing EBGaramond-BoldItalic-tosf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
+\<EBGaramond-BoldItalic-tosf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-SemiBoldItalic-tosf-swash-ly1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ly1}{}
-% writing EBGaramond-SemiBold-tosf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
-\<EBGaramond-SemiBold-tosf-swash-ly1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-swash-ly1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-ly1}{}
+% writing EBGaramond-Bold-tosf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
+\<EBGaramond-Bold-tosf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-SemiBold-tosf-swash-ly1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-swash-ly1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ly1}{}
-% writing EBGaramond-Medium-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Bold-tosf-swash-ly1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-ly1}{}
+% writing EBGaramond-Medium-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-Medium-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
htfcss: EBGaramond-Medium-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ly1}{}
-% writing EBGaramond-Medium-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-tosf-sc-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-ly1}{}
+% writing EBGaramond-Medium-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-Medium-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
+.EBGaramond-Regular-lf-ly1
htfcss: EBGaramond-Medium-tosf-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-ly1}{alias/EB_Garamond/EBGaramond-Medium-tosf-ly1}{}
-% writing EBGaramond-MediumItalic-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-Medium-tosf-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ly1}{}
+% writing EBGaramond-MediumItalic-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-MediumItalic-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-MediumItalic-tosf-ly1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-MediumItalic-tosf-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ly1}{}
-% writing EBGaramond-MediumItalic-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-MediumItalic-tosf-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ly1}{}
+% writing EBGaramond-MediumItalic-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-MediumItalic-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-MediumItalic-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-sc-ly1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ly1}{}
-% writing EBGaramond-MediumItalic-tosf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-MediumItalic-tosf-sc-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-ly1}{}
+% writing EBGaramond-MediumItalic-tosf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-MediumItalic-tosf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-MediumItalic-tosf-swash-ly1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-swash-ly1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ly1}{}
-% writing EBGaramond-Medium-tosf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-MediumItalic-tosf-swash-ly1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-ly1}{}
+% writing EBGaramond-Medium-tosf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-Medium-tosf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
htfcss: EBGaramond-Medium-tosf-swash-ly1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-Medium-tosf-swash-ly1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBold-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBold-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-sc-ly1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ly1}{}
-% writing EBGaramond-ExtraBold-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-tosf-sc-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-ly1}{}
+% writing EBGaramond-ExtraBold-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBold-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBold-tosf-ly1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBold-tosf-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-ly1.htf hash: 714927aa4f0eeecca272a6856cb2c61c
+\AddFont{EBGaramond-ExtraBold-tosf-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-ly1.htf hash: db85c13c69dbb13b184944a01293f43f
\<EBGaramond-ExtraBoldItalic-tosf-ly1\><<<
-.EBGaramond-Regular-lf-titling-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ly1
+htfcss: EBGaramond-ExtraBoldItalic-tosf-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-sc-ly1.htf hash: 7a18f43abeefdecb875487bd31d03a07
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-sc-ly1.htf hash: f5970793953e5b5e4a5c79d4cd2bd630
\<EBGaramond-ExtraBoldItalic-tosf-sc-ly1\><<<
.EBGaramond-Regular-lf-sc-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-ly1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-ly1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ly1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-swash-ly1.htf hash: 32148bb55a7fb4abebabde2840ed466e
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-ly1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-swash-ly1.htf hash: 5d2820ea990c9fe66b178d2e116b0105
\<EBGaramond-ExtraBoldItalic-tosf-swash-ly1\><<<
.EBGaramond-Italic-lf-swash-ly1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-ly1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-ly1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ly1}{}
-% writing EBGaramond-ExtraBold-tosf-swash-ly1.htf hash: fb8c0700ddae383d675c144ec3667ab2
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-ly1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-ly1}{}
+% writing EBGaramond-ExtraBold-tosf-swash-ly1.htf hash: 07b62b584c042416f61891e8d831860e
\<EBGaramond-ExtraBold-tosf-swash-ly1\><<<
.EBGaramond-Regular-lf-swash-ly1
-htfcss: EBGaramond-ExtraBold-tosf-swash-ly1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-swash-ly1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-swash-ly1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ly1}{}
+\AddFont{EBGaramond-ExtraBold-tosf-swash-ly1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-ly1}{}
% writing EBGaramond-Regular-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-Regular-inf-ot1\><<<
EBGaramond-Regular-inf-ot1 0 170
@@ -3006,80 +5903,80 @@ EBGaramond-Regular-inf-ot1 0 170
htfcss: EBGaramond-Regular-inf-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-inf-ot1}{unicode/EB_Garamond/EBGaramond-Regular-inf-ot1}{}
+\AddFont{EBGaramond-Regular-inf-ot1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-ot1}{}
% writing EBGaramond-Italic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-Italic-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-Italic-inf-ot1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-inf-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-inf-ot1}{alias/EB_Garamond/EBGaramond-Italic-inf-ot1}{}
-% writing EBGaramond-Bold-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
-\<EBGaramond-Bold-inf-ot1\><<<
+\AddFont{EBGaramond-Italic-inf-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-inf-ot1}{}
+% writing EBGaramond-SemiBold-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
+\<EBGaramond-SemiBold-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-Bold-inf-ot1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-inf-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-inf-ot1}{alias/EB_Garamond/EBGaramond-Bold-inf-ot1}{}
-% writing EBGaramond-BoldItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
-\<EBGaramond-BoldItalic-inf-ot1\><<<
+\AddFont{EBGaramond-SemiBold-inf-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
+\<EBGaramond-SemiBoldItalic-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-BoldItalic-inf-ot1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-inf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-inf-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-inf-ot1}{}
-% writing EBGaramond-SemiBold-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
-\<EBGaramond-SemiBold-inf-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-inf-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-ot1}{}
+% writing EBGaramond-Bold-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
+\<EBGaramond-Bold-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-SemiBold-inf-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-inf-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-inf-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-inf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
-\<EBGaramond-SemiBoldItalic-inf-ot1\><<<
+\AddFont{EBGaramond-Bold-inf-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-inf-ot1}{}
+% writing EBGaramond-BoldItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
+\<EBGaramond-BoldItalic-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-SemiBoldItalic-inf-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-inf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-inf-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-ot1}{}
+\AddFont{EBGaramond-BoldItalic-inf-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-ot1}{}
% writing EBGaramond-Medium-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-Medium-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
htfcss: EBGaramond-Medium-inf-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-inf-ot1}{alias/EB_Garamond/EBGaramond-Medium-inf-ot1}{}
+\AddFont{EBGaramond-Medium-inf-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-inf-ot1}{}
% writing EBGaramond-MediumItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-MediumItalic-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-MediumItalic-inf-ot1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-inf-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-inf-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-inf-ot1}{}
+\AddFont{EBGaramond-MediumItalic-inf-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-ot1}{}
% writing EBGaramond-ExtraBold-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-ExtraBold-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-ExtraBold-inf-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-inf-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-inf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-inf-ot1}{}
+\AddFont{EBGaramond-ExtraBold-inf-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-ot1}{}
% writing EBGaramond-ExtraBoldItalic-inf-ot1.htf hash: 0b8fabaaa092ba6e04b89efe527d9c8c
\<EBGaramond-ExtraBoldItalic-inf-ot1\><<<
.EBGaramond-Regular-inf-ot1
-htfcss: EBGaramond-ExtraBoldItalic-inf-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-inf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-inf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-ot1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-inf-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-ot1}{}
% writing EBGaramondInitials-tlf-ot1.htf hash: e864e0ef6f6a2c9afa4e3d8d01d98b69
\<EBGaramondInitials-tlf-ot1\><<<
.EBGaramondInitials-tlf-ly1
htfcss: EBGaramondInitials-tlf-ot1 font-family: 'EB Garamond Initials', serif;
>>>
-\AddFont{EBGaramondInitials-tlf-ot1}{alias/EB_Garamond/EBGaramondInitials-tlf-ot1}{}
-% writing EBGaramond-Regular-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Regular-lf-titling-ot1\><<<
-EBGaramond-Regular-lf-titling-ot1 0 170
+\AddFont{EBGaramondInitials-tlf-ot1}{alias/EB_Garamond_Initials/EBGaramondInitials-tlf-ot1}{}
+% writing EBGaramond-Regular-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Regular-lf-sc-ot1\><<<
+EBGaramond-Regular-lf-sc-ot1 0 170
'&#x0393;' '' Gamma 0
'&#x2206;' '' uni2206 1
'&#x0398;' '' Theta 2
@@ -3091,43 +5988,43 @@ EBGaramond-Regular-lf-titling-ot1 0 170
'&#x03A6;' '' Phi 8
'&#x03A8;' '' Psi 9
'&#x2126;' '' uni2126 10
-'&#xFB00;' '' f_f 11
-'&#xFB01;' '' f_i 12
-'&#xFB02;' '' f_l 13
-'&#xFB03;' '' f_f_i 14
-'&#xFB04;' '' f_f_l 15
-'&#x0131;' '' dotlessi 16
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x0131;' '' dotlessi.sc 16
'&#x0237;' '' uni0237 17
-'&#x60;' '' grave 18
-'&#x00B4;' '' acute 19
+'&#x60;' '' grave.sc 18
+'&#x00B4;' '' acute.sc 19
'&#x02C7;' '' caron 20
'&#x02D8;' '' breve 21
-'&#x00AF;' '' macron 22
+'&#x00AF;' '' macron.sc 22
'&#x02DA;' '' ring 23
-'&#x00B8;' '' cedilla 24
-'&#x00DF;' '' germandbls 25
-'&#x00E6;' '' ae 26
-'&#x0153;' '' oe 27
-'&#x00F8;' '' oslash 28
+'&#x00B8;' '' cedilla.sc 24
+'s' '' s.sc s.sc 25
+'&#x00E6;' '' ae.sc 26
+'&#x0153;' '' oe.sc 27
+'&#x00F8;' '' oslash.sc 28
'&#x00C6;' '' AE 29
'&#x0152;' '' OE 30
'&#x00D8;' '' Oslash 31
' ' '' space 32
-'!' '' exclam 33
+'!' '' exclam.sc 33
'&#x201D;' '' quotedblright 34
-'#' '' numbersign 35
-'$' '' dollar 36
-'%' '' percent 37
-'&amp;' '' ampersand 38
+'#' '' numbersign.sc 35
+'$' '' dollar.sc 36
+'%' '' percent.sc 37
+'&amp;' '' ampersand.sc 38
'&#x2019;' '' quoteright 39
-'(' '' parenleft 40
-')' '' parenright 41
-'*' '' asterisk 42
-'+' '' plus 43
-',' '' comma 44
-'-' '' hyphen 45
-'.' '' period 46
-'/' '' slash 47
+'(' '' parenleft.sc 40
+')' '' parenright.sc 41
+'*' '' asterisk.sc 42
+'+' '' plus.sc 43
+',' '' comma.sc 44
+'-' '' hyphen.sc 45
+'.' '' period.sc 46
+'/' '' slash.sc 47
'0' '' zero.lf 48
'1' '' one.lf 49
'2' '' two.lf 50
@@ -3138,13 +6035,13 @@ EBGaramond-Regular-lf-titling-ot1 0 170
'7' '' seven.lf 55
'8' '' eight.lf 56
'9' '' nine.lf 57
-':' '' colon 58
-';' '' semicolon 59
-'&#x00A1;' '' exclamdown 60
-'=' '' equal 61
-'&#x00BF;' '' questiondown 62
-'?' '' question 63
-'@' '' at 64
+':' '' colon.sc 58
+';' '' semicolon.sc 59
+'&#x00A1;' '' exclamdown.sc 60
+'&#xa;' '' equal.sc 61
+'&#xe;' '' questiondown.sc 62
+'&#xe;' '' question.sc 63
+'@' '' at.sc 64
'A' '' A 65
'B' '' B 66
'C' '' C 67
@@ -3171,43 +6068,43 @@ EBGaramond-Regular-lf-titling-ot1 0 170
'X' '' X 88
'Y' '' Y 89
'Z' '' Z 90
-'[' '' bracketleft 91
+'[' '' bracketleft.sc 91
'&#x201C;' '' quotedblleft 92
-']' '' bracketright 93
+']' '' bracketright.sc 93
'&#x02C6;' '' circumflex 94
'&#x02D9;' '' dotaccent 95
'&#x2018;' '' quoteleft 96
-'a' '' a 97
-'b' '' b 98
-'c' '' c 99
-'d' '' d 100
-'e' '' e 101
-'f' '' f 102
-'g' '' g 103
-'h' '' h 104
-'i' '' i 105
-'j' '' j 106
-'k' '' k 107
-'l' '' l 108
-'m' '' m 109
-'n' '' n 110
-'o' '' o 111
-'p' '' p 112
-'q' '' q 113
-'r' '' r 114
-'s' '' s 115
-'t' '' t 116
-'u' '' u 117
-'v' '' v 118
-'w' '' w 119
-'x' '' x 120
-'y' '' y 121
-'z' '' z 122
+'a' '' a.sc 97
+'b' '' b.sc 98
+'c' '' c.sc 99
+'d' '' d.sc 100
+'e' '' e.sc 101
+'f' '' f.sc 102
+'g' '' g.sc 103
+'h' '' h.sc 104
+'i' '' i.sc 105
+'j' '' j.sc 106
+'k' '' k.sc 107
+'l' '' l.sc 108
+'m' '' m.sc 109
+'n' '' n.sc 110
+'o' '' o.sc 111
+'p' '' p.sc 112
+'q' '' q.sc 113
+'r' '' r.sc 114
+'s' '' s.sc 115
+'t' '' t.sc 116
+'u' '' u.sc 117
+'v' '' v.sc 118
+'w' '' w.sc 119
+'x' '' x.sc 120
+'y' '' y.sc 121
+'z' '' z.sc 122
'&#x2013;' '' endash 123
'&#x2014;' '' emdash 124
'&#x02DD;' '' hungarumlaut 125
'&#x02DC;' '' tilde 126
-'&#x00A8;' '' dieresis 127
+'&#x00A8;' '' dieresis.sc 127
'' ''
'' ''
'' ''
@@ -3250,15 +6147,15 @@ EBGaramond-Regular-lf-titling-ot1 0 170
'' ''
'' ''
'' ''
-'&#x0142;' '' lslash 170
-EBGaramond-Regular-lf-titling-ot1 0 170
-htfcss: EBGaramond-Regular-lf-titling-ot1 font-family: 'EB Garamond Regular', serif;
+'&#x0142;' '' lslash.sc 170
+EBGaramond-Regular-lf-sc-ot1 0 170
+htfcss: EBGaramond-Regular-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-titling-ot1}{unicode/EB_Garamond/EBGaramond-Regular-lf-titling-ot1}{}
-% writing EBGaramond-Regular-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Regular-lf-sc-ot1\><<<
-EBGaramond-Regular-lf-sc-ot1 0 170
+\AddFont{EBGaramond-Regular-lf-sc-ot1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-ot1}{}
+% writing EBGaramond-Regular-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-Regular-lf-ot1\><<<
+EBGaramond-Regular-lf-ot1 0 170
'&#x0393;' '' Gamma 0
'&#x2206;' '' uni2206 1
'&#x0398;' '' Theta 2
@@ -3275,38 +6172,38 @@ EBGaramond-Regular-lf-sc-ot1 0 170
'' ''
'' ''
'' ''
-'&#x0131;' '' dotlessi.sc 16
+'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
-'&#x60;' '' grave.sc 18
-'&#x00B4;' '' acute.sc 19
+'&#x60;' '' grave 18
+'&#x00B4;' '' acute 19
'&#x02C7;' '' caron 20
'&#x02D8;' '' breve 21
-'&#x00AF;' '' macron.sc 22
+'&#x00AF;' '' macron 22
'&#x02DA;' '' ring 23
-'&#x00B8;' '' cedilla.sc 24
-'ss' '' s.sc s.sc 25
-'&#x00E6;' '' ae.sc 26
-'&#x0153;' '' oe.sc 27
-'&#x00F8;' '' oslash.sc 28
+'&#x00B8;' '' cedilla 24
+'&#x00DF;' '' germandbls 25
+'&#x00E6;' '' ae 26
+'&#x0153;' '' oe 27
+'&#x00F8;' '' oslash 28
'&#x00C6;' '' AE 29
'&#x0152;' '' OE 30
'&#x00D8;' '' Oslash 31
' ' '' space 32
-'!' '' exclam.sc 33
+'!' '' exclam 33
'&#x201D;' '' quotedblright 34
-'#' '' numbersign.sc 35
-'$' '' dollar.sc 36
-'%' '' percent.sc 37
-'&amp;' '' ampersand.sc 38
+'#' '' numbersign 35
+'$' '' dollar 36
+'%' '' percent 37
+'&amp;' '' ampersand 38
'&#x2019;' '' quoteright 39
-'(' '' parenleft.sc 40
-')' '' parenright.sc 41
-'*' '' asterisk.sc 42
-'+' '' plus.sc 43
-',' '' comma.sc 44
-'-' '' hyphen.sc 45
-'.' '' period.sc 46
-'/' '' slash.sc 47
+'(' '' parenleft 40
+')' '' parenright 41
+'*' '' asterisk 42
+'+' '' plus 43
+',' '' comma 44
+'-' '' hyphen 45
+'.' '' period 46
+'/' '' slash 47
'0' '' zero.lf 48
'1' '' one.lf 49
'2' '' two.lf 50
@@ -3317,13 +6214,13 @@ EBGaramond-Regular-lf-sc-ot1 0 170
'7' '' seven.lf 55
'8' '' eight.lf 56
'9' '' nine.lf 57
-':' '' colon.sc 58
-';' '' semicolon.sc 59
-'&#x00A1;' '' exclamdown.sc 60
-'&#xa;' '' equal.sc 61
-'&#xe;' '' questiondown.sc 62
-'&#xe;' '' question.sc 63
-'@' '' at.sc 64
+':' '' colon 58
+';' '' semicolon 59
+'&#x00A1;' '' exclamdown 60
+'=' '' equal 61
+'&#x00BF;' '' questiondown 62
+'?' '' question 63
+'@' '' at 64
'A' '' A 65
'B' '' B 66
'C' '' C 67
@@ -3350,48 +6247,48 @@ EBGaramond-Regular-lf-sc-ot1 0 170
'X' '' X 88
'Y' '' Y 89
'Z' '' Z 90
-'[' '' bracketleft.sc 91
+'[' '' bracketleft 91
'&#x201C;' '' quotedblleft 92
-']' '' bracketright.sc 93
+']' '' bracketright 93
'&#x02C6;' '' circumflex 94
'&#x02D9;' '' dotaccent 95
'&#x2018;' '' quoteleft 96
-'a' '' a.sc 97
-'b' '' b.sc 98
-'c' '' c.sc 99
-'d' '' d.sc 100
-'e' '' e.sc 101
-'f' '' f.sc 102
-'g' '' g.sc 103
-'h' '' h.sc 104
-'i' '' i.sc 105
-'j' '' j.sc 106
-'k' '' k.sc 107
-'l' '' l.sc 108
-'m' '' m.sc 109
-'n' '' n.sc 110
-'o' '' o.sc 111
-'p' '' p.sc 112
-'q' '' q.sc 113
-'r' '' r.sc 114
-'s' '' s.sc 115
-'t' '' t.sc 116
-'u' '' u.sc 117
-'v' '' v.sc 118
-'w' '' w.sc 119
-'x' '' x.sc 120
-'y' '' y.sc 121
-'z' '' z.sc 122
+'a' '' a 97
+'b' '' b 98
+'c' '' c 99
+'d' '' d 100
+'e' '' e 101
+'f' '' f 102
+'g' '' g 103
+'h' '' h 104
+'i' '' i 105
+'j' '' j 106
+'k' '' k 107
+'l' '' l 108
+'m' '' m 109
+'n' '' n 110
+'o' '' o 111
+'p' '' p 112
+'q' '' q 113
+'r' '' r 114
+'s' '' s 115
+'t' '' t 116
+'u' '' u 117
+'v' '' v 118
+'w' '' w 119
+'x' '' x 120
+'y' '' y 121
+'z' '' z 122
'&#x2013;' '' endash 123
'&#x2014;' '' emdash 124
'&#x02DD;' '' hungarumlaut 125
'&#x02DC;' '' tilde 126
-'&#x00A8;' '' dieresis.sc 127
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'&#x00A8;' '' dieresis 127
+'&#xFB00;' '' f_f 128
+'&#xFB01;' '' f_i 129
+'&#xFB02;' '' f_l 130
+'&#xFB03;' '' f_f_i 131
+'&#xFB04;' '' f_f_l 132
'' ''
'' ''
'' ''
@@ -3429,27 +6326,27 @@ EBGaramond-Regular-lf-sc-ot1 0 170
'' ''
'' ''
'' ''
-'&#x0142;' '' lslash.sc 170
-EBGaramond-Regular-lf-sc-ot1 0 170
-htfcss: EBGaramond-Regular-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
-
->>>
-\AddFont{EBGaramond-Regular-lf-sc-ot1}{unicode/EB_Garamond/EBGaramond-Regular-lf-sc-ot1}{}
-% writing EBGaramond-Regular-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Regular-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+'&#x0142;' '' lslash 170
+EBGaramond-Regular-lf-ot1 0 170
htfcss: EBGaramond-Regular-lf-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-ot1}{alias/EB_Garamond/EBGaramond-Regular-lf-ot1}{}
-% writing EBGaramond-Italic-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-lf-ot1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ot1}{}
+% writing EBGaramond-Italic-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Italic-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-lf-ot1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Italic-lf-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ot1}{}
+% writing EBGaramond-Italic-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Italic-lf-sc-ot1\><<<
+.EBGaramond-Regular-lf-sc-ot1
+htfcss: EBGaramond-Italic-lf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-ot1}{alias/EB_Garamond/EBGaramond-Italic-lf-ot1}{}
-% writing EBGaramond-Italic-lf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-Italic-lf-sc-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-ot1}{}
+% writing EBGaramond-Italic-lf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-Italic-lf-swash-ot1\><<<
EBGaramond-Italic-lf-swash-ot1 0 170
'&#x0393;' '' Gamma 0
@@ -3463,11 +6360,11 @@ EBGaramond-Italic-lf-swash-ot1 0 170
'&#x03A6;' '' Phi 8
'&#x03A8;' '' Psi 9
'&#x2126;' '' uni2126 10
-'&#xFB00;' '' f_f 11
-'&#xFB01;' '' uniFB01 12
-'&#xFB02;' '' uniFB02 13
-'&#xFB03;' '' uniFB03 14
-'&#xFB04;' '' uniFB04 15
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave 18
@@ -3580,37 +6477,37 @@ EBGaramond-Italic-lf-swash-ot1 0 170
'&#x02DD;' '' hungarumlaut 125
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
-'aq' '' a_s 128
-'ch' '' c_h 129
-'c{' '' c_k 130
-'ct' '' c_t 131
-'eq' '' e_s 132
-'fb' '' f_b 133
-'fh' '' f_h 134
-'fj' '' f_j 135
-'fk' '' f_k 136
-'ft' '' f_t 137
+'&#xFB00;' '' f_f 128
+'&#xFB01;' '' uniFB01 129
+'&#xFB02;' '' uniFB02 130
+'&#xFB03;' '' uniFB03 131
+'&#xFB04;' '' uniFB04 132
+'aq' '' a_s 133
+'ch' '' c_h 134
+'c{' '' c_k 135
+'ct' '' c_t 136
+'eq' '' e_s 137
'&#x0141;' '' Lslash 138
-'gg' '' g_g 139
-'gj' '' g_j 140
-'gy' '' g_y 141
-'iq' '' i_s 142
-'q{' '' s_k 143
-'qp' '' s_p 144
-'qq' '' s_s 145
-'tt' '' t_t 146
-'uq' '' u_s 147
-'&#xFB06;' '' uniFB06 148
-'ffb' '' f_f_b 149
-'ffh' '' f_f_h 150
-'ffj' '' f_f_j 151
-'ff{' '' f_f_k 152
-'fft' '' f_f_t 153
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'fb' '' f_b 139
+'fh' '' f_h 140
+'fj' '' f_j 141
+'fk' '' f_k 142
+'ft' '' f_t 143
+'gg' '' g_g 144
+'gj' '' g_j 145
+'gy' '' g_y 146
+'iq' '' i_s 147
+'q{' '' s_k 148
+'qp' '' s_p 149
+'qq' '' s_s 150
+'tt' '' t_t 151
+'uq' '' u_s 152
+'&#xFB06;' '' uniFB06 153
+'ffb' '' f_f_b 154
+'ffh' '' f_f_h 155
+'ffj' '' f_f_j 156
+'ff{' '' f_f_k 157
+'fft' '' f_f_t 158
'' ''
'' ''
'' ''
@@ -3624,25 +6521,11 @@ EBGaramond-Italic-lf-swash-ot1 0 170
'' ''
'&#x0142;' '' lslash 170
EBGaramond-Italic-lf-swash-ot1 0 170
-htfcss: EBGaramond-Italic-lf-swash-ot1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-swash-ot1}{unicode/EB_Garamond/EBGaramond-Italic-lf-swash-ot1}{}
-% writing EBGaramond-Italic-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Italic-lf-sc-ot1\><<<
-.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Italic-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-Italic-lf-sc-ot1}{}
-% writing EBGaramond-Italic-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Italic-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-lf-titling-ot1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-lf-swash-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-Italic-lf-titling-ot1}{}
-% writing EBGaramond-Regular-lf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-Italic-lf-swash-ot1}{unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-ot1}{}
+% writing EBGaramond-Regular-lf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Regular-lf-swash-ot1\><<<
EBGaramond-Regular-lf-swash-ot1 0 170
'&#x0393;' '' Gamma 0
@@ -3656,11 +6539,11 @@ EBGaramond-Regular-lf-swash-ot1 0 170
'&#x03A6;' '' Phi 8
'&#x03A8;' '' Psi 9
'&#x2126;' '' uni2126 10
-'&#xFB00;' '' f_f 11
-'&#xFB01;' '' f_i 12
-'&#xFB02;' '' f_l 13
-'&#xFB03;' '' f_f_i 14
-'&#xFB04;' '' f_f_l 15
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
'&#x0131;' '' dotlessi 16
'&#x0237;' '' uni0237 17
'&#x60;' '' grave 18
@@ -3773,28 +6656,28 @@ EBGaramond-Regular-lf-swash-ot1 0 170
'&#x02DD;' '' hungarumlaut 125
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
-'ch' '' c_h 128
-'c{' '' c_k 129
-'ct' '' c_t 130
-'fb' '' f_b 131
-'fh' '' f_h 132
-'fj' '' f_j 133
-'fk' '' f_k 134
-'ft' '' f_t 135
-'&#xFB06;' '' s_t 136
-'tt' '' t_t 137
+'&#xFB00;' '' f_f 128
+'&#xFB01;' '' f_i 129
+'&#xFB02;' '' f_l 130
+'&#xFB03;' '' f_f_i 131
+'&#xFB04;' '' f_f_l 132
+'ch' '' c_h 133
+'c{' '' c_k 134
+'ct' '' c_t 135
+'fb' '' f_b 136
+'fh' '' f_h 137
'&#x0141;' '' Lslash 138
-'Th' '' T_h 139
-'ffb' '' f_f_b 140
-'ffh' '' f_f_h 141
-'ffj' '' f_f_j 142
-'ff{' '' f_f_k 143
-'fft' '' f_f_t 144
-'' ''
-'' ''
-'' ''
-'' ''
-'' ''
+'fj' '' f_j 139
+'fk' '' f_k 140
+'ft' '' f_t 141
+'&#xFB06;' '' s_t 142
+'tt' '' t_t 143
+'Th' '' T_h 144
+'ffb' '' f_f_b 145
+'ffh' '' f_f_h 146
+'ffj' '' f_f_j 147
+'ff{' '' f_f_k 148
+'fft' '' f_f_t 149
'' ''
'' ''
'' ''
@@ -3820,441 +6703,385 @@ EBGaramond-Regular-lf-swash-ot1 0 170
htfcss: EBGaramond-Regular-lf-swash-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-swash-ot1}{unicode/EB_Garamond/EBGaramond-Regular-lf-swash-ot1}{}
-% writing EBGaramond-Bold-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-lf-titling-ot1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-Bold-lf-titling-ot1}{}
-% writing EBGaramond-Bold-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Bold-lf-sc-ot1\><<<
+\AddFont{EBGaramond-Regular-lf-swash-ot1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-ot1}{}
+% writing EBGaramond-SemiBold-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBold-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Bold-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-Bold-lf-sc-ot1}{}
-% writing EBGaramond-Bold-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-lf-ot1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-ot1}{alias/EB_Garamond/EBGaramond-Bold-lf-ot1}{}
-% writing EBGaramond-BoldItalic-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-lf-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-sc-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-ot1}{}
+% writing EBGaramond-SemiBold-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBold-lf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBold-lf-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-ot1}{}
-% writing EBGaramond-BoldItalic-lf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-BoldItalic-lf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-BoldItalic-lf-swash-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBoldItalic-lf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBoldItalic-lf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-ot1}{}
-% writing EBGaramond-BoldItalic-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-BoldItalic-lf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBoldItalic-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-BoldItalic-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-lf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-ot1}{}
-% writing EBGaramond-BoldItalic-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-lf-titling-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-lf-sc-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-ot1}{}
+% writing EBGaramond-SemiBoldItalic-lf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-SemiBoldItalic-lf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-SemiBoldItalic-lf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-ot1}{}
-% writing EBGaramond-Bold-lf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-Bold-lf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-swash-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-ot1}{}
+% writing EBGaramond-SemiBold-lf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-SemiBold-lf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-Bold-lf-swash-ot1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-swash-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-Bold-lf-swash-ot1}{}
-% writing EBGaramond-SemiBold-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-lf-titling-ot1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-ot1}{}
-% writing EBGaramond-SemiBold-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBold-lf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBold-lf-swash-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-ot1}{}
+% writing EBGaramond-Bold-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Bold-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBold-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-ot1}{}
-% writing EBGaramond-SemiBold-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-lf-ot1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-lf-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-lf-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-sc-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-ot1}{}
+% writing EBGaramond-Bold-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-Bold-lf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Bold-lf-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-lf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-SemiBoldItalic-lf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-SemiBoldItalic-lf-swash-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ot1}{}
+% writing EBGaramond-BoldItalic-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-BoldItalic-lf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-BoldItalic-lf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-ot1}{}
-% writing EBGaramond-SemiBoldItalic-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBoldItalic-lf-sc-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ot1}{}
+% writing EBGaramond-BoldItalic-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-BoldItalic-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBoldItalic-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-lf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-ot1}{}
-% writing EBGaramond-SemiBoldItalic-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-lf-titling-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-lf-sc-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-ot1}{}
+% writing EBGaramond-BoldItalic-lf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-BoldItalic-lf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-BoldItalic-lf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-ot1}{}
-% writing EBGaramond-SemiBold-lf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-SemiBold-lf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-swash-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-ot1}{}
+% writing EBGaramond-Bold-lf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-Bold-lf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-SemiBold-lf-swash-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-swash-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-ot1}{}
-% writing EBGaramond-Medium-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Medium-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Medium-lf-titling-ot1 font-family: 'EB Garamond Medium', serif;
-
->>>
-\AddFont{EBGaramond-Medium-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-Medium-lf-titling-ot1}{}
-% writing EBGaramond-Medium-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Bold-lf-swash-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-ot1}{}
+% writing EBGaramond-Medium-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Medium-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Medium-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-Medium-lf-sc-ot1}{}
-% writing EBGaramond-Medium-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-lf-sc-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-ot1}{}
+% writing EBGaramond-Medium-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Medium-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Medium-lf-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-ot1}{alias/EB_Garamond/EBGaramond-Medium-lf-ot1}{}
-% writing EBGaramond-MediumItalic-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-lf-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ot1}{}
+% writing EBGaramond-MediumItalic-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-MediumItalic-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-lf-ot1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-MediumItalic-lf-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-ot1}{}
-% writing EBGaramond-MediumItalic-lf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-MediumItalic-lf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-MediumItalic-lf-swash-ot1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-ot1}{}
-% writing EBGaramond-MediumItalic-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-MediumItalic-lf-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ot1}{}
+% writing EBGaramond-MediumItalic-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-MediumItalic-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-MediumItalic-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-lf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-ot1}{}
-% writing EBGaramond-MediumItalic-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-MediumItalic-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-lf-titling-ot1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-lf-sc-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-ot1}{}
+% writing EBGaramond-MediumItalic-lf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-MediumItalic-lf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-MediumItalic-lf-swash-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-ot1}{}
-% writing EBGaramond-Medium-lf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-MediumItalic-lf-swash-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-ot1}{}
+% writing EBGaramond-Medium-lf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Medium-lf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Medium-lf-swash-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-Medium-lf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-ExtraBold-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-lf-titling-ot1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-ot1}{}
-% writing EBGaramond-ExtraBold-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Medium-lf-swash-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBold-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBold-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-ot1}{}
-% writing EBGaramond-ExtraBold-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-lf-sc-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-ot1}{}
+% writing EBGaramond-ExtraBold-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBold-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-lf-ot1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBold-lf-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-lf-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBoldItalic-lf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-lf-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-ExtraBoldItalic-lf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-ExtraBoldItalic-lf-swash-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBoldItalic-lf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBoldItalic-lf-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBoldItalic-lf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBoldItalic-lf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-lf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-ExtraBoldItalic-lf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-lf-titling-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-ExtraBoldItalic-lf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-ExtraBoldItalic-lf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-titling-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-ot1}{}
-% writing EBGaramond-ExtraBold-lf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-lf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-ExtraBold-lf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-ExtraBold-lf-swash-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-swash-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-ot1}{}
-% writing EBGaramond-Regular-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBold-lf-swash-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-ot1}{}
+% writing EBGaramond-Regular-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Regular-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Regular-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-Regular-osf-sc-ot1}{}
-% writing EBGaramond-Regular-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-osf-sc-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-ot1}{}
+% writing EBGaramond-Regular-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Regular-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Regular-osf-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-ot1}{alias/EB_Garamond/EBGaramond-Regular-osf-ot1}{}
-% writing EBGaramond-Italic-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-osf-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ot1}{}
+% writing EBGaramond-Italic-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Italic-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-osf-ot1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Italic-osf-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-ot1}{alias/EB_Garamond/EBGaramond-Italic-osf-ot1}{}
-% writing EBGaramond-Italic-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Italic-osf-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ot1}{}
+% writing EBGaramond-Italic-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Italic-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Italic-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-Italic-osf-sc-ot1}{}
-% writing EBGaramond-Italic-osf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-Italic-osf-sc-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-ot1}{}
+% writing EBGaramond-Italic-osf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-Italic-osf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-Italic-osf-swash-ot1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-swash-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-Italic-osf-swash-ot1}{}
-% writing EBGaramond-Regular-osf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-Italic-osf-swash-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-ot1}{}
+% writing EBGaramond-Regular-osf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Regular-osf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Regular-osf-swash-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-Regular-osf-swash-ot1}{}
-% writing EBGaramond-Bold-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Bold-osf-sc-ot1\><<<
+\AddFont{EBGaramond-Regular-osf-swash-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-ot1}{}
+% writing EBGaramond-SemiBold-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBold-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Bold-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-Bold-osf-sc-ot1}{}
-% writing EBGaramond-Bold-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-osf-ot1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-osf-sc-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-ot1}{}
+% writing EBGaramond-SemiBold-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBold-osf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBold-osf-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-ot1}{alias/EB_Garamond/EBGaramond-Bold-osf-ot1}{}
-% writing EBGaramond-BoldItalic-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-osf-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-osf-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBoldItalic-osf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBoldItalic-osf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-ot1}{}
-% writing EBGaramond-BoldItalic-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-BoldItalic-osf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBoldItalic-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-BoldItalic-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-ot1}{}
-% writing EBGaramond-BoldItalic-osf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-BoldItalic-osf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-sc-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-ot1}{}
+% writing EBGaramond-SemiBoldItalic-osf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-SemiBoldItalic-osf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-BoldItalic-osf-swash-ot1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-ot1}{}
-% writing EBGaramond-Bold-osf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-Bold-osf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-swash-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-ot1}{}
+% writing EBGaramond-SemiBold-osf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-SemiBold-osf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-Bold-osf-swash-ot1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-swash-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-Bold-osf-swash-ot1}{}
-% writing EBGaramond-SemiBold-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBold-osf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBold-osf-swash-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-ot1}{}
+% writing EBGaramond-Bold-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Bold-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBold-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-ot1}{}
-% writing EBGaramond-SemiBold-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-osf-ot1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-osf-sc-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-ot1}{}
+% writing EBGaramond-Bold-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-Bold-osf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Bold-osf-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-osf-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-osf-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ot1}{}
+% writing EBGaramond-BoldItalic-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-BoldItalic-osf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-BoldItalic-osf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBoldItalic-osf-sc-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ot1}{}
+% writing EBGaramond-BoldItalic-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-BoldItalic-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBoldItalic-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-ot1}{}
-% writing EBGaramond-SemiBoldItalic-osf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-SemiBoldItalic-osf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-sc-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-ot1}{}
+% writing EBGaramond-BoldItalic-osf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-BoldItalic-osf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-SemiBoldItalic-osf-swash-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-ot1}{}
-% writing EBGaramond-SemiBold-osf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-SemiBold-osf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-swash-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-ot1}{}
+% writing EBGaramond-Bold-osf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-Bold-osf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-SemiBold-osf-swash-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-swash-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-ot1}{}
-% writing EBGaramond-Medium-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Bold-osf-swash-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-ot1}{}
+% writing EBGaramond-Medium-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Medium-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Medium-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-Medium-osf-sc-ot1}{}
-% writing EBGaramond-Medium-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-osf-sc-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-ot1}{}
+% writing EBGaramond-Medium-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Medium-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Medium-osf-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-ot1}{alias/EB_Garamond/EBGaramond-Medium-osf-ot1}{}
-% writing EBGaramond-MediumItalic-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-osf-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ot1}{}
+% writing EBGaramond-MediumItalic-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-MediumItalic-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-osf-ot1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-MediumItalic-osf-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-ot1}{}
-% writing EBGaramond-MediumItalic-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-MediumItalic-osf-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ot1}{}
+% writing EBGaramond-MediumItalic-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-MediumItalic-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-MediumItalic-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-ot1}{}
-% writing EBGaramond-MediumItalic-osf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-MediumItalic-osf-sc-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-ot1}{}
+% writing EBGaramond-MediumItalic-osf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-MediumItalic-osf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-MediumItalic-osf-swash-ot1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-swash-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-ot1}{}
-% writing EBGaramond-Medium-osf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-MediumItalic-osf-swash-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-ot1}{}
+% writing EBGaramond-Medium-osf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Medium-osf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Medium-osf-swash-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-Medium-osf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Medium-osf-swash-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBold-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBold-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-ot1}{}
-% writing EBGaramond-ExtraBold-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-osf-sc-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-ot1}{}
+% writing EBGaramond-ExtraBold-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBold-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-osf-ot1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBold-osf-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-osf-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBoldItalic-osf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-osf-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBoldItalic-osf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBoldItalic-osf-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBoldItalic-osf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBoldItalic-osf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-ExtraBoldItalic-osf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-ExtraBoldItalic-osf-swash-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-osf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-osf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-ExtraBold-osf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-ExtraBold-osf-swash-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-swash-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-ot1}{}
+\AddFont{EBGaramond-ExtraBold-osf-swash-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-ot1}{}
% writing EBGaramond-Regular-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-Regular-sup-ot1\><<<
EBGaramond-Regular-sup-ot1 0 170
@@ -4433,560 +7260,490 @@ EBGaramond-Regular-sup-ot1 0 170
htfcss: EBGaramond-Regular-sup-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-sup-ot1}{unicode/EB_Garamond/EBGaramond-Regular-sup-ot1}{}
+\AddFont{EBGaramond-Regular-sup-ot1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-ot1}{}
% writing EBGaramond-Italic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-Italic-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-Italic-sup-ot1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-sup-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-sup-ot1}{alias/EB_Garamond/EBGaramond-Italic-sup-ot1}{}
-% writing EBGaramond-Bold-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
-\<EBGaramond-Bold-sup-ot1\><<<
+\AddFont{EBGaramond-Italic-sup-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-sup-ot1}{}
+% writing EBGaramond-SemiBold-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
+\<EBGaramond-SemiBold-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-Bold-sup-ot1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-sup-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-sup-ot1}{alias/EB_Garamond/EBGaramond-Bold-sup-ot1}{}
-% writing EBGaramond-BoldItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
-\<EBGaramond-BoldItalic-sup-ot1\><<<
+\AddFont{EBGaramond-SemiBold-sup-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-ot1}{}
+% writing EBGaramond-SemiBoldItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
+\<EBGaramond-SemiBoldItalic-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-BoldItalic-sup-ot1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-sup-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-sup-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-sup-ot1}{}
-% writing EBGaramond-SemiBold-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
-\<EBGaramond-SemiBold-sup-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-sup-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-ot1}{}
+% writing EBGaramond-Bold-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
+\<EBGaramond-Bold-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-SemiBold-sup-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-sup-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-sup-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-sup-ot1}{}
-% writing EBGaramond-SemiBoldItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
-\<EBGaramond-SemiBoldItalic-sup-ot1\><<<
+\AddFont{EBGaramond-Bold-sup-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-sup-ot1}{}
+% writing EBGaramond-BoldItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
+\<EBGaramond-BoldItalic-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-SemiBoldItalic-sup-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-sup-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-sup-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-ot1}{}
+\AddFont{EBGaramond-BoldItalic-sup-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-ot1}{}
% writing EBGaramond-Medium-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-Medium-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
htfcss: EBGaramond-Medium-sup-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-sup-ot1}{alias/EB_Garamond/EBGaramond-Medium-sup-ot1}{}
+\AddFont{EBGaramond-Medium-sup-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-sup-ot1}{}
% writing EBGaramond-MediumItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-MediumItalic-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-MediumItalic-sup-ot1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-sup-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-sup-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-sup-ot1}{}
+\AddFont{EBGaramond-MediumItalic-sup-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-ot1}{}
% writing EBGaramond-ExtraBold-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-ExtraBold-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-ExtraBold-sup-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-sup-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-sup-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-sup-ot1}{}
+\AddFont{EBGaramond-ExtraBold-sup-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-ot1}{}
% writing EBGaramond-ExtraBoldItalic-sup-ot1.htf hash: a0e6f124df848efd28b71b81f5c1fc79
\<EBGaramond-ExtraBoldItalic-sup-ot1\><<<
.EBGaramond-Regular-sup-ot1
-htfcss: EBGaramond-ExtraBoldItalic-sup-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-sup-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-sup-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-ot1}{}
-% writing EBGaramond-Regular-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Regular-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Regular-tlf-titling-ot1 font-family: 'EB Garamond Regular', serif;
-
->>>
-\AddFont{EBGaramond-Regular-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-Regular-tlf-titling-ot1}{}
-% writing EBGaramond-Regular-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBoldItalic-sup-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-ot1}{}
+% writing EBGaramond-Regular-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Regular-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Regular-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-Regular-tlf-sc-ot1}{}
-% writing EBGaramond-Regular-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-tlf-sc-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-ot1}{}
+% writing EBGaramond-Regular-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Regular-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Regular-tlf-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-ot1}{alias/EB_Garamond/EBGaramond-Regular-tlf-ot1}{}
-% writing EBGaramond-Italic-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-tlf-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ot1}{}
+% writing EBGaramond-Italic-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Italic-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-tlf-ot1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Italic-tlf-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-ot1}{alias/EB_Garamond/EBGaramond-Italic-tlf-ot1}{}
-% writing EBGaramond-Italic-tlf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-Italic-tlf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-Italic-tlf-swash-ot1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-Italic-tlf-swash-ot1}{}
-% writing EBGaramond-Italic-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Italic-tlf-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ot1}{}
+% writing EBGaramond-Italic-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Italic-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Italic-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tlf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-Italic-tlf-sc-ot1}{}
-% writing EBGaramond-Italic-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Italic-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-tlf-titling-ot1 font-family: 'EB Garamond Italic', serif;
+\AddFont{EBGaramond-Italic-tlf-sc-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-ot1}{}
+% writing EBGaramond-Italic-tlf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-Italic-tlf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-Italic-tlf-swash-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-Italic-tlf-titling-ot1}{}
-% writing EBGaramond-Regular-tlf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-Italic-tlf-swash-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-ot1}{}
+% writing EBGaramond-Regular-tlf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Regular-tlf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Regular-tlf-swash-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-Regular-tlf-swash-ot1}{}
-% writing EBGaramond-Bold-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-tlf-titling-ot1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-Bold-tlf-titling-ot1}{}
-% writing EBGaramond-Bold-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Bold-tlf-sc-ot1\><<<
+\AddFont{EBGaramond-Regular-tlf-swash-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-ot1}{}
+% writing EBGaramond-SemiBold-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBold-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Bold-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tlf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-Bold-tlf-sc-ot1}{}
-% writing EBGaramond-Bold-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-tlf-ot1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-ot1}{alias/EB_Garamond/EBGaramond-Bold-tlf-ot1}{}
-% writing EBGaramond-BoldItalic-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-tlf-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-sc-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-ot1}{}
+% writing EBGaramond-SemiBold-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBold-tlf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBold-tlf-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ot1}{}
-% writing EBGaramond-BoldItalic-tlf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-BoldItalic-tlf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-BoldItalic-tlf-swash-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBoldItalic-tlf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBoldItalic-tlf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-ot1}{}
-% writing EBGaramond-BoldItalic-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-BoldItalic-tlf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBoldItalic-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-BoldItalic-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tlf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-ot1}{}
-% writing EBGaramond-BoldItalic-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-tlf-titling-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-SemiBoldItalic-tlf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-SemiBoldItalic-tlf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-ot1}{}
-% writing EBGaramond-Bold-tlf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-Bold-tlf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-ot1}{}
+% writing EBGaramond-SemiBold-tlf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-SemiBold-tlf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-Bold-tlf-swash-ot1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-Bold-tlf-swash-ot1}{}
-% writing EBGaramond-SemiBold-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-tlf-titling-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-SemiBold-tlf-swash-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-ot1}{}
-% writing EBGaramond-SemiBold-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBold-tlf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBold-tlf-swash-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-ot1}{}
+% writing EBGaramond-Bold-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Bold-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBold-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-ot1}{}
-% writing EBGaramond-SemiBold-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-tlf-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-tlf-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-sc-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-ot1}{}
+% writing EBGaramond-Bold-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-Bold-tlf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Bold-tlf-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-SemiBoldItalic-tlf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-SemiBoldItalic-tlf-swash-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ot1}{}
+% writing EBGaramond-BoldItalic-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-BoldItalic-tlf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-BoldItalic-tlf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBoldItalic-tlf-sc-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ot1}{}
+% writing EBGaramond-BoldItalic-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-BoldItalic-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBoldItalic-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tlf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-tlf-titling-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-tlf-sc-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-ot1}{}
+% writing EBGaramond-BoldItalic-tlf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-BoldItalic-tlf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-BoldItalic-tlf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-ot1}{}
-% writing EBGaramond-SemiBold-tlf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-SemiBold-tlf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-swash-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-ot1}{}
+% writing EBGaramond-Bold-tlf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-Bold-tlf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-SemiBold-tlf-swash-ot1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-ot1}{}
-% writing EBGaramond-Medium-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Medium-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Medium-tlf-titling-ot1 font-family: 'EB Garamond Medium', serif;
+htfcss: EBGaramond-Bold-tlf-swash-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-Medium-tlf-titling-ot1}{}
-% writing EBGaramond-Medium-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Bold-tlf-swash-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-ot1}{}
+% writing EBGaramond-Medium-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Medium-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Medium-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-Medium-tlf-sc-ot1}{}
-% writing EBGaramond-Medium-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-tlf-sc-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-ot1}{}
+% writing EBGaramond-Medium-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Medium-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Medium-tlf-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-ot1}{alias/EB_Garamond/EBGaramond-Medium-tlf-ot1}{}
-% writing EBGaramond-MediumItalic-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-tlf-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ot1}{}
+% writing EBGaramond-MediumItalic-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-MediumItalic-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-tlf-ot1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-MediumItalic-tlf-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ot1}{}
-% writing EBGaramond-MediumItalic-tlf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-MediumItalic-tlf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-MediumItalic-tlf-swash-ot1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-ot1}{}
-% writing EBGaramond-MediumItalic-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-MediumItalic-tlf-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ot1}{}
+% writing EBGaramond-MediumItalic-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-MediumItalic-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-MediumItalic-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tlf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-ot1}{}
-% writing EBGaramond-MediumItalic-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-MediumItalic-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-tlf-titling-ot1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-tlf-sc-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-ot1}{}
+% writing EBGaramond-MediumItalic-tlf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-MediumItalic-tlf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-MediumItalic-tlf-swash-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-ot1}{}
-% writing EBGaramond-Medium-tlf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-MediumItalic-tlf-swash-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-ot1}{}
+% writing EBGaramond-Medium-tlf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Medium-tlf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Medium-tlf-swash-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-Medium-tlf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-ExtraBold-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-tlf-titling-ot1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-ot1}{}
-% writing EBGaramond-ExtraBold-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Medium-tlf-swash-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBold-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBold-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-ot1}{}
-% writing EBGaramond-ExtraBold-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-tlf-sc-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-ot1}{}
+% writing EBGaramond-ExtraBold-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBold-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-tlf-ot1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBold-tlf-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-tlf-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBoldItalic-tlf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-ExtraBoldItalic-tlf-swash-ot1\><<<
-.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBoldItalic-tlf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-titling-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-ExtraBoldItalic-tlf-titling-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-titling-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-ExtraBoldItalic-tlf-swash-ot1\><<<
+.EBGaramond-Italic-lf-swash-ot1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-titling-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-ot1}{}
-% writing EBGaramond-ExtraBold-tlf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-tlf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-ExtraBold-tlf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-ExtraBold-tlf-swash-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-swash-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-ot1}{}
-% writing EBGaramond-Regular-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBold-tlf-swash-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-ot1}{}
+% writing EBGaramond-Regular-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Regular-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Regular-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-Regular-tosf-sc-ot1}{}
-% writing EBGaramond-Regular-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-tosf-sc-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-ot1}{}
+% writing EBGaramond-Regular-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Regular-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Regular-tosf-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-ot1}{alias/EB_Garamond/EBGaramond-Regular-tosf-ot1}{}
-% writing EBGaramond-Italic-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Regular-tosf-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ot1}{}
+% writing EBGaramond-Italic-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Italic-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Italic-tosf-ot1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Italic-tosf-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-ot1}{alias/EB_Garamond/EBGaramond-Italic-tosf-ot1}{}
-% writing EBGaramond-Italic-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Italic-tosf-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ot1}{}
+% writing EBGaramond-Italic-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Italic-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Italic-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-Italic-tosf-sc-ot1}{}
-% writing EBGaramond-Italic-tosf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-Italic-tosf-sc-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-ot1}{}
+% writing EBGaramond-Italic-tosf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-Italic-tosf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-Italic-tosf-swash-ot1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-swash-ot1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-Italic-tosf-swash-ot1}{}
-% writing EBGaramond-Regular-tosf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-Italic-tosf-swash-ot1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-ot1}{}
+% writing EBGaramond-Regular-tosf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Regular-tosf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Regular-tosf-swash-ot1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-Regular-tosf-swash-ot1}{}
-% writing EBGaramond-Bold-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-Bold-tosf-sc-ot1\><<<
+\AddFont{EBGaramond-Regular-tosf-swash-ot1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-ot1}{}
+% writing EBGaramond-SemiBold-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBold-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-Bold-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-Bold-tosf-sc-ot1}{}
-% writing EBGaramond-Bold-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-Bold-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-Bold-tosf-ot1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-tosf-sc-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-ot1}{}
+% writing EBGaramond-SemiBold-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBold-tosf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBold-tosf-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-ot1}{alias/EB_Garamond/EBGaramond-Bold-tosf-ot1}{}
-% writing EBGaramond-BoldItalic-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-BoldItalic-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-BoldItalic-tosf-ot1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tosf-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-SemiBoldItalic-tosf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-SemiBoldItalic-tosf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ot1}{}
-% writing EBGaramond-BoldItalic-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-BoldItalic-tosf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-SemiBoldItalic-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-BoldItalic-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-ot1}{}
-% writing EBGaramond-BoldItalic-tosf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-BoldItalic-tosf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-ot1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-SemiBoldItalic-tosf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-BoldItalic-tosf-swash-ot1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-ot1}{}
-% writing EBGaramond-Bold-tosf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-Bold-tosf-swash-ot1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-ot1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-ot1}{}
+% writing EBGaramond-SemiBold-tosf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-SemiBold-tosf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-Bold-tosf-swash-ot1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-swash-ot1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-Bold-tosf-swash-ot1}{}
-% writing EBGaramond-SemiBold-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBold-tosf-sc-ot1\><<<
+\AddFont{EBGaramond-SemiBold-tosf-swash-ot1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-ot1}{}
+% writing EBGaramond-Bold-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-Bold-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBold-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-ot1}{}
-% writing EBGaramond-SemiBold-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBold-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBold-tosf-ot1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-tosf-sc-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-ot1}{}
+% writing EBGaramond-Bold-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-Bold-tosf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-Bold-tosf-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
-\<EBGaramond-SemiBoldItalic-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-SemiBoldItalic-tosf-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tosf-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ot1}{}
+% writing EBGaramond-BoldItalic-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
+\<EBGaramond-BoldItalic-tosf-ot1\><<<
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-BoldItalic-tosf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
-\<EBGaramond-SemiBoldItalic-tosf-sc-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ot1}{}
+% writing EBGaramond-BoldItalic-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
+\<EBGaramond-BoldItalic-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-SemiBoldItalic-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-ot1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
-\<EBGaramond-SemiBoldItalic-tosf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-sc-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-ot1}{}
+% writing EBGaramond-BoldItalic-tosf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
+\<EBGaramond-BoldItalic-tosf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-SemiBoldItalic-tosf-swash-ot1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-ot1}{}
-% writing EBGaramond-SemiBold-tosf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
-\<EBGaramond-SemiBold-tosf-swash-ot1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-swash-ot1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-ot1}{}
+% writing EBGaramond-Bold-tosf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
+\<EBGaramond-Bold-tosf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-SemiBold-tosf-swash-ot1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-swash-ot1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-ot1}{}
-% writing EBGaramond-Medium-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Bold-tosf-swash-ot1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-ot1}{}
+% writing EBGaramond-Medium-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-Medium-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
htfcss: EBGaramond-Medium-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-Medium-tosf-sc-ot1}{}
-% writing EBGaramond-Medium-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-tosf-sc-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-ot1}{}
+% writing EBGaramond-Medium-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-Medium-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
+.EBGaramond-Regular-lf-ot1
htfcss: EBGaramond-Medium-tosf-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-ot1}{alias/EB_Garamond/EBGaramond-Medium-tosf-ot1}{}
-% writing EBGaramond-MediumItalic-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-Medium-tosf-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ot1}{}
+% writing EBGaramond-MediumItalic-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-MediumItalic-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-MediumItalic-tosf-ot1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-MediumItalic-tosf-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ot1}{}
-% writing EBGaramond-MediumItalic-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-MediumItalic-tosf-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ot1}{}
+% writing EBGaramond-MediumItalic-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-MediumItalic-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-MediumItalic-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-sc-ot1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-ot1}{}
-% writing EBGaramond-MediumItalic-tosf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-MediumItalic-tosf-sc-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-ot1}{}
+% writing EBGaramond-MediumItalic-tosf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-MediumItalic-tosf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-MediumItalic-tosf-swash-ot1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-swash-ot1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-ot1}{}
-% writing EBGaramond-Medium-tosf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-MediumItalic-tosf-swash-ot1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-ot1}{}
+% writing EBGaramond-Medium-tosf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-Medium-tosf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
htfcss: EBGaramond-Medium-tosf-swash-ot1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-Medium-tosf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-Medium-tosf-swash-ot1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBold-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBold-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-sc-ot1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-ot1}{}
-% writing EBGaramond-ExtraBold-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-tosf-sc-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-ot1}{}
+% writing EBGaramond-ExtraBold-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBold-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBold-tosf-ot1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBold-tosf-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-ot1.htf hash: 7268bdb839c9d7165bda1a87ba0adf0d
+\AddFont{EBGaramond-ExtraBold-tosf-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-ot1.htf hash: a4db6c93392e5ac44bc0e93e694589fb
\<EBGaramond-ExtraBoldItalic-tosf-ot1\><<<
-.EBGaramond-Regular-lf-titling-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-ot1
+htfcss: EBGaramond-ExtraBoldItalic-tosf-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-sc-ot1.htf hash: bbff7bc556a7ea16faea1edbaf93648f
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-sc-ot1.htf hash: d2c6ffdc3b663c5b48cbc1acc71e29ff
\<EBGaramond-ExtraBoldItalic-tosf-sc-ot1\><<<
.EBGaramond-Regular-lf-sc-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-ot1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-ot1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-ot1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-swash-ot1.htf hash: b0dc486bda70a8c0e988fc4d5c310b90
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-ot1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-swash-ot1.htf hash: 8bdb44a4cf857ea5d4dd94ad227d6b29
\<EBGaramond-ExtraBoldItalic-tosf-swash-ot1\><<<
.EBGaramond-Italic-lf-swash-ot1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-ot1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-ot1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-ot1}{}
-% writing EBGaramond-ExtraBold-tosf-swash-ot1.htf hash: 3f62e2112ede16e91d71fc41fba422f9
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-ot1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-ot1}{}
+% writing EBGaramond-ExtraBold-tosf-swash-ot1.htf hash: 8596cb5cef1b286b261b4779ab54781a
\<EBGaramond-ExtraBold-tosf-swash-ot1\><<<
.EBGaramond-Regular-lf-swash-ot1
-htfcss: EBGaramond-ExtraBold-tosf-swash-ot1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-swash-ot1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-swash-ot1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-ot1}{}
+\AddFont{EBGaramond-ExtraBold-tosf-swash-ot1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-ot1}{}
% font parser error: Cannot load font EBGaramondInitials-tlf-ts1
% writing EBGaramond-Regular-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Regular-lf-ts1\><<<
@@ -5019,7 +7776,7 @@ EBGaramond-Regular-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
@@ -5240,281 +7997,281 @@ EBGaramond-Regular-lf-ts1 11 255
htfcss: EBGaramond-Regular-lf-ts1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-ts1}{unicode/EB_Garamond/EBGaramond-Regular-lf-ts1}{}
+\AddFont{EBGaramond-Regular-lf-ts1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-ts1}{}
% writing EBGaramond-Italic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Italic-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Italic-lf-ts1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-lf-ts1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-ts1}{alias/EB_Garamond/EBGaramond-Italic-lf-ts1}{}
-% writing EBGaramond-Bold-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-Bold-lf-ts1\><<<
+\AddFont{EBGaramond-Italic-lf-ts1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-ts1}{}
+% writing EBGaramond-SemiBold-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBold-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Bold-lf-ts1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-ts1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-ts1}{alias/EB_Garamond/EBGaramond-Bold-lf-ts1}{}
-% writing EBGaramond-BoldItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-BoldItalic-lf-ts1\><<<
+\AddFont{EBGaramond-SemiBold-lf-ts1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-ts1}{}
+% writing EBGaramond-SemiBoldItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBoldItalic-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-BoldItalic-lf-ts1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-lf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-ts1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-ts1}{}
-% writing EBGaramond-SemiBold-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBold-lf-ts1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-ts1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-ts1}{}
+% writing EBGaramond-Bold-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-Bold-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBold-lf-ts1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-ts1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-ts1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-ts1}{}
-% writing EBGaramond-SemiBoldItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBoldItalic-lf-ts1\><<<
+\AddFont{EBGaramond-Bold-lf-ts1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-ts1}{}
+% writing EBGaramond-BoldItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-BoldItalic-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBoldItalic-lf-ts1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-lf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-ts1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-ts1}{}
+\AddFont{EBGaramond-BoldItalic-lf-ts1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-ts1}{}
% writing EBGaramond-Medium-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Medium-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Medium-lf-ts1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-ts1}{alias/EB_Garamond/EBGaramond-Medium-lf-ts1}{}
+\AddFont{EBGaramond-Medium-lf-ts1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-ts1}{}
% writing EBGaramond-MediumItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-MediumItalic-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-MediumItalic-lf-ts1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-lf-ts1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-ts1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-ts1}{}
+\AddFont{EBGaramond-MediumItalic-lf-ts1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-ts1}{}
% writing EBGaramond-ExtraBold-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBold-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBold-lf-ts1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-ts1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-ts1}{}
+\AddFont{EBGaramond-ExtraBold-lf-ts1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-ts1}{}
% writing EBGaramond-ExtraBoldItalic-lf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBoldItalic-lf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBoldItalic-lf-ts1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-lf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-ts1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-lf-ts1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-ts1}{}
% writing EBGaramond-Regular-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Regular-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Regular-osf-ts1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-ts1}{alias/EB_Garamond/EBGaramond-Regular-osf-ts1}{}
+\AddFont{EBGaramond-Regular-osf-ts1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-ts1}{}
% writing EBGaramond-Italic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Italic-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Italic-osf-ts1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-ts1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-ts1}{alias/EB_Garamond/EBGaramond-Italic-osf-ts1}{}
-% writing EBGaramond-Bold-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-Bold-osf-ts1\><<<
+\AddFont{EBGaramond-Italic-osf-ts1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-ts1}{}
+% writing EBGaramond-SemiBold-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBold-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Bold-osf-ts1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-ts1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-ts1}{alias/EB_Garamond/EBGaramond-Bold-osf-ts1}{}
-% writing EBGaramond-BoldItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-BoldItalic-osf-ts1\><<<
+\AddFont{EBGaramond-SemiBold-osf-ts1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-ts1}{}
+% writing EBGaramond-SemiBoldItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBoldItalic-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-BoldItalic-osf-ts1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-ts1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-ts1}{}
-% writing EBGaramond-SemiBold-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBold-osf-ts1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-ts1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-ts1}{}
+% writing EBGaramond-Bold-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-Bold-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBold-osf-ts1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-ts1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-ts1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-ts1}{}
-% writing EBGaramond-SemiBoldItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBoldItalic-osf-ts1\><<<
+\AddFont{EBGaramond-Bold-osf-ts1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-ts1}{}
+% writing EBGaramond-BoldItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-BoldItalic-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBoldItalic-osf-ts1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-ts1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-ts1}{}
+\AddFont{EBGaramond-BoldItalic-osf-ts1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-ts1}{}
% writing EBGaramond-Medium-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Medium-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Medium-osf-ts1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-ts1}{alias/EB_Garamond/EBGaramond-Medium-osf-ts1}{}
+\AddFont{EBGaramond-Medium-osf-ts1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-ts1}{}
% writing EBGaramond-MediumItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-MediumItalic-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-MediumItalic-osf-ts1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-ts1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-ts1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-ts1}{}
+\AddFont{EBGaramond-MediumItalic-osf-ts1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-ts1}{}
% writing EBGaramond-ExtraBold-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBold-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBold-osf-ts1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-ts1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-ts1}{}
+\AddFont{EBGaramond-ExtraBold-osf-ts1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-ts1}{}
% writing EBGaramond-ExtraBoldItalic-osf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBoldItalic-osf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBoldItalic-osf-ts1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-ts1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-osf-ts1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-ts1}{}
% writing EBGaramond-Regular-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Regular-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Regular-tlf-ts1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-ts1}{alias/EB_Garamond/EBGaramond-Regular-tlf-ts1}{}
+\AddFont{EBGaramond-Regular-tlf-ts1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-ts1}{}
% writing EBGaramond-Italic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Italic-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Italic-tlf-ts1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tlf-ts1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-ts1}{alias/EB_Garamond/EBGaramond-Italic-tlf-ts1}{}
-% writing EBGaramond-Bold-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-Bold-tlf-ts1\><<<
+\AddFont{EBGaramond-Italic-tlf-ts1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-ts1}{}
+% writing EBGaramond-SemiBold-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBold-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Bold-tlf-ts1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tlf-ts1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tlf-ts1}{alias/EB_Garamond/EBGaramond-Bold-tlf-ts1}{}
-% writing EBGaramond-BoldItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-BoldItalic-tlf-ts1\><<<
+\AddFont{EBGaramond-SemiBold-tlf-ts1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-ts1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBoldItalic-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-BoldItalic-tlf-ts1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tlf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-ts1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-ts1}{}
-% writing EBGaramond-SemiBold-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBold-tlf-ts1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-ts1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-ts1}{}
+% writing EBGaramond-Bold-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-Bold-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBold-tlf-ts1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-ts1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-ts1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-ts1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBoldItalic-tlf-ts1\><<<
+\AddFont{EBGaramond-Bold-tlf-ts1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-ts1}{}
+% writing EBGaramond-BoldItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-BoldItalic-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBoldItalic-tlf-ts1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tlf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-ts1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-ts1}{}
+\AddFont{EBGaramond-BoldItalic-tlf-ts1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-ts1}{}
% writing EBGaramond-Medium-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Medium-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Medium-tlf-ts1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-ts1}{alias/EB_Garamond/EBGaramond-Medium-tlf-ts1}{}
+\AddFont{EBGaramond-Medium-tlf-ts1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-ts1}{}
% writing EBGaramond-MediumItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-MediumItalic-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-MediumItalic-tlf-ts1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tlf-ts1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-ts1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-ts1}{}
+\AddFont{EBGaramond-MediumItalic-tlf-ts1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-ts1}{}
% writing EBGaramond-ExtraBold-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBold-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBold-tlf-ts1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-ts1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-ts1}{}
+\AddFont{EBGaramond-ExtraBold-tlf-ts1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-ts1}{}
% writing EBGaramond-ExtraBoldItalic-tlf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBoldItalic-tlf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-ts1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tlf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-ts1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-ts1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-ts1}{}
% writing EBGaramond-Regular-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Regular-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Regular-tosf-ts1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-ts1}{alias/EB_Garamond/EBGaramond-Regular-tosf-ts1}{}
+\AddFont{EBGaramond-Regular-tosf-ts1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-ts1}{}
% writing EBGaramond-Italic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Italic-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Italic-tosf-ts1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-ts1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-ts1}{alias/EB_Garamond/EBGaramond-Italic-tosf-ts1}{}
-% writing EBGaramond-Bold-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-Bold-tosf-ts1\><<<
+\AddFont{EBGaramond-Italic-tosf-ts1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-ts1}{}
+% writing EBGaramond-SemiBold-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBold-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-Bold-tosf-ts1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-ts1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-ts1}{alias/EB_Garamond/EBGaramond-Bold-tosf-ts1}{}
-% writing EBGaramond-BoldItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-BoldItalic-tosf-ts1\><<<
+\AddFont{EBGaramond-SemiBold-tosf-ts1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-ts1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-SemiBoldItalic-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-BoldItalic-tosf-ts1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-ts1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-ts1}{}
-% writing EBGaramond-SemiBold-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBold-tosf-ts1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-ts1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-ts1}{}
+% writing EBGaramond-Bold-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-Bold-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBold-tosf-ts1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-ts1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-ts1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-ts1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
-\<EBGaramond-SemiBoldItalic-tosf-ts1\><<<
+\AddFont{EBGaramond-Bold-tosf-ts1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-ts1}{}
+% writing EBGaramond-BoldItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
+\<EBGaramond-BoldItalic-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-SemiBoldItalic-tosf-ts1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-ts1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-ts1}{}
+\AddFont{EBGaramond-BoldItalic-tosf-ts1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-ts1}{}
% writing EBGaramond-Medium-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-Medium-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
htfcss: EBGaramond-Medium-tosf-ts1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-ts1}{alias/EB_Garamond/EBGaramond-Medium-tosf-ts1}{}
+\AddFont{EBGaramond-Medium-tosf-ts1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-ts1}{}
% writing EBGaramond-MediumItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-MediumItalic-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-MediumItalic-tosf-ts1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-ts1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-ts1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-ts1}{}
+\AddFont{EBGaramond-MediumItalic-tosf-ts1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-ts1}{}
% writing EBGaramond-ExtraBold-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBold-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBold-tosf-ts1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-ts1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-ts1}{}
+\AddFont{EBGaramond-ExtraBold-tosf-ts1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-ts1}{}
% writing EBGaramond-ExtraBoldItalic-tosf-ts1.htf hash: b41f61ad9c9a99da5a987909047f1496
\<EBGaramond-ExtraBoldItalic-tosf-ts1\><<<
.EBGaramond-Regular-lf-ts1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-ts1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-ts1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-ts1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-ts1}{}
-% writing EBGaramond-Regular-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-ts1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-ts1}{}
+% writing EBGaramond-Regular-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-Regular-inf-t1\><<<
EBGaramond-Regular-inf-t1 0 255
'&#x60;' '' grave.sinf 0
@@ -5740,7 +8497,7 @@ EBGaramond-Regular-inf-t1 0 255
'&#x00DC;' '' Udieresis 220
'&#x00DD;' '' Yacute 221
'&#x00DE;' '' Thorn 222
-'SS' '' S.sinf S.sinf 223
+'S' '' S.sinf S.sinf 223
'&#x00E0;' '' agrave 224
'&#x00E1;' '' aacute 225
'&#x00E2;' '' acircumflex 226
@@ -5777,342 +8534,78 @@ EBGaramond-Regular-inf-t1 0 255
htfcss: EBGaramond-Regular-inf-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-inf-t1}{unicode/EB_Garamond/EBGaramond-Regular-inf-t1}{}
-% writing EBGaramond-Italic-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-Regular-inf-t1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-inf-t1}{}
+% writing EBGaramond-Italic-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-Italic-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-Italic-inf-t1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-inf-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-inf-t1}{alias/EB_Garamond/EBGaramond-Italic-inf-t1}{}
-% writing EBGaramond-Bold-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
-\<EBGaramond-Bold-inf-t1\><<<
+\AddFont{EBGaramond-Italic-inf-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-inf-t1}{}
+% writing EBGaramond-SemiBold-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
+\<EBGaramond-SemiBold-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-Bold-inf-t1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-inf-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-inf-t1}{alias/EB_Garamond/EBGaramond-Bold-inf-t1}{}
-% writing EBGaramond-BoldItalic-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
-\<EBGaramond-BoldItalic-inf-t1\><<<
+\AddFont{EBGaramond-SemiBold-inf-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-inf-t1}{}
+% writing EBGaramond-SemiBoldItalic-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
+\<EBGaramond-SemiBoldItalic-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-BoldItalic-inf-t1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-inf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-inf-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-inf-t1}{}
-% writing EBGaramond-SemiBold-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
-\<EBGaramond-SemiBold-inf-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-inf-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-inf-t1}{}
+% writing EBGaramond-Bold-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
+\<EBGaramond-Bold-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-SemiBold-inf-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-inf-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-inf-t1}{alias/EB_Garamond/EBGaramond-SemiBold-inf-t1}{}
-% writing EBGaramond-SemiBoldItalic-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
-\<EBGaramond-SemiBoldItalic-inf-t1\><<<
+\AddFont{EBGaramond-Bold-inf-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-inf-t1}{}
+% writing EBGaramond-BoldItalic-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
+\<EBGaramond-BoldItalic-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-SemiBoldItalic-inf-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-inf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-inf-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-inf-t1}{}
-% writing EBGaramond-Medium-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-BoldItalic-inf-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-inf-t1}{}
+% writing EBGaramond-Medium-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-Medium-inf-t1\><<<
.EBGaramond-Regular-inf-t1
htfcss: EBGaramond-Medium-inf-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-inf-t1}{alias/EB_Garamond/EBGaramond-Medium-inf-t1}{}
-% writing EBGaramond-MediumItalic-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-Medium-inf-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-inf-t1}{}
+% writing EBGaramond-MediumItalic-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-MediumItalic-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-MediumItalic-inf-t1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-inf-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-inf-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-inf-t1}{}
-% writing EBGaramond-ExtraBold-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-MediumItalic-inf-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-inf-t1}{}
+% writing EBGaramond-ExtraBold-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-ExtraBold-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-ExtraBold-inf-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-inf-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-inf-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-inf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-inf-t1.htf hash: 4139ed22bf3dc9e19fa7d15438da08a9
+\AddFont{EBGaramond-ExtraBold-inf-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-inf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-inf-t1.htf hash: 14f70d337f3d19c5302d6e36a91e84d6
\<EBGaramond-ExtraBoldItalic-inf-t1\><<<
.EBGaramond-Regular-inf-t1
-htfcss: EBGaramond-ExtraBoldItalic-inf-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-inf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-inf-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-inf-t1}{}
+\AddFont{EBGaramond-ExtraBoldItalic-inf-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-inf-t1}{}
% writing EBGaramondInitials-tlf-t1.htf hash: e864e0ef6f6a2c9afa4e3d8d01d98b69
\<EBGaramondInitials-tlf-t1\><<<
.EBGaramondInitials-tlf-ly1
htfcss: EBGaramondInitials-tlf-t1 font-family: 'EB Garamond Initials', serif;
>>>
-\AddFont{EBGaramondInitials-tlf-t1}{alias/EB_Garamond/EBGaramondInitials-tlf-t1}{}
-% writing EBGaramond-Regular-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Regular-lf-titling-t1\><<<
-EBGaramond-Regular-lf-titling-t1 0 255
-'&#x60;' '' grave 0
-'&#x00B4;' '' acute 1
-'&#x02C6;' '' circumflex 2
-'&#x02DC;' '' tilde 3
-'&#x00A8;' '' dieresis 4
-'&#x02DD;' '' hungarumlaut 5
-'&#x02DA;' '' ring 6
-'&#x02C7;' '' caron 7
-'&#x02D8;' '' breve 8
-'&#x00AF;' '' macron 9
-'&#x02D9;' '' dotaccent 10
-'&#x00B8;' '' cedilla 11
-'&#x02DB;' '' ogonek 12
-'&#x201A;' '' quotesinglbase 13
-'&#x2039;' '' guilsinglleft 14
-'&#x203A;' '' guilsinglright 15
-'&#x201C;' '' quotedblleft 16
-'&#x201D;' '' quotedblright 17
-'&#x201E;' '' quotedblbase 18
-'&#x00AB;' '' guillemotleft 19
-'&#x00BB;' '' guillemotright 20
-'&#x2013;' '' endash 21
-'&#x2014;' '' emdash 22
-'&#x200C;' '' uni200C 23
-'' ''
-'&#x0131;' '' dotlessi 25
-'&#x0237;' '' uni0237 26
-'&#xFB00;' '' f_f 27
-'&#xFB01;' '' f_i 28
-'&#xFB02;' '' f_l 29
-'&#xFB03;' '' f_f_i 30
-'&#xFB04;' '' f_f_l 31
-' ' '' space 32
-'!' '' exclam 33
-'"' '' quotedbl 34
-'#' '' numbersign 35
-'$' '' dollar 36
-'%' '' percent 37
-'&amp;' '' ampersand 38
-'&#x2019;' '' quoteright 39
-'(' '' parenleft 40
-')' '' parenright 41
-'*' '' asterisk 42
-'+' '' plus 43
-',' '' comma 44
-'-' '' hyphen 45
-'.' '' period 46
-'/' '' slash 47
-'0' '' zero.lf 48
-'1' '' one.lf 49
-'2' '' two.lf 50
-'3' '' three.lf 51
-'4' '' four.lf 52
-'5' '' five.lf 53
-'6' '' six.lf 54
-'7' '' seven.lf 55
-'8' '' eight.lf 56
-'9' '' nine.lf 57
-':' '' colon 58
-';' '' semicolon 59
-'&lt;' '' less 60
-'=' '' equal 61
-'&gt;' '' greater 62
-'?' '' question 63
-'@' '' at 64
-'A' '' A 65
-'B' '' B 66
-'C' '' C 67
-'D' '' D 68
-'E' '' E 69
-'F' '' F 70
-'G' '' G 71
-'H' '' H 72
-'I' '' I 73
-'J' '' J 74
-'K' '' K 75
-'L' '' L 76
-'M' '' M 77
-'N' '' N 78
-'O' '' O 79
-'P' '' P 80
-'Q' '' Q 81
-'R' '' R 82
-'S' '' S 83
-'T' '' T 84
-'U' '' U 85
-'V' '' V 86
-'W' '' W 87
-'X' '' X 88
-'Y' '' Y 89
-'Z' '' Z 90
-'[' '' bracketleft 91
-'\' '' backslash 92
-']' '' bracketright 93
-'^' '' asciicircum 94
-'_' '' underscore 95
-'&#x2018;' '' quoteleft 96
-'a' '' a 97
-'b' '' b 98
-'c' '' c 99
-'d' '' d 100
-'e' '' e 101
-'f' '' f 102
-'g' '' g 103
-'h' '' h 104
-'i' '' i 105
-'j' '' j 106
-'k' '' k 107
-'l' '' l 108
-'m' '' m 109
-'n' '' n 110
-'o' '' o 111
-'p' '' p 112
-'q' '' q 113
-'r' '' r 114
-'s' '' s 115
-'t' '' t 116
-'u' '' u 117
-'v' '' v 118
-'w' '' w 119
-'x' '' x 120
-'y' '' y 121
-'z' '' z 122
-'{' '' braceleft 123
-'|' '' bar 124
-'}' '' braceright 125
-'~' '' asciitilde 126
-'-' '' hyphen 127
-'&#x0102;' '' Abreve 128
-'&#x0104;' '' Aogonek 129
-'&#x0106;' '' Cacute 130
-'&#x010C;' '' Ccaron 131
-'&#x010E;' '' Dcaron 132
-'&#x011A;' '' Ecaron 133
-'&#x0118;' '' Eogonek 134
-'&#x011E;' '' Gbreve 135
-'&#x0139;' '' Lacute 136
-'&#x013D;' '' Lcaron 137
-'&#x0141;' '' Lslash 138
-'&#x0143;' '' Nacute 139
-'&#x0147;' '' Ncaron 140
-'&#x014A;' '' Eng 141
-'&#x0150;' '' Ohungarumlaut 142
-'&#x0154;' '' Racute 143
-'&#x0158;' '' Rcaron 144
-'&#x015A;' '' Sacute 145
-'&#x0160;' '' Scaron 146
-'&#x015E;' '' Scedilla 147
-'&#x0164;' '' Tcaron 148
-'&#x0162;' '' uni0162 149
-'&#x0170;' '' Uhungarumlaut 150
-'&#x016E;' '' Uring 151
-'&#x0178;' '' Ydieresis 152
-'&#x0179;' '' Zacute 153
-'&#x017D;' '' Zcaron 154
-'&#x017B;' '' Zdotaccent 155
-'&#x0132;' '' IJ 156
-'&#x0130;' '' Idotaccent 157
-'&#x0111;' '' dcroat 158
-'&#x00A7;' '' section 159
-'&#x0103;' '' abreve 160
-'&#x0105;' '' aogonek 161
-'&#x0107;' '' cacute 162
-'&#x010D;' '' ccaron 163
-'&#x010F;' '' dcaron 164
-'&#x011B;' '' ecaron 165
-'&#x0119;' '' eogonek 166
-'&#x011F;' '' gbreve 167
-'&#x013A;' '' lacute 168
-'&#x013E;' '' lcaron 169
-'&#x0142;' '' lslash 170
-'&#x0144;' '' nacute 171
-'&#x0148;' '' ncaron 172
-'&#x014B;' '' eng 173
-'&#x0151;' '' ohungarumlaut 174
-'&#x0155;' '' racute 175
-'&#x0159;' '' rcaron 176
-'&#x015B;' '' sacute 177
-'&#x0161;' '' scaron 178
-'&#x015F;' '' scedilla 179
-'&#x0165;' '' tcaron 180
-'&#x0163;' '' uni0163 181
-'&#x0171;' '' uhungarumlaut 182
-'&#x016F;' '' uring 183
-'&#x00FF;' '' ydieresis 184
-'&#x017A;' '' zacute 185
-'&#x017E;' '' zcaron 186
-'&#x017C;' '' zdotaccent 187
-'&#x0133;' '' ij 188
-'&#x00A1;' '' exclamdown 189
-'&#x00BF;' '' questiondown 190
-'&#x00A3;' '' sterling 191
-'&#x00C0;' '' Agrave 192
-'&#x00C1;' '' Aacute 193
-'&#x00C2;' '' Acircumflex 194
-'&#x00C3;' '' Atilde 195
-'&#x00C4;' '' Adieresis 196
-'&#x00C5;' '' Aring 197
-'&#x00C6;' '' AE 198
-'&#x00C7;' '' Ccedilla 199
-'&#x00C8;' '' Egrave 200
-'&#x00C9;' '' Eacute 201
-'&#x00CA;' '' Ecircumflex 202
-'&#x00CB;' '' Edieresis 203
-'&#x00CC;' '' Igrave 204
-'&#x00CD;' '' Iacute 205
-'&#x00CE;' '' Icircumflex 206
-'&#x00CF;' '' Idieresis 207
-'&#x00D0;' '' Eth 208
-'&#x00D1;' '' Ntilde 209
-'&#x00D2;' '' Ograve 210
-'&#x00D3;' '' Oacute 211
-'&#x00D4;' '' Ocircumflex 212
-'&#x00D5;' '' Otilde 213
-'&#x00D6;' '' Odieresis 214
-'&#x0152;' '' OE 215
-'&#x00D8;' '' Oslash 216
-'&#x00D9;' '' Ugrave 217
-'&#x00DA;' '' Uacute 218
-'&#x00DB;' '' Ucircumflex 219
-'&#x00DC;' '' Udieresis 220
-'&#x00DD;' '' Yacute 221
-'&#x00DE;' '' Thorn 222
-'SS' '' S S 223
-'&#x00E0;' '' agrave 224
-'&#x00E1;' '' aacute 225
-'&#x00E2;' '' acircumflex 226
-'&#x00E3;' '' atilde 227
-'&#x00E4;' '' adieresis 228
-'&#x00E5;' '' aring 229
-'&#x00E6;' '' ae 230
-'&#x00E7;' '' ccedilla 231
-'&#x00E8;' '' egrave 232
-'&#x00E9;' '' eacute 233
-'&#x00EA;' '' ecircumflex 234
-'&#x00EB;' '' edieresis 235
-'&#x00EC;' '' igrave 236
-'&#x00ED;' '' iacute 237
-'&#x00EE;' '' icircumflex 238
-'&#x00EF;' '' idieresis 239
-'&#x00F0;' '' eth 240
-'&#x00F1;' '' ntilde 241
-'&#x00F2;' '' ograve 242
-'&#x00F3;' '' oacute 243
-'&#x00F4;' '' ocircumflex 244
-'&#x00F5;' '' otilde 245
-'&#x00F6;' '' odieresis 246
-'&#x0153;' '' oe 247
-'&#x00F8;' '' oslash 248
-'&#x00F9;' '' ugrave 249
-'&#x00FA;' '' uacute 250
-'&#x00FB;' '' ucircumflex 251
-'&#x00FC;' '' udieresis 252
-'&#x00FD;' '' yacute 253
-'&#x00FE;' '' thorn 254
-'&#x00DF;' '' germandbls 255
-EBGaramond-Regular-lf-titling-t1 0 255
-htfcss: EBGaramond-Regular-lf-titling-t1 font-family: 'EB Garamond Regular', serif;
-
->>>
-\AddFont{EBGaramond-Regular-lf-titling-t1}{unicode/EB_Garamond/EBGaramond-Regular-lf-titling-t1}{}
-% writing EBGaramond-Regular-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramondInitials-tlf-t1}{alias/EB_Garamond_Initials/EBGaramondInitials-tlf-t1}{}
+% writing EBGaramond-Regular-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Regular-lf-sc-t1\><<<
EBGaramond-Regular-lf-sc-t1 0 255
'&#x60;' '' grave.sc 0
@@ -6370,27 +8863,291 @@ EBGaramond-Regular-lf-sc-t1 0 255
'&#xd;' '' udieresis.sc 252
'&#x00FD;' '' yacute.sc 253
'&#x00FE;' '' thorn.sc 254
-'ss' '' s.sc s.sc 255
+'s' '' s.sc s.sc 255
EBGaramond-Regular-lf-sc-t1 0 255
htfcss: EBGaramond-Regular-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-sc-t1}{unicode/EB_Garamond/EBGaramond-Regular-lf-sc-t1}{}
-% writing EBGaramond-Regular-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-lf-sc-t1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-sc-t1}{}
+% writing EBGaramond-Regular-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Regular-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+EBGaramond-Regular-lf-t1 0 255
+'&#x60;' '' grave 0
+'&#x00B4;' '' acute 1
+'&#x02C6;' '' circumflex 2
+'&#x02DC;' '' tilde 3
+'&#x00A8;' '' dieresis 4
+'&#x02DD;' '' hungarumlaut 5
+'&#x02DA;' '' ring 6
+'&#x02C7;' '' caron 7
+'&#x02D8;' '' breve 8
+'&#x00AF;' '' macron 9
+'&#x02D9;' '' dotaccent 10
+'&#x00B8;' '' cedilla 11
+'&#x02DB;' '' ogonek 12
+'&#x201A;' '' quotesinglbase 13
+'&#x2039;' '' guilsinglleft 14
+'&#x203A;' '' guilsinglright 15
+'&#x201C;' '' quotedblleft 16
+'&#x201D;' '' quotedblright 17
+'&#x201E;' '' quotedblbase 18
+'&#x00AB;' '' guillemotleft 19
+'&#x00BB;' '' guillemotright 20
+'&#x2013;' '' endash 21
+'&#x2014;' '' emdash 22
+'&#x200C;' '' uni200C 23
+'&#xFB00;' '' f_f 24
+'&#x0131;' '' dotlessi 25
+'&#x0237;' '' uni0237 26
+'&#xFB01;' '' f_i 27
+'&#xFB02;' '' f_l 28
+'&#xFB03;' '' f_f_i 29
+'&#xFB04;' '' f_f_l 30
+'' ''
+' ' '' space 32
+'!' '' exclam 33
+'"' '' quotedbl 34
+'#' '' numbersign 35
+'$' '' dollar 36
+'%' '' percent 37
+'&amp;' '' ampersand 38
+'&#x2019;' '' quoteright 39
+'(' '' parenleft 40
+')' '' parenright 41
+'*' '' asterisk 42
+'+' '' plus 43
+',' '' comma 44
+'-' '' hyphen 45
+'.' '' period 46
+'/' '' slash 47
+'0' '' zero.lf 48
+'1' '' one.lf 49
+'2' '' two.lf 50
+'3' '' three.lf 51
+'4' '' four.lf 52
+'5' '' five.lf 53
+'6' '' six.lf 54
+'7' '' seven.lf 55
+'8' '' eight.lf 56
+'9' '' nine.lf 57
+':' '' colon 58
+';' '' semicolon 59
+'&lt;' '' less 60
+'=' '' equal 61
+'&gt;' '' greater 62
+'?' '' question 63
+'@' '' at 64
+'A' '' A 65
+'B' '' B 66
+'C' '' C 67
+'D' '' D 68
+'E' '' E 69
+'F' '' F 70
+'G' '' G 71
+'H' '' H 72
+'I' '' I 73
+'J' '' J 74
+'K' '' K 75
+'L' '' L 76
+'M' '' M 77
+'N' '' N 78
+'O' '' O 79
+'P' '' P 80
+'Q' '' Q 81
+'R' '' R 82
+'S' '' S 83
+'T' '' T 84
+'U' '' U 85
+'V' '' V 86
+'W' '' W 87
+'X' '' X 88
+'Y' '' Y 89
+'Z' '' Z 90
+'[' '' bracketleft 91
+'\' '' backslash 92
+']' '' bracketright 93
+'^' '' asciicircum 94
+'_' '' underscore 95
+'&#x2018;' '' quoteleft 96
+'a' '' a 97
+'b' '' b 98
+'c' '' c 99
+'d' '' d 100
+'e' '' e 101
+'f' '' f 102
+'g' '' g 103
+'h' '' h 104
+'i' '' i 105
+'j' '' j 106
+'k' '' k 107
+'l' '' l 108
+'m' '' m 109
+'n' '' n 110
+'o' '' o 111
+'p' '' p 112
+'q' '' q 113
+'r' '' r 114
+'s' '' s 115
+'t' '' t 116
+'u' '' u 117
+'v' '' v 118
+'w' '' w 119
+'x' '' x 120
+'y' '' y 121
+'z' '' z 122
+'{' '' braceleft 123
+'|' '' bar 124
+'}' '' braceright 125
+'~' '' asciitilde 126
+'-' '' hyphen 127
+'&#x0102;' '' Abreve 128
+'&#x0104;' '' Aogonek 129
+'&#x0106;' '' Cacute 130
+'&#x010C;' '' Ccaron 131
+'&#x010E;' '' Dcaron 132
+'&#x011A;' '' Ecaron 133
+'&#x0118;' '' Eogonek 134
+'&#x011E;' '' Gbreve 135
+'&#x0139;' '' Lacute 136
+'&#x013D;' '' Lcaron 137
+'&#x0141;' '' Lslash 138
+'&#x0143;' '' Nacute 139
+'&#x0147;' '' Ncaron 140
+'&#x014A;' '' Eng 141
+'&#x0150;' '' Ohungarumlaut 142
+'&#x0154;' '' Racute 143
+'&#x0158;' '' Rcaron 144
+'&#x015A;' '' Sacute 145
+'&#x0160;' '' Scaron 146
+'&#x015E;' '' Scedilla 147
+'&#x0164;' '' Tcaron 148
+'&#x0162;' '' uni0162 149
+'&#x0170;' '' Uhungarumlaut 150
+'&#x016E;' '' Uring 151
+'&#x0178;' '' Ydieresis 152
+'&#x0179;' '' Zacute 153
+'&#x017D;' '' Zcaron 154
+'&#x017B;' '' Zdotaccent 155
+'&#x0132;' '' IJ 156
+'&#x0130;' '' Idotaccent 157
+'&#x0111;' '' dcroat 158
+'&#x00A7;' '' section 159
+'&#x0103;' '' abreve 160
+'&#x0105;' '' aogonek 161
+'&#x0107;' '' cacute 162
+'&#x010D;' '' ccaron 163
+'&#x010F;' '' dcaron 164
+'&#x011B;' '' ecaron 165
+'&#x0119;' '' eogonek 166
+'&#x011F;' '' gbreve 167
+'&#x013A;' '' lacute 168
+'&#x013E;' '' lcaron 169
+'&#x0142;' '' lslash 170
+'&#x0144;' '' nacute 171
+'&#x0148;' '' ncaron 172
+'&#x014B;' '' eng 173
+'&#x0151;' '' ohungarumlaut 174
+'&#x0155;' '' racute 175
+'&#x0159;' '' rcaron 176
+'&#x015B;' '' sacute 177
+'&#x0161;' '' scaron 178
+'&#x015F;' '' scedilla 179
+'&#x0165;' '' tcaron 180
+'&#x0163;' '' uni0163 181
+'&#x0171;' '' uhungarumlaut 182
+'&#x016F;' '' uring 183
+'&#x00FF;' '' ydieresis 184
+'&#x017A;' '' zacute 185
+'&#x017E;' '' zcaron 186
+'&#x017C;' '' zdotaccent 187
+'&#x0133;' '' ij 188
+'&#x00A1;' '' exclamdown 189
+'&#x00BF;' '' questiondown 190
+'&#x00A3;' '' sterling 191
+'&#x00C0;' '' Agrave 192
+'&#x00C1;' '' Aacute 193
+'&#x00C2;' '' Acircumflex 194
+'&#x00C3;' '' Atilde 195
+'&#x00C4;' '' Adieresis 196
+'&#x00C5;' '' Aring 197
+'&#x00C6;' '' AE 198
+'&#x00C7;' '' Ccedilla 199
+'&#x00C8;' '' Egrave 200
+'&#x00C9;' '' Eacute 201
+'&#x00CA;' '' Ecircumflex 202
+'&#x00CB;' '' Edieresis 203
+'&#x00CC;' '' Igrave 204
+'&#x00CD;' '' Iacute 205
+'&#x00CE;' '' Icircumflex 206
+'&#x00CF;' '' Idieresis 207
+'&#x00D0;' '' Eth 208
+'&#x00D1;' '' Ntilde 209
+'&#x00D2;' '' Ograve 210
+'&#x00D3;' '' Oacute 211
+'&#x00D4;' '' Ocircumflex 212
+'&#x00D5;' '' Otilde 213
+'&#x00D6;' '' Odieresis 214
+'&#x0152;' '' OE 215
+'&#x00D8;' '' Oslash 216
+'&#x00D9;' '' Ugrave 217
+'&#x00DA;' '' Uacute 218
+'&#x00DB;' '' Ucircumflex 219
+'&#x00DC;' '' Udieresis 220
+'&#x00DD;' '' Yacute 221
+'&#x00DE;' '' Thorn 222
+'SS' '' S S 223
+'&#x00E0;' '' agrave 224
+'&#x00E1;' '' aacute 225
+'&#x00E2;' '' acircumflex 226
+'&#x00E3;' '' atilde 227
+'&#x00E4;' '' adieresis 228
+'&#x00E5;' '' aring 229
+'&#x00E6;' '' ae 230
+'&#x00E7;' '' ccedilla 231
+'&#x00E8;' '' egrave 232
+'&#x00E9;' '' eacute 233
+'&#x00EA;' '' ecircumflex 234
+'&#x00EB;' '' edieresis 235
+'&#x00EC;' '' igrave 236
+'&#x00ED;' '' iacute 237
+'&#x00EE;' '' icircumflex 238
+'&#x00EF;' '' idieresis 239
+'&#x00F0;' '' eth 240
+'&#x00F1;' '' ntilde 241
+'&#x00F2;' '' ograve 242
+'&#x00F3;' '' oacute 243
+'&#x00F4;' '' ocircumflex 244
+'&#x00F5;' '' otilde 245
+'&#x00F6;' '' odieresis 246
+'&#x0153;' '' oe 247
+'&#x00F8;' '' oslash 248
+'&#x00F9;' '' ugrave 249
+'&#x00FA;' '' uacute 250
+'&#x00FB;' '' ucircumflex 251
+'&#x00FC;' '' udieresis 252
+'&#x00FD;' '' yacute 253
+'&#x00FE;' '' thorn 254
+'&#x00DF;' '' germandbls 255
+EBGaramond-Regular-lf-t1 0 255
htfcss: EBGaramond-Regular-lf-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-t1}{alias/EB_Garamond/EBGaramond-Regular-lf-t1}{}
-% writing EBGaramond-Italic-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-lf-t1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-t1}{}
+% writing EBGaramond-Italic-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Italic-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-lf-t1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Italic-lf-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
+
+>>>
+\AddFont{EBGaramond-Italic-lf-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-t1}{}
+% writing EBGaramond-Italic-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-Italic-lf-sc-t1\><<<
+.EBGaramond-Regular-lf-sc-t1
+htfcss: EBGaramond-Italic-lf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-t1}{alias/EB_Garamond/EBGaramond-Italic-lf-t1}{}
-% writing EBGaramond-Italic-lf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-Italic-lf-sc-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-lf-sc-t1}{}
+% writing EBGaramond-Italic-lf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-Italic-lf-swash-t1\><<<
EBGaramond-Italic-lf-swash-t1 0 255
'&#x60;' '' grave 0
@@ -6417,14 +9174,14 @@ EBGaramond-Italic-lf-swash-t1 0 255
'&#x2013;' '' endash 21
'&#x2014;' '' emdash 22
'&#x200C;' '' uni200C 23
-'aq' '' a_s 24
+'&#xFB00;' '' f_f 24
'&#x0131;' '' dotlessi 25
'&#x0237;' '' uni0237 26
-'&#xFB00;' '' f_f 27
-'&#xFB01;' '' uniFB01 28
-'&#xFB02;' '' uniFB02 29
-'&#xFB03;' '' uniFB03 30
-'&#xFB04;' '' uniFB04 31
+'&#xFB01;' '' uniFB01 27
+'&#xFB02;' '' uniFB02 28
+'&#xFB03;' '' uniFB03 29
+'&#xFB04;' '' uniFB04 30
+'aq' '' a_s 31
' ' '' space 32
'!' '' exclam 33
'"' '' quotedbl 34
@@ -6616,7 +9373,7 @@ EBGaramond-Italic-lf-swash-t1 0 255
'&#x00DC;' '' Udieresis 220
'&#x00DD;' '' Yacute 221
'&#x00DE;' '' Thorn 222
-'SS' '' S.swsh S.swsh 223
+'S' '' S.swsh S.swsh 223
'&#x00E0;' '' agrave 224
'&#x00E1;' '' aacute 225
'&#x00E2;' '' acircumflex 226
@@ -6650,25 +9407,11 @@ EBGaramond-Italic-lf-swash-t1 0 255
'&#x00FE;' '' thorn 254
'&#x00DF;' '' germandbls 255
EBGaramond-Italic-lf-swash-t1 0 255
-htfcss: EBGaramond-Italic-lf-swash-t1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-lf-swash-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-lf-swash-t1}{unicode/EB_Garamond/EBGaramond-Italic-lf-swash-t1}{}
-% writing EBGaramond-Italic-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-Italic-lf-sc-t1\><<<
-.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Italic-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-sc-t1}{alias/EB_Garamond/EBGaramond-Italic-lf-sc-t1}{}
-% writing EBGaramond-Italic-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Italic-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-lf-titling-t1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-lf-titling-t1}{alias/EB_Garamond/EBGaramond-Italic-lf-titling-t1}{}
-% writing EBGaramond-Regular-lf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-Italic-lf-swash-t1}{unicode/EB_Garamond_Italic/EBGaramond-Italic-lf-swash-t1}{}
+% writing EBGaramond-Regular-lf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Regular-lf-swash-t1\><<<
EBGaramond-Regular-lf-swash-t1 0 255
'&#x60;' '' grave 0
@@ -6695,14 +9438,14 @@ EBGaramond-Regular-lf-swash-t1 0 255
'&#x2013;' '' endash 21
'&#x2014;' '' emdash 22
'&#x200C;' '' uni200C 23
-'ch' '' c_h 24
+'&#xFB00;' '' f_f 24
'&#x0131;' '' dotlessi 25
'&#x0237;' '' uni0237 26
-'&#xFB00;' '' f_f 27
-'&#xFB01;' '' f_i 28
-'&#xFB02;' '' f_l 29
-'&#xFB03;' '' f_f_i 30
-'&#xFB04;' '' f_f_l 31
+'&#xFB01;' '' f_i 27
+'&#xFB02;' '' f_l 28
+'&#xFB03;' '' f_f_i 29
+'&#xFB04;' '' f_f_l 30
+'ch' '' c_h 31
' ' '' space 32
'!' '' exclam 33
'"' '' quotedbl 34
@@ -6931,442 +9674,386 @@ EBGaramond-Regular-lf-swash-t1 0 255
htfcss: EBGaramond-Regular-lf-swash-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-lf-swash-t1}{unicode/EB_Garamond/EBGaramond-Regular-lf-swash-t1}{}
-% writing EBGaramond-Bold-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-lf-titling-t1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-titling-t1}{alias/EB_Garamond/EBGaramond-Bold-lf-titling-t1}{}
-% writing EBGaramond-Bold-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-Bold-lf-sc-t1\><<<
+\AddFont{EBGaramond-Regular-lf-swash-t1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-lf-swash-t1}{}
+% writing EBGaramond-SemiBold-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBold-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Bold-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-lf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-lf-sc-t1}{alias/EB_Garamond/EBGaramond-Bold-lf-sc-t1}{}
-% writing EBGaramond-Bold-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-lf-t1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-t1}{alias/EB_Garamond/EBGaramond-Bold-lf-t1}{}
-% writing EBGaramond-BoldItalic-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-lf-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-sc-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-sc-t1}{}
+% writing EBGaramond-SemiBold-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBold-lf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBold-lf-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-t1}{}
-% writing EBGaramond-BoldItalic-lf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-BoldItalic-lf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-BoldItalic-lf-swash-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-lf-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-t1}{}
+% writing EBGaramond-SemiBoldItalic-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBoldItalic-lf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBoldItalic-lf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-swash-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-swash-t1}{}
-% writing EBGaramond-BoldItalic-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-BoldItalic-lf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-t1}{}
+% writing EBGaramond-SemiBoldItalic-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBoldItalic-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-BoldItalic-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-lf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-sc-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-sc-t1}{}
-% writing EBGaramond-BoldItalic-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-lf-titling-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-lf-sc-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-sc-t1}{}
+% writing EBGaramond-SemiBoldItalic-lf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-SemiBoldItalic-lf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-SemiBoldItalic-lf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-lf-titling-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-lf-titling-t1}{}
-% writing EBGaramond-Bold-lf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-Bold-lf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-lf-swash-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-lf-swash-t1}{}
+% writing EBGaramond-SemiBold-lf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-SemiBold-lf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-Bold-lf-swash-t1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-lf-swash-t1}{alias/EB_Garamond/EBGaramond-Bold-lf-swash-t1}{}
-% writing EBGaramond-SemiBold-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-lf-titling-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-SemiBold-lf-swash-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-titling-t1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-titling-t1}{}
-% writing EBGaramond-SemiBold-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBold-lf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBold-lf-swash-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-lf-swash-t1}{}
+% writing EBGaramond-Bold-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-Bold-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBold-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-sc-t1}{}
-% writing EBGaramond-SemiBold-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-lf-t1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-lf-t1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-t1}{}
-% writing EBGaramond-SemiBoldItalic-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-lf-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-sc-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-sc-t1}{}
+% writing EBGaramond-Bold-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-Bold-lf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Bold-lf-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-t1}{}
-% writing EBGaramond-SemiBoldItalic-lf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-SemiBoldItalic-lf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-SemiBoldItalic-lf-swash-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-lf-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-t1}{}
+% writing EBGaramond-BoldItalic-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-BoldItalic-lf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-BoldItalic-lf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-swash-t1}{}
-% writing EBGaramond-SemiBoldItalic-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBoldItalic-lf-sc-t1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-t1}{}
+% writing EBGaramond-BoldItalic-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-BoldItalic-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBoldItalic-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-lf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-sc-t1}{}
-% writing EBGaramond-SemiBoldItalic-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-lf-titling-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-lf-sc-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-sc-t1}{}
+% writing EBGaramond-BoldItalic-lf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-BoldItalic-lf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-BoldItalic-lf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-lf-titling-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-lf-titling-t1}{}
-% writing EBGaramond-SemiBold-lf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-SemiBold-lf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-lf-swash-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-lf-swash-t1}{}
+% writing EBGaramond-Bold-lf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-Bold-lf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-SemiBold-lf-swash-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-lf-swash-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-lf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBold-lf-swash-t1}{}
-% writing EBGaramond-Medium-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Medium-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Medium-lf-titling-t1 font-family: 'EB Garamond Medium', serif;
-
->>>
-\AddFont{EBGaramond-Medium-lf-titling-t1}{alias/EB_Garamond/EBGaramond-Medium-lf-titling-t1}{}
-% writing EBGaramond-Medium-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Bold-lf-swash-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-lf-swash-t1}{}
+% writing EBGaramond-Medium-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Medium-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Medium-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-sc-t1}{alias/EB_Garamond/EBGaramond-Medium-lf-sc-t1}{}
-% writing EBGaramond-Medium-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-lf-sc-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-sc-t1}{}
+% writing EBGaramond-Medium-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Medium-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Medium-lf-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-t1}{alias/EB_Garamond/EBGaramond-Medium-lf-t1}{}
-% writing EBGaramond-MediumItalic-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-lf-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-t1}{}
+% writing EBGaramond-MediumItalic-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-MediumItalic-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-lf-t1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-MediumItalic-lf-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-t1}{}
-% writing EBGaramond-MediumItalic-lf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-MediumItalic-lf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-MediumItalic-lf-swash-t1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-lf-swash-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-swash-t1}{}
-% writing EBGaramond-MediumItalic-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-MediumItalic-lf-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-t1}{}
+% writing EBGaramond-MediumItalic-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-MediumItalic-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-MediumItalic-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-lf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-sc-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-sc-t1}{}
-% writing EBGaramond-MediumItalic-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-MediumItalic-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-lf-titling-t1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-lf-sc-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-sc-t1}{}
+% writing EBGaramond-MediumItalic-lf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-MediumItalic-lf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-MediumItalic-lf-swash-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-lf-titling-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-lf-titling-t1}{}
-% writing EBGaramond-Medium-lf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-MediumItalic-lf-swash-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-lf-swash-t1}{}
+% writing EBGaramond-Medium-lf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Medium-lf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Medium-lf-swash-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-lf-swash-t1}{alias/EB_Garamond/EBGaramond-Medium-lf-swash-t1}{}
-% writing EBGaramond-ExtraBold-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-ExtraBold-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-lf-titling-t1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-lf-titling-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-titling-t1}{}
-% writing EBGaramond-ExtraBold-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Medium-lf-swash-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-lf-swash-t1}{}
+% writing EBGaramond-ExtraBold-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBold-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBold-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-sc-t1}{}
-% writing EBGaramond-ExtraBold-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-lf-sc-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-sc-t1}{}
+% writing EBGaramond-ExtraBold-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBold-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-lf-t1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBold-lf-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-lf-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBoldItalic-lf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-lf-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-ExtraBoldItalic-lf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-ExtraBoldItalic-lf-swash-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBoldItalic-lf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-swash-t1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBoldItalic-lf-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBoldItalic-lf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBoldItalic-lf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-lf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-sc-t1}{}
-% writing EBGaramond-ExtraBoldItalic-lf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-ExtraBoldItalic-lf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-lf-titling-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-lf-sc-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-sc-t1}{}
+% writing EBGaramond-ExtraBoldItalic-lf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-ExtraBoldItalic-lf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-ExtraBoldItalic-lf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-lf-titling-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-lf-titling-t1}{}
-% writing EBGaramond-ExtraBold-lf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-ExtraBoldItalic-lf-swash-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-lf-swash-t1}{}
+% writing EBGaramond-ExtraBold-lf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-ExtraBold-lf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-ExtraBold-lf-swash-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-lf-swash-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-lf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-lf-swash-t1}{}
-% writing EBGaramond-Regular-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBold-lf-swash-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-lf-swash-t1}{}
+% writing EBGaramond-Regular-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Regular-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Regular-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-sc-t1}{alias/EB_Garamond/EBGaramond-Regular-osf-sc-t1}{}
-% writing EBGaramond-Regular-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-osf-sc-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-sc-t1}{}
+% writing EBGaramond-Regular-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Regular-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Regular-osf-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-t1}{alias/EB_Garamond/EBGaramond-Regular-osf-t1}{}
-% writing EBGaramond-Italic-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-osf-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-t1}{}
+% writing EBGaramond-Italic-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Italic-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-osf-t1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Italic-osf-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-t1}{alias/EB_Garamond/EBGaramond-Italic-osf-t1}{}
-% writing EBGaramond-Italic-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Italic-osf-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-t1}{}
+% writing EBGaramond-Italic-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Italic-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Italic-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-sc-t1}{alias/EB_Garamond/EBGaramond-Italic-osf-sc-t1}{}
-% writing EBGaramond-Italic-osf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-Italic-osf-sc-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-sc-t1}{}
+% writing EBGaramond-Italic-osf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-Italic-osf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-Italic-osf-swash-t1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-osf-swash-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-osf-swash-t1}{alias/EB_Garamond/EBGaramond-Italic-osf-swash-t1}{}
-% writing EBGaramond-Regular-osf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-Italic-osf-swash-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-osf-swash-t1}{}
+% writing EBGaramond-Regular-osf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Regular-osf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Regular-osf-swash-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-osf-swash-t1}{alias/EB_Garamond/EBGaramond-Regular-osf-swash-t1}{}
-% writing EBGaramond-Bold-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-Bold-osf-sc-t1\><<<
+\AddFont{EBGaramond-Regular-osf-swash-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-osf-swash-t1}{}
+% writing EBGaramond-SemiBold-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBold-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Bold-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-sc-t1}{alias/EB_Garamond/EBGaramond-Bold-osf-sc-t1}{}
-% writing EBGaramond-Bold-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-osf-t1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-osf-sc-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-sc-t1}{}
+% writing EBGaramond-SemiBold-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBold-osf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBold-osf-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-t1}{alias/EB_Garamond/EBGaramond-Bold-osf-t1}{}
-% writing EBGaramond-BoldItalic-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-osf-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-osf-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-t1}{}
+% writing EBGaramond-SemiBoldItalic-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBoldItalic-osf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBoldItalic-osf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-t1}{}
-% writing EBGaramond-BoldItalic-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-BoldItalic-osf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-t1}{}
+% writing EBGaramond-SemiBoldItalic-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBoldItalic-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-BoldItalic-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-sc-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-sc-t1}{}
-% writing EBGaramond-BoldItalic-osf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-BoldItalic-osf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-sc-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-sc-t1}{}
+% writing EBGaramond-SemiBoldItalic-osf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-SemiBoldItalic-osf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-BoldItalic-osf-swash-t1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-osf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-osf-swash-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-osf-swash-t1}{}
-% writing EBGaramond-Bold-osf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-Bold-osf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-osf-swash-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-osf-swash-t1}{}
+% writing EBGaramond-SemiBold-osf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-SemiBold-osf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-Bold-osf-swash-t1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-osf-swash-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-osf-swash-t1}{alias/EB_Garamond/EBGaramond-Bold-osf-swash-t1}{}
-% writing EBGaramond-SemiBold-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBold-osf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBold-osf-swash-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-osf-swash-t1}{}
+% writing EBGaramond-Bold-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-Bold-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBold-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-sc-t1}{}
-% writing EBGaramond-SemiBold-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-osf-t1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-osf-sc-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-sc-t1}{}
+% writing EBGaramond-Bold-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-Bold-osf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Bold-osf-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-t1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-t1}{}
-% writing EBGaramond-SemiBoldItalic-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-osf-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-osf-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-t1}{}
+% writing EBGaramond-BoldItalic-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-BoldItalic-osf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-BoldItalic-osf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-t1}{}
-% writing EBGaramond-SemiBoldItalic-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBoldItalic-osf-sc-t1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-t1}{}
+% writing EBGaramond-BoldItalic-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-BoldItalic-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBoldItalic-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-sc-t1}{}
-% writing EBGaramond-SemiBoldItalic-osf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-SemiBoldItalic-osf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-sc-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-sc-t1}{}
+% writing EBGaramond-BoldItalic-osf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-BoldItalic-osf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-SemiBoldItalic-osf-swash-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-osf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-osf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-osf-swash-t1}{}
-% writing EBGaramond-SemiBold-osf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-SemiBold-osf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-osf-swash-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-osf-swash-t1}{}
+% writing EBGaramond-Bold-osf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-Bold-osf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-SemiBold-osf-swash-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-osf-swash-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-osf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBold-osf-swash-t1}{}
-% writing EBGaramond-Medium-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Bold-osf-swash-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-osf-swash-t1}{}
+% writing EBGaramond-Medium-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Medium-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Medium-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-sc-t1}{alias/EB_Garamond/EBGaramond-Medium-osf-sc-t1}{}
-% writing EBGaramond-Medium-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-osf-sc-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-sc-t1}{}
+% writing EBGaramond-Medium-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Medium-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Medium-osf-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-t1}{alias/EB_Garamond/EBGaramond-Medium-osf-t1}{}
-% writing EBGaramond-MediumItalic-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-osf-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-t1}{}
+% writing EBGaramond-MediumItalic-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-MediumItalic-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-osf-t1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-MediumItalic-osf-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-t1}{}
-% writing EBGaramond-MediumItalic-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-MediumItalic-osf-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-t1}{}
+% writing EBGaramond-MediumItalic-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-MediumItalic-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-MediumItalic-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-sc-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-sc-t1}{}
-% writing EBGaramond-MediumItalic-osf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-MediumItalic-osf-sc-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-sc-t1}{}
+% writing EBGaramond-MediumItalic-osf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-MediumItalic-osf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-MediumItalic-osf-swash-t1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-osf-swash-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-osf-swash-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-osf-swash-t1}{}
-% writing EBGaramond-Medium-osf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-MediumItalic-osf-swash-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-osf-swash-t1}{}
+% writing EBGaramond-Medium-osf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Medium-osf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Medium-osf-swash-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-osf-swash-t1}{alias/EB_Garamond/EBGaramond-Medium-osf-swash-t1}{}
-% writing EBGaramond-ExtraBold-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Medium-osf-swash-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-osf-swash-t1}{}
+% writing EBGaramond-ExtraBold-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBold-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBold-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-sc-t1}{}
-% writing EBGaramond-ExtraBold-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-osf-sc-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-sc-t1}{}
+% writing EBGaramond-ExtraBold-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBold-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-osf-t1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBold-osf-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-osf-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBoldItalic-osf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-osf-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBoldItalic-osf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBoldItalic-osf-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBoldItalic-osf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBoldItalic-osf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-sc-t1}{}
-% writing EBGaramond-ExtraBoldItalic-osf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-ExtraBoldItalic-osf-sc-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-sc-t1}{}
+% writing EBGaramond-ExtraBoldItalic-osf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-ExtraBoldItalic-osf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-ExtraBoldItalic-osf-swash-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-osf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-osf-swash-t1}{}
-% writing EBGaramond-ExtraBold-osf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-ExtraBoldItalic-osf-swash-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-osf-swash-t1}{}
+% writing EBGaramond-ExtraBold-osf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-ExtraBold-osf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-ExtraBold-osf-swash-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-osf-swash-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-osf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-osf-swash-t1}{}
-% writing EBGaramond-Regular-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-ExtraBold-osf-swash-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-osf-swash-t1}{}
+% writing EBGaramond-Regular-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-Regular-sup-t1\><<<
EBGaramond-Regular-sup-t1 0 255
'&#x60;' '' grave.sups 0
@@ -7592,7 +10279,7 @@ EBGaramond-Regular-sup-t1 0 255
'&#x00DC;' '' Udieresis 220
'&#x00DD;' '' Yacute 221
'&#x00DE;' '' Thorn 222
-'SS' '' S.sups S.sups 223
+'S' '' S.sups S.sups 223
'&#x00E0;' '' agrave 224
'&#x00E1;' '' aacute 225
'&#x00E2;' '' acircumflex 226
@@ -7629,559 +10316,489 @@ EBGaramond-Regular-sup-t1 0 255
htfcss: EBGaramond-Regular-sup-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-sup-t1}{unicode/EB_Garamond/EBGaramond-Regular-sup-t1}{}
-% writing EBGaramond-Italic-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-Regular-sup-t1}{unicode/EB_Garamond_Regular/EBGaramond-Regular-sup-t1}{}
+% writing EBGaramond-Italic-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-Italic-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-Italic-sup-t1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-sup-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-sup-t1}{alias/EB_Garamond/EBGaramond-Italic-sup-t1}{}
-% writing EBGaramond-Bold-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
-\<EBGaramond-Bold-sup-t1\><<<
+\AddFont{EBGaramond-Italic-sup-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-sup-t1}{}
+% writing EBGaramond-SemiBold-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
+\<EBGaramond-SemiBold-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-Bold-sup-t1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-sup-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-sup-t1}{alias/EB_Garamond/EBGaramond-Bold-sup-t1}{}
-% writing EBGaramond-BoldItalic-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
-\<EBGaramond-BoldItalic-sup-t1\><<<
+\AddFont{EBGaramond-SemiBold-sup-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-sup-t1}{}
+% writing EBGaramond-SemiBoldItalic-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
+\<EBGaramond-SemiBoldItalic-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-BoldItalic-sup-t1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-sup-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-sup-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-sup-t1}{}
-% writing EBGaramond-SemiBold-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
-\<EBGaramond-SemiBold-sup-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-sup-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-sup-t1}{}
+% writing EBGaramond-Bold-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
+\<EBGaramond-Bold-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-SemiBold-sup-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-sup-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-sup-t1}{alias/EB_Garamond/EBGaramond-SemiBold-sup-t1}{}
-% writing EBGaramond-SemiBoldItalic-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
-\<EBGaramond-SemiBoldItalic-sup-t1\><<<
+\AddFont{EBGaramond-Bold-sup-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-sup-t1}{}
+% writing EBGaramond-BoldItalic-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
+\<EBGaramond-BoldItalic-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-SemiBoldItalic-sup-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-sup-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-sup-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-sup-t1}{}
-% writing EBGaramond-Medium-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-BoldItalic-sup-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-sup-t1}{}
+% writing EBGaramond-Medium-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-Medium-sup-t1\><<<
.EBGaramond-Regular-sup-t1
htfcss: EBGaramond-Medium-sup-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-sup-t1}{alias/EB_Garamond/EBGaramond-Medium-sup-t1}{}
-% writing EBGaramond-MediumItalic-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-Medium-sup-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-sup-t1}{}
+% writing EBGaramond-MediumItalic-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-MediumItalic-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-MediumItalic-sup-t1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-sup-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-sup-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-sup-t1}{}
-% writing EBGaramond-ExtraBold-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-MediumItalic-sup-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-sup-t1}{}
+% writing EBGaramond-ExtraBold-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-ExtraBold-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-ExtraBold-sup-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-sup-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-sup-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-sup-t1}{}
-% writing EBGaramond-ExtraBoldItalic-sup-t1.htf hash: 113c4ab409ccf6fe11a1feca80d5f588
+\AddFont{EBGaramond-ExtraBold-sup-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-sup-t1}{}
+% writing EBGaramond-ExtraBoldItalic-sup-t1.htf hash: 86925448c4f03d640ba569a71955f8b7
\<EBGaramond-ExtraBoldItalic-sup-t1\><<<
.EBGaramond-Regular-sup-t1
-htfcss: EBGaramond-ExtraBoldItalic-sup-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-sup-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-sup-t1}{}
-% writing EBGaramond-Regular-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Regular-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Regular-tlf-titling-t1 font-family: 'EB Garamond Regular', serif;
+htfcss: EBGaramond-ExtraBoldItalic-sup-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-Regular-tlf-titling-t1}{}
-% writing EBGaramond-Regular-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBoldItalic-sup-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-sup-t1}{}
+% writing EBGaramond-Regular-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Regular-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Regular-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-Regular-tlf-sc-t1}{}
-% writing EBGaramond-Regular-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-tlf-sc-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-sc-t1}{}
+% writing EBGaramond-Regular-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Regular-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Regular-tlf-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-t1}{alias/EB_Garamond/EBGaramond-Regular-tlf-t1}{}
-% writing EBGaramond-Italic-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-tlf-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-t1}{}
+% writing EBGaramond-Italic-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Italic-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-tlf-t1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Italic-tlf-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-t1}{alias/EB_Garamond/EBGaramond-Italic-tlf-t1}{}
-% writing EBGaramond-Italic-tlf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-Italic-tlf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-Italic-tlf-swash-t1 font-family: 'EB Garamond Italic', serif;
-
->>>
-\AddFont{EBGaramond-Italic-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-Italic-tlf-swash-t1}{}
-% writing EBGaramond-Italic-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Italic-tlf-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-t1}{}
+% writing EBGaramond-Italic-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Italic-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Italic-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tlf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-Italic-tlf-sc-t1}{}
-% writing EBGaramond-Italic-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Italic-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-tlf-titling-t1 font-family: 'EB Garamond Italic', serif;
+\AddFont{EBGaramond-Italic-tlf-sc-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-sc-t1}{}
+% writing EBGaramond-Italic-tlf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-Italic-tlf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-Italic-tlf-swash-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-Italic-tlf-titling-t1}{}
-% writing EBGaramond-Regular-tlf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-Italic-tlf-swash-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tlf-swash-t1}{}
+% writing EBGaramond-Regular-tlf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Regular-tlf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Regular-tlf-swash-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-Regular-tlf-swash-t1}{}
-% writing EBGaramond-Bold-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-tlf-titling-t1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-Bold-tlf-titling-t1}{}
-% writing EBGaramond-Bold-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-Bold-tlf-sc-t1\><<<
+\AddFont{EBGaramond-Regular-tlf-swash-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tlf-swash-t1}{}
+% writing EBGaramond-SemiBold-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBold-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Bold-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tlf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-Bold-tlf-sc-t1}{}
-% writing EBGaramond-Bold-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-tlf-t1 font-family: 'EB Garamond Bold', serif;
-
->>>
-\AddFont{EBGaramond-Bold-tlf-t1}{alias/EB_Garamond/EBGaramond-Bold-tlf-t1}{}
-% writing EBGaramond-BoldItalic-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-tlf-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-sc-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-sc-t1}{}
+% writing EBGaramond-SemiBold-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBold-tlf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBold-tlf-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-t1}{}
-% writing EBGaramond-BoldItalic-tlf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-BoldItalic-tlf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-BoldItalic-tlf-swash-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tlf-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-t1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBoldItalic-tlf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBoldItalic-tlf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-swash-t1}{}
-% writing EBGaramond-BoldItalic-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-BoldItalic-tlf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-t1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBoldItalic-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-BoldItalic-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tlf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-sc-t1}{}
-% writing EBGaramond-BoldItalic-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-tlf-titling-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-sc-t1}{}
+% writing EBGaramond-SemiBoldItalic-tlf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-SemiBoldItalic-tlf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-SemiBoldItalic-tlf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tlf-titling-t1}{}
-% writing EBGaramond-Bold-tlf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-Bold-tlf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tlf-swash-t1}{}
+% writing EBGaramond-SemiBold-tlf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-SemiBold-tlf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-Bold-tlf-swash-t1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tlf-swash-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-Bold-tlf-swash-t1}{}
-% writing EBGaramond-SemiBold-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-tlf-titling-t1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-titling-t1}{}
-% writing EBGaramond-SemiBold-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBold-tlf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBold-tlf-swash-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tlf-swash-t1}{}
+% writing EBGaramond-Bold-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-Bold-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBold-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-sc-t1}{}
-% writing EBGaramond-SemiBold-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-tlf-t1 font-family: 'EB Garamond SemiBold', serif;
-
->>>
-\AddFont{EBGaramond-SemiBold-tlf-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-t1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-tlf-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-sc-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-sc-t1}{}
+% writing EBGaramond-Bold-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-Bold-tlf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Bold-tlf-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-t1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-SemiBoldItalic-tlf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-SemiBoldItalic-tlf-swash-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tlf-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-t1}{}
+% writing EBGaramond-BoldItalic-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-BoldItalic-tlf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-BoldItalic-tlf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-swash-t1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBoldItalic-tlf-sc-t1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-t1}{}
+% writing EBGaramond-BoldItalic-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-BoldItalic-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBoldItalic-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tlf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-sc-t1}{}
-% writing EBGaramond-SemiBoldItalic-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-tlf-titling-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-BoldItalic-tlf-sc-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-sc-t1}{}
+% writing EBGaramond-BoldItalic-tlf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-BoldItalic-tlf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-BoldItalic-tlf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tlf-titling-t1}{}
-% writing EBGaramond-SemiBold-tlf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-SemiBold-tlf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-tlf-swash-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tlf-swash-t1}{}
+% writing EBGaramond-Bold-tlf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-Bold-tlf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-SemiBold-tlf-swash-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tlf-swash-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tlf-swash-t1}{}
-% writing EBGaramond-Medium-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Medium-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Medium-tlf-titling-t1 font-family: 'EB Garamond Medium', serif;
-
->>>
-\AddFont{EBGaramond-Medium-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-Medium-tlf-titling-t1}{}
-% writing EBGaramond-Medium-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Bold-tlf-swash-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tlf-swash-t1}{}
+% writing EBGaramond-Medium-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Medium-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Medium-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-Medium-tlf-sc-t1}{}
-% writing EBGaramond-Medium-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-tlf-sc-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-sc-t1}{}
+% writing EBGaramond-Medium-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Medium-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Medium-tlf-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-t1}{alias/EB_Garamond/EBGaramond-Medium-tlf-t1}{}
-% writing EBGaramond-MediumItalic-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-tlf-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-t1}{}
+% writing EBGaramond-MediumItalic-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-MediumItalic-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-tlf-t1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-MediumItalic-tlf-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-t1}{}
-% writing EBGaramond-MediumItalic-tlf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-MediumItalic-tlf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-MediumItalic-tlf-swash-t1 font-family: 'EB Garamond Medium Italic', serif;
-
->>>
-\AddFont{EBGaramond-MediumItalic-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-swash-t1}{}
-% writing EBGaramond-MediumItalic-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-MediumItalic-tlf-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-t1}{}
+% writing EBGaramond-MediumItalic-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-MediumItalic-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-MediumItalic-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tlf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-sc-t1}{}
-% writing EBGaramond-MediumItalic-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-MediumItalic-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-tlf-titling-t1 font-family: 'EB Garamond Medium Italic', serif;
+\AddFont{EBGaramond-MediumItalic-tlf-sc-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-sc-t1}{}
+% writing EBGaramond-MediumItalic-tlf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-MediumItalic-tlf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-MediumItalic-tlf-swash-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tlf-titling-t1}{}
-% writing EBGaramond-Medium-tlf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-MediumItalic-tlf-swash-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tlf-swash-t1}{}
+% writing EBGaramond-Medium-tlf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Medium-tlf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Medium-tlf-swash-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-Medium-tlf-swash-t1}{}
-% writing EBGaramond-ExtraBold-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-ExtraBold-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-tlf-titling-t1 font-family: 'EB Garamond ExtraBold', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBold-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-titling-t1}{}
-% writing EBGaramond-ExtraBold-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Medium-tlf-swash-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tlf-swash-t1}{}
+% writing EBGaramond-ExtraBold-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBold-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBold-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-sc-t1}{}
-% writing EBGaramond-ExtraBold-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-tlf-sc-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-sc-t1}{}
+% writing EBGaramond-ExtraBold-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBold-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-tlf-t1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBold-tlf-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-tlf-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBoldItalic-tlf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
-
->>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-ExtraBoldItalic-tlf-swash-t1\><<<
-.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-swash-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBoldItalic-tlf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tlf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-sc-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tlf-titling-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-ExtraBoldItalic-tlf-titling-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-tlf-titling-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-sc-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-sc-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tlf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-ExtraBoldItalic-tlf-swash-t1\><<<
+.EBGaramond-Italic-lf-swash-t1
+htfcss: EBGaramond-ExtraBoldItalic-tlf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tlf-titling-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tlf-titling-t1}{}
-% writing EBGaramond-ExtraBold-tlf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-ExtraBoldItalic-tlf-swash-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tlf-swash-t1}{}
+% writing EBGaramond-ExtraBold-tlf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-ExtraBold-tlf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-ExtraBold-tlf-swash-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tlf-swash-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tlf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tlf-swash-t1}{}
-% writing EBGaramond-Regular-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBold-tlf-swash-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tlf-swash-t1}{}
+% writing EBGaramond-Regular-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Regular-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Regular-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-Regular-tosf-sc-t1}{}
-% writing EBGaramond-Regular-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-tosf-sc-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-sc-t1}{}
+% writing EBGaramond-Regular-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Regular-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Regular-tosf-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-t1}{alias/EB_Garamond/EBGaramond-Regular-tosf-t1}{}
-% writing EBGaramond-Italic-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Regular-tosf-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-t1}{}
+% writing EBGaramond-Italic-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Italic-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Italic-tosf-t1 font-family: 'EB Garamond Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Italic-tosf-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-t1}{alias/EB_Garamond/EBGaramond-Italic-tosf-t1}{}
-% writing EBGaramond-Italic-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Italic-tosf-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-t1}{}
+% writing EBGaramond-Italic-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Italic-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Italic-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-Italic-tosf-sc-t1}{}
-% writing EBGaramond-Italic-tosf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-Italic-tosf-sc-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-sc-t1}{}
+% writing EBGaramond-Italic-tosf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-Italic-tosf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-Italic-tosf-swash-t1 font-family: 'EB Garamond Italic', serif;
+htfcss: EBGaramond-Italic-tosf-swash-t1 font-style: italic; font-family: 'EB Garamond Italic', serif;
>>>
-\AddFont{EBGaramond-Italic-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-Italic-tosf-swash-t1}{}
-% writing EBGaramond-Regular-tosf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-Italic-tosf-swash-t1}{alias/EB_Garamond_Italic/EBGaramond-Italic-tosf-swash-t1}{}
+% writing EBGaramond-Regular-tosf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Regular-tosf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Regular-tosf-swash-t1 font-family: 'EB Garamond Regular', serif;
>>>
-\AddFont{EBGaramond-Regular-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-Regular-tosf-swash-t1}{}
-% writing EBGaramond-Bold-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-Bold-tosf-sc-t1\><<<
+\AddFont{EBGaramond-Regular-tosf-swash-t1}{alias/EB_Garamond_Regular/EBGaramond-Regular-tosf-swash-t1}{}
+% writing EBGaramond-SemiBold-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBold-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-Bold-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-Bold-tosf-sc-t1}{}
-% writing EBGaramond-Bold-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-Bold-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-Bold-tosf-t1 font-family: 'EB Garamond Bold', serif;
+\AddFont{EBGaramond-SemiBold-tosf-sc-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-sc-t1}{}
+% writing EBGaramond-SemiBold-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBold-tosf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBold-tosf-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-t1}{alias/EB_Garamond/EBGaramond-Bold-tosf-t1}{}
-% writing EBGaramond-BoldItalic-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-BoldItalic-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-BoldItalic-tosf-t1 font-family: 'EB Garamond Bold Italic', serif;
+\AddFont{EBGaramond-SemiBold-tosf-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-t1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-SemiBoldItalic-tosf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-SemiBoldItalic-tosf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-t1}{}
-% writing EBGaramond-BoldItalic-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-BoldItalic-tosf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-t1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-SemiBoldItalic-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-BoldItalic-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-sc-t1}{}
-% writing EBGaramond-BoldItalic-tosf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-BoldItalic-tosf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-sc-t1}{}
+% writing EBGaramond-SemiBoldItalic-tosf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-SemiBoldItalic-tosf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-BoldItalic-tosf-swash-t1 font-family: 'EB Garamond Bold Italic', serif;
+htfcss: EBGaramond-SemiBoldItalic-tosf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond SemiBold Italic', serif;
>>>
-\AddFont{EBGaramond-BoldItalic-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-BoldItalic-tosf-swash-t1}{}
-% writing EBGaramond-Bold-tosf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-Bold-tosf-swash-t1\><<<
+\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-t1}{alias/EB_Garamond_SemiBold_Italic/EBGaramond-SemiBoldItalic-tosf-swash-t1}{}
+% writing EBGaramond-SemiBold-tosf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-SemiBold-tosf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-Bold-tosf-swash-t1 font-family: 'EB Garamond Bold', serif;
+htfcss: EBGaramond-SemiBold-tosf-swash-t1 font-weight: bold; font-family: 'EB Garamond SemiBold', serif;
>>>
-\AddFont{EBGaramond-Bold-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-Bold-tosf-swash-t1}{}
-% writing EBGaramond-SemiBold-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBold-tosf-sc-t1\><<<
+\AddFont{EBGaramond-SemiBold-tosf-swash-t1}{alias/EB_Garamond_SemiBold/EBGaramond-SemiBold-tosf-swash-t1}{}
+% writing EBGaramond-Bold-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-Bold-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBold-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-sc-t1}{}
-% writing EBGaramond-SemiBold-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBold-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBold-tosf-t1 font-family: 'EB Garamond SemiBold', serif;
+\AddFont{EBGaramond-Bold-tosf-sc-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-sc-t1}{}
+% writing EBGaramond-Bold-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-Bold-tosf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-Bold-tosf-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-t1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
-\<EBGaramond-SemiBoldItalic-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-SemiBoldItalic-tosf-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+\AddFont{EBGaramond-Bold-tosf-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-t1}{}
+% writing EBGaramond-BoldItalic-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
+\<EBGaramond-BoldItalic-tosf-t1\><<<
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-BoldItalic-tosf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-t1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
-\<EBGaramond-SemiBoldItalic-tosf-sc-t1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-t1}{}
+% writing EBGaramond-BoldItalic-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
+\<EBGaramond-BoldItalic-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-SemiBoldItalic-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-sc-t1}{}
-% writing EBGaramond-SemiBoldItalic-tosf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
-\<EBGaramond-SemiBoldItalic-tosf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-sc-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-sc-t1}{}
+% writing EBGaramond-BoldItalic-tosf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
+\<EBGaramond-BoldItalic-tosf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-SemiBoldItalic-tosf-swash-t1 font-family: 'EB Garamond SemiBold Italic', serif;
+htfcss: EBGaramond-BoldItalic-tosf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond Bold Italic', serif;
>>>
-\AddFont{EBGaramond-SemiBoldItalic-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBoldItalic-tosf-swash-t1}{}
-% writing EBGaramond-SemiBold-tosf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
-\<EBGaramond-SemiBold-tosf-swash-t1\><<<
+\AddFont{EBGaramond-BoldItalic-tosf-swash-t1}{alias/EB_Garamond_Bold_Italic/EBGaramond-BoldItalic-tosf-swash-t1}{}
+% writing EBGaramond-Bold-tosf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
+\<EBGaramond-Bold-tosf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-SemiBold-tosf-swash-t1 font-family: 'EB Garamond SemiBold', serif;
+htfcss: EBGaramond-Bold-tosf-swash-t1 font-weight: bold; font-family: 'EB Garamond Bold', serif;
>>>
-\AddFont{EBGaramond-SemiBold-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-SemiBold-tosf-swash-t1}{}
-% writing EBGaramond-Medium-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Bold-tosf-swash-t1}{alias/EB_Garamond_Bold/EBGaramond-Bold-tosf-swash-t1}{}
+% writing EBGaramond-Medium-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-Medium-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
htfcss: EBGaramond-Medium-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-Medium-tosf-sc-t1}{}
-% writing EBGaramond-Medium-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-tosf-sc-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-sc-t1}{}
+% writing EBGaramond-Medium-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-Medium-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
+.EBGaramond-Regular-lf-t1
htfcss: EBGaramond-Medium-tosf-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-t1}{alias/EB_Garamond/EBGaramond-Medium-tosf-t1}{}
-% writing EBGaramond-MediumItalic-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-Medium-tosf-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-t1}{}
+% writing EBGaramond-MediumItalic-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-MediumItalic-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-MediumItalic-tosf-t1 font-family: 'EB Garamond Medium Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-MediumItalic-tosf-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-t1}{}
-% writing EBGaramond-MediumItalic-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-MediumItalic-tosf-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-t1}{}
+% writing EBGaramond-MediumItalic-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-MediumItalic-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-MediumItalic-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-sc-t1 font-style: italic; font-variant: small-caps; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-sc-t1}{}
-% writing EBGaramond-MediumItalic-tosf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-MediumItalic-tosf-sc-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-sc-t1}{}
+% writing EBGaramond-MediumItalic-tosf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-MediumItalic-tosf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-MediumItalic-tosf-swash-t1 font-family: 'EB Garamond Medium Italic', serif;
+htfcss: EBGaramond-MediumItalic-tosf-swash-t1 font-style: italic; font-family: 'EB Garamond Medium Italic', serif;
>>>
-\AddFont{EBGaramond-MediumItalic-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-MediumItalic-tosf-swash-t1}{}
-% writing EBGaramond-Medium-tosf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-MediumItalic-tosf-swash-t1}{alias/EB_Garamond_Medium_Italic/EBGaramond-MediumItalic-tosf-swash-t1}{}
+% writing EBGaramond-Medium-tosf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-Medium-tosf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
htfcss: EBGaramond-Medium-tosf-swash-t1 font-family: 'EB Garamond Medium', serif;
>>>
-\AddFont{EBGaramond-Medium-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-Medium-tosf-swash-t1}{}
-% writing EBGaramond-ExtraBold-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-Medium-tosf-swash-t1}{alias/EB_Garamond_Medium/EBGaramond-Medium-tosf-swash-t1}{}
+% writing EBGaramond-ExtraBold-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBold-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBold-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-sc-t1 font-weight: bold; font-variant: small-caps; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-sc-t1}{}
-% writing EBGaramond-ExtraBold-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-tosf-sc-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-sc-t1}{}
+% writing EBGaramond-ExtraBold-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBold-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBold-tosf-t1 font-family: 'EB Garamond ExtraBold', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBold-tosf-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-t1.htf hash: b5708641cee287eb3ffa2ba04f7e8193
+\AddFont{EBGaramond-ExtraBold-tosf-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-t1.htf hash: d51ed51a719118e9a14a350f0aa61103
\<EBGaramond-ExtraBoldItalic-tosf-t1\><<<
-.EBGaramond-Regular-lf-titling-t1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+.EBGaramond-Regular-lf-t1
+htfcss: EBGaramond-ExtraBoldItalic-tosf-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-sc-t1.htf hash: 9669915be3a8bb21e5134848b1dd91d5
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-sc-t1.htf hash: cbb56a0b79ed288f6d6cffe3a06d680d
\<EBGaramond-ExtraBoldItalic-tosf-sc-t1\><<<
.EBGaramond-Regular-lf-sc-t1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-t1 font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-sc-t1 font-weight: bold; font-style: italic; font-variant: small-caps; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-sc-t1}{}
-% writing EBGaramond-ExtraBoldItalic-tosf-swash-t1.htf hash: 77ebb58a7f83b3bb86d4b875ae165bab
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-sc-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-sc-t1}{}
+% writing EBGaramond-ExtraBoldItalic-tosf-swash-t1.htf hash: 856543c6847d36a0331ab591819f69dc
\<EBGaramond-ExtraBoldItalic-tosf-swash-t1\><<<
.EBGaramond-Italic-lf-swash-t1
-htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-t1 font-family: 'EB Garamond ExtraBold Italic', serif;
+htfcss: EBGaramond-ExtraBoldItalic-tosf-swash-t1 font-weight: bold; font-style: italic; font-family: 'EB Garamond ExtraBold Italic', serif;
>>>
-\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBoldItalic-tosf-swash-t1}{}
-% writing EBGaramond-ExtraBold-tosf-swash-t1.htf hash: d6e11c3c087b0498b45329c25b3e8817
+\AddFont{EBGaramond-ExtraBoldItalic-tosf-swash-t1}{alias/EB_Garamond_ExtraBold_Italic/EBGaramond-ExtraBoldItalic-tosf-swash-t1}{}
+% writing EBGaramond-ExtraBold-tosf-swash-t1.htf hash: 436d8cd5662f7fb654a630413cc1fabe
\<EBGaramond-ExtraBold-tosf-swash-t1\><<<
.EBGaramond-Regular-lf-swash-t1
-htfcss: EBGaramond-ExtraBold-tosf-swash-t1 font-family: 'EB Garamond ExtraBold', serif;
+htfcss: EBGaramond-ExtraBold-tosf-swash-t1 font-weight: bold; font-family: 'EB Garamond ExtraBold', serif;
>>>
-\AddFont{EBGaramond-ExtraBold-tosf-swash-t1}{alias/EB_Garamond/EBGaramond-ExtraBold-tosf-swash-t1}{}
+\AddFont{EBGaramond-ExtraBold-tosf-swash-t1}{alias/EB_Garamond_ExtraBold/EBGaramond-ExtraBold-tosf-swash-t1}{}
\bye
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex
index bdf36d54fa2..96b0280d6bd 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-fourier.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-fonts-fourier.tex 792 2020-09-01 09:58:35Z michal_h21 $
+% $Id: tex4ht-fonts-fourier.tex 1057 2022-01-18 09:17:45Z michal_h21 $
% etex tex4ht-fonts-fourier.tex
%
% Copyright 2020 TeX Users Group.
@@ -429,7 +429,7 @@ futr9c 0 246
'&#x220F;' '' product 28
'&#x03C0;' '' pi 29
'' ''
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'' ''
'' ''
@@ -437,7 +437,7 @@ futr9c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
@@ -766,7 +766,7 @@ futr8c 0 246
'&#x220F;' '' product 28
'&#x03C0;' '' pi 29
'' ''
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'' ''
'' ''
@@ -774,7 +774,7 @@ futr8c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
@@ -3820,7 +3820,7 @@ pncr8c 0 246
'&#x220F;' '' product 28
'&#x03C0;' '' pi 29
'' ''
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'' ''
'' ''
@@ -3828,7 +3828,7 @@ pncr8c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex
index 5ac33a8e2ce..01fc0a4eb79 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-kpfonts.tex
@@ -1,13 +1,10 @@
-% $Id: tex4ht-fonts-fourier.tex 790 2020-08-31 21:56:35Z karl $
+% $Id: tex4ht-fonts-kpfonts.tex 1057 2022-01-18 09:17:45Z michal_h21 $
% etex {nameofthefile.tex}
%
-% Copyright 2020 TeX Users Group.
+% Copyright 2021 TeX Users Group.
% Released under LPPL 1.3c+.
% See tex4ht-cpright.tex for license text.
-
-% Copyright (C) 2018 TeX Users Group
-
\input tex4ht.sty
\Preamble{xhtml,th4,sections+}
\EndPreamble
@@ -2751,7 +2748,7 @@ jkpmsc7t 0 170
'&#x2126;' '' Omega 10
'' ''
'' ''
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -3115,7 +3112,7 @@ jkposnmsc7t 0 170
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -3678,7 +3675,7 @@ jkpkosmsc7t 0 170
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -5793,7 +5790,7 @@ jkpttmn7t 0 170
'&#x2126;' '' Omega 10
'' ''
'' ''
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -5993,7 +5990,7 @@ jkpttosmn7t 0 170
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -6197,7 +6194,7 @@ jkpttosnmn7t 0 170
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -6397,7 +6394,7 @@ jkpttvosmn7t 0 171
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -6628,7 +6625,7 @@ jkpmn7c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskcentered 42
@@ -8251,17 +8248,17 @@ htfcss: jkpbn8t font-family: 'Kp', serif;
% writing jkpbsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkpbsc8t\><<<
.jkpmsc8t
-htfcss: jkpbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpbsc8t}{alias/Kp-Smallcaps/jkpbsc8t}{}
+\AddFont{jkpbsc8t}{alias/Kp-SmallCaps/jkpbsc8t}{}
% writing jkpbscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkpbscsl8t\><<<
.jkpmsc8t
-htfcss: jkpbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpbscsl8t}{alias/Kp-Smallcaps/jkpbscsl8t}{}
+\AddFont{jkpbscsl8t}{alias/Kp-SmallCaps/jkpbscsl8t}{}
% writing jkpbit8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkpbit8t\><<<
.jkpmn8t
@@ -8293,17 +8290,17 @@ htfcss: jkpbxit8t font-style: italic; font-family: 'Kp', serif;
% writing jkpbxsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkpbxsc8t\><<<
.jkpmsc8t
-htfcss: jkpbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpbxsc8t}{alias/Kp-Smallcaps/jkpbxsc8t}{}
+\AddFont{jkpbxsc8t}{alias/Kp-SmallCaps/jkpbxsc8t}{}
% writing jkpbxscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkpbxscsl8t\><<<
.jkpmsc8t
-htfcss: jkpbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpbxscsl8t}{alias/Kp-Smallcaps/jkpbxscsl8t}{}
+\AddFont{jkpbxscsl8t}{alias/Kp-SmallCaps/jkpbxscsl8t}{}
% writing jkpbxsl8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkpbxsl8t\><<<
.jkpmn8t
@@ -8419,17 +8416,17 @@ htfcss: jkpfosnbn8t font-family: 'Kp', serif;
% writing jkposnbsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkposnbsc8t\><<<
.jkpmsc8t
-htfcss: jkposnbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposnbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposnbsc8t}{alias/Kp-Smallcaps/jkposnbsc8t}{}
+\AddFont{jkposnbsc8t}{alias/Kp-SmallCaps/jkposnbsc8t}{}
% writing jkposnbscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkposnbscsl8t\><<<
.jkpmsc8t
-htfcss: jkposnbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposnbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposnbscsl8t}{alias/Kp-Smallcaps/jkposnbscsl8t}{}
+\AddFont{jkposnbscsl8t}{alias/Kp-SmallCaps/jkposnbscsl8t}{}
% writing jkpfosnbit8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkpfosnbit8t\><<<
.jkpmn8t
@@ -8461,17 +8458,17 @@ htfcss: jkpfosnbxit8t font-style: italic; font-family: 'Kp', serif;
% writing jkposnbxsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkposnbxsc8t\><<<
.jkpmsc8t
-htfcss: jkposnbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposnbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposnbxsc8t}{alias/Kp-Smallcaps/jkposnbxsc8t}{}
+\AddFont{jkposnbxsc8t}{alias/Kp-SmallCaps/jkposnbxsc8t}{}
% writing jkposnbxscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkposnbxscsl8t\><<<
.jkpmsc8t
-htfcss: jkposnbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposnbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposnbxscsl8t}{alias/Kp-Smallcaps/jkposnbxscsl8t}{}
+\AddFont{jkposnbxscsl8t}{alias/Kp-SmallCaps/jkposnbxscsl8t}{}
% writing jkpfosnbxsl8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkpfosnbxsl8t\><<<
.jkpmn8t
@@ -8753,31 +8750,31 @@ htfcss: jkpkmscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', ser
% writing jkpkbsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkbsc8t\><<<
.jkpkmsc8t
-htfcss: jkpkbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkbsc8t}{alias/Kp-Smallcaps/jkpkbsc8t}{}
+\AddFont{jkpkbsc8t}{alias/Kp-SmallCaps/jkpkbsc8t}{}
% writing jkpkbscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkbscsl8t\><<<
.jkpkmsc8t
-htfcss: jkpkbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkbscsl8t}{alias/Kp-Smallcaps/jkpkbscsl8t}{}
+\AddFont{jkpkbscsl8t}{alias/Kp-SmallCaps/jkpkbscsl8t}{}
% writing jkpkbxsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkbxsc8t\><<<
.jkpkmsc8t
-htfcss: jkpkbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkbxsc8t}{alias/Kp-Smallcaps/jkpkbxsc8t}{}
+\AddFont{jkpkbxsc8t}{alias/Kp-SmallCaps/jkpkbxsc8t}{}
% writing jkpkbxscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkbxscsl8t\><<<
.jkpkmsc8t
-htfcss: jkpkbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkbxscsl8t}{alias/Kp-Smallcaps/jkpkbxscsl8t}{}
+\AddFont{jkpkbxscsl8t}{alias/Kp-SmallCaps/jkpkbxscsl8t}{}
% writing jkpkosnmsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkosnmsc8t\><<<
.jkpkmsc8t
@@ -8795,31 +8792,31 @@ htfcss: jkpkosnmscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps',
% writing jkpkosnbsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkosnbsc8t\><<<
.jkpkmsc8t
-htfcss: jkpkosnbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosnbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosnbsc8t}{alias/Kp-Smallcaps/jkpkosnbsc8t}{}
+\AddFont{jkpkosnbsc8t}{alias/Kp-SmallCaps/jkpkosnbsc8t}{}
% writing jkpkosnbscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkosnbscsl8t\><<<
.jkpkmsc8t
-htfcss: jkpkosnbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosnbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosnbscsl8t}{alias/Kp-Smallcaps/jkpkosnbscsl8t}{}
+\AddFont{jkpkosnbscsl8t}{alias/Kp-SmallCaps/jkpkosnbscsl8t}{}
% writing jkpkosnbxsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkosnbxsc8t\><<<
.jkpkmsc8t
-htfcss: jkpkosnbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosnbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosnbxsc8t}{alias/Kp-Smallcaps/jkpkosnbxsc8t}{}
+\AddFont{jkpkosnbxsc8t}{alias/Kp-SmallCaps/jkpkosnbxsc8t}{}
% writing jkpkosnbxscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkpkosnbxscsl8t\><<<
.jkpkmsc8t
-htfcss: jkpkosnbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosnbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosnbxscsl8t}{alias/Kp-Smallcaps/jkpkosnbxscsl8t}{}
+\AddFont{jkpkosnbxscsl8t}{alias/Kp-SmallCaps/jkpkosnbxscsl8t}{}
% writing jkposmn8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
\<jkposmn8t\><<<
jkposmn8t 0 255
@@ -9387,19 +9384,19 @@ Missing glyph Qoldstyle
% writing jkpkosbsc8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkpkosbsc8t\><<<
.jkpkosmsc8t
-htfcss: jkpkosbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosbsc8t}{alias/Kp-Smallcaps/jkpkosbsc8t}{}
+\AddFont{jkpkosbsc8t}{alias/Kp-SmallCaps/jkpkosbsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkpkosbscsl8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkpkosbscsl8t\><<<
.jkpkosmsc8t
-htfcss: jkpkosbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosbscsl8t}{alias/Kp-Smallcaps/jkpkosbscsl8t}{}
+\AddFont{jkpkosbscsl8t}{alias/Kp-SmallCaps/jkpkosbscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposbit8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
@@ -9437,19 +9434,19 @@ Missing glyph Qoldstyle
% writing jkpkosbxsc8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkpkosbxsc8t\><<<
.jkpkosmsc8t
-htfcss: jkpkosbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosbxsc8t}{alias/Kp-Smallcaps/jkpkosbxsc8t}{}
+\AddFont{jkpkosbxsc8t}{alias/Kp-SmallCaps/jkpkosbxsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkpkosbxscsl8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkpkosbxscsl8t\><<<
.jkpkosmsc8t
-htfcss: jkpkosbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkpkosbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkpkosbxscsl8t}{alias/Kp-Smallcaps/jkpkosbxscsl8t}{}
+\AddFont{jkpkosbxscsl8t}{alias/Kp-SmallCaps/jkpkosbxscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposbxsl8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
@@ -9942,17 +9939,17 @@ htfcss: jkplbn8t font-family: 'Kp-Light', serif;
% writing jkplbsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplbsc8t\><<<
.jkpmsc8t
-htfcss: jkplbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplbsc8t}{alias/Kp-Light-Smallcaps/jkplbsc8t}{}
+\AddFont{jkplbsc8t}{alias/Kp-Light-SmallCaps/jkplbsc8t}{}
% writing jkplbscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplbscsl8t\><<<
.jkpmsc8t
-htfcss: jkplbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplbscsl8t}{alias/Kp-Light-Smallcaps/jkplbscsl8t}{}
+\AddFont{jkplbscsl8t}{alias/Kp-Light-SmallCaps/jkplbscsl8t}{}
% writing jkplbit8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkplbit8t\><<<
.jkpmn8t
@@ -9984,17 +9981,17 @@ htfcss: jkplbxit8t font-style: italic; font-family: 'Kp-Light', serif;
% writing jkplbxsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplbxsc8t\><<<
.jkpmsc8t
-htfcss: jkplbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplbxsc8t}{alias/Kp-Light-Smallcaps/jkplbxsc8t}{}
+\AddFont{jkplbxsc8t}{alias/Kp-Light-SmallCaps/jkplbxsc8t}{}
% writing jkplbxscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplbxscsl8t\><<<
.jkpmsc8t
-htfcss: jkplbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplbxscsl8t}{alias/Kp-Light-Smallcaps/jkplbxscsl8t}{}
+\AddFont{jkplbxscsl8t}{alias/Kp-Light-SmallCaps/jkplbxscsl8t}{}
% writing jkplbxsl8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkplbxsl8t\><<<
.jkpmn8t
@@ -10110,17 +10107,17 @@ htfcss: jkplfosnbn8t font-family: 'Kp-Light', serif;
% writing jkplosnbsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplosnbsc8t\><<<
.jkpmsc8t
-htfcss: jkplosnbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosnbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosnbsc8t}{alias/Kp-Light-Smallcaps/jkplosnbsc8t}{}
+\AddFont{jkplosnbsc8t}{alias/Kp-Light-SmallCaps/jkplosnbsc8t}{}
% writing jkplosnbscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplosnbscsl8t\><<<
.jkpmsc8t
-htfcss: jkplosnbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosnbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosnbscsl8t}{alias/Kp-Light-Smallcaps/jkplosnbscsl8t}{}
+\AddFont{jkplosnbscsl8t}{alias/Kp-Light-SmallCaps/jkplosnbscsl8t}{}
% writing jkplfosnbit8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkplfosnbit8t\><<<
.jkpmn8t
@@ -10152,17 +10149,17 @@ htfcss: jkplfosnbxit8t font-style: italic; font-family: 'Kp-Light', serif;
% writing jkplosnbxsc8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplosnbxsc8t\><<<
.jkpmsc8t
-htfcss: jkplosnbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosnbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosnbxsc8t}{alias/Kp-Light-Smallcaps/jkplosnbxsc8t}{}
+\AddFont{jkplosnbxsc8t}{alias/Kp-Light-SmallCaps/jkplosnbxsc8t}{}
% writing jkplosnbxscsl8t.htf hash: d91b11a106186b80e1341a879491bcb8
\<jkplosnbxscsl8t\><<<
.jkpmsc8t
-htfcss: jkplosnbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosnbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosnbxscsl8t}{alias/Kp-Light-Smallcaps/jkplosnbxscsl8t}{}
+\AddFont{jkplosnbxscsl8t}{alias/Kp-Light-SmallCaps/jkplosnbxscsl8t}{}
% writing jkplfosnbxsl8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
\<jkplfosnbxsl8t\><<<
.jkpmn8t
@@ -10187,31 +10184,31 @@ htfcss: jkplkmscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCap
% writing jkplkbsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkbsc8t\><<<
.jkpkmsc8t
-htfcss: jkplkbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkbsc8t}{alias/Kp-Light-Smallcaps/jkplkbsc8t}{}
+\AddFont{jkplkbsc8t}{alias/Kp-Light-SmallCaps/jkplkbsc8t}{}
% writing jkplkbscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkbscsl8t\><<<
.jkpkmsc8t
-htfcss: jkplkbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkbscsl8t}{alias/Kp-Light-Smallcaps/jkplkbscsl8t}{}
+\AddFont{jkplkbscsl8t}{alias/Kp-Light-SmallCaps/jkplkbscsl8t}{}
% writing jkplkbxsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkbxsc8t\><<<
.jkpkmsc8t
-htfcss: jkplkbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkbxsc8t}{alias/Kp-Light-Smallcaps/jkplkbxsc8t}{}
+\AddFont{jkplkbxsc8t}{alias/Kp-Light-SmallCaps/jkplkbxsc8t}{}
% writing jkplkbxscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkbxscsl8t\><<<
.jkpkmsc8t
-htfcss: jkplkbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkbxscsl8t}{alias/Kp-Light-Smallcaps/jkplkbxscsl8t}{}
+\AddFont{jkplkbxscsl8t}{alias/Kp-Light-SmallCaps/jkplkbxscsl8t}{}
% writing jkplkosnmsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkosnmsc8t\><<<
.jkpkmsc8t
@@ -10229,31 +10226,31 @@ htfcss: jkplkosnmscsl8t font-variant: small-caps; font-family: 'Kp-Light-Small
% writing jkplkosnbsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkosnbsc8t\><<<
.jkpkmsc8t
-htfcss: jkplkosnbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosnbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosnbsc8t}{alias/Kp-Light-Smallcaps/jkplkosnbsc8t}{}
+\AddFont{jkplkosnbsc8t}{alias/Kp-Light-SmallCaps/jkplkosnbsc8t}{}
% writing jkplkosnbscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkosnbscsl8t\><<<
.jkpkmsc8t
-htfcss: jkplkosnbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosnbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosnbscsl8t}{alias/Kp-Light-Smallcaps/jkplkosnbscsl8t}{}
+\AddFont{jkplkosnbscsl8t}{alias/Kp-Light-SmallCaps/jkplkosnbscsl8t}{}
% writing jkplkosnbxsc8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkosnbxsc8t\><<<
.jkpkmsc8t
-htfcss: jkplkosnbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosnbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosnbxsc8t}{alias/Kp-Light-Smallcaps/jkplkosnbxsc8t}{}
+\AddFont{jkplkosnbxsc8t}{alias/Kp-Light-SmallCaps/jkplkosnbxsc8t}{}
% writing jkplkosnbxscsl8t.htf hash: 0c72ef8d6745ee092b45bf12573804b7
\<jkplkosnbxscsl8t\><<<
.jkpkmsc8t
-htfcss: jkplkosnbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosnbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosnbxscsl8t}{alias/Kp-Light-Smallcaps/jkplkosnbxscsl8t}{}
+\AddFont{jkplkosnbxscsl8t}{alias/Kp-Light-SmallCaps/jkplkosnbxscsl8t}{}
% writing jkplosmn8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
\<jkplosmn8t\><<<
.jkposmn8t
@@ -10307,19 +10304,19 @@ Missing glyph Qoldstyle
% writing jkplkosbsc8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkplkosbsc8t\><<<
.jkpkosmsc8t
-htfcss: jkplkosbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosbsc8t}{alias/Kp-Light-Smallcaps/jkplkosbsc8t}{}
+\AddFont{jkplkosbsc8t}{alias/Kp-Light-SmallCaps/jkplkosbsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplkosbscsl8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkplkosbscsl8t\><<<
.jkpkosmsc8t
-htfcss: jkplkosbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosbscsl8t}{alias/Kp-Light-Smallcaps/jkplkosbscsl8t}{}
+\AddFont{jkplkosbscsl8t}{alias/Kp-Light-SmallCaps/jkplkosbscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplosbit8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
@@ -10357,19 +10354,19 @@ Missing glyph Qoldstyle
% writing jkplkosbxsc8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkplkosbxsc8t\><<<
.jkpkosmsc8t
-htfcss: jkplkosbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosbxsc8t}{alias/Kp-Light-Smallcaps/jkplkosbxsc8t}{}
+\AddFont{jkplkosbxsc8t}{alias/Kp-Light-SmallCaps/jkplkosbxsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplkosbxscsl8t.htf hash: 547e6bc6051a16290842e8c241216cef
\<jkplkosbxscsl8t\><<<
.jkpkosmsc8t
-htfcss: jkplkosbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplkosbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplkosbxscsl8t}{alias/Kp-Light-Smallcaps/jkplkosbxscsl8t}{}
+\AddFont{jkplkosbxscsl8t}{alias/Kp-Light-SmallCaps/jkplkosbxscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplosbxsl8t.htf hash: 1aeb3409acc673b4ffff03dc07e57e28
@@ -10838,37 +10835,37 @@ Missing glyph qoldstyle
% writing jkplosbsc8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkplosbsc8t\><<<
.jkplosmsc8t
-htfcss: jkplosbsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosbsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosbsc8t}{alias/Kp-Light-Smallcaps/jkplosbsc8t}{}
+\AddFont{jkplosbsc8t}{alias/Kp-Light-SmallCaps/jkplosbsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplosbscsl8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkplosbscsl8t\><<<
.jkplosmsc8t
-htfcss: jkplosbscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosbscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosbscsl8t}{alias/Kp-Light-Smallcaps/jkplosbscsl8t}{}
+\AddFont{jkplosbscsl8t}{alias/Kp-Light-SmallCaps/jkplosbscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplosbxsc8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkplosbxsc8t\><<<
.jkplosmsc8t
-htfcss: jkplosbxsc8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosbxsc8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosbxsc8t}{alias/Kp-Light-Smallcaps/jkplosbxsc8t}{}
+\AddFont{jkplosbxsc8t}{alias/Kp-Light-SmallCaps/jkplosbxsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkplosbxscsl8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkplosbxscsl8t\><<<
.jkplosmsc8t
-htfcss: jkplosbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-Smallcaps', serif;
+htfcss: jkplosbxscsl8t font-variant: small-caps; font-family: 'Kp-Light-SmallCaps', serif;
>>>
-\AddFont{jkplosbxscsl8t}{alias/Kp-Light-Smallcaps/jkplosbxscsl8t}{}
+\AddFont{jkplosbxscsl8t}{alias/Kp-Light-SmallCaps/jkplosbxscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposmsc8t.htf hash: 728d25796436340c51d41b24587fbf92
@@ -10892,37 +10889,37 @@ Missing glyph qoldstyle
% writing jkposbsc8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkposbsc8t\><<<
.jkplosmsc8t
-htfcss: jkposbsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposbsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposbsc8t}{alias/Kp-Smallcaps/jkposbsc8t}{}
+\AddFont{jkposbsc8t}{alias/Kp-SmallCaps/jkposbsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposbscsl8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkposbscsl8t\><<<
.jkplosmsc8t
-htfcss: jkposbscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposbscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposbscsl8t}{alias/Kp-Smallcaps/jkposbscsl8t}{}
+\AddFont{jkposbscsl8t}{alias/Kp-SmallCaps/jkposbscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposbxsc8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkposbxsc8t\><<<
.jkplosmsc8t
-htfcss: jkposbxsc8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposbxsc8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposbxsc8t}{alias/Kp-Smallcaps/jkposbxsc8t}{}
+\AddFont{jkposbxsc8t}{alias/Kp-SmallCaps/jkposbxsc8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkposbxscsl8t.htf hash: 728d25796436340c51d41b24587fbf92
\<jkposbxscsl8t\><<<
.jkplosmsc8t
-htfcss: jkposbxscsl8t font-variant: small-caps; font-family: 'Kp-Smallcaps', serif;
+htfcss: jkposbxscsl8t font-variant: small-caps; font-family: 'Kp-SmallCaps', serif;
>>>
-\AddFont{jkposbxscsl8t}{alias/Kp-Smallcaps/jkposbxscsl8t}{}
+\AddFont{jkposbxscsl8t}{alias/Kp-SmallCaps/jkposbxscsl8t}{}
Missing glyph Qoldstyle
Missing glyph qoldstyle
% writing jkpssmn8t.htf hash: 92f7ccd8dbf750a8ed9153bcdc5e83d9
@@ -15540,4 +15537,3 @@ htfcss: jkpbsydw font-family: 'Kp--M-Syd', serif;
>>>
\AddFont{jkpbsydw}{alias/Kp--M-Syd/jkpbsydw}{}
\bye
-
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex
index c7f4a72fd69..df7159c6c6b 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-libertine.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-fonts-libertine.tex 792 2020-09-01 09:58:35Z michal_h21 $
+% $Id: tex4ht-fonts-libertine.tex 1057 2022-01-18 09:17:45Z michal_h21 $
% etex tex4ht-fonts-libertine.tex
%
% Copyright 2018-2020 TeX Users Group
@@ -287,7 +287,7 @@ LinBiolinumTB-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -551,7 +551,7 @@ LinBiolinumTB-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'..' '' period period 131
'&#x201E;' '' quotedblbase 132
@@ -829,7 +829,7 @@ LinBiolinumT-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -1093,7 +1093,7 @@ LinBiolinumT-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -1364,7 +1364,7 @@ LinBiolinumTI-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -1683,7 +1683,7 @@ LinBiolinumTB-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -1953,7 +1953,7 @@ LinBiolinumT-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -2216,7 +2216,7 @@ LinBiolinumTI-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -2592,7 +2592,7 @@ LinLibertineDisplayT-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x2048;' '' question_exclam 131
'&#x201E;' '' quotedblbase 132
@@ -2862,7 +2862,7 @@ LinLibertineDisplayT-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -3367,7 +3367,7 @@ LinLibertineMTB-lf-ly1 1 255
'' ''
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -3651,7 +3651,7 @@ LinLibertineMTB-sup-ly1 1 255
'' ''
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -4100,7 +4100,7 @@ LinLibertineTB-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -4364,7 +4364,7 @@ LinLibertineTB-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -4628,7 +4628,7 @@ LinLibertineTBI-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x2103;' '' centigrade 131
'&#x201E;' '' quotedblbase 132
@@ -4906,7 +4906,7 @@ LinLibertineTZ-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -5170,7 +5170,7 @@ LinLibertineTZI-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -5434,7 +5434,7 @@ LinLibertineTZI-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -5698,7 +5698,7 @@ LinLibertineT-lf-sc-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -5962,7 +5962,7 @@ LinLibertineT-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -6226,7 +6226,7 @@ LinLibertineTI-lf-ly1 0 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -6601,7 +6601,7 @@ LinLibertineTZI-sup-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -11011,7 +11011,7 @@ LinBiolinumTB-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -11271,7 +11271,7 @@ LinBiolinumT-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -11615,7 +11615,7 @@ LinLibertineDisplayT-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -12053,7 +12053,7 @@ LinLibertineMTB-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -12427,7 +12427,7 @@ LinLibertineTB-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -12680,7 +12680,7 @@ LinLibertineTBI-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -12933,7 +12933,7 @@ LinLibertineTZ-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -13186,7 +13186,7 @@ LinLibertineTZI-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -13439,7 +13439,7 @@ LinLibertineT-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -13692,7 +13692,7 @@ LinLibertineTI-lf-ts1 11 255
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex
index d872747a2f9..8a0ab982d7a 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-newtx.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-fonts-newtx.tex 792 2020-09-01 09:58:35Z michal_h21 $
+% $Id: tex4ht-fonts-newtx.tex 1057 2022-01-18 09:17:45Z michal_h21 $
% etex tex4ht-fonts-newtx.tex
%
% Copyright 2018-2020 TeX Users Group
@@ -1126,7 +1126,7 @@ MinLibReg-ly1 5 183
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'' ''
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -1313,7 +1313,7 @@ MinLibBol-ly1 5 183
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'' ''
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -1500,7 +1500,7 @@ MinLibIta-ly1 5 183
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'' ''
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -1687,7 +1687,7 @@ MinLibBolIta-ly1 5 186
'&#x02DC;' '' tilde 126
'' ''
'' ''
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'' ''
'&#x201E;' '' quotedblbase 132
@@ -2097,7 +2097,7 @@ ntx-Bold-lf-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -2381,7 +2381,7 @@ ntx-Italic-tlf-th-ly1 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -2980,7 +2980,7 @@ tyxtt 1 255
'&#x02DC;' '' tilde 126
'&#x00A8;' '' dieresis 127
'&#x0141;' '' Lslash 128
-''' '' quotesingle 129
+'&#x0027;' '' quotesingle 129
'&#x201A;' '' quotesinglbase 130
'&#x0192;' '' florin 131
'&#x201E;' '' quotedblbase 132
@@ -6638,7 +6638,7 @@ txtt 0 229
'&#x2126;' '' Omega 10
'&#x2191;' '' arrowup 11
'&#x2193;' '' arrowdown 12
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -6937,7 +6937,7 @@ ts1-qtmb 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle.ts1 39
+'&#x0027;' '' quotesingle.ts1 39
'' ''
'' ''
'&#x2217;' '' asteriskmath 42
@@ -7213,7 +7213,7 @@ tcxtt 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'&#x2217;' '' asteriskcentered 42
@@ -7468,7 +7468,7 @@ tcxsl 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
index 29467f4d72b..a1f428d9f56 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-noncjk.tex
@@ -1,4 +1,4 @@
-% $Id: tex4ht-fonts-noncjk.tex 990 2021-10-10 10:01:43Z michal_h21 $
+% $Id: tex4ht-fonts-noncjk.tex 1058 2022-01-18 19:46:37Z michal_h21 $
% tex tex4ht-fonts-noncjk
% or ht tex tex4ht-fonts-noncjk
%
@@ -24519,7 +24519,7 @@ pcrbo7t 0 170
'' '' .notdef 10
'' ''
'' ''
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'&#x0131;' '' dotlessi 16
@@ -24702,7 +24702,7 @@ pcrbc7t 0 170
'' '' .notdef 10
'' ''
'' ''
-''' '' quotesingle 13
+'&#x0027;' '' quotesingle 13
'&#x00A1;' '' exclamdown 14
'&#x00BF;' '' questiondown 15
'I' '' I 16
@@ -24978,7 +24978,7 @@ pcrbo8c 0 246
'&#x220F;' '' product 28
'&#x03C0;' '' pi 29
'' ''
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'' ''
'' ''
@@ -24986,7 +24986,7 @@ pcrbo8c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
@@ -29798,7 +29798,7 @@ pagdo8c 0 246
'&#x220F;' '' product 28
'&#x03C0;' '' pi 29
'' ''
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'' ''
'' ''
@@ -29806,7 +29806,7 @@ pagdo8c 0 246
'$' '' dollar 36
'' ''
'' ''
-''' '' quotesingle 39
+'&#x0027;' '' quotesingle 39
'' ''
'' ''
'*' '' asterisk 42
@@ -30631,7 +30631,7 @@ pagdo8r 1 255
'' ''
'' ''
'&#x60;' '' grave 30
-''' '' quotesingle 31
+'&#x0027;' '' quotesingle 31
' ' '' space 32
'!' '' exclam 33
'"' '' quotedbl 34
@@ -52651,253 +52651,253 @@ lacc 0 255
\<tcrm-uni\><<<
tcrm 0 246
-'&#xF6CE;' '' Grave
-'&#xF6C9;' '' Acute
-'&#xEA15;' '' Circumflex
-'&#xEA44;' '' Tilde
-'&#xF6CB;' '' Dieresis
-'&#xF6CF;' '' Hungarumlaut
-'&#xEA40;' '' Ring
-'&#xF6CA;' '' Caron
-'&#xEA02;' '' Breve
-'&#xF6D0;' '' Macron
-'&#xEA30;' '' Dotaccent
-'&#x00B8;' '' cedilla
-'&#x02DB;' '' ogonek
-'&#x201A;' '' quotesinglbase
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x201E;' '' quotedblbase
-'' '' none
-'' '' none
-'&#xF6DE;' '' twelveudash
-'&#xF6DE;' '' threequartersemdash
-'&#x200C;' '' afii61664
-'&#x2190;' '' arrowleft
-'&#x2192;' '' arrowright
-'&#x2040;' '' tieaccentlowercase
-'&#x0361;' '' tieaccentcapital
-'&#x2040;' '' tieaccentlowercase.new
-'&#x0361;' '' tieaccentcapital.new
-'' '' none
-'&#x200C;' '' afii61664
-'&#x2422;' '' uni2422
-'' '' none
-'' '' none
-'' '' none
-'&#x0024;' '' dollar
-'' '' none
-'' '' none
-'&#x0027;' '' quotesingle
-'' '' none
-'' '' none
-'&#x2217;' '' asteriskmath
-'' '' none
-'&#x002C;' '' comma
-'&#xFE66;' '' hyphendbl
-'&#x002E;' '' period
-'&#x2044;' '' fraction
-'&#xF730;' '' zerooldstyle
-'&#xF731;' '' oneoldstyle
-'&#xF732;' '' twooldstyle
-'&#xF733;' '' threeoldstyle
-'&#xF734;' '' fouroldstyle
-'&#xF735;' '' fiveoldstyle
-'&#xF736;' '' sixoldstyle
-'&#xF737;' '' sevenoldstyle
-'&#xF738;' '' eightoldstyle
-'&#xF739;' '' nineoldstyle
-'' '' none
-'' '' none
-'&#x2329;' '' angleleft
-'&#x2212;' '' minus
-'&#x232A;' '' angleright
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x2127;' '' uni2127
-'' '' none
-'&#x25CB;' '' circle
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x2126;' '' Omega
-'' '' none
-'' '' none
-'' '' none
-'&#x301A;' '' uni301A
-'' '' none
-'&#x301B;' '' uni301B
-'&#x2191;' '' arrowup
-'&#x2193;' '' arrowdown
-'&#x0060;' '' grave
-'' '' none
-'&#x22C6;' '' born
-'&#x26AE;' '' divorced
-'&#x271D;' '' died
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#xEB40;' '' leaf
-'&#x26AD;' '' married
-'&#x266A;' '' musicalnote
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x002DC;' '' tildelow
-'&#xFE66;' '' hyphendbl.alt
-'&#x02D8;' '' breve
-'&#x02C7;' '' caron
-'&#x02DD;' '' hungarumlaut
-'&#xF6D6;' '' dblgrave
-'&#x2020;' '' dagger
-'&#x2021;' '' daggerdbl
-'&#x2016;' '' uni2016
-'&#x2030;' '' perthousand
-'&#x2022;' '' bullet
-'&#x2103;' '' uni2103
-'&#xF724;' '' dollaroldstyle
-'&#xF7A2;' '' centoldstyle
-'&#x0192;' '' florin
-'&#x20A1;' '' colonmonetary
-'&#x20A9;' '' uni20A9
-'&#x20A6;' '' uni20A6
-'&#x20B2;' '' guarani
-'&#x20B1;' '' peso
-'&#x20A4;' '' lira
-'&#x211E;' '' recipe
-'&#x203D;' '' uni203D
-'&#x2E18;' '' gnaborretni
-'&#x20AB;' '' dong
-'&#x2122;' '' trademark
-'&#x2031;' '' uni2031
-'&#x00B6;' '' paragraph
-'&#x0E3F;' '' uni0E3F
-'&#x2116;' '' afii61352
-'&#x2052;' '' discount
-'&#x212E;' '' estimated
-'&#x25E6;' '' openbullet
-'&#x2120;' '' uni2120
-'&#x2045;' '' uni2045
-'&#x2046;' '' uni2046
-'&#x00A2;' '' cent
-'&#x00A3;' '' sterling
-'&#x00A4;' '' currency
-'&#x00A5;' '' yen
-'&#x00A6;' '' brokenbar
-'&#x00A7;' '' section
-'&#x00A8;' '' dieresis
-'&#x00A9;' '' copyright
-'&#x00AA;' '' ordfeminine
-'&#x0254;' '' copyleft
-'&#x00AC;' '' logicalnot
-'&#x2117;' '' uni2117
-'&#x00AE;' '' registered
-'&#x00AF;' '' macron
-'&#x00B0;' '' degree
-'&#x00B1;' '' plusminus
-'&#x00B2;' '' twosuperior
-'&#x00B3;' '' threesuperior
-'&#x00B4;' '' acute
-'&#x00B5;' '' mu
-'&#x00B6;' '' paragraph
-'&#x00B7;' '' periodcentered
-'&#x203B;' '' uni203B
-'&#x00B9;' '' onesuperior
-'&#x00BA;' '' ordmasculine
-'&#x221A;' '' radical
-'&#x00BC;' '' onequarter
-'&#x00BD;' '' onehalf
-'&#x00BE;' '' threequarters
-'&#x20AC;' '' Euro
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x00D7;' '' multiply
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'' '' none
-'&#x00F7;' '' divide
+'&#x60;' '' Grave 0
+'&#x00B4;' '' Acute 1
+'' '' Circumflex 2
+'&#x223C;' '' Tilde 3
+'&#x00A8;' '' Dieresis 4
+'&#x02DD;' '' Hungarumlaut 5
+'' '' Ring 6
+'&#x02C7;' '' Caron 7
+'' '' Breve 8
+'&#x00AF;' '' Macron 9
+'' '' Dotaccent 10
+'&#x00B8;' '' cedilla 11
+'&#x02DB;' '' ogonek 12
+'&#x201A;' '' quotesinglbase.ts1 13
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x201E;' '' quotedblbase.ts1 18
+'' ''
+'' ''
+'&#xD80C;' '' twelveudash 21
+'3' '' threequartersemdash 22
+'&#x200C;' '' afii61664.cap 23
+'&#x2190;' '' arrowleft 24
+'&#x2192;' '' arrowright 25
+'&#x2040;' '' tieaccentlowercase 26
+'&#x0361;' '' tieaccentcapital 27
+'&#x2040;' '' tieaccentlowercase.new 28
+'&#x0361;' '' tieaccentcapital.new 29
+'' ''
+'&#x200C;' '' afii61664.asc 31
+'&#x2422;' '' uni2422 32
+'' ''
+'' ''
+'' ''
+'$' '' dollar 36
+'' ''
+'' ''
+'&#x0027;' '' quotesingle 39
+'' ''
+'' ''
+'&#x2217;' '' asteriskmath 42
+'' ''
+',' '' comma 44
+'&#xFE66;' '' hyphendbl 45
+'.' '' period 46
+'&#x2044;' '' fraction 47
+'0' '' zerooldstyle 48
+'1' '' oneoldstyle 49
+'2' '' twooldstyle 50
+'3' '' threeoldstyle 51
+'4' '' fouroldstyle 52
+'5' '' fiveoldstyle 53
+'6' '' sixoldstyle 54
+'7' '' sevenoldstyle 55
+'8' '' eightoldstyle 56
+'9' '' nineoldstyle 57
+'' ''
+'' ''
+'&#x2329;' '' angleleft 60
+'&#x2212;' '' minus 61
+'&#x27E9;' '' angleright 62
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x2127;' '' uni2127 77
+'' ''
+'&#x25CB;' '' circle 79
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x2126;' '' Omega 87
+'' ''
+'' ''
+'' ''
+'&#x301A;' '' uni301A 91
+'' ''
+'&#x301B;' '' uni301B 93
+'&#x2191;' '' arrowup 94
+'&#x2193;' '' arrowdown 95
+'&#x60;' '' grave.ts1 96
+'' ''
+'&#x22C6;' '' born 98
+'&#x26AE;' '' divorced 99
+'&#x271D;' '' died 100
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x1F659;' '' leaf 108
+'&#x26AD;' '' married 109
+'&#x266A;' '' musicalnote 110
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x002DC;' '' tildelow 126
+'&#xFE66;' '' hyphendbl.alt 127
+'&#x02D8;' '' breve.ts1 128
+'&#x02C7;' '' caron.ts1 129
+'&#x02DD;' '' hungarumlaut.ts1 130
+'&#x60;' '' dblgrave.ts1 131
+'&#x2020;' '' dagger 132
+'&#x2021;' '' daggerdbl 133
+'&#x2016;' '' uni2016 134
+'&#x2030;' '' perthousand 135
+'&#x2022;' '' bullet 136
+'&#x2103;' '' uni2103 137
+'$' '' dollaroldstyle 138
+'&#x00A2;' '' centoldstyle 139
+'&#x0192;' '' florin 140
+'&#x20A1;' '' colonmonetary 141
+'&#x20A9;' '' uni20A9 142
+'&#x20A6;' '' uni20A6 143
+'&#x20B2;' '' guarani 144
+'&#x20B1;' '' peso 145
+'&#x20A4;' '' lira 146
+'&#x211E;' '' recipe 147
+'&#x203D;' '' uni203D 148
+'&#x2E18;' '' gnaborretni 149
+'&#x20AB;' '' dong 150
+'&#x2122;' '' trademark 151
+'&#x2031;' '' uni2031 152
+'&#x00B6;' '' paragraph.alt 153
+'&#x0E3F;' '' uni0E3F 154
+'&#x2116;' '' afii61352 155
+'&#x2052;' '' discount 156
+'&#x212E;' '' estimated 157
+'&#x25E6;' '' openbullet 158
+'&#x2120;' '' uni2120 159
+'&#x2045;' '' uni2045 160
+'&#x2046;' '' uni2046 161
+'&#x00A2;' '' cent 162
+'&#x00A3;' '' sterling 163
+'&#x00A4;' '' currency 164
+'&#x00A5;' '' yen 165
+'&#x00A6;' '' brokenbar 166
+'&#x00A7;' '' section 167
+'&#x00A8;' '' dieresis.ts1 168
+'&#x00A9;' '' copyright 169
+'&#x00AA;' '' ordfeminine 170
+'&#x0254;' '' copyleft 171
+'&#x00AC;' '' logicalnot 172
+'&#x2117;' '' uni2117 173
+'&#x00AE;' '' registered 174
+'&#x00AF;' '' macron.ts1 175
+'&#x00B0;' '' degree 176
+'&#x00B1;' '' plusminus 177
+'&#x00B2;' '' twosuperior 178
+'&#x00B3;' '' threesuperior 179
+'&#x00B4;' '' acute.ts1 180
+'&#x00B5;' '' mu 181
+'&#x00B6;' '' paragraph 182
+'&#x00B7;' '' periodcentered 183
+'&#x203B;' '' uni203B 184
+'&#x00B9;' '' onesuperior 185
+'&#x00BA;' '' ordmasculine 186
+'&#x221A;' '' radical 187
+'&#x00BC;' '' onequarter 188
+'&#x00BD;' '' onehalf 189
+'&#x00BE;' '' threequarters 190
+'&#x20AC;' '' Euro 191
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x00D7;' '' multiply 214
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'' ''
+'&#x00F7;' '' divide 246
tcrm 0 246
>>>
diff --git a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex
index 2b3885b47ae..c2d016fd15c 100644
--- a/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex
+++ b/Master/texmf-dist/source/generic/tex4ht/tex4ht-fonts-spectral.tex
@@ -1,13 +1,10 @@
-% $Id: tex4ht-fonts-fourier.tex 790 2020-08-31 21:56:35Z karl $
+% $Id: tex4ht-fonts-spectral.tex 1006 2021-10-22 21:57:32Z karl $
% etex {nameofthefile.tex}
%
-% Copyright 2020 TeX Users Group.
+% Copyright 2021 TeX Users Group.
% Released under LPPL 1.3c+.
% See tex4ht-cpright.tex for license text.
-
-% Copyright (C) 2018 TeX Users Group
-
\input tex4ht.sty
\Preamble{xhtml,th4,sections+}
\EndPreamble
@@ -5745,4 +5742,3 @@ htfcss: Spectral-ExtraLightItalic-orn-u font-style: italic; font-family: 'Spec
>>>
\AddFont{Spectral-ExtraLightItalic-orn-u}{alias/Spectral_ExtraLight/Spectral-ExtraLightItalic-orn-u}{}
\bye
-
diff --git a/Master/texmf-dist/source/generic/tex4ht/update-htfonts b/Master/texmf-dist/source/generic/tex4ht/update-htfonts
new file mode 100755
index 00000000000..20c37cbb3a0
--- /dev/null
+++ b/Master/texmf-dist/source/generic/tex4ht/update-htfonts
@@ -0,0 +1,130 @@
+#!/bin/sh
+# $Id: update-htfonts 1061 2022-01-20 22:17:17Z karl $
+# Public domain. Originally written by Karl Berry, 2022.
+
+# don't bother with real option parsing.
+if test $# -ne 3; then
+cat <<END_USAGE
+Usage: $0 [ diff | update ] HTF-DEVDIR HTF-INSTDIR
+END_USAGE
+ exit 1
+fi
+
+cp="cp -pv"
+mkdir="mkdir -v"
+svn=svn
+
+if test x"$1" = xdiff; then
+ shift
+ do_updates=false
+ cp="echo would $cp"
+ mkdir="echo would $mkdir"
+ svn="echo would $svn"
+
+elif test x"$1" = xupdate; then
+ shift
+ do_updates=true
+else
+ echo "$0: first arg must be \`diff' or \`update', not: $1" >&2
+ exit 1
+fi
+
+devdir=$1
+instdir=$2
+verbose=true
+tmp=/tmp/htdif # prefix
+
+if test ! -d "$devdir"; then
+ echo "$0: devdir not a directory: $devdir" >&2
+ exit 1
+fi
+if test ! -d "$instdir"; then
+ echo "$0: instdir not a directory: $instdir" >&2
+ exit 1
+fi
+
+
+# Function to copy SRC to DEST, or fail. Just calls $cp.
+#
+copy_file () {
+ src=$1; dest=$2
+ #
+ # show diff from (older) DEST to newer (SRC).
+ diff -u0 "$dest" "$src" >>$tmp.0
+ #
+ if $cp "$src" "$dest"; then :; else
+ echo "$0: copy ($cp) failed: $src -> $dest" >&2
+ exit 1
+ fi
+}
+
+# Function to compare SRC to DEST. Return zero if equivalent,
+# nonzero if different (or DEST does not exist, etc.).
+#
+# Remove a timestamp string from both files for comparison:
+# YYYY-MM-DD-HH:MM or just YYYY-MM-DD
+#
+htf_same () {
+ src=$1; dest=$2;
+ #
+ src_filtered=$tmp.s`basename "$src"`
+ dest_filtered=$tmp.d`basename "$dest"`
+ #
+ sed 's/20[0-9][0-9]-[0-9][0-9]-[0-9][0-9]\(-[0-9][0-9]:[0-9][0-9]\)*//' \
+ $src >$src_filtered || exit 1
+ sed 's/20[0-9][0-9]-[0-9][0-9]-[0-9][0-9]\(-[0-9][0-9]:[0-9][0-9]\)*//' \
+ $dest >$dest_filtered || exit 1
+ cmp -s "$src_filtered" "$dest_filtered"
+}
+
+# Iterate through all files in the dev directory.
+echo "$0: comparing $devdir"
+echo "$0: to $instdir"
+>$tmp.0 # accumulate diffs here
+#
+find "$devdir" -type f -print | sort | while read devf; do
+ instf=`echo "$devf" | sed "s,^$devdir/,$instdir/,"`
+ if test -r "$instf"; then
+ # we have a file in both directories; see if they are the same (enough).
+ if htf_same "$devf" "$instf"; then
+ : # $verbose && echo "`basename \"$devf\"`: same ($devf == $instf)"
+ else
+ $verbose && echo "`basename \"$devf\"`: diff ($devf != $instf)"
+ copy_file "$devf" "$instf"
+ fi
+
+ else
+ # no destination file. see if we have the containing directory.
+ destdirf=`dirname "$instf"`
+ if test -d "$destdirf"; then
+ # have directory, so add file.
+ $verbose && echo "newfile ($devf -> $instf)"
+ copy_file "$devf" "$instf"
+ $svn add "$devf"
+ else
+ # don't even have directory. create it, then copy file.
+ $mkdir "$destdirf"
+ $verbose && echo "newdir ($devf -> $destdirf)"
+ if test ! -d "$destdirf"; then
+ echo "$0: could not make dest dir: $destdirf (for $devf->$instf)" >&2
+ exit 1
+ fi
+ $svn add "$destdirf"
+ copy_file "$devf" "$instf"
+ $svn add $devf
+ fi
+ fi
+done
+
+# check for extra files in $instdir
+(cd "$devdir" && find . -type f -print | sort) >$tmp.devdir || exit 1
+(cd "$instdir" && find . -type f -print | sort) >$tmp.instdir || exit 1
+
+echo "Files in devdir and not in instdir (should be empty):"
+comm -23 $tmp.devdir $tmp.instdir
+
+echo "Files in instdir and not in devdir, you should remove:"
+comm -13 $tmp.devdir $tmp.instdir
+# maybe better to leave it for manual removal?
+
+echo "Done."