diff options
author | jloup <jloup@jloup.work> | 2018-05-14 20:12:46 +0200 |
---|---|---|
committer | jloup <jloup@jloup.work> | 2018-05-14 20:12:46 +0200 |
commit | 335b0c9bdc3e129f14bc40dd5f125b3526a83a40 (patch) | |
tree | aa1c5afaff43dcb63aec24f60f8669515af81a17 | |
parent | a6820180928670b0642fa6a28ac221ce158230bb (diff) | |
download | Front-335b0c9bdc3e129f14bc40dd5f125b3526a83a40.tar.gz Front-335b0c9bdc3e129f14bc40dd5f125b3526a83a40.tar.zst Front-335b0c9bdc3e129f14bc40dd5f125b3526a83a40.zip |
Reliable icon provider for cryptocurrencies logo : Bitonics.v0.0.16
2565 files changed, 116 insertions, 1217 deletions
diff --git a/cmd/web/Makefile b/cmd/web/Makefile index cb83f56..8b7d860 100644 --- a/cmd/web/Makefile +++ b/cmd/web/Makefile | |||
@@ -2,77 +2,99 @@ SHELL=/bin/bash | |||
2 | ENV ?= dev | 2 | ENV ?= dev |
3 | export PATH := $(PATH):./node_modules/.bin | 3 | export PATH := $(PATH):./node_modules/.bin |
4 | 4 | ||
5 | SRC_DIR=js | 5 | # Javascript objects |
6 | BUILD_DIR=build/js | 6 | JS_SRC_DIR=js |
7 | JSX_SRC= header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx account.jsx balance.jsx admin.jsx panel.jsx | 7 | JS_BUILD_DIR=build/js |
8 | JS_SRC= cookies.js app.js api.js | 8 | JSX_SRC=header_footer.jsx main.jsx signup.jsx signin.jsx otp.jsx poloniex.jsx password_reset.jsx change_password.jsx account.jsx balance.jsx admin.jsx panel.jsx icon.jsx |
9 | STATIC_FILES= index.html style.css fontello.css | 9 | JS_SRC=cookies.js app.js api.js |
10 | STATIC_FILES+=$(addprefix fonts/, fontello.eot fontello.svg fontello.ttf fontello.woff fontello.woff2 cryptocoins.css cryptocoins.ttf cryptocoins.woff cryptocoins.woff2) | 10 | JSX_OBJS=$(addprefix $(JS_BUILD_DIR)/,$(JSX_SRC:.jsx=.js)) |
11 | JSX_OBJS=$(addprefix $(BUILD_DIR)/,$(JSX_SRC:.jsx=.js)) | 11 | JS_OBJS=$(addprefix $(JS_BUILD_DIR)/,$(JS_SRC)) |
12 | JS_OBJS=$(addprefix $(BUILD_DIR)/,$(JS_SRC)) | 12 | |
13 | ICONS=$(addprefix $(STATIC_BUILD_DIR)/icons/black/, $(notdir $(wildcard static/icons/black/*.svg))) | 13 | # Static resources |
14 | ICONS+=$(addprefix $(STATIC_BUILD_DIR)/icons/color/, $(notdir $(wildcard static/icons/color/*.svg))) | ||
15 | STATIC_BUILD_DIR=build/static | 14 | STATIC_BUILD_DIR=build/static |
15 | STATIC_FILES=index.html style.css | ||
16 | 16 | ||
17 | # Fontello icon provider - regular icons | ||
18 | STATIC_FILES+=fontello.css | ||
19 | STATIC_FILES+=$(addprefix fonts/, fontello.eot fontello.svg fontello.ttf fontello.woff fontello.woff2) | ||
20 | FONTELLO_TMP_DIR = ./static/fontello | ||
21 | FONTELLO_HOST ?= http://fontello.com | ||
22 | |||
23 | # Biticonics cryptocurrency icon provider. | ||
24 | STATIC_FILES+=$(addprefix fonts/, bitonics.min.css) | ||
25 | CRYPTO_ICONS_FONTS=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/ttf/, $(notdir $(wildcard static/fonts/glyphs/ttf/*.ttf))) | ||
26 | CRYPTO_ICONS_FONTS+=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/woff/, $(notdir $(wildcard static/fonts/glyphs/woff/*.woff))) | ||
27 | CRYPTO_ICONS_FONTS+=$(addprefix $(STATIC_BUILD_DIR)/fonts/glyphs/woff2/, $(notdir $(wildcard static/fonts/glyphs/woff2/*.woff2))) | ||
28 | |||
29 | define fetch-bitonics-icons = | ||
30 | DIR="static/fonts/glyphs" | ||
31 | |||
32 | curl 'https://bitonics.net/vendor/bitonics/bitonics.min.css' > static/fonts/bitonics.min.css | ||
33 | |||
34 | glyphs=($(curl 'https://bitonics.net/vendor/bitonics/bitonics.css' | grep -Po 'glyphs/ttf/[a-z0-9]{8}' | cut -c 12-)) | ||
35 | |||
36 | for glyph in "${glyphs[@]}" | ||
37 | do | ||
38 | if [ ! -f "$DIR/ttf/$glyph.ttf" ]; then | ||
39 | curl "https://bitonics.net/vendor/bitonics/glyphs/ttf/$glyph.ttf" > "$DIR/ttf/$glyph.ttf" | ||
40 | curl "https://bitonics.net/vendor/bitonics/glyphs/woff/$glyph.woff" > "$DIR/woff/$glyph.woff" | ||
41 | curl "https://bitonics.net/vendor/bitonics/glyphs/woff2/$glyph.woff2" > "$DIR/woff2/$glyph.woff2" | ||
42 | fi | ||
43 | done | ||
44 | endef | ||
45 | |||
46 | # Rules | ||
17 | install: | 47 | install: |
18 | node --version | 48 | node --version |
19 | npm --version | 49 | npm --version |
20 | yarn --version | 50 | yarn --version |
21 | yarn install | 51 | yarn install |
22 | 52 | ||
23 | static: $(STATIC_BUILD_DIR) $(STATIC_BUILD_DIR)/fonts js $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) $(ICONS) | 53 | $(JS_BUILD_DIR): |
24 | |||
25 | js: build/static/main.js | ||
26 | |||
27 | $(STATIC_BUILD_DIR)/%: static/% | ||
28 | cp $< $@ | ||
29 | |||
30 | $(STATIC_BUILD_DIR): | ||
31 | mkdir -p $(BUILD_DIR) | ||
32 | mkdir -p $@ | 54 | mkdir -p $@ |
33 | mkdir -p $@/icons/black | ||
34 | mkdir -p $@/icons/color | ||
35 | 55 | ||
36 | $(STATIC_BUILD_DIR)/fonts: | 56 | $(STATIC_BUILD_DIR)/fonts: |
37 | mkdir -p $@ | 57 | mkdir -p $@ |
38 | 58 | ||
39 | $(BUILD_DIR)/%.js: $(SRC_DIR)/%.jsx | 59 | $(STATIC_BUILD_DIR)/fonts/glyphs: |
60 | mkdir -p $@/ttf | ||
61 | mkdir -p $@/woff | ||
62 | mkdir -p $@/woff2 | ||
63 | |||
64 | static: js $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) $(CRYPTO_ICONS_FONTS) | ||
65 | |||
66 | js: build/static/main.js | ||
67 | |||
68 | $(STATIC_BUILD_DIR)/%: static/% $(STATIC_BUILD_DIR)/fonts | ||
69 | cp $< $@ | ||
70 | |||
71 | $(JS_BUILD_DIR)/%.js: $(JS_SRC_DIR)/%.jsx | ||
40 | eslint --fix $< | 72 | eslint --fix $< |
41 | cp $< $@ | 73 | cp $< $@ |
42 | 74 | ||
43 | $(BUILD_DIR)/%.js: $(SRC_DIR)/%.js | 75 | $(JS_BUILD_DIR)/%.js: $(JS_SRC_DIR)/%.js |
44 | eslint $< | 76 | eslint $< |
45 | cp $< $@ | 77 | cp $< $@ |
46 | 78 | ||
47 | $(STATIC_BUILD_DIR)/icons/black/%.svg: static/icons/black/%.svg | 79 | $(STATIC_BUILD_DIR)/fonts/glyphs/%: static/fonts/glyphs/% $(STATIC_BUILD_DIR)/fonts/glyphs |
48 | cp $< $@ | 80 | cp $< $@ |
49 | 81 | ||
50 | build/static/main.js: $(JSX_OBJS) $(JS_OBJS) env/$(ENV).env | 82 | build/static/main.js: $(JS_BUILD_DIR) $(JSX_OBJS) $(JS_OBJS) env/$(ENV).env |
51 | browserify -t [ babelify --presets [ env react ] --plugins [ transform-class-properties ] ] \ | 83 | browserify -t [ babelify --presets [ env react ] --plugins [ transform-class-properties ] ] \ |
52 | -t [ localenvify --envfile env/$(ENV).env ] \ | 84 | -t [ localenvify --envfile env/$(ENV).env ] \ |
53 | -t [ debowerify ] \ | 85 | -t [ debowerify ] \ |
54 | $(BUILD_DIR)/main.js -o $@ | 86 | $(JS_BUILD_DIR)/main.js -o $@ |
55 | 87 | ||
56 | build/webapp.tar.gz: $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) build/static/main.js $(ICONS) | 88 | build/webapp.tar.gz: $(addprefix $(STATIC_BUILD_DIR)/, $(STATIC_FILES)) build/static/main.js $(CRYPTO_ICONS_FONTS) |
57 | tar czf $@ --directory=$(dir $<) $(subst $(STATIC_BUILD_DIR)/,,$^) | 89 | tar czf $@ --directory=$(dir $<) $(subst $(STATIC_BUILD_DIR)/,,$^) |
58 | 90 | ||
59 | release: $(STATIC_BUILD_DIR) build/webapp.tar.gz | 91 | release: build/webapp.tar.gz |
60 | 92 | ||
61 | clean: | 93 | clean: |
62 | rm -rf build | 94 | rm -rf build |
63 | rm -rf node_modules | 95 | rm -rf node_modules |
64 | 96 | ||
65 | 97 | fontello-open: | |
66 | FONT_DIR = ./static/fontello | ||
67 | FONTELLO_HOST ?= http://fontello.com | ||
68 | |||
69 | crypto-icons: | ||
70 | curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.css" > ./static/fonts/cryptocoins.css | ||
71 | curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.ttf" > ./static/fonts/cryptocoins.ttf | ||
72 | curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.woff" > ./static/fonts/cryptocoins.woff | ||
73 | curl "https://raw.githubusercontent.com/AllienWorks/cryptocoins/master/webfont/cryptocoins.woff2" > ./static/fonts/cryptocoins.woff2 | ||
74 | |||
75 | fontopen: | ||
76 | @if test ! `which curl` ; then \ | 98 | @if test ! `which curl` ; then \ |
77 | echo 'Install curl first.' >&2 ; \ | 99 | echo 'Install curl first.' >&2 ; \ |
78 | exit 128 ; \ | 100 | exit 128 ; \ |
@@ -82,8 +104,7 @@ fontopen: | |||
82 | ${FONTELLO_HOST} | 104 | ${FONTELLO_HOST} |
83 | x-www-browser ${FONTELLO_HOST}/`cat .fontello` | 105 | x-www-browser ${FONTELLO_HOST}/`cat .fontello` |
84 | 106 | ||
85 | 107 | fontello-save: | |
86 | fontsave: | ||
87 | @if test ! `which unzip` ; then \ | 108 | @if test ! `which unzip` ; then \ |
88 | echo 'Install unzip first.' >&2 ; \ | 109 | echo 'Install unzip first.' >&2 ; \ |
89 | exit 128 ; \ | 110 | exit 128 ; \ |
@@ -96,9 +117,14 @@ fontsave: | |||
96 | curl --silent --show-error --fail --output .fontello.zip \ | 117 | curl --silent --show-error --fail --output .fontello.zip \ |
97 | ${FONTELLO_HOST}/`cat .fontello`/get | 118 | ${FONTELLO_HOST}/`cat .fontello`/get |
98 | unzip .fontello.zip -d .fontello.src | 119 | unzip .fontello.zip -d .fontello.src |
99 | rm -rf ${FONT_DIR} | 120 | rm -rf ${FONTELLO_TMP_DIR} |
100 | mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONT_DIR} | 121 | mv `find ./.fontello.src -maxdepth 1 -name 'fontello-*'` ${FONTELLO_TMP_DIR} |
101 | rm -rf .fontello.src .fontello.zip | 122 | rm -rf .fontello.src .fontello.zip |
102 | cp ${FONT_DIR}/font/* static/fonts/ | 123 | cp ${FONTELLO_TMP_DIR}/font/* static/fonts/ |
103 | cp ${FONT_DIR}/css/fontello-codes.css static/fontello.css | 124 | cp ${FONTELLO_TMP_DIR}/css/fontello-codes.css static/fontello.css |
104 | rm -rf ${FONT_DIR} \ No newline at end of file | 125 | rm -rf ${FONTELLO_TMP_DIR} |
126 | |||
127 | |||
128 | crypto-icons: ; $(value fetch-bitonics-icons) | ||
129 | |||
130 | .ONESHELL: \ No newline at end of file | ||
diff --git a/cmd/web/js/account.jsx b/cmd/web/js/account.jsx index 9a976f4..a80b44a 100644 --- a/cmd/web/js/account.jsx +++ b/cmd/web/js/account.jsx | |||
@@ -1,6 +1,7 @@ | |||
1 | import Api from './api.js'; | 1 | import Api from './api.js'; |
2 | import React from 'react'; | 2 | import React from 'react'; |
3 | import Panel from './panel.js'; | 3 | import Panel from './panel.js'; |
4 | import Icon from './icon.js'; | ||
4 | 5 | ||
5 | class AccountInformation extends React.Component { | 6 | class AccountInformation extends React.Component { |
6 | constructor(props) { | 7 | constructor(props) { |
@@ -157,13 +158,13 @@ class PoloniexCredentialsForm extends React.Component { | |||
157 | var secretDisplayed = this.props.editMode === true ? this.props.apiSecret : 'XXXXXXX'; | 158 | var secretDisplayed = this.props.editMode === true ? this.props.apiSecret : 'XXXXXXX'; |
158 | var keyDisplayed = this.props.editMode === true ? this.props.apiKey : 'XXXXXXX'; | 159 | var keyDisplayed = this.props.editMode === true ? this.props.apiKey : 'XXXXXXX'; |
159 | 160 | ||
160 | var iconName = 'icon-cancel-circled'; | 161 | var iconName = 'icon-cancel'; |
161 | switch (this.props.status) { | 162 | switch (this.props.status) { |
162 | case 'loading': | 163 | case 'loading': |
163 | iconName = 'icon-hourglass-2'; | 164 | iconName = 'icon-loop'; |
164 | break; | 165 | break; |
165 | case 'ok': | 166 | case 'ok': |
166 | iconName = 'icon-ok-circled'; | 167 | iconName = 'icon-ok'; |
167 | break; | 168 | break; |
168 | } | 169 | } |
169 | 170 | ||
@@ -171,7 +172,7 @@ class PoloniexCredentialsForm extends React.Component { | |||
171 | <React.Fragment> | 172 | <React.Fragment> |
172 | <div className="row config-status"> | 173 | <div className="row config-status"> |
173 | <div className="col-12"> | 174 | <div className="col-12"> |
174 | <span><i className={iconName}></i>{this.props.statusMessage}</span> | 175 | <span><Icon icon={iconName} /> {this.props.statusMessage}</span> |
175 | </div> | 176 | </div> |
176 | </div> | 177 | </div> |
177 | <div className="row"> | 178 | <div className="row"> |
@@ -195,8 +196,8 @@ class UserAccount extends React.Component { | |||
195 | render = () => { | 196 | render = () => { |
196 | return ( | 197 | return ( |
197 | <React.Fragment> | 198 | <React.Fragment> |
198 | <Panel component={<AccountInformation/>} title="Account" /> | 199 | <Panel component={<AccountInformation/>} title={<div><Icon icon="icon-user" /> Account</div>} /> |
199 | <Panel component={<PoloniexConfiguration/>} title="Poloniex credentials" topClassName="api-credentials-form" /> | 200 | <Panel component={<PoloniexConfiguration/>} title={<div><Icon icon="poloniex"/> Poloniex credentials</div>} topClassName="api-credentials-form" /> |
200 | </React.Fragment> | 201 | </React.Fragment> |
201 | ); | 202 | ); |
202 | } | 203 | } |
diff --git a/cmd/web/js/balance.jsx b/cmd/web/js/balance.jsx index 6217e96..1915511 100644 --- a/cmd/web/js/balance.jsx +++ b/cmd/web/js/balance.jsx | |||
@@ -4,10 +4,10 @@ import classnames from 'classnames'; | |||
4 | 4 | ||
5 | class CurrencyLogo extends React.Component { | 5 | class CurrencyLogo extends React.Component { |
6 | render = () => { | 6 | render = () => { |
7 | var className = classnames('cc', this.props.currency, 'currency-logo'); | 7 | var className = classnames('bt', 'bt-' + this.props.currency.toLowerCase(), 'currency-logo'); |
8 | return <i className={className} | 8 | return <i className={className} |
9 | title={this.props.currency} | 9 | aria-hidden="true" |
10 | alt={this.props.currency}></i>; | 10 | title={this.props.currency}></i>; |
11 | } | 11 | } |
12 | } | 12 | } |
13 | 13 | ||
diff --git a/cmd/web/js/icon.jsx b/cmd/web/js/icon.jsx new file mode 100644 index 0000000..53453bc --- /dev/null +++ b/cmd/web/js/icon.jsx | |||
@@ -0,0 +1,19 @@ | |||
1 | import React from 'react'; | ||
2 | import classnames from 'classnames'; | ||
3 | |||
4 | class Icon extends React.Component { | ||
5 | render = () => { | ||
6 | var className = null; | ||
7 | |||
8 | if (this.props.icon.startsWith('icon-')) { | ||
9 | className = classnames(this.props.icon, this.props.className); | ||
10 | return <i className={className}></i>; | ||
11 | } | ||
12 | |||
13 | className = classnames('bt', 'bt-' + this.props.icon, this.props.className); | ||
14 | return <i className={className} aria-hidden="true"></i>; | ||
15 | |||
16 | } | ||
17 | } | ||
18 | |||
19 | export default Icon; | ||
diff --git a/cmd/web/js/panel.jsx b/cmd/web/js/panel.jsx index 7f9f9a3..e1073c6 100644 --- a/cmd/web/js/panel.jsx +++ b/cmd/web/js/panel.jsx | |||
@@ -13,7 +13,7 @@ class Panel extends React.Component { | |||
13 | <div className={className}> | 13 | <div className={className}> |
14 | <div className="box offset-1 col-10"> | 14 | <div className="box offset-1 col-10"> |
15 | <div className="row"> | 15 | <div className="row"> |
16 | <div className="col-4">{this.props.title}</div> | 16 | <div className="col-12 panel-title">{this.props.title}</div> |
17 | </div> | 17 | </div> |
18 | <hr/> | 18 | <hr/> |
19 | {this.props.component} | 19 | {this.props.component} |
diff --git a/cmd/web/static/fontello.css b/cmd/web/static/fontello.css index ba4e933..ae38241 100644 --- a/cmd/web/static/fontello.css +++ b/cmd/web/static/fontello.css | |||
@@ -1,6 +1,5 @@ | |||
1 | 1 | ||
2 | .icon-ok-circled:before { content: '\e800'; } /* '' */ | 2 | .icon-cancel:before { content: '\e800'; } /* '' */ |
3 | .icon-cancel-circled:before { content: '\e801'; } /* '' */ | ||
4 | .icon-key:before { content: '\e802'; } /* '' */ | 3 | .icon-key:before { content: '\e802'; } /* '' */ |
5 | .icon-user:before { content: '\e803'; } /* '' */ | 4 | .icon-user:before { content: '\e803'; } /* '' */ |
6 | .icon-hourglass-2:before { content: '\f252'; } /* '' */ \ No newline at end of file | 5 | .icon-ok:before { content: '\e804'; } /* '' */ \ No newline at end of file |
diff --git a/cmd/web/static/fonts/bitonics.min.css b/cmd/web/static/fonts/bitonics.min.css new file mode 100644 index 0000000..d32fb96 --- /dev/null +++ b/cmd/web/static/fonts/bitonics.min.css | |||
@@ -0,0 +1 @@ | |||
.bt { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; } .bt-lg { font-size: 1.33333333em; line-height: 0.75em; vertical-align: -15%; } .bt-2x { font-size: 2em; } .bt-3x { font-size: 3em; } .bt-4x { font-size: 4em; } .bt-5x { font-size: 5em; } .bt-stack { position: relative; display: inline-block; width: 2em; height: 2em; line-height: 2em; vertical-align: middle; } .bt-stack-1x, .bt-stack-2x { position: absolute; left: 0; width: 100%; text-align: center; } .bt-stack-1x { line-height: inherit; } .bt-stack-2x { font-size: 2em; } .bt-inverse { color: #ffffff; } .bt-triangle + i, .bt-triangleo + i { padding-top: .25em; } .bt-star + i, .bt-staro + i { padding-top: .1em; } .bt-spin { -webkit-animation: bt-spin 500ms infinite linear; animation: bt-spin 500ms infinite linear; } @-webkit-keyframes bt-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes bt-spin { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } i[class^='bt bt-']::before { content: "\E07B"; font-family: "question"; } .bt.bt-1wo::before { content: "\E000"; font-family: "1wo"; } .bt.bt-abnamro::before { content: "\E001"; font-family: "abnamro"; } .bt.bt-acchain::before { content: "\E002"; font-family: "acchain"; } .bt.bt-xai::before { content: "\E003"; font-family: "xai"; } .bt.bt-aka::before { content: "\E004"; font-family: "aka"; } .bt.bt-alis::before { content: "\E005"; font-family: "alis"; } .bt.bt-amis::before { content: "\E006"; font-family: "amis"; } .bt.bt-arch::before { content: "\E007"; font-family: "arch"; } .bt.bt-atb::before { content: "\E008"; font-family: "atb"; } .bt.bt-atm::before { content: "\E009"; font-family: "atm"; } .bt.bt-awr::before { content: "\E00A"; font-family: "awr"; } .bt.bt-acc::before { content: "\E00B"; font-family: "acc"; } .bt.bt-adx::before { content: "\E00C"; font-family: "adx"; } .bt.bt-adh::before { content: "\E00D"; font-family: "adh"; } .bt.bt-adl::before { content: "\E00E"; font-family: "adl"; } .bt.bt-aib::before { content: "\E00F"; font-family: "aib"; } .bt.bt-aeon::before { content: "\E010"; font-family: "aeon"; } .bt.bt-arn::before { content: "\E011"; font-family: "arn"; } .bt.bt-ae::before { content: "\E012"; font-family: "ae"; } .bt.bt-agrs::before { content: "\E013"; font-family: "agrs"; } .bt.bt-dlt::before { content: "\E014"; font-family: "dlt"; } .bt.bt-aid::before { content: "\E015"; font-family: "aid"; } .bt.bt-aix::before { content: "\E016"; font-family: "aix"; } .bt.bt-aion::before { content: "\E017"; font-family: "aion"; } .bt.bt-ast::before { content: "\E018"; font-family: "ast"; } .bt.bt-air::before { content: "\E019"; font-family: "air"; } .bt.bt-alipay::before { content: "\E01A"; font-family: "alipay"; } .bt.bt-soc::before { content: "\E01B"; font-family: "soc"; } .bt.bt-allcoin::before { content: "\E01C"; font-family: "allcoin"; } .bt.bt-acat::before { content: "\E01D"; font-family: "acat"; } .bt.bt-amazon::before { content: "\E01E"; font-family: "amazon"; } .bt.bt-amb::before { content: "\E01F"; font-family: "amb"; } .bt.bt-amex::before { content: "\E020"; font-family: "amex"; } .bt.bt-avh::before { content: "\E021"; font-family: "avh"; } .bt.bt-anc::before { content: "\E022"; font-family: "anc"; } .bt.bt-aph::before { content: "\E023"; font-family: "aph"; } .bt.bt-appc::before { content: "\E024"; font-family: "appc"; } .bt.bt-applepay::before { content: "\E025"; font-family: "applepay"; } .bt.bt-ant::before { content: "\E026"; font-family: "ant"; } .bt.bt-aramex::before { content: "\E027"; font-family: "aramex"; } .bt.bt-ardr::before { content: "\E028"; font-family: "ardr"; } .bt.bt-ari::before { content: "\E029"; font-family: "ari"; } .bt.bt-ark::before { content: "\E02A"; font-family: "ark"; } .bt.bt-xas::before { content: "\E02B"; font-family: "xas"; } .bt.bt-adc::before { content: "\E02C"; font-family: "adc"; } .bt.bt-rep::before { content: "\E02D"; font-family: "rep"; } .bt.bt-aura::before { content: "\E02E"; font-family: "aura"; } .bt.bt-aur::before { content: "\E02F"; font-family: "aur"; } .bt.bt-avt::before { content: "\E030"; font-family: "avt"; } .bt.bt-b2b::before { content: "\E031"; font-family: "b2b"; } .bt.bt-kb3::before { content: "\E032"; font-family: "kb3"; } .bt.bt-bax::before { content: "\E033"; font-family: "bax"; } .bt.bt-bcap::before { content: "\E034"; font-family: "bcap"; } .bt.bt-bee::before { content: "\E035"; font-family: "bee"; } .bt.bt-bitso::before { content: "\E036"; font-family: "bitso"; } .bt.bt-vee::before { content: "\E037"; font-family: "vee"; } .bt.bt-blue::before { content: "\E038"; font-family: "blue"; } .bt.bt-bnp::before { content: "\E039"; font-family: "bnp"; } .bt.bt-bos::before { content: "\E03A"; font-family: "bos"; } .bt.bt-broker::before { content: "\E03B"; font-family: "broker"; } .bt.bt-btcalpha::before { content: "\E03C"; font-family: "btcalpha"; } .bt.bt-btcc::before { content: "\E03D"; font-family: "btcc"; } .bt.bt-btcn::before { content: "\E03E"; font-family: "btcn"; } .bt.bt-banca::before { content: "\E03F"; font-family: "banca"; } .bt.bt-bsf::before { content: "\E040"; font-family: "bsf"; } .bt.bt-bancomat::before { content: "\E041"; font-family: "bancomat"; } .bt.bt-bancomext::before { content: "\E042"; font-family: "bancomext"; } .bt.bt-bancontact::before { content: "\E043"; font-family: "bancontact"; } .bt.bt-bnt::before { content: "\E044"; font-family: "bnt"; } .bt.bt-bbos::before { content: "\E045"; font-family: "bbos"; } .bt.bt-bca::before { content: "\E046"; font-family: "bca"; } .bt.bt-banktransfer::before { content: "\E047"; font-family: "banktransfer"; } .bt.bt-boa::before { content: "\E048"; font-family: "boa"; } .bt.bt-boat::before { content: "\E049"; font-family: "boat"; } .bt.bt-bocs::before { content: "\E04A"; font-family: "bocs"; } .bt.bt-boh::before { content: "\E04B"; font-family: "boh"; } .bt.bt-bplsk::before { content: "\E04C"; font-family: "bplsk"; } .bt.bt-bkx::before { content: "\E04D"; font-family: "bkx"; } .bt.bt-bankomat::before { content: "\E04E"; font-family: "bankomat"; } .bt.bt-banx::before { content: "\E04F"; font-family: "banx"; } .bt.bt-bacs::before { content: "\E050"; font-family: "bacs"; } .bt.bt-bat::before { content: "\E051"; font-family: "bat"; } .bt.bt-bta::before { content: "\E052"; font-family: "bta"; } .bt.bt-bitb::before { content: "\E053"; font-family: "bitb"; } .bt.bt-xbts::before { content: "\E054"; font-family: "xbts"; } .bt.bt-bbi::before { content: "\E055"; font-family: "bbi"; } .bt.bt-bix::before { content: "\E056"; font-family: "bix"; } .bt.bt-binance::before { content: "\E057"; font-family: "binance"; } .bt.bt-bnb::before { content: "\E058"; font-family: "bnb"; } .bt.bt-bio::before { content: "\E059"; font-family: "bio"; } .bt.bt-btrn::before { content: "\E05A"; font-family: "btrn"; } .bt.bt-bay::before { content: "\E05B"; font-family: "bay"; } .bt.bt-bck::before { content: "\E05C"; font-family: "bck"; } .bt.bt-cat::before { content: "\E05D"; font-family: "cat"; } .bt.bt-bcc::before { content: "\E05E"; font-family: "bcc"; } .bt.bt-bdg::before { content: "\E05F"; font-family: "bdg"; } .bt.bt-bitflyer::before { content: "\E060"; font-family: "bitflyer"; } .bt.bt-bsd::before { content: "\E061"; font-family: "bsd"; } .bt.bt-bts::before { content: "\E062"; font-family: "bts"; } .bt.bt-xbs::before { content: "\E063"; font-family: "xbs"; } .bt.bt-bitx::before { content: "\E064"; font-family: "bitx"; } .bt.bt-btc::before { content: "\E065"; font-family: "btc"; } .bt.bt-btx::before { content: "\E065"; font-family: "btc"; } .bt.bt-bch::before { content: "\E066"; font-family: "bch"; } .bt.bt-bch2::before { content: "\E067"; font-family: "bch2"; } .bt.bt-btg::before { content: "\E068"; font-family: "btg"; } .bt.bt-btcp::before { content: "\E069"; font-family: "btcp"; } .bt.bt-btcd::before { content: "\E06A"; font-family: "btcd"; } .bt.bt-bcx::before { content: "\E06B"; font-family: "bcx"; } .bt.bt-btx::before { content: "\E06C"; font-family: "btx"; } .bt.bt-bdl::before { content: "\E06D"; font-family: "bdl"; } .bt.bt-bitfinex::before { content: "\E06E"; font-family: "bitfinex"; } .bt.bt-bithumb::before { content: "\E06F"; font-family: "bithumb"; } .bt.bt-bt::before { content: "\E070"; font-family: "bt"; } .bt.bt-brokenchain::before { content: "\E071"; font-family: "brokenchain"; } .bt.bt-card::before { content: "\E072"; font-family: "card"; } .bt.bt-card1::before { content: "\E073"; font-family: "card1"; } .bt.bt-card2::before { content: "\E074"; font-family: "card2"; } .bt.bt-certificate::before { content: "\E075"; font-family: "certificate"; } .bt.bt-certificateo::before { content: "\E076"; font-family: "certificateo"; } .bt.bt-circle::before { content: "\E077"; font-family: "circle"; } .bt.bt-circleo::before { content: "\E078"; font-family: "circleo"; } .bt.bt-loader::before { content: "\E079"; font-family: "loader"; } .bt.bt-noimage::before { content: "\E07A"; font-family: "noimage"; } .bt.bt-question::before { content: "\E07B"; font-family: "question"; } .bt.bt-shield::before { content: "\E07C"; font-family: "shield"; } .bt.bt-shieldo::before { content: "\E07D"; font-family: "shieldo"; } .bt.bt-square::before { content: "\E07E"; font-family: "square"; } .bt.bt-square1::before { content: "\E07F"; font-family: "square1"; } .bt.bt-square2::before { content: "\E080"; font-family: "square2"; } .bt.bt-squareo::before { content: "\E081"; font-family: "squareo"; } .bt.bt-star::before { content: "\E082"; font-family: "star"; } .bt.bt-staro::before { content: "\E083"; font-family: "staro"; } .bt.bt-triangle::before { content: "\E084"; font-family: "triangle"; } .bt.bt-triangleo::before { content: "\E085"; font-family: "triangleo"; } .bt.bt-bitpanda::before { content: "\E086"; font-family: "bitpanda"; } .bt.bt-bitpay::before { content: "\E087"; font-family: "bitpay"; } .bt.bt-bq::before { content: "\E088"; font-family: "bq"; } .bt.bt-bitstamp::before { content: "\E089"; font-family: "bitstamp"; } .bt.bt-swift::before { content: "\E08A"; font-family: "swift"; } .bt.bt-bittrex::before { content: "\E08B"; font-family: "bittrex"; } .bt.bt-bc::before { content: "\E08C"; font-family: "bc"; } .bt.bt-bmc::before { content: "\E08D"; font-family: "bmc"; } .bt.bt-xbp::before { content: "\E08E"; font-family: "xbp"; } .bt.bt-bcpt::before { content: "\E08F"; font-family: "bcpt"; } .bt.bt-block::before { content: "\E090"; font-family: "block"; } .bt.bt-bpt::before { content: "\E091"; font-family: "bpt"; } .bt.bt-blt::before { content: "\E092"; font-family: "blt"; } .bt.bt-blz::before { content: "\E093"; font-family: "blz"; } .bt.bt-bft::before { content: "\E094"; font-family: "bft"; } .bt.bt-bot::before { content: "\E095"; font-family: "bot"; } .bt.bt-bnty::before { content: "\E096"; font-family: "bnty"; } .bt.bt-brd::before { content: "\E097"; font-family: "brd"; } .bt.bt-brk::before { content: "\E098"; font-family: "brk"; } .bt.bt-brx::before { content: "\E099"; font-family: "brx"; } .bt.bt-bco::before { content: "\E09A"; font-family: "bco"; } .bt.bt-gbp::before { content: "\E09B"; font-family: "gbp"; } .bt.bt-bwk::before { content: "\E09C"; font-family: "bwk"; } .bt.bt-burst::before { content: "\E09D"; font-family: "burst"; } .bt.bt-gbyte::before { content: "\E09E"; font-family: "gbyte"; } .bt.bt-bcn::before { content: "\E09F"; font-family: "bcn"; } .bt.bt-btm::before { content: "\E0A0"; font-family: "btm"; } .bt.bt-cex::before { content: "\E0A1"; font-family: "cex"; } .bt.bt-cfun::before { content: "\E0A2"; font-family: "cfun"; } .bt.bt-coss::before { content: "\E0A3"; font-family: "coss"; } .bt.bt-coti::before { content: "\E0A4"; font-family: "coti"; } .bt.bt-can::before { content: "\E0A5"; font-family: "can"; } .bt.bt-cpost::before { content: "\E0A6"; font-family: "cpost"; } .bt.bt-capp::before { content: "\E0A7"; font-family: "capp"; } .bt.bt-ada::before { content: "\E0A8"; font-family: "ada"; } .bt.bt-carecredit::before { content: "\E0A9"; font-family: "carecredit"; } .bt.bt-cxo::before { content: "\E0AA"; font-family: "cxo"; } .bt.bt-cartasi::before { content: "\E0AB"; font-family: "cartasi"; } .bt.bt-cartebancaire::before { content: "\E0AC"; font-family: "cartebancaire"; } .bt.bt-capp::before { content: "\E0AD"; font-family: "capp"; } .bt.bt-cashcloud::before { content: "\E0AE"; font-family: "cashcloud"; } .bt.bt-cashu::before { content: "\E0AF"; font-family: "cashu"; } .bt.bt-csc::before { content: "\E0B0"; font-family: "csc"; } .bt.bt-link::before { content: "\E0B1"; font-family: "link"; } .bt.bt-cag::before { content: "\E0B2"; font-family: "cag"; } .bt.bt-chase::before { content: "\E0B3"; font-family: "chase"; } .bt.bt-checkout::before { content: "\E0B4"; font-family: "checkout"; } .bt.bt-ccb::before { content: "\E0B5"; font-family: "ccb"; } .bt.bt-cmb::before { content: "\E0B6"; font-family: "cmb"; } .bt.bt-chinapost::before { content: "\E0B7"; font-family: "chinapost"; } .bt.bt-cny::before { content: "\E0B8"; font-family: "cny"; } .bt.bt-time::before { content: "\E0B9"; font-family: "time"; } .bt.bt-cnd::before { content: "\E0BA"; font-family: "cnd"; } .bt.bt-cirrus::before { content: "\E0BB"; font-family: "cirrus"; } .bt.bt-citibank::before { content: "\E0BC"; font-family: "citibank"; } .bt.bt-cizb::before { content: "\E0BD"; font-family: "cizb"; } .bt.bt-cizbc::before { content: "\E0BE"; font-family: "cizbc"; } .bt.bt-cvc::before { content: "\E0BF"; font-family: "cvc"; } .bt.bt-clam::before { content: "\E0C0"; font-family: "clam"; } .bt.bt-clickandbuy::before { content: "\E0C1"; font-family: "clickandbuy"; } .bt.bt-cloak::before { content: "\E0C2"; font-family: "cloak"; } .bt.bt-cld::before { content: "\E0C3"; font-family: "cld"; } .bt.bt-coe::before { content: "\E0C4"; font-family: "coe"; } .bt.bt-coxst::before { content: "\E0C5"; font-family: "coxst"; } .bt.bt-cob::before { content: "\E0C6"; font-family: "cob"; } .bt.bt-cof::before { content: "\E0C7"; font-family: "cof"; } .bt.bt-cfi::before { content: "\E0C8"; font-family: "cfi"; } .bt.bt-cdt::before { content: "\E0C9"; font-family: "cdt"; } .bt.bt-mee::before { content: "\E0CA"; font-family: "mee"; } .bt.bt-cn1::before { content: "\E0CB"; font-family: "cn1"; } .bt.bt-cb::before { content: "\E0CC"; font-family: "cb"; } .bt.bt-coincheck::before { content: "\E0CD"; font-family: "coincheck"; } .bt.bt-coindesk::before { content: "\E0CE"; font-family: "coindesk"; } .bt.bt-coinfloor::before { content: "\E0CF"; font-family: "coinfloor"; } .bt.bt-cnfy::before { content: "\E0D0"; font-family: "cnfy"; } .bt.bt-ctph::before { content: "\E0D1"; font-family: "ctph"; } .bt.bt-colx::before { content: "\E0D2"; font-family: "colx"; } .bt.bt-cmp::before { content: "\E0D3"; font-family: "cmp"; } .bt.bt-sen::before { content: "\E0D4"; font-family: "sen"; } .bt.bt-csys::before { content: "\E0D5"; font-family: "csys"; } .bt.bt-xcp::before { content: "\E0D6"; font-family: "xcp"; } .bt.bt-cov::before { content: "\E0D7"; font-family: "cov"; } .bt.bt-crea::before { content: "\E0D8"; font-family: "crea"; } .bt.bt-csuis::before { content: "\E0D9"; font-family: "csuis"; } .bt.bt-crb::before { content: "\E0DA"; font-family: "crb"; } .bt.bt-cs::before { content: "\E0DB"; font-family: "cs"; } .bt.bt-credo::before { content: "\E0DC"; font-family: "credo"; } .bt.bt-cmct::before { content: "\E0DD"; font-family: "cmct"; } .bt.bt-crpt::before { content: "\E0DE"; font-family: "crpt"; } .bt.bt-cryptobridge::before { content: "\E0DF"; font-family: "cryptobridge"; } .bt.bt-cnx::before { content: "\E0E0"; font-family: "cnx"; } .bt.bt-cryptonit::before { content: "\E0E1"; font-family: "cryptonit"; } .bt.bt-cryptopia::before { content: "\E0E2"; font-family: "cryptopia"; } .bt.bt-cryptovest::before { content: "\E0E3"; font-family: "cryptovest"; } .bt.bt-auto::before { content: "\E0E4"; font-family: "auto"; } .bt.bt-crnc::before { content: "\E0E5"; font-family: "crnc"; } .bt.bt-cvt::before { content: "\E0E6"; font-family: "cvt"; } .bt.bt-dadi::before { content: "\E0E7"; font-family: "dadi"; } .bt.bt-dax::before { content: "\E0E8"; font-family: "dax"; } .bt.bt-dta::before { content: "\E0E9"; font-family: "dta"; } .bt.bt-datx::before { content: "\E0EA"; font-family: "datx"; } .bt.bt-drp::before { content: "\E0EB"; font-family: "drp"; } .bt.bt-dct::before { content: "\E0EC"; font-family: "dct"; } .bt.bt-dew::before { content: "\E0ED"; font-family: "dew"; } .bt.bt-dhl::before { content: "\E0EE"; font-family: "dhl"; } .bt.bt-dibc::before { content: "\E0EF"; font-family: "dibc"; } .bt.bt-discover::before { content: "\E0F0"; font-family: "discover"; } .bt.bt-dmt::before { content: "\E0F1"; font-family: "dmt"; } .bt.bt-note::before { content: "\E0F2"; font-family: "note"; } .bt.bt-dovu::before { content: "\E0F3"; font-family: "dovu"; } .bt.bt-dpd::before { content: "\E0F4"; font-family: "dpd"; } .bt.bt-dsv::before { content: "\E0F5"; font-family: "dsv"; } .bt.bt-dai::before { content: "\E0F6"; font-family: "dai"; } .bt.bt-dankort::before { content: "\E0F7"; font-family: "dankort"; } .bt.bt-daohb::before { content: "\E0F8"; font-family: "daohb"; } .bt.bt-dash::before { content: "\E0F9"; font-family: "dash"; } .bt.bt-dtt::before { content: "\E0FA"; font-family: "dtt"; } .bt.bt-dxt::before { content: "\E0FB"; font-family: "dxt"; } .bt.bt-dat::before { content: "\E0FC"; font-family: "dat"; } .bt.bt-deb::before { content: "\E0FD"; font-family: "deb"; } .bt.bt-mana::before { content: "\E0FE"; font-family: "mana"; } .bt.bt-dml::before { content: "\E0FF"; font-family: "dml"; } .bt.bt-hst::before { content: "\E100"; font-family: "hst"; } .bt.bt-dcr::before { content: "\E101"; font-family: "dcr"; } .bt.bt-dbc::before { content: "\E102"; font-family: "dbc"; } .bt.bt-onion::before { content: "\E103"; font-family: "onion"; } .bt.bt-dpy::before { content: "\E104"; font-family: "dpy"; } .bt.bt-dent::before { content: "\E105"; font-family: "dent"; } .bt.bt-dcn::before { content: "\E106"; font-family: "dcn"; } .bt.bt-dth::before { content: "\E107"; font-family: "dth"; } .bt.bt-deub::before { content: "\E108"; font-family: "deub"; } .bt.bt-dpost::before { content: "\E109"; font-family: "dpost"; } .bt.bt-eve::before { content: "\E10A"; font-family: "eve"; } .bt.bt-dfinity::before { content: "\E10B"; font-family: "dfinity"; } .bt.bt-dmd::before { content: "\E10C"; font-family: "dmd"; } .bt.bt-dgb::before { content: "\E10D"; font-family: "dgb"; } .bt.bt-xdn::before { content: "\E10E"; font-family: "xdn"; } .bt.bt-dgd::before { content: "\E10F"; font-family: "dgd"; } .bt.bt-dgx::before { content: "\E110"; font-family: "dgx"; } .bt.bt-dime::before { content: "\E111"; font-family: "dime"; } .bt.bt-dinersclub::before { content: "\E112"; font-family: "dinersclub"; } .bt.bt-directdebit::before { content: "\E113"; font-family: "directdebit"; } .bt.bt-divx::before { content: "\E114"; font-family: "divx"; } .bt.bt-dockio::before { content: "\E115"; font-family: "dockio"; } .bt.bt-doge::before { content: "\E116"; font-family: "doge"; } .bt.bt-drt::before { content: "\E117"; font-family: "drt"; } .bt.bt-drg::before { content: "\E118"; font-family: "drg"; } .bt.bt-drgn::before { content: "\E119"; font-family: "drgn"; } .bt.bt-drmt::before { content: "\E11A"; font-family: "drmt"; } .bt.bt-dyn::before { content: "\E11B"; font-family: "dyn"; } .bt.bt-dtr::before { content: "\E11C"; font-family: "dtr"; } .bt.bt-ecc::before { content: "\E11D"; font-family: "ecc"; } .bt.bt-echo::before { content: "\E11E"; font-family: "echo"; } .bt.bt-elo::before { content: "\E11F"; font-family: "elo"; } .bt.bt-ems::before { content: "\E120"; font-family: "ems"; } .bt.bt-eos::before { content: "\E121"; font-family: "eos"; } .bt.bt-esrwallet::before { content: "\E122"; font-family: "esrwallet"; } .bt.bt-essa::before { content: "\E123"; font-family: "essa"; } .bt.bt-lend::before { content: "\E124"; font-family: "lend"; } .bt.bt-exc::before { content: "\E125"; font-family: "exc"; } .bt.bt-exx::before { content: "\E126"; font-family: "exx"; } .bt.bt-ezt::before { content: "\E127"; font-family: "ezt"; } .bt.bt-earth::before { content: "\E128"; font-family: "earth"; } .bt.bt-ebanx::before { content: "\E129"; font-family: "ebanx"; } .bt.bt-edg::before { content: "\E12A"; font-family: "edg"; } .bt.bt-efx::before { content: "\E12B"; font-family: "efx"; } .bt.bt-edo::before { content: "\E12C"; font-family: "edo"; } .bt.bt-emc2::before { content: "\E12D"; font-family: "emc2"; } .bt.bt-elc::before { content: "\E12E"; font-family: "elc"; } .bt.bt-xel::before { content: "\E12F"; font-family: "xel"; } .bt.bt-ela::before { content: "\E130"; font-family: "ela"; } .bt.bt-eca::before { content: "\E131"; font-family: "eca"; } .bt.bt-elec::before { content: "\E132"; font-family: "elec"; } .bt.bt-etn::before { content: "\E133"; font-family: "etn"; } .bt.bt-elix::before { content: "\E134"; font-family: "elix"; } .bt.bt-mbrs::before { content: "\E135"; font-family: "mbrs"; } .bt.bt-emc::before { content: "\E136"; font-family: "emc"; } .bt.bt-ett::before { content: "\E137"; font-family: "ett"; } .bt.bt-enrg::before { content: "\E138"; font-family: "enrg"; } .bt.bt-eng::before { content: "\E139"; font-family: "eng"; } .bt.bt-enj::before { content: "\E13A"; font-family: "enj"; } .bt.bt-env::before { content: "\E13B"; font-family: "env"; } .bt.bt-equa::before { content: "\E13C"; font-family: "equa"; } .bt.bt-eql::before { content: "\E13D"; font-family: "eql"; } .bt.bt-edoge::before { content: "\E13E"; font-family: "edoge"; } .bt.bt-ech::before { content: "\E13F"; font-family: "ech"; } .bt.bt-etc::before { content: "\E140"; font-family: "etc"; } .bt.bt-eth::before { content: "\E141"; font-family: "eth"; } .bt.bt-fuel::before { content: "\E142"; font-family: "fuel"; } .bt.bt-ethos::before { content: "\E143"; font-family: "ethos"; } .bt.bt-eur::before { content: "\E144"; font-family: "eur"; } .bt.bt-eurocheque::before { content: "\E145"; font-family: "eurocheque"; } .bt.bt-erc::before { content: "\E146"; font-family: "erc"; } .bt.bt-xuc::before { content: "\E147"; font-family: "xuc"; } .bt.bt-exmo::before { content: "\E148"; font-family: "exmo"; } .bt.bt-xp::before { content: "\E149"; font-family: "xp"; } .bt.bt-exy::before { content: "\E14A"; font-family: "exy"; } .bt.bt-fct::before { content: "\E14B"; font-family: "fct"; } .bt.bt-fair::before { content: "\E14C"; font-family: "fair"; } .bt.bt-ftc::before { content: "\E14D"; font-family: "ftc"; } .bt.bt-fedex::before { content: "\E14E"; font-family: "fedex"; } .bt.bt-fil::before { content: "\E14F"; font-family: "fil"; } .bt.bt-fi::before { content: "\E150"; font-family: "fi"; } .bt.bt-1st::before { content: "\E151"; font-family: "1st"; } .bt.bt-fash::before { content: "\E152"; font-family: "fash"; } .bt.bt-flattr::before { content: "\E153"; font-family: "flattr"; } .bt.bt-flo::before { content: "\E154"; font-family: "flo"; } .bt.bt-fluz::before { content: "\E155"; font-family: "fluz"; } .bt.bt-frk::before { content: "\E156"; font-family: "frk"; } .bt.bt-fc2::before { content: "\E157"; font-family: "fc2"; } .bt.bt-fun::before { content: "\E158"; font-family: "fun"; } .bt.bt-fsn::before { content: "\E159"; font-family: "fsn"; } .bt.bt-gas::before { content: "\E15A"; font-family: "gas"; } .bt.bt-gdax::before { content: "\E15B"; font-family: "gdax"; } .bt.bt-get::before { content: "\E15C"; font-family: "get"; } .bt.bt-gxs::before { content: "\E15D"; font-family: "gxs"; } .bt.bt-gxs::before { content: "\E15E"; font-family: "gxs"; } .bt.bt-game::before { content: "\E15F"; font-family: "game"; } .bt.bt-gategoin::before { content: "\E160"; font-family: "gategoin"; } .bt.bt-gateio::before { content: "\E161"; font-family: "gateio"; } .bt.bt-gemini::before { content: "\E162"; font-family: "gemini"; } .bt.bt-gem::before { content: "\E163"; font-family: "gem"; } .bt.bt-gvt::before { content: "\E164"; font-family: "gvt"; } .bt.bt-gemz::before { content: "\E165"; font-family: "gemz"; } .bt.bt-gto::before { content: "\E166"; font-family: "gto"; } .bt.bt-gla::before { content: "\E167"; font-family: "gla"; } .bt.bt-gjc::before { content: "\E168"; font-family: "gjc"; } .bt.bt-gno::before { content: "\E169"; font-family: "gno"; } .bt.bt-gld::before { content: "\E16A"; font-family: "gld"; } .bt.bt-gmnt::before { content: "\E16B"; font-family: "gmnt"; } .bt.bt-gnt::before { content: "\E16C"; font-family: "gnt"; } .bt.bt-golos::before { content: "\E16D"; font-family: "golos"; } .bt.bt-googlewallet::before { content: "\E16E"; font-family: "googlewallet"; } .bt.bt-gdc::before { content: "\E16F"; font-family: "gdc"; } .bt.bt-grmd::before { content: "\E170"; font-family: "grmd"; } .bt.bt-grid::before { content: "\E171"; font-family: "grid"; } .bt.bt-grc::before { content: "\E172"; font-family: "grc"; } .bt.bt-grs::before { content: "\E173"; font-family: "grs"; } .bt.bt-efl::before { content: "\E174"; font-family: "efl"; } .bt.bt-nlg::before { content: "\E175"; font-family: "nlg"; } .bt.bt-guppy::before { content: "\E176"; font-family: "guppy"; } .bt.bt-heat::before { content: "\E177"; font-family: "heat"; } .bt.bt-hkn::before { content: "\E178"; font-family: "hkn"; } .bt.bt-hac::before { content: "\E179"; font-family: "hac"; } .bt.bt-hlc::before { content: "\E17A"; font-family: "hlc"; } .bt.bt-hvv::before { content: "\E17B"; font-family: "hvv"; } .bt.bt-hdg::before { content: "\E17C"; font-family: "hdg"; } .bt.bt-hgt::before { content: "\E17D"; font-family: "hgt"; } .bt.bt-thc::before { content: "\E17E"; font-family: "thc"; } .bt.bt-hermes::before { content: "\E17F"; font-family: "hermes"; } .bt.bt-hmc::before { content: "\E180"; font-family: "hmc"; } .bt.bt-hpb::before { content: "\E181"; font-family: "hpb"; } .bt.bt-hitbtc::before { content: "\E182"; font-family: "hitbtc"; } .bt.bt-hvn::before { content: "\E183"; font-family: "hvn"; } .bt.bt-hsr::before { content: "\E184"; font-family: "hsr"; } .bt.bt-hmq::before { content: "\E185"; font-family: "hmq"; } .bt.bt-huobi::before { content: "\E186"; font-family: "huobi"; } .bt.bt-tk::before { content: "\E187"; font-family: "tk"; } .bt.bt-hush::before { content: "\E188"; font-family: "hush"; } .bt.bt-icx::before { content: "\E189"; font-family: "icx"; } .bt.bt-idex::before { content: "\E18A"; font-family: "idex"; } .bt.bt-iht::before { content: "\E18B"; font-family: "iht"; } .bt.bt-ingb::before { content: "\E18C"; font-family: "ingb"; } .bt.bt-ins::before { content: "\E18D"; font-family: "ins"; } .bt.bt-ioc::before { content: "\E18E"; font-family: "ioc"; } .bt.bt-ion::before { content: "\E18F"; font-family: "ion"; } .bt.bt-iost::before { content: "\E190"; font-family: "iost"; } .bt.bt-iotaeco::before { content: "\E191"; font-family: "iotaeco"; } .bt.bt-miota::before { content: "\E192"; font-family: "miota"; } .bt.bt-iota::before { content: "\E192"; font-family: "miota"; } .bt.bt-ipsx::before { content: "\E193"; font-family: "ipsx"; } .bt.bt-icn::before { content: "\E194"; font-family: "icn"; } .bt.bt-ignis::before { content: "\E195"; font-family: "ignis"; } .bt.bt-incnt::before { content: "\E196"; font-family: "incnt"; } .bt.bt-idh::before { content: "\E197"; font-family: "idh"; } .bt.bt-inr::before { content: "\E198"; font-family: "inr"; } .bt.bt-indi::before { content: "\E199"; font-family: "indi"; } .bt.bt-ifc::before { content: "\E19A"; font-family: "ifc"; } .bt.bt-ink::before { content: "\E19B"; font-family: "ink"; } .bt.bt-xnk::before { content: "\E19C"; font-family: "xnk"; } .bt.bt-inn::before { content: "\E19D"; font-family: "inn"; } .bt.bt-ipl::before { content: "\E19E"; font-family: "ipl"; } .bt.bt-int::before { content: "\E19F"; font-family: "int"; } .bt.bt-ipbc::before { content: "\E1A0"; font-family: "ipbc"; } .bt.bt-ift::before { content: "\E1A1"; font-family: "ift"; } .bt.bt-itc::before { content: "\E1A2"; font-family: "itc"; } .bt.bt-ing::before { content: "\E1A3"; font-family: "ing"; } .bt.bt-jcb::before { content: "\E1A4"; font-family: "jcb"; } .bt.bt-j8t::before { content: "\E1A5"; font-family: "j8t"; } .bt.bt-js::before { content: "\E1A6"; font-family: "js"; } .bt.bt-jpy::before { content: "\E1A7"; font-family: "jpy"; } .bt.bt-jc::before { content: "\E1A8"; font-family: "jc"; } .bt.bt-jet::before { content: "\E1A9"; font-family: "jet"; } .bt.bt-jnt::before { content: "\E1AA"; font-family: "jnt"; } .bt.bt-jcr::before { content: "\E1AB"; font-family: "jcr"; } .bt.bt-jbs::before { content: "\E1AC"; font-family: "jbs"; } .bt.bt-kick::before { content: "\E1AD"; font-family: "kick"; } .bt.bt-kin::before { content: "\E1AE"; font-family: "kin"; } .bt.bt-klarna::before { content: "\E1AF"; font-family: "klarna"; } .bt.bt-kobo::before { content: "\E1B0"; font-family: "kobo"; } .bt.bt-kmd::before { content: "\E1B1"; font-family: "kmd"; } .bt.bt-korbit::before { content: "\E1B2"; font-family: "korbit"; } .bt.bt-kore::before { content: "\E1B3"; font-family: "kore"; } .bt.bt-kraken::before { content: "\E1B4"; font-family: "kraken"; } .bt.bt-kucoin::before { content: "\E1B5"; font-family: "kucoin"; } .bt.bt-kcs::before { content: "\E1B6"; font-family: "kcs"; } .bt.bt-knc::before { content: "\E1B7"; font-family: "knc"; } .bt.bt-la::before { content: "\E1B8"; font-family: "la"; } .bt.bt-lbc::before { content: "\E1B9"; font-family: "lbc"; } .bt.bt-leo::before { content: "\E1BA"; font-family: "leo"; } .bt.bt-life::before { content: "\E1BB"; font-family: "life"; } .bt.bt-loci::before { content: "\E1BC"; font-family: "loci"; } .bt.bt-lux::before { content: "\E1BD"; font-family: "lux"; } .bt.bt-laposte::before { content: "\E1BE"; font-family: "laposte"; } .bt.bt-lala::before { content: "\E1BF"; font-family: "lala"; } .bt.bt-lakebtc::before { content: "\E1C0"; font-family: "lakebtc"; } .bt.bt-tau::before { content: "\E1C1"; font-family: "tau"; } .bt.bt-ldc::before { content: "\E1C2"; font-family: "ldc"; } .bt.bt-ledger::before { content: "\E1C3"; font-family: "ledger"; } .bt.bt-lst::before { content: "\E1C4"; font-family: "lst"; } .bt.bt-lev::before { content: "\E1C5"; font-family: "lev"; } .bt.bt-linda::before { content: "\E1C6"; font-family: "linda"; } .bt.bt-linx::before { content: "\E1C7"; font-family: "linx"; } .bt.bt-liqui::before { content: "\E1C8"; font-family: "liqui"; } .bt.bt-lsk::before { content: "\E1C9"; font-family: "lsk"; } .bt.bt-ldoge::before { content: "\E1CA"; font-family: "ldoge"; } .bt.bt-lcc::before { content: "\E1CB"; font-family: "lcc"; } .bt.bt-ltc::before { content: "\E1CC"; font-family: "ltc"; } .bt.bt-livecoin::before { content: "\E1CD"; font-family: "livecoin"; } .bt.bt-llb::before { content: "\E1CE"; font-family: "llb"; } .bt.bt-lol::before { content: "\E1CF"; font-family: "lol"; } .bt.bt-localbitcoins::before { content: "\E1D0"; font-family: "localbitcoins"; } .bt.bt-loom::before { content: "\E1D1"; font-family: "loom"; } .bt.bt-lrc::before { content: "\E1D2"; font-family: "lrc"; } .bt.bt-lun::before { content: "\E1D3"; font-family: "lun"; } .bt.bt-lkk::before { content: "\E1D4"; font-family: "lkk"; } .bt.bt-lym::before { content: "\E1D5"; font-family: "lym"; } .bt.bt-mrk::before { content: "\E1D6"; font-family: "mrk"; } .bt.bt-mcap::before { content: "\E1D7"; font-family: "mcap"; } .bt.bt-mir::before { content: "\E1D8"; font-family: "mir"; } .bt.bt-moac::before { content: "\E1D9"; font-family: "moac"; } .bt.bt-msd::before { content: "\E1DA"; font-family: "msd"; } .bt.bt-muse::before { content: "\E1DB"; font-family: "muse"; } .bt.bt-maestro::before { content: "\E1DC"; font-family: "maestro"; } .bt.bt-mai::before { content: "\E1DD"; font-family: "mai"; } .bt.bt-maid::before { content: "\E1DE"; font-family: "maid"; } .bt.bt-mkr::before { content: "\E1DF"; font-family: "mkr"; } .bt.bt-msc::before { content: "\E1E0"; font-family: "msc"; } .bt.bt-mastercard::before { content: "\E1E1"; font-family: "mastercard"; } .bt.bt-mtr::before { content: "\E1E2"; font-family: "mtr"; } .bt.bt-gup::before { content: "\E1E3"; font-family: "gup"; } .bt.bt-med::before { content: "\E1E4"; font-family: "med"; } .bt.bt-mds::before { content: "\E1E5"; font-family: "mds"; } .bt.bt-mln::before { content: "\E1E6"; font-family: "mln"; } .bt.bt-mer::before { content: "\E1E7"; font-family: "mer"; } .bt.bt-gmt::before { content: "\E1E8"; font-family: "gmt"; } .bt.bt-mtl::before { content: "\E1E9"; font-family: "mtl"; } .bt.bt-etp::before { content: "\E1EA"; font-family: "etp"; } .bt.bt-met::before { content: "\E1EB"; font-family: "met"; } .bt.bt-amm::before { content: "\E1EC"; font-family: "amm"; } .bt.bt-mnx::before { content: "\E1ED"; font-family: "mnx"; } .bt.bt-mint::before { content: "\E1EE"; font-family: "mint"; } .bt.bt-mith::before { content: "\E1EF"; font-family: "mith"; } .bt.bt-xin::before { content: "\E1F0"; font-family: "xin"; } .bt.bt-mobiamo::before { content: "\E1F1"; font-family: "mobiamo"; } .bt.bt-mgo::before { content: "\E1F2"; font-family: "mgo"; } .bt.bt-mod::before { content: "\E1F3"; font-family: "mod"; } .bt.bt-mda::before { content: "\E1F4"; font-family: "mda"; } .bt.bt-moin::before { content: "\E1F5"; font-family: "moin"; } .bt.bt-mona::before { content: "\E1F6"; font-family: "mona"; } .bt.bt-mco::before { content: "\E1F7"; font-family: "mco"; } .bt.bt-xmr::before { content: "\E1F8"; font-family: "xmr"; } .bt.bt-mue::before { content: "\E1F9"; font-family: "mue"; } .bt.bt-mth::before { content: "\E1FA"; font-family: "mth"; } .bt.bt-moon::before { content: "\E1FB"; font-family: "moon"; } .bt.bt-mitx::before { content: "\E1FC"; font-family: "mitx"; } .bt.bt-msp::before { content: "\E1FD"; font-family: "msp"; } .bt.bt-myb::before { content: "\E1FE"; font-family: "myb"; } .bt.bt-xmy::before { content: "\E1FF"; font-family: "xmy"; } .bt.bt-myst::before { content: "\E200"; font-family: "myst"; } .bt.bt-nanj::before { content: "\E201"; font-family: "nanj"; } .bt.bt-nano::before { content: "\E202"; font-family: "nano"; } .bt.bt-nav::before { content: "\E203"; font-family: "nav"; } .bt.bt-xem::before { content: "\E204"; font-family: "xem"; } .bt.bt-neo::before { content: "\E205"; font-family: "neo"; } .bt.bt-nex::before { content: "\E206"; font-family: "nex"; } .bt.bt-nexo::before { content: "\E207"; font-family: "nexo"; } .bt.bt-nvst::before { content: "\E208"; font-family: "nvst"; } .bt.bt-npx::before { content: "\E209"; font-family: "npx"; } .bt.bt-ngc::before { content: "\E20A"; font-family: "ngc"; } .bt.bt-nmc::before { content: "\E20B"; font-family: "nmc"; } .bt.bt-nebl::before { content: "\E20C"; font-family: "nebl"; } .bt.bt-nas::before { content: "\E20D"; font-family: "nas"; } .bt.bt-neos::before { content: "\E20E"; font-family: "neos"; } .bt.bt-neu::before { content: "\E20F"; font-family: "neu"; } .bt.bt-ntk::before { content: "\E210"; font-family: "ntk"; } .bt.bt-ntrn::before { content: "\E211"; font-family: "ntrn"; } .bt.bt-npxs::before { content: "\E212"; font-family: "npxs"; } .bt.bt-nxs::before { content: "\E213"; font-family: "nxs"; } .bt.bt-net::before { content: "\E214"; font-family: "net"; } .bt.bt-nvc::before { content: "\E215"; font-family: "nvc"; } .bt.bt-nbt::before { content: "\E216"; font-family: "nbt"; } .bt.bt-nsr::before { content: "\E217"; font-family: "nsr"; } .bt.bt-ncash::before { content: "\E218"; font-family: "ncash"; } .bt.bt-nuls::before { content: "\E219"; font-family: "nuls"; } .bt.bt-nmr::before { content: "\E21A"; font-family: "nmr"; } .bt.bt-nxt::before { content: "\E21B"; font-family: "nxt"; } .bt.bt-oanda::before { content: "\E21C"; font-family: "oanda"; } .bt.bt-oax::before { content: "\E21D"; font-family: "oax"; } .bt.bt-ode::before { content: "\E21E"; font-family: "ode"; } .bt.bt-ok::before { content: "\E21F"; font-family: "ok"; } .bt.bt-ost::before { content: "\E220"; font-family: "ost"; } .bt.bt-ox::before { content: "\E221"; font-family: "ox"; } .bt.bt-oc::before { content: "\E222"; font-family: "oc"; } .bt.bt-ocl::before { content: "\E223"; font-family: "ocl"; } .bt.bt-occ::before { content: "\E224"; font-family: "occ"; } .bt.bt-ocn::before { content: "\E225"; font-family: "ocn"; } .bt.bt-omg::before { content: "\E226"; font-family: "omg"; } .bt.bt-omni::before { content: "\E227"; font-family: "omni"; } .bt.bt-rnt::before { content: "\E228"; font-family: "rnt"; } .bt.bt-ont::before { content: "\E229"; font-family: "ont"; } .bt.bt-opal::before { content: "\E22A"; font-family: "opal"; } .bt.bt-otn::before { content: "\E22B"; font-family: "otn"; } .bt.bt-trac::before { content: "\E22C"; font-family: "trac"; } .bt.bt-orme::before { content: "\E22D"; font-family: "orme"; } .bt.bt-oxy::before { content: "\E22E"; font-family: "oxy"; } .bt.bt-prl::before { content: "\E22F"; font-family: "prl"; } .bt.bt-pac::before { content: "\E230"; font-family: "pac"; } .bt.bt-pin::before { content: "\E231"; font-family: "pin"; } .bt.bt-pivx::before { content: "\E232"; font-family: "pivx"; } .bt.bt-poa::before { content: "\E233"; font-family: "poa"; } .bt.bt-pnd::before { content: "\E234"; font-family: "pnd"; } .bt.bt-prg::before { content: "\E235"; font-family: "prg"; } .bt.bt-pareto::before { content: "\E236"; font-family: "pareto"; } .bt.bt-part::before { content: "\E237"; font-family: "part"; } .bt.bt-pasc::before { content: "\E238"; font-family: "pasc"; } .bt.bt-ptoy::before { content: "\E239"; font-family: "ptoy"; } .bt.bt-paysafe::before { content: "\E23A"; font-family: "paysafe"; } .bt.bt-paybox::before { content: "\E23B"; font-family: "paybox"; } .bt.bt-xpy::before { content: "\E23C"; font-family: "xpy"; } .bt.bt-paydirekt::before { content: "\E23D"; font-family: "paydirekt"; } .bt.bt-paypal::before { content: "\E23E"; font-family: "paypal"; } .bt.bt-ppp::before { content: "\E23F"; font-family: "ppp"; } .bt.bt-paypro::before { content: "\E240"; font-family: "paypro"; } .bt.bt-pfr::before { content: "\E241"; font-family: "pfr"; } .bt.bt-paymentwall::before { content: "\E242"; font-family: "paymentwall"; } .bt.bt-paymill::before { content: "\E243"; font-family: "paymill"; } .bt.bt-ppc::before { content: "\E244"; font-family: "ppc"; } .bt.bt-ppy::before { content: "\E245"; font-family: "ppy"; } .bt.bt-phr::before { content: "\E246"; font-family: "phr"; } .bt.bt-pho::before { content: "\E247"; font-family: "pho"; } .bt.bt-piggy::before { content: "\E248"; font-family: "piggy"; } .bt.bt-plr::before { content: "\E249"; font-family: "plr"; } .bt.bt-pink::before { content: "\E24A"; font-family: "pink"; } .bt.bt-pkt::before { content: "\E24B"; font-family: "pkt"; } .bt.bt-plu::before { content: "\E24C"; font-family: "plu"; } .bt.bt-posw::before { content: "\E24D"; font-family: "posw"; } .bt.bt-poe::before { content: "\E24E"; font-family: "poe"; } .bt.bt-polis::before { content: "\E24F"; font-family: "polis"; } .bt.bt-polkadot::before { content: "\E250"; font-family: "polkadot"; } .bt.bt-poloniex::before { content: "\E251"; font-family: "poloniex"; } .bt.bt-nct::before { content: "\E252"; font-family: "nct"; } .bt.bt-plbt::before { content: "\E253"; font-family: "plbt"; } .bt.bt-poly::before { content: "\E254"; font-family: "poly"; } .bt.bt-ppt::before { content: "\E255"; font-family: "ppt"; } .bt.bt-postnl::before { content: "\E256"; font-family: "postnl"; } .bt.bt-postnord::before { content: "\E257"; font-family: "postnord"; } .bt.bt-pot::before { content: "\E258"; font-family: "pot"; } .bt.bt-powr::before { content: "\E259"; font-family: "powr"; } .bt.bt-pre::before { content: "\E25A"; font-family: "pre"; } .bt.bt-pbt::before { content: "\E25B"; font-family: "pbt"; } .bt.bt-xpm::before { content: "\E25C"; font-family: "xpm"; } .bt.bt-pro::before { content: "\E25D"; font-family: "pro"; } .bt.bt-xes::before { content: "\E25E"; font-family: "xes"; } .bt.bt-pbl::before { content: "\E25F"; font-family: "pbl"; } .bt.bt-pxs::before { content: "\E260"; font-family: "pxs"; } .bt.bt-pura::before { content: "\E261"; font-family: "pura"; } .bt.bt-qash::before { content: "\E262"; font-family: "qash"; } .bt.bt-qlc::before { content: "\E263"; font-family: "qlc"; } .bt.bt-qbt::before { content: "\E264"; font-family: "qbt"; } .bt.bt-qiwi::before { content: "\E265"; font-family: "qiwi"; } .bt.bt-qtum::before { content: "\E266"; font-family: "qtum"; } .bt.bt-quadrigacx::before { content: "\E267"; font-family: "quadrigacx"; } .bt.bt-qsp::before { content: "\E268"; font-family: "qsp"; } .bt.bt-qua::before { content: "\E269"; font-family: "qua"; } .bt.bt-qrl::before { content: "\E26A"; font-family: "qrl"; } .bt.bt-qrk::before { content: "\E26B"; font-family: "qrk"; } .bt.bt-qun::before { content: "\E26C"; font-family: "qun"; } .bt.bt-quoine::before { content: "\E26D"; font-family: "quoine"; } .bt.bt-rhoc::before { content: "\E26E"; font-family: "rhoc"; } .bt.bt-roka::before { content: "\E26F"; font-family: "roka"; } .bt.bt-rabo::before { content: "\E270"; font-family: "rabo"; } .bt.bt-rads::before { content: "\E271"; font-family: "rads"; } .bt.bt-xrb::before { content: "\E272"; font-family: "xrb"; } .bt.bt-rdn::before { content: "\E273"; font-family: "rdn"; } .bt.bt-raif::before { content: "\E274"; font-family: "raif"; } .bt.bt-rebl::before { content: "\E275"; font-family: "rebl"; } .bt.bt-rrt::before { content: "\E276"; font-family: "rrt"; } .bt.bt-rpx::before { content: "\E277"; font-family: "rpx"; } .bt.bt-rdd::before { content: "\E278"; font-family: "rdd"; } .bt.bt-rfc::before { content: "\E279"; font-family: "rfc"; } .bt.bt-rfm::before { content: "\E27A"; font-family: "rfm"; } .bt.bt-rmc::before { content: "\E27B"; font-family: "rmc"; } .bt.bt-remme::before { content: "\E27C"; font-family: "remme"; } .bt.bt-berry::before { content: "\E27D"; font-family: "berry"; } .bt.bt-ren::before { content: "\E27E"; font-family: "ren"; } .bt.bt-req::before { content: "\E27F"; font-family: "req"; } .bt.bt-mwat::before { content: "\E280"; font-family: "mwat"; } .bt.bt-r::before { content: "\E281"; font-family: "r"; } .bt.bt-xrl::before { content: "\E282"; font-family: "xrl"; } .bt.bt-rbt::before { content: "\E283"; font-family: "rbt"; } .bt.bt-rcn::before { content: "\E284"; font-family: "rcn"; } .bt.bt-xrp::before { content: "\E285"; font-family: "xrp"; } .bt.bt-rbx::before { content: "\E286"; font-family: "rbx"; } .bt.bt-rise::before { content: "\E287"; font-family: "rise"; } .bt.bt-round::before { content: "\E288"; font-family: "round"; } .bt.bt-rkc::before { content: "\E289"; font-family: "rkc"; } .bt.bt-rbies::before { content: "\E28A"; font-family: "rbies"; } .bt.bt-rby::before { content: "\E28B"; font-family: "rby"; } .bt.bt-salt::before { content: "\E28C"; font-family: "salt"; } .bt.bt-sepa::before { content: "\E28D"; font-family: "sepa"; } .bt.bt-xsh::before { content: "\E28E"; font-family: "xsh"; } .bt.bt-sib::before { content: "\E28F"; font-family: "sib"; } .bt.bt-srn::before { content: "\E290"; font-family: "srn"; } .bt.bt-skynet::before { content: "\E291"; font-family: "skynet"; } .bt.bt-snm::before { content: "\E292"; font-family: "snm"; } .bt.bt-altcom::before { content: "\E293"; font-family: "altcom"; } .bt.bt-stk::before { content: "\E294"; font-family: "stk"; } .bt.bt-safex::before { content: "\E295"; font-family: "safex"; } .bt.bt-sage::before { content: "\E296"; font-family: "sage"; } .bt.bt-sls::before { content: "\E297"; font-family: "sls"; } .bt.bt-sant::before { content: "\E298"; font-family: "sant"; } .bt.bt-san::before { content: "\E299"; font-family: "san"; } .bt.bt-sar::before { content: "\E29A"; font-family: "sar"; } .bt.bt-scot::before { content: "\E29B"; font-family: "scot"; } .bt.bt-key::before { content: "\E29C"; font-family: "key"; } .bt.bt-sense::before { content: "\E29D"; font-family: "sense"; } .bt.bt-seth::before { content: "\E29E"; font-family: "seth"; } .bt.bt-sdc::before { content: "\E29F"; font-family: "sdc"; } .bt.bt-shapeshift::before { content: "\E2A0"; font-family: "shapeshift"; } .bt.bt-shp::before { content: "\E2A1"; font-family: "shp"; } .bt.bt-jew::before { content: "\E2A2"; font-family: "jew"; } .bt.bt-shift::before { content: "\E2A3"; font-family: "shift"; } .bt.bt-sc::before { content: "\E2A4"; font-family: "sc"; } .bt.bt-sig::before { content: "\E2A5"; font-family: "sig"; } .bt.bt-sgn::before { content: "\E2A6"; font-family: "sgn"; } .bt.bt-sto::before { content: "\E2A7"; font-family: "sto"; } .bt.bt-sngls::before { content: "\E2A8"; font-family: "sngls"; } .bt.bt-skc::before { content: "\E2A9"; font-family: "skc"; } .bt.bt-skrill::before { content: "\E2AA"; font-family: "skrill"; } .bt.bt-sky::before { content: "\E2AB"; font-family: "sky"; } .bt.bt-smart::before { content: "\E2AC"; font-family: "smart"; } .bt.bt-slt::before { content: "\E2AD"; font-family: "slt"; } .bt.bt-snov::before { content: "\E2AE"; font-family: "snov"; } .bt.bt-soar::before { content: "\E2AF"; font-family: "soar"; } .bt.bt-som::before { content: "\E2B0"; font-family: "som"; } .bt.bt-slr::before { content: "\E2B1"; font-family: "slr"; } .bt.bt-xlr::before { content: "\E2B2"; font-family: "xlr"; } .bt.bt-sphtx::before { content: "\E2B3"; font-family: "sphtx"; } .bt.bt-krw::before { content: "\E2B4"; font-family: "krw"; } .bt.bt-spc::before { content: "\E2B5"; font-family: "spc"; } .bt.bt-spank::before { content: "\E2B6"; font-family: "spank"; } .bt.bt-scdt::before { content: "\E2B7"; font-family: "scdt"; } .bt.bt-xspec::before { content: "\E2B8"; font-family: "xspec"; } .bt.bt-sms::before { content: "\E2B9"; font-family: "sms"; } .bt.bt-spf::before { content: "\E2BA"; font-family: "spf"; } .bt.bt-squareup::before { content: "\E2BB"; font-family: "squareup"; } .bt.bt-kst::before { content: "\E2BC"; font-family: "kst"; } .bt.bt-start::before { content: "\E2BD"; font-family: "start"; } .bt.bt-stac::before { content: "\E2BE"; font-family: "stac"; } .bt.bt-snt::before { content: "\E2BF"; font-family: "snt"; } .bt.bt-xst::before { content: "\E2C0"; font-family: "xst"; } .bt.bt-steem::before { content: "\E2C1"; font-family: "steem"; } .bt.bt-xlm::before { content: "\E2C2"; font-family: "xlm"; } .bt.bt-slg::before { content: "\E2C3"; font-family: "slg"; } .bt.bt-stq::before { content: "\E2C4"; font-family: "stq"; } .bt.bt-storj::before { content: "\E2C5"; font-family: "storj"; } .bt.bt-sjcx::before { content: "\E2C6"; font-family: "sjcx"; } .bt.bt-storm::before { content: "\E2C7"; font-family: "storm"; } .bt.bt-stx::before { content: "\E2C8"; font-family: "stx"; } .bt.bt-strat::before { content: "\E2C9"; font-family: "strat"; } .bt.bt-data::before { content: "\E2CA"; font-family: "data"; } .bt.bt-sub::before { content: "\E2CB"; font-family: "sub"; } .bt.bt-sgr::before { content: "\E2CC"; font-family: "sgr"; } .bt.bt-sumo::before { content: "\E2CD"; font-family: "sumo"; } .bt.bt-snc::before { content: "\E2CE"; font-family: "snc"; } .bt.bt-unity::before { content: "\E2CF"; font-family: "unity"; } .bt.bt-swt::before { content: "\E2D0"; font-family: "swt"; } .bt.bt-swm::before { content: "\E2D1"; font-family: "swm"; } .bt.bt-swisspost::before { content: "\E2D2"; font-family: "swisspost"; } .bt.bt-swh::before { content: "\E2D3"; font-family: "swh"; } .bt.bt-sync::before { content: "\E2D4"; font-family: "sync"; } .bt.bt-mfg::before { content: "\E2D5"; font-family: "mfg"; } .bt.bt-amp::before { content: "\E2D6"; font-family: "amp"; } .bt.bt-snrg::before { content: "\E2D7"; font-family: "snrg"; } .bt.bt-sys::before { content: "\E2D8"; font-family: "sys"; } .bt.bt-tidex::before { content: "\E2D9"; font-family: "tidex"; } .bt.bt-tie::before { content: "\E2DA"; font-family: "tie"; } .bt.bt-tntpost::before { content: "\E2DB"; font-family: "tntpost"; } .bt.bt-toll::before { content: "\E2DC"; font-family: "toll"; } .bt.bt-trezor::before { content: "\E2DD"; font-family: "trezor"; } .bt.bt-trx::before { content: "\E2DE"; font-family: "trx"; } .bt.bt-taas::before { content: "\E2DF"; font-family: "taas"; } .bt.bt-tel::before { content: "\E2E0"; font-family: "tel"; } .bt.bt-pay::before { content: "\E2E1"; font-family: "pay"; } .bt.bt-trc::before { content: "\E2E2"; font-family: "trc"; } .bt.bt-usdt::before { content: "\E2E3"; font-family: "usdt"; } .bt.bt-xtz::before { content: "\E2E4"; font-family: "xtz"; } .bt.bt-dao::before { content: "\E2E5"; font-family: "dao"; } .bt.bt-rocktrading::before { content: "\E2E6"; font-family: "rocktrading"; } .bt.bt-theta::before { content: "\E2E7"; font-family: "theta"; } .bt.bt-tnt::before { content: "\E2E8"; font-family: "tnt"; } .bt.bt-tig::before { content: "\E2E9"; font-family: "tig"; } .bt.bt-tnb::before { content: "\E2EA"; font-family: "tnb"; } .bt.bt-tbar::before { content: "\E2EB"; font-family: "tbar"; } .bt.bt-bar::before { content: "\E2EC"; font-family: "bar"; } .bt.bt-token::before { content: "\E2ED"; font-family: "token"; } .bt.bt-tkn::before { content: "\E2EE"; font-family: "tkn"; } .bt.bt-lyl::before { content: "\E2EF"; font-family: "lyl"; } .bt.bt-tpay::before { content: "\E2F0"; font-family: "tpay"; } .bt.bt-tbx::before { content: "\E2F1"; font-family: "tbx"; } .bt.bt-tomo::before { content: "\E2F2"; font-family: "tomo"; } .bt.bt-trct::before { content: "\E2F3"; font-family: "trct"; } .bt.bt-tradesatoshi::before { content: "\E2F4"; font-family: "tradesatoshi"; } .bt.bt-tio::before { content: "\E2F5"; font-family: "tio"; } .bt.bt-tradingview::before { content: "\E2F6"; font-family: "tradingview"; } .bt.bt-tx::before { content: "\E2F7"; font-family: "tx"; } .bt.bt-trig::before { content: "\E2F8"; font-family: "trig"; } .bt.bt-tnc::before { content: "\E2F9"; font-family: "tnc"; } .bt.bt-true::before { content: "\E2FA"; font-family: "true"; } .bt.bt-tusd::before { content: "\E2FB"; font-family: "tusd"; } .bt.bt-try::before { content: "\E2FC"; font-family: "try"; } .bt.bt-ucash::before { content: "\E2FD"; font-family: "ucash"; } .bt.bt-ups::before { content: "\E2FE"; font-family: "ups"; } .bt.bt-usd::before { content: "\E2FF"; font-family: "usd"; } .bt.bt-utk::before { content: "\E300"; font-family: "utk"; } .bt.bt-ubq::before { content: "\E301"; font-family: "ubq"; } .bt.bt-ukg::before { content: "\E302"; font-family: "ukg"; } .bt.bt-ubank::before { content: "\E303"; font-family: "ubank"; } .bt.bt-uboi::before { content: "\E304"; font-family: "uboi"; } .bt.bt-unionpay::before { content: "\E305"; font-family: "unionpay"; } .bt.bt-usps::before { content: "\E306"; font-family: "usps"; } .bt.bt-uno::before { content: "\E307"; font-family: "uno"; } .bt.bt-up::before { content: "\E308"; font-family: "up"; } .bt.bt-upcoin::before { content: "\E309"; font-family: "upcoin"; } .bt.bt-vpay::before { content: "\E30A"; font-family: "vpay"; } .bt.bt-vibe::before { content: "\E30B"; font-family: "vibe"; } .bt.bt-visa::before { content: "\E30C"; font-family: "visa"; } .bt.bt-vash::before { content: "\E30D"; font-family: "vash"; } .bt.bt-vlc::before { content: "\E30E"; font-family: "vlc"; } .bt.bt-vnl::before { content: "\E30F"; font-family: "vnl"; } .bt.bt-vaultoro::before { content: "\E310"; font-family: "vaultoro"; } .bt.bt-ven::before { content: "\E311"; font-family: "ven"; } .bt.bt-xvg::before { content: "\E312"; font-family: "xvg"; } .bt.bt-vrc::before { content: "\E313"; font-family: "vrc"; } .bt.bt-verisign::before { content: "\E314"; font-family: "verisign"; } .bt.bt-cred::before { content: "\E315"; font-family: "cred"; } .bt.bt-veri::before { content: "\E316"; font-family: "veri"; } .bt.bt-vtc::before { content: "\E317"; font-family: "vtc"; } .bt.bt-via::before { content: "\E318"; font-family: "via"; } .bt.bt-vib::before { content: "\E319"; font-family: "vib"; } .bt.bt-vit::before { content: "\E31A"; font-family: "vit"; } .bt.bt-vior::before { content: "\E31B"; font-family: "vior"; } .bt.bt-viu::before { content: "\E31C"; font-family: "viu"; } .bt.bt-voise::before { content: "\E31D"; font-family: "voise"; } .bt.bt-vtn::before { content: "\E31E"; font-family: "vtn"; } .bt.bt-vox::before { content: "\E31F"; font-family: "vox"; } .bt.bt-vsx::before { content: "\E320"; font-family: "vsx"; } .bt.bt-wax::before { content: "\E321"; font-family: "wax"; } .bt.bt-weth::before { content: "\E322"; font-family: "weth"; } .bt.bt-wabi::before { content: "\E323"; font-family: "wabi"; } .bt.bt-wgr::before { content: "\E324"; font-family: "wgr"; } .bt.bt-wtc::before { content: "\E325"; font-family: "wtc"; } .bt.bt-wan::before { content: "\E326"; font-family: "wan"; } .bt.bt-wct::before { content: "\E327"; font-family: "wct"; } .bt.bt-waves::before { content: "\E328"; font-family: "waves"; } .bt.bt-wechatpay::before { content: "\E329"; font-family: "wechatpay"; } .bt.bt-wpr::before { content: "\E32A"; font-family: "wpr"; } .bt.bt-trst::before { content: "\E32B"; font-family: "trst"; } .bt.bt-webmoney::before { content: "\E32C"; font-family: "webmoney"; } .bt.bt-wings::before { content: "\E32D"; font-family: "wings"; } .bt.bt-wrc::before { content: "\E32E"; font-family: "wrc"; } .bt.bt-xpa::before { content: "\E32F"; font-family: "xpa"; } .bt.bt-xpl::before { content: "\E330"; font-family: "xpl"; } .bt.bt-xby::before { content: "\E331"; font-family: "xby"; } .bt.bt-xaur::before { content: "\E332"; font-family: "xaur"; } .bt.bt-xnn::before { content: "\E333"; font-family: "xnn"; } .bt.bt-yoyow::before { content: "\E334"; font-family: "yoyow"; } .bt.bt-yandex::before { content: "\E335"; font-family: "yandex"; } .bt.bt-ybc::before { content: "\E336"; font-family: "ybc"; } .bt.bt-yobit::before { content: "\E337"; font-family: "yobit"; } .bt.bt-zcl::before { content: "\E338"; font-family: "zcl"; } .bt.bt-xzc::before { content: "\E339"; font-family: "xzc"; } .bt.bt-zec::before { content: "\E33A"; font-family: "zec"; } .bt.bt-zpt::before { content: "\E33B"; font-family: "zpt"; } .bt.bt-zeit::before { content: "\E33C"; font-family: "zeit"; } .bt.bt-zen::before { content: "\E33D"; font-family: "zen"; } .bt.bt-zrx::before { content: "\E33E"; font-family: "zrx"; } .bt.bt-zsc::before { content: "\E33F"; font-family: "zsc"; } .bt.bt-zil::before { content: "\E340"; font-family: "zil"; } .bt.bt-zoi::before { content: "\E341"; font-family: "zoi"; } .bt.bt-zrc::before { content: "\E342"; font-family: "zrc"; } .bt.bt-axp::before { content: "\E343"; font-family: "axp"; } .bt.bt-adt::before { content: "\E344"; font-family: "adt"; } .bt.bt-elf::before { content: "\E345"; font-family: "elf"; } .bt.bt-bitcny::before { content: "\E346"; font-family: "bitcny"; } .bt.bt-coinsecure::before { content: "\E347"; font-family: "coinsecure"; } .bt.bt-coinw::before { content: "\E348"; font-family: "coinw"; } .bt.bt-dnt::before { content: "\E349"; font-family: "dnt"; } .bt.bt-ebtc::before { content: "\E34A"; font-family: "ebtc"; } .bt.bt-egold::before { content: "\E34B"; font-family: "egold"; } .bt.bt-ideal::before { content: "\E34C"; font-family: "ideal"; } .bt.bt-rlc::before { content: "\E34D"; font-family: "rlc"; } .bt.bt-ixt::before { content: "\E34E"; font-family: "ixt"; } .bt.bt-mrc::before { content: "\E34F"; font-family: "mrc"; } .bt.bt-stripe::before { content: "\E350"; font-family: "stripe"; } @font-face { font-family: "1wo"; src: url("glyphs/woff2/91e6882a.woff2") format("woff2"), url("glyphs/woff/91e6882a.woff") format("woff"), url("glyphs/ttf/91e6882a.ttf") format("truetype"); unicode-range: U+E000; } @font-face { font-family: "abnamro"; src: url("glyphs/woff2/67fdb825.woff2") format("woff2"), url("glyphs/woff/67fdb825.woff") format("woff"), url("glyphs/ttf/67fdb825.ttf") format("truetype"); unicode-range: U+E001; } @font-face { font-family: "acchain"; src: url("glyphs/woff2/cba0a9ca.woff2") format("woff2"), url("glyphs/woff/cba0a9ca.woff") format("woff"), url("glyphs/ttf/cba0a9ca.ttf") format("truetype"); unicode-range: U+E002; } @font-face { font-family: "xai"; src: url("glyphs/woff2/1817efca.woff2") format("woff2"), url("glyphs/woff/1817efca.woff") format("woff"), url("glyphs/ttf/1817efca.ttf") format("truetype"); unicode-range: U+E003; } @font-face { font-family: "aka"; src: url("glyphs/woff2/393bcee2.woff2") format("woff2"), url("glyphs/woff/393bcee2.woff") format("woff"), url("glyphs/ttf/393bcee2.ttf") format("truetype"); unicode-range: U+E004; } @font-face { font-family: "alis"; src: url("glyphs/woff2/2b4b2b6f.woff2") format("woff2"), url("glyphs/woff/2b4b2b6f.woff") format("woff"), url("glyphs/ttf/2b4b2b6f.ttf") format("truetype"); unicode-range: U+E005; } @font-face { font-family: "amis"; src: url("glyphs/woff2/a0e42042.woff2") format("woff2"), url("glyphs/woff/a0e42042.woff") format("woff"), url("glyphs/ttf/a0e42042.ttf") format("truetype"); unicode-range: U+E006; } @font-face { font-family: "arch"; src: url("glyphs/woff2/129ec899.woff2") format("woff2"), url("glyphs/woff/129ec899.woff") format("woff"), url("glyphs/ttf/129ec899.ttf") format("truetype"); unicode-range: U+E007; } @font-face { font-family: "atb"; src: url("glyphs/woff2/179f13d3.woff2") format("woff2"), url("glyphs/woff/179f13d3.woff") format("woff"), url("glyphs/ttf/179f13d3.ttf") format("truetype"); unicode-range: U+E008; } @font-face { font-family: "atm"; src: url("glyphs/woff2/cd4d8f7a.woff2") format("woff2"), url("glyphs/woff/cd4d8f7a.woff") format("woff"), url("glyphs/ttf/cd4d8f7a.ttf") format("truetype"); unicode-range: U+E009; } @font-face { font-family: "awr"; src: url("glyphs/woff2/5f1cfaf4.woff2") format("woff2"), url("glyphs/woff/5f1cfaf4.woff") format("woff"), url("glyphs/ttf/5f1cfaf4.ttf") format("truetype"); unicode-range: U+E00A; } @font-face { font-family: "acc"; src: url("glyphs/woff2/a0a347f1.woff2") format("woff2"), url("glyphs/woff/a0a347f1.woff") format("woff"), url("glyphs/ttf/a0a347f1.ttf") format("truetype"); unicode-range: U+E00B; } @font-face { font-family: "adx"; src: url("glyphs/woff2/5685167b.woff2") format("woff2"), url("glyphs/woff/5685167b.woff") format("woff"), url("glyphs/ttf/5685167b.ttf") format("truetype"); unicode-range: U+E00C; } @font-face { font-family: "adh"; src: url("glyphs/woff2/ed5cf55c.woff2") format("woff2"), url("glyphs/woff/ed5cf55c.woff") format("woff"), url("glyphs/ttf/ed5cf55c.ttf") format("truetype"); unicode-range: U+E00D; } @font-face { font-family: "adl"; src: url("glyphs/woff2/3b5ff71f.woff2") format("woff2"), url("glyphs/woff/3b5ff71f.woff") format("woff"), url("glyphs/ttf/3b5ff71f.ttf") format("truetype"); unicode-range: U+E00E; } @font-face { font-family: "aib"; src: url("glyphs/woff2/70ce9c46.woff2") format("woff2"), url("glyphs/woff/70ce9c46.woff") format("woff"), url("glyphs/ttf/70ce9c46.ttf") format("truetype"); unicode-range: U+E00F; } @font-face { font-family: "aeon"; src: url("glyphs/woff2/ecd94f38.woff2") format("woff2"), url("glyphs/woff/ecd94f38.woff") format("woff"), url("glyphs/ttf/ecd94f38.ttf") format("truetype"); unicode-range: U+E010; } @font-face { font-family: "arn"; src: url("glyphs/woff2/4fd52c87.woff2") format("woff2"), url("glyphs/woff/4fd52c87.woff") format("woff"), url("glyphs/ttf/4fd52c87.ttf") format("truetype"); unicode-range: U+E011; } @font-face { font-family: "ae"; src: url("glyphs/woff2/0a01e6d0.woff2") format("woff2"), url("glyphs/woff/0a01e6d0.woff") format("woff"), url("glyphs/ttf/0a01e6d0.ttf") format("truetype"); unicode-range: U+E012; } @font-face { font-family: "agrs"; src: url("glyphs/woff2/df82f44f.woff2") format("woff2"), url("glyphs/woff/df82f44f.woff") format("woff"), url("glyphs/ttf/df82f44f.ttf") format("truetype"); unicode-range: U+E013; } @font-face { font-family: "dlt"; src: url("glyphs/woff2/6e131b1a.woff2") format("woff2"), url("glyphs/woff/6e131b1a.woff") format("woff"), url("glyphs/ttf/6e131b1a.ttf") format("truetype"); unicode-range: U+E014; } @font-face { font-family: "aid"; src: url("glyphs/woff2/da29dda0.woff2") format("woff2"), url("glyphs/woff/da29dda0.woff") format("woff"), url("glyphs/ttf/da29dda0.ttf") format("truetype"); unicode-range: U+E015; } @font-face { font-family: "aix"; src: url("glyphs/woff2/02d0c663.woff2") format("woff2"), url("glyphs/woff/02d0c663.woff") format("woff"), url("glyphs/ttf/02d0c663.ttf") format("truetype"); unicode-range: U+E016; } @font-face { font-family: "aion"; src: url("glyphs/woff2/d4ae9299.woff2") format("woff2"), url("glyphs/woff/d4ae9299.woff") format("woff"), url("glyphs/ttf/d4ae9299.ttf") format("truetype"); unicode-range: U+E017; } @font-face { font-family: "ast"; src: url("glyphs/woff2/cce1425f.woff2") format("woff2"), url("glyphs/woff/cce1425f.woff") format("woff"), url("glyphs/ttf/cce1425f.ttf") format("truetype"); unicode-range: U+E018; } @font-face { font-family: "air"; src: url("glyphs/woff2/d2800ad0.woff2") format("woff2"), url("glyphs/woff/d2800ad0.woff") format("woff"), url("glyphs/ttf/d2800ad0.ttf") format("truetype"); unicode-range: U+E019; } @font-face { font-family: "alipay"; src: url("glyphs/woff2/9730509c.woff2") format("woff2"), url("glyphs/woff/9730509c.woff") format("woff"), url("glyphs/ttf/9730509c.ttf") format("truetype"); unicode-range: U+E01A; } @font-face { font-family: "soc"; src: url("glyphs/woff2/3f357a26.woff2") format("woff2"), url("glyphs/woff/3f357a26.woff") format("woff"), url("glyphs/ttf/3f357a26.ttf") format("truetype"); unicode-range: U+E01B; } @font-face { font-family: "allcoin"; src: url("glyphs/woff2/41038137.woff2") format("woff2"), url("glyphs/woff/41038137.woff") format("woff"), url("glyphs/ttf/41038137.ttf") format("truetype"); unicode-range: U+E01C; } @font-face { font-family: "acat"; src: url("glyphs/woff2/01e07cf4.woff2") format("woff2"), url("glyphs/woff/01e07cf4.woff") format("woff"), url("glyphs/ttf/01e07cf4.ttf") format("truetype"); unicode-range: U+E01D; } @font-face { font-family: "amazon"; src: url("glyphs/woff2/2422dc89.woff2") format("woff2"), url("glyphs/woff/2422dc89.woff") format("woff"), url("glyphs/ttf/2422dc89.ttf") format("truetype"); unicode-range: U+E01E; } @font-face { font-family: "amb"; src: url("glyphs/woff2/1ca00690.woff2") format("woff2"), url("glyphs/woff/1ca00690.woff") format("woff"), url("glyphs/ttf/1ca00690.ttf") format("truetype"); unicode-range: U+E01F; } @font-face { font-family: "amex"; src: url("glyphs/woff2/370da5ae.woff2") format("woff2"), url("glyphs/woff/370da5ae.woff") format("woff"), url("glyphs/ttf/370da5ae.ttf") format("truetype"); unicode-range: U+E020; } @font-face { font-family: "avh"; src: url("glyphs/woff2/eaca633e.woff2") format("woff2"), url("glyphs/woff/eaca633e.woff") format("woff"), url("glyphs/ttf/eaca633e.ttf") format("truetype"); unicode-range: U+E021; } @font-face { font-family: "anc"; src: url("glyphs/woff2/325a5ac2.woff2") format("woff2"), url("glyphs/woff/325a5ac2.woff") format("woff"), url("glyphs/ttf/325a5ac2.ttf") format("truetype"); unicode-range: U+E022; } @font-face { font-family: "aph"; src: url("glyphs/woff2/c21fd5eb.woff2") format("woff2"), url("glyphs/woff/c21fd5eb.woff") format("woff"), url("glyphs/ttf/c21fd5eb.ttf") format("truetype"); unicode-range: U+E023; } @font-face { font-family: "appc"; src: url("glyphs/woff2/7c77a98a.woff2") format("woff2"), url("glyphs/woff/7c77a98a.woff") format("woff"), url("glyphs/ttf/7c77a98a.ttf") format("truetype"); unicode-range: U+E024; } @font-face { font-family: "applepay"; src: url("glyphs/woff2/d5e77211.woff2") format("woff2"), url("glyphs/woff/d5e77211.woff") format("woff"), url("glyphs/ttf/d5e77211.ttf") format("truetype"); unicode-range: U+E025; } @font-face { font-family: "ant"; src: url("glyphs/woff2/0a32e2fb.woff2") format("woff2"), url("glyphs/woff/0a32e2fb.woff") format("woff"), url("glyphs/ttf/0a32e2fb.ttf") format("truetype"); unicode-range: U+E026; } @font-face { font-family: "aramex"; src: url("glyphs/woff2/b166a7c6.woff2") format("woff2"), url("glyphs/woff/b166a7c6.woff") format("woff"), url("glyphs/ttf/b166a7c6.ttf") format("truetype"); unicode-range: U+E027; } @font-face { font-family: "ardr"; src: url("glyphs/woff2/d108850a.woff2") format("woff2"), url("glyphs/woff/d108850a.woff") format("woff"), url("glyphs/ttf/d108850a.ttf") format("truetype"); unicode-range: U+E028; } @font-face { font-family: "ari"; src: url("glyphs/woff2/beaff0e5.woff2") format("woff2"), url("glyphs/woff/beaff0e5.woff") format("woff"), url("glyphs/ttf/beaff0e5.ttf") format("truetype"); unicode-range: U+E029; } @font-face { font-family: "ark"; src: url("glyphs/woff2/ddff0b65.woff2") format("woff2"), url("glyphs/woff/ddff0b65.woff") format("woff"), url("glyphs/ttf/ddff0b65.ttf") format("truetype"); unicode-range: U+E02A; } @font-face { font-family: "xas"; src: url("glyphs/woff2/50f3c095.woff2") format("woff2"), url("glyphs/woff/50f3c095.woff") format("woff"), url("glyphs/ttf/50f3c095.ttf") format("truetype"); unicode-range: U+E02B; } @font-face { font-family: "adc"; src: url("glyphs/woff2/eb7c1720.woff2") format("woff2"), url("glyphs/woff/eb7c1720.woff") format("woff"), url("glyphs/ttf/eb7c1720.ttf") format("truetype"); unicode-range: U+E02C; } @font-face { font-family: "rep"; src: url("glyphs/woff2/e83034c6.woff2") format("woff2"), url("glyphs/woff/e83034c6.woff") format("woff"), url("glyphs/ttf/e83034c6.ttf") format("truetype"); unicode-range: U+E02D; } @font-face { font-family: "aura"; src: url("glyphs/woff2/a9daf068.woff2") format("woff2"), url("glyphs/woff/a9daf068.woff") format("woff"), url("glyphs/ttf/a9daf068.ttf") format("truetype"); unicode-range: U+E02E; } @font-face { font-family: "aur"; src: url("glyphs/woff2/cf6d6f30.woff2") format("woff2"), url("glyphs/woff/cf6d6f30.woff") format("woff"), url("glyphs/ttf/cf6d6f30.ttf") format("truetype"); unicode-range: U+E02F; } @font-face { font-family: "avt"; src: url("glyphs/woff2/b53f50d1.woff2") format("woff2"), url("glyphs/woff/b53f50d1.woff") format("woff"), url("glyphs/ttf/b53f50d1.ttf") format("truetype"); unicode-range: U+E030; } @font-face { font-family: "b2b"; src: url("glyphs/woff2/f8c78a1d.woff2") format("woff2"), url("glyphs/woff/f8c78a1d.woff") format("woff"), url("glyphs/ttf/f8c78a1d.ttf") format("truetype"); unicode-range: U+E031; } @font-face { font-family: "kb3"; src: url("glyphs/woff2/e4ec2dc2.woff2") format("woff2"), url("glyphs/woff/e4ec2dc2.woff") format("woff"), url("glyphs/ttf/e4ec2dc2.ttf") format("truetype"); unicode-range: U+E032; } @font-face { font-family: "bax"; src: url("glyphs/woff2/9bb36328.woff2") format("woff2"), url("glyphs/woff/9bb36328.woff") format("woff"), url("glyphs/ttf/9bb36328.ttf") format("truetype"); unicode-range: U+E033; } @font-face { font-family: "bcap"; src: url("glyphs/woff2/d0342038.woff2") format("woff2"), url("glyphs/woff/d0342038.woff") format("woff"), url("glyphs/ttf/d0342038.ttf") format("truetype"); unicode-range: U+E034; } @font-face { font-family: "bee"; src: url("glyphs/woff2/d129485b.woff2") format("woff2"), url("glyphs/woff/d129485b.woff") format("woff"), url("glyphs/ttf/d129485b.ttf") format("truetype"); unicode-range: U+E035; } @font-face { font-family: "bitso"; src: url("glyphs/woff2/11c88fa3.woff2") format("woff2"), url("glyphs/woff/11c88fa3.woff") format("woff"), url("glyphs/ttf/11c88fa3.ttf") format("truetype"); unicode-range: U+E036; } @font-face { font-family: "vee"; src: url("glyphs/woff2/dcd7c346.woff2") format("woff2"), url("glyphs/woff/dcd7c346.woff") format("woff"), url("glyphs/ttf/dcd7c346.ttf") format("truetype"); unicode-range: U+E037; } @font-face { font-family: "blue"; src: url("glyphs/woff2/b0ad53ea.woff2") format("woff2"), url("glyphs/woff/b0ad53ea.woff") format("woff"), url("glyphs/ttf/b0ad53ea.ttf") format("truetype"); unicode-range: U+E038; } @font-face { font-family: "bnp"; src: url("glyphs/woff2/7bd1e500.woff2") format("woff2"), url("glyphs/woff/7bd1e500.woff") format("woff"), url("glyphs/ttf/7bd1e500.ttf") format("truetype"); unicode-range: U+E039; } @font-face { font-family: "bos"; src: url("glyphs/woff2/73363ff7.woff2") format("woff2"), url("glyphs/woff/73363ff7.woff") format("woff"), url("glyphs/ttf/73363ff7.ttf") format("truetype"); unicode-range: U+E03A; } @font-face { font-family: "broker"; src: url("glyphs/woff2/f952c473.woff2") format("woff2"), url("glyphs/woff/f952c473.woff") format("woff"), url("glyphs/ttf/f952c473.ttf") format("truetype"); unicode-range: U+E03B; } @font-face { font-family: "btcalpha"; src: url("glyphs/woff2/4eb499b8.woff2") format("woff2"), url("glyphs/woff/4eb499b8.woff") format("woff"), url("glyphs/ttf/4eb499b8.ttf") format("truetype"); unicode-range: U+E03C; } @font-face { font-family: "btcc"; src: url("glyphs/woff2/31234fc4.woff2") format("woff2"), url("glyphs/woff/31234fc4.woff") format("woff"), url("glyphs/ttf/31234fc4.ttf") format("truetype"); unicode-range: U+E03D; } @font-face { font-family: "btcn"; src: url("glyphs/woff2/ad6d5849.woff2") format("woff2"), url("glyphs/woff/ad6d5849.woff") format("woff"), url("glyphs/ttf/ad6d5849.ttf") format("truetype"); unicode-range: U+E03E; } @font-face { font-family: "banca"; src: url("glyphs/woff2/7e2c66dd.woff2") format("woff2"), url("glyphs/woff/7e2c66dd.woff") format("woff"), url("glyphs/ttf/7e2c66dd.ttf") format("truetype"); unicode-range: U+E03F; } @font-face { font-family: "bsf"; src: url("glyphs/woff2/ec9c031f.woff2") format("woff2"), url("glyphs/woff/ec9c031f.woff") format("woff"), url("glyphs/ttf/ec9c031f.ttf") format("truetype"); unicode-range: U+E040; } @font-face { font-family: "bancomat"; src: url("glyphs/woff2/0d085f1c.woff2") format("woff2"), url("glyphs/woff/0d085f1c.woff") format("woff"), url("glyphs/ttf/0d085f1c.ttf") format("truetype"); unicode-range: U+E041; } @font-face { font-family: "bancomext"; src: url("glyphs/woff2/97ba67f1.woff2") format("woff2"), url("glyphs/woff/97ba67f1.woff") format("woff"), url("glyphs/ttf/97ba67f1.ttf") format("truetype"); unicode-range: U+E042; } @font-face { font-family: "bancontact"; src: url("glyphs/woff2/4a1c4041.woff2") format("woff2"), url("glyphs/woff/4a1c4041.woff") format("woff"), url("glyphs/ttf/4a1c4041.ttf") format("truetype"); unicode-range: U+E043; } @font-face { font-family: "bnt"; src: url("glyphs/woff2/9e3addab.woff2") format("woff2"), url("glyphs/woff/9e3addab.woff") format("woff"), url("glyphs/ttf/9e3addab.ttf") format("truetype"); unicode-range: U+E044; } @font-face { font-family: "bbos"; src: url("glyphs/woff2/eca1fd47.woff2") format("woff2"), url("glyphs/woff/eca1fd47.woff") format("woff"), url("glyphs/ttf/eca1fd47.ttf") format("truetype"); unicode-range: U+E045; } @font-face { font-family: "bca"; src: url("glyphs/woff2/47f8aa49.woff2") format("woff2"), url("glyphs/woff/47f8aa49.woff") format("woff"), url("glyphs/ttf/47f8aa49.ttf") format("truetype"); unicode-range: U+E046; } @font-face { font-family: "banktransfer"; src: url("glyphs/woff2/8c610c58.woff2") format("woff2"), url("glyphs/woff/8c610c58.woff") format("woff"), url("glyphs/ttf/8c610c58.ttf") format("truetype"); unicode-range: U+E047; } @font-face { font-family: "boa"; src: url("glyphs/woff2/69dbef10.woff2") format("woff2"), url("glyphs/woff/69dbef10.woff") format("woff"), url("glyphs/ttf/69dbef10.ttf") format("truetype"); unicode-range: U+E048; } @font-face { font-family: "boat"; src: url("glyphs/woff2/0ac058dd.woff2") format("woff2"), url("glyphs/woff/0ac058dd.woff") format("woff"), url("glyphs/ttf/0ac058dd.ttf") format("truetype"); unicode-range: U+E049; } @font-face { font-family: "bocs"; src: url("glyphs/woff2/3a530c59.woff2") format("woff2"), url("glyphs/woff/3a530c59.woff") format("woff"), url("glyphs/ttf/3a530c59.ttf") format("truetype"); unicode-range: U+E04A; } @font-face { font-family: "boh"; src: url("glyphs/woff2/94531f1b.woff2") format("woff2"), url("glyphs/woff/94531f1b.woff") format("woff"), url("glyphs/ttf/94531f1b.ttf") format("truetype"); unicode-range: U+E04B; } @font-face { font-family: "bplsk"; src: url("glyphs/woff2/32cb1e15.woff2") format("woff2"), url("glyphs/woff/32cb1e15.woff") format("woff"), url("glyphs/ttf/32cb1e15.ttf") format("truetype"); unicode-range: U+E04C; } @font-face { font-family: "bkx"; src: url("glyphs/woff2/7f4ff157.woff2") format("woff2"), url("glyphs/woff/7f4ff157.woff") format("woff"), url("glyphs/ttf/7f4ff157.ttf") format("truetype"); unicode-range: U+E04D; } @font-face { font-family: "bankomat"; src: url("glyphs/woff2/2b52c387.woff2") format("woff2"), url("glyphs/woff/2b52c387.woff") format("woff"), url("glyphs/ttf/2b52c387.ttf") format("truetype"); unicode-range: U+E04E; } @font-face { font-family: "banx"; src: url("glyphs/woff2/0ff7e3fd.woff2") format("woff2"), url("glyphs/woff/0ff7e3fd.woff") format("woff"), url("glyphs/ttf/0ff7e3fd.ttf") format("truetype"); unicode-range: U+E04F; } @font-face { font-family: "bacs"; src: url("glyphs/woff2/17a7a115.woff2") format("woff2"), url("glyphs/woff/17a7a115.woff") format("woff"), url("glyphs/ttf/17a7a115.ttf") format("truetype"); unicode-range: U+E050; } @font-face { font-family: "bat"; src: url("glyphs/woff2/a36d6959.woff2") format("woff2"), url("glyphs/woff/a36d6959.woff") format("woff"), url("glyphs/ttf/a36d6959.ttf") format("truetype"); unicode-range: U+E051; } @font-face { font-family: "bta"; src: url("glyphs/woff2/b5c50661.woff2") format("woff2"), url("glyphs/woff/b5c50661.woff") format("woff"), url("glyphs/ttf/b5c50661.ttf") format("truetype"); unicode-range: U+E052; } @font-face { font-family: "bitb"; src: url("glyphs/woff2/d702d8e9.woff2") format("woff2"), url("glyphs/woff/d702d8e9.woff") format("woff"), url("glyphs/ttf/d702d8e9.ttf") format("truetype"); unicode-range: U+E053; } @font-face { font-family: "xbts"; src: url("glyphs/woff2/dafd1a87.woff2") format("woff2"), url("glyphs/woff/dafd1a87.woff") format("woff"), url("glyphs/ttf/dafd1a87.ttf") format("truetype"); unicode-range: U+E054; } @font-face { font-family: "bbi"; src: url("glyphs/woff2/8b45a38b.woff2") format("woff2"), url("glyphs/woff/8b45a38b.woff") format("woff"), url("glyphs/ttf/8b45a38b.ttf") format("truetype"); unicode-range: U+E055; } @font-face { font-family: "bix"; src: url("glyphs/woff2/a4b9f2e5.woff2") format("woff2"), url("glyphs/woff/a4b9f2e5.woff") format("woff"), url("glyphs/ttf/a4b9f2e5.ttf") format("truetype"); unicode-range: U+E056; } @font-face { font-family: "binance"; src: url("glyphs/woff2/840f090f.woff2") format("woff2"), url("glyphs/woff/840f090f.woff") format("woff"), url("glyphs/ttf/840f090f.ttf") format("truetype"); unicode-range: U+E057; } @font-face { font-family: "bnb"; src: url("glyphs/woff2/565212e9.woff2") format("woff2"), url("glyphs/woff/565212e9.woff") format("woff"), url("glyphs/ttf/565212e9.ttf") format("truetype"); unicode-range: U+E058; } @font-face { font-family: "bio"; src: url("glyphs/woff2/c8e64019.woff2") format("woff2"), url("glyphs/woff/c8e64019.woff") format("woff"), url("glyphs/ttf/c8e64019.ttf") format("truetype"); unicode-range: U+E059; } @font-face { font-family: "btrn"; src: url("glyphs/woff2/fdc4299c.woff2") format("woff2"), url("glyphs/woff/fdc4299c.woff") format("woff"), url("glyphs/ttf/fdc4299c.ttf") format("truetype"); unicode-range: U+E05A; } @font-face { font-family: "bay"; src: url("glyphs/woff2/4a40a88a.woff2") format("woff2"), url("glyphs/woff/4a40a88a.woff") format("woff"), url("glyphs/ttf/4a40a88a.ttf") format("truetype"); unicode-range: U+E05B; } @font-face { font-family: "bck"; src: url("glyphs/woff2/c9797180.woff2") format("woff2"), url("glyphs/woff/c9797180.woff") format("woff"), url("glyphs/ttf/c9797180.ttf") format("truetype"); unicode-range: U+E05C; } @font-face { font-family: "cat"; src: url("glyphs/woff2/1b07c59f.woff2") format("woff2"), url("glyphs/woff/1b07c59f.woff") format("woff"), url("glyphs/ttf/1b07c59f.ttf") format("truetype"); unicode-range: U+E05D; } @font-face { font-family: "bcc"; src: url("glyphs/woff2/b2f15dff.woff2") format("woff2"), url("glyphs/woff/b2f15dff.woff") format("woff"), url("glyphs/ttf/b2f15dff.ttf") format("truetype"); unicode-range: U+E05E; } @font-face { font-family: "bdg"; src: url("glyphs/woff2/8021a1fc.woff2") format("woff2"), url("glyphs/woff/8021a1fc.woff") format("woff"), url("glyphs/ttf/8021a1fc.ttf") format("truetype"); unicode-range: U+E05F; } @font-face { font-family: "bitflyer"; src: url("glyphs/woff2/e24b4971.woff2") format("woff2"), url("glyphs/woff/e24b4971.woff") format("woff"), url("glyphs/ttf/e24b4971.ttf") format("truetype"); unicode-range: U+E060; } @font-face { font-family: "bsd"; src: url("glyphs/woff2/6961fbe3.woff2") format("woff2"), url("glyphs/woff/6961fbe3.woff") format("woff"), url("glyphs/ttf/6961fbe3.ttf") format("truetype"); unicode-range: U+E061; } @font-face { font-family: "bts"; src: url("glyphs/woff2/39b74aca.woff2") format("woff2"), url("glyphs/woff/39b74aca.woff") format("woff"), url("glyphs/ttf/39b74aca.ttf") format("truetype"); unicode-range: U+E062; } @font-face { font-family: "xbs"; src: url("glyphs/woff2/6690e503.woff2") format("woff2"), url("glyphs/woff/6690e503.woff") format("woff"), url("glyphs/ttf/6690e503.ttf") format("truetype"); unicode-range: U+E063; } @font-face { font-family: "bitx"; src: url("glyphs/woff2/700b8efe.woff2") format("woff2"), url("glyphs/woff/700b8efe.woff") format("woff"), url("glyphs/ttf/700b8efe.ttf") format("truetype"); unicode-range: U+E064; } @font-face { font-family: "btc"; src: url("glyphs/woff2/0cbb9805.woff2") format("woff2"), url("glyphs/woff/0cbb9805.woff") format("woff"), url("glyphs/ttf/0cbb9805.ttf") format("truetype"); unicode-range: U+E065; } @font-face { font-family: "bch"; src: url("glyphs/woff2/9605447e.woff2") format("woff2"), url("glyphs/woff/9605447e.woff") format("woff"), url("glyphs/ttf/9605447e.ttf") format("truetype"); unicode-range: U+E066; } @font-face { font-family: "bch2"; src: url("glyphs/woff2/463c644c.woff2") format("woff2"), url("glyphs/woff/463c644c.woff") format("woff"), url("glyphs/ttf/463c644c.ttf") format("truetype"); unicode-range: U+E067; } @font-face { font-family: "btg"; src: url("glyphs/woff2/576582f8.woff2") format("woff2"), url("glyphs/woff/576582f8.woff") format("woff"), url("glyphs/ttf/576582f8.ttf") format("truetype"); unicode-range: U+E068; } @font-face { font-family: "btcp"; src: url("glyphs/woff2/61fed715.woff2") format("woff2"), url("glyphs/woff/61fed715.woff") format("woff"), url("glyphs/ttf/61fed715.ttf") format("truetype"); unicode-range: U+E069; } @font-face { font-family: "btcd"; src: url("glyphs/woff2/13b487b1.woff2") format("woff2"), url("glyphs/woff/13b487b1.woff") format("woff"), url("glyphs/ttf/13b487b1.ttf") format("truetype"); unicode-range: U+E06A; } @font-face { font-family: "bcx"; src: url("glyphs/woff2/6a4f89c1.woff2") format("woff2"), url("glyphs/woff/6a4f89c1.woff") format("woff"), url("glyphs/ttf/6a4f89c1.ttf") format("truetype"); unicode-range: U+E06B; } @font-face { font-family: "btx"; src: url("glyphs/woff2/6a836616.woff2") format("woff2"), url("glyphs/woff/6a836616.woff") format("woff"), url("glyphs/ttf/6a836616.ttf") format("truetype"); unicode-range: U+E06C; } @font-face { font-family: "bdl"; src: url("glyphs/woff2/86d4d2fb.woff2") format("woff2"), url("glyphs/woff/86d4d2fb.woff") format("woff"), url("glyphs/ttf/86d4d2fb.ttf") format("truetype"); unicode-range: U+E06D; } @font-face { font-family: "bitfinex"; src: url("glyphs/woff2/7345156e.woff2") format("woff2"), url("glyphs/woff/7345156e.woff") format("woff"), url("glyphs/ttf/7345156e.ttf") format("truetype"); unicode-range: U+E06E; } @font-face { font-family: "bithumb"; src: url("glyphs/woff2/3abbb79a.woff2") format("woff2"), url("glyphs/woff/3abbb79a.woff") format("woff"), url("glyphs/ttf/3abbb79a.ttf") format("truetype"); unicode-range: U+E06F; } @font-face { font-family: "bt"; src: url("glyphs/woff2/84aca33c.woff2") format("woff2"), url("glyphs/woff/84aca33c.woff") format("woff"), url("glyphs/ttf/84aca33c.ttf") format("truetype"); unicode-range: U+E070; } @font-face { font-family: "brokenchain"; src: url("glyphs/woff2/f38f3a94.woff2") format("woff2"), url("glyphs/woff/f38f3a94.woff") format("woff"), url("glyphs/ttf/f38f3a94.ttf") format("truetype"); unicode-range: U+E071; } @font-face { font-family: "card"; src: url("glyphs/woff2/dda67aa8.woff2") format("woff2"), url("glyphs/woff/dda67aa8.woff") format("woff"), url("glyphs/ttf/dda67aa8.ttf") format("truetype"); unicode-range: U+E072; } @font-face { font-family: "card1"; src: url("glyphs/woff2/b29ecf6c.woff2") format("woff2"), url("glyphs/woff/b29ecf6c.woff") format("woff"), url("glyphs/ttf/b29ecf6c.ttf") format("truetype"); unicode-range: U+E073; } @font-face { font-family: "card2"; src: url("glyphs/woff2/45a8e7e4.woff2") format("woff2"), url("glyphs/woff/45a8e7e4.woff") format("woff"), url("glyphs/ttf/45a8e7e4.ttf") format("truetype"); unicode-range: U+E074; } @font-face { font-family: "certificate"; src: url("glyphs/woff2/ec5a8b64.woff2") format("woff2"), url("glyphs/woff/ec5a8b64.woff") format("woff"), url("glyphs/ttf/ec5a8b64.ttf") format("truetype"); unicode-range: U+E075; } @font-face { font-family: "certificateo"; src: url("glyphs/woff2/c17f2a95.woff2") format("woff2"), url("glyphs/woff/c17f2a95.woff") format("woff"), url("glyphs/ttf/c17f2a95.ttf") format("truetype"); unicode-range: U+E076; } @font-face { font-family: "circle"; src: url("glyphs/woff2/c1538030.woff2") format("woff2"), url("glyphs/woff/c1538030.woff") format("woff"), url("glyphs/ttf/c1538030.ttf") format("truetype"); unicode-range: U+E077; } @font-face { font-family: "circleo"; src: url("glyphs/woff2/ec62219b.woff2") format("woff2"), url("glyphs/woff/ec62219b.woff") format("woff"), url("glyphs/ttf/ec62219b.ttf") format("truetype"); unicode-range: U+E078; } @font-face { font-family: "loader"; src: url("glyphs/woff2/bd81a851.woff2") format("woff2"), url("glyphs/woff/bd81a851.woff") format("woff"), url("glyphs/ttf/bd81a851.ttf") format("truetype"); unicode-range: U+E079; } @font-face { font-family: "noimage"; src: url("glyphs/woff2/d43f6100.woff2") format("woff2"), url("glyphs/woff/d43f6100.woff") format("woff"), url("glyphs/ttf/d43f6100.ttf") format("truetype"); unicode-range: U+E07A; } @font-face { font-family: "question"; src: url("glyphs/woff2/5b5bda30.woff2") format("woff2"), url("glyphs/woff/5b5bda30.woff") format("woff"), url("glyphs/ttf/5b5bda30.ttf") format("truetype"); unicode-range: U+E07B; } @font-face { font-family: "shield"; src: url("glyphs/woff2/51a7c9cb.woff2") format("woff2"), url("glyphs/woff/51a7c9cb.woff") format("woff"), url("glyphs/ttf/51a7c9cb.ttf") format("truetype"); unicode-range: U+E07C; } @font-face { font-family: "shieldo"; src: url("glyphs/woff2/23b476b4.woff2") format("woff2"), url("glyphs/woff/23b476b4.woff") format("woff"), url("glyphs/ttf/23b476b4.ttf") format("truetype"); unicode-range: U+E07D; } @font-face { font-family: "square"; src: url("glyphs/woff2/cbac8aaa.woff2") format("woff2"), url("glyphs/woff/cbac8aaa.woff") format("woff"), url("glyphs/ttf/cbac8aaa.ttf") format("truetype"); unicode-range: U+E07E; } @font-face { font-family: "square1"; src: url("glyphs/woff2/8377e39a.woff2") format("woff2"), url("glyphs/woff/8377e39a.woff") format("woff"), url("glyphs/ttf/8377e39a.ttf") format("truetype"); unicode-range: U+E07F; } @font-face { font-family: "square2"; src: url("glyphs/woff2/8a52dabb.woff2") format("woff2"), url("glyphs/woff/8a52dabb.woff") format("woff"), url("glyphs/ttf/8a52dabb.ttf") format("truetype"); unicode-range: U+E080; } @font-face { font-family: "squareo"; src: url("glyphs/woff2/f3b8c582.woff2") format("woff2"), url("glyphs/woff/f3b8c582.woff") format("woff"), url("glyphs/ttf/f3b8c582.ttf") format("truetype"); unicode-range: U+E081; } @font-face { font-family: "star"; src: url("glyphs/woff2/da46da57.woff2") format("woff2"), url("glyphs/woff/da46da57.woff") format("woff"), url("glyphs/ttf/da46da57.ttf") format("truetype"); unicode-range: U+E082; } @font-face { font-family: "staro"; src: url("glyphs/woff2/6435b8b4.woff2") format("woff2"), url("glyphs/woff/6435b8b4.woff") format("woff"), url("glyphs/ttf/6435b8b4.ttf") format("truetype"); unicode-range: U+E083; } @font-face { font-family: "triangle"; src: url("glyphs/woff2/edba7c75.woff2") format("woff2"), url("glyphs/woff/edba7c75.woff") format("woff"), url("glyphs/ttf/edba7c75.ttf") format("truetype"); unicode-range: U+E084; } @font-face { font-family: "triangleo"; src: url("glyphs/woff2/871f2951.woff2") format("woff2"), url("glyphs/woff/871f2951.woff") format("woff"), url("glyphs/ttf/871f2951.ttf") format("truetype"); unicode-range: U+E085; } @font-face { font-family: "bitpanda"; src: url("glyphs/woff2/a22847ed.woff2") format("woff2"), url("glyphs/woff/a22847ed.woff") format("woff"), url("glyphs/ttf/a22847ed.ttf") format("truetype"); unicode-range: U+E086; } @font-face { font-family: "bitpay"; src: url("glyphs/woff2/323a4cec.woff2") format("woff2"), url("glyphs/woff/323a4cec.woff") format("woff"), url("glyphs/ttf/323a4cec.ttf") format("truetype"); unicode-range: U+E087; } @font-face { font-family: "bq"; src: url("glyphs/woff2/95114a7a.woff2") format("woff2"), url("glyphs/woff/95114a7a.woff") format("woff"), url("glyphs/ttf/95114a7a.ttf") format("truetype"); unicode-range: U+E088; } @font-face { font-family: "bitstamp"; src: url("glyphs/woff2/e55176f2.woff2") format("woff2"), url("glyphs/woff/e55176f2.woff") format("woff"), url("glyphs/ttf/e55176f2.ttf") format("truetype"); unicode-range: U+E089; } @font-face { font-family: "swift"; src: url("glyphs/woff2/2a4ae11d.woff2") format("woff2"), url("glyphs/woff/2a4ae11d.woff") format("woff"), url("glyphs/ttf/2a4ae11d.ttf") format("truetype"); unicode-range: U+E08A; } @font-face { font-family: "bittrex"; src: url("glyphs/woff2/385855c8.woff2") format("woff2"), url("glyphs/woff/385855c8.woff") format("woff"), url("glyphs/ttf/385855c8.ttf") format("truetype"); unicode-range: U+E08B; } @font-face { font-family: "bc"; src: url("glyphs/woff2/d219fd91.woff2") format("woff2"), url("glyphs/woff/d219fd91.woff") format("woff"), url("glyphs/ttf/d219fd91.ttf") format("truetype"); unicode-range: U+E08C; } @font-face { font-family: "bmc"; src: url("glyphs/woff2/2d5cb25e.woff2") format("woff2"), url("glyphs/woff/2d5cb25e.woff") format("woff"), url("glyphs/ttf/2d5cb25e.ttf") format("truetype"); unicode-range: U+E08D; } @font-face { font-family: "xbp"; src: url("glyphs/woff2/d4a96716.woff2") format("woff2"), url("glyphs/woff/d4a96716.woff") format("woff"), url("glyphs/ttf/d4a96716.ttf") format("truetype"); unicode-range: U+E08E; } @font-face { font-family: "bcpt"; src: url("glyphs/woff2/ae3b63af.woff2") format("woff2"), url("glyphs/woff/ae3b63af.woff") format("woff"), url("glyphs/ttf/ae3b63af.ttf") format("truetype"); unicode-range: U+E08F; } @font-face { font-family: "block"; src: url("glyphs/woff2/3b6b07e4.woff2") format("woff2"), url("glyphs/woff/3b6b07e4.woff") format("woff"), url("glyphs/ttf/3b6b07e4.ttf") format("truetype"); unicode-range: U+E090; } @font-face { font-family: "bpt"; src: url("glyphs/woff2/6748e774.woff2") format("woff2"), url("glyphs/woff/6748e774.woff") format("woff"), url("glyphs/ttf/6748e774.ttf") format("truetype"); unicode-range: U+E091; } @font-face { font-family: "blt"; src: url("glyphs/woff2/6bb79e9f.woff2") format("woff2"), url("glyphs/woff/6bb79e9f.woff") format("woff"), url("glyphs/ttf/6bb79e9f.ttf") format("truetype"); unicode-range: U+E092; } @font-face { font-family: "blz"; src: url("glyphs/woff2/57eb30ea.woff2") format("woff2"), url("glyphs/woff/57eb30ea.woff") format("woff"), url("glyphs/ttf/57eb30ea.ttf") format("truetype"); unicode-range: U+E093; } @font-face { font-family: "bft"; src: url("glyphs/woff2/8216b752.woff2") format("woff2"), url("glyphs/woff/8216b752.woff") format("woff"), url("glyphs/ttf/8216b752.ttf") format("truetype"); unicode-range: U+E094; } @font-face { font-family: "bot"; src: url("glyphs/woff2/a45832ed.woff2") format("woff2"), url("glyphs/woff/a45832ed.woff") format("woff"), url("glyphs/ttf/a45832ed.ttf") format("truetype"); unicode-range: U+E095; } @font-face { font-family: "bnty"; src: url("glyphs/woff2/6a5cf79e.woff2") format("woff2"), url("glyphs/woff/6a5cf79e.woff") format("woff"), url("glyphs/ttf/6a5cf79e.ttf") format("truetype"); unicode-range: U+E096; } @font-face { font-family: "brd"; src: url("glyphs/woff2/ad5bcd8d.woff2") format("woff2"), url("glyphs/woff/ad5bcd8d.woff") format("woff"), url("glyphs/ttf/ad5bcd8d.ttf") format("truetype"); unicode-range: U+E097; } @font-face { font-family: "brk"; src: url("glyphs/woff2/782774ed.woff2") format("woff2"), url("glyphs/woff/782774ed.woff") format("woff"), url("glyphs/ttf/782774ed.ttf") format("truetype"); unicode-range: U+E098; } @font-face { font-family: "brx"; src: url("glyphs/woff2/dee08cc0.woff2") format("woff2"), url("glyphs/woff/dee08cc0.woff") format("woff"), url("glyphs/ttf/dee08cc0.ttf") format("truetype"); unicode-range: U+E099; } @font-face { font-family: "bco"; src: url("glyphs/woff2/1df9ac89.woff2") format("woff2"), url("glyphs/woff/1df9ac89.woff") format("woff"), url("glyphs/ttf/1df9ac89.ttf") format("truetype"); unicode-range: U+E09A; } @font-face { font-family: "gbp"; src: url("glyphs/woff2/011ee55c.woff2") format("woff2"), url("glyphs/woff/011ee55c.woff") format("woff"), url("glyphs/ttf/011ee55c.ttf") format("truetype"); unicode-range: U+E09B; } @font-face { font-family: "bwk"; src: url("glyphs/woff2/d7a69b7b.woff2") format("woff2"), url("glyphs/woff/d7a69b7b.woff") format("woff"), url("glyphs/ttf/d7a69b7b.ttf") format("truetype"); unicode-range: U+E09C; } @font-face { font-family: "burst"; src: url("glyphs/woff2/6cf5db04.woff2") format("woff2"), url("glyphs/woff/6cf5db04.woff") format("woff"), url("glyphs/ttf/6cf5db04.ttf") format("truetype"); unicode-range: U+E09D; } @font-face { font-family: "gbyte"; src: url("glyphs/woff2/70159625.woff2") format("woff2"), url("glyphs/woff/70159625.woff") format("woff"), url("glyphs/ttf/70159625.ttf") format("truetype"); unicode-range: U+E09E; } @font-face { font-family: "bcn"; src: url("glyphs/woff2/53e7de8b.woff2") format("woff2"), url("glyphs/woff/53e7de8b.woff") format("woff"), url("glyphs/ttf/53e7de8b.ttf") format("truetype"); unicode-range: U+E09F; } @font-face { font-family: "btm"; src: url("glyphs/woff2/110df6cd.woff2") format("woff2"), url("glyphs/woff/110df6cd.woff") format("woff"), url("glyphs/ttf/110df6cd.ttf") format("truetype"); unicode-range: U+E0A0; } @font-face { font-family: "cex"; src: url("glyphs/woff2/c407df2f.woff2") format("woff2"), url("glyphs/woff/c407df2f.woff") format("woff"), url("glyphs/ttf/c407df2f.ttf") format("truetype"); unicode-range: U+E0A1; } @font-face { font-family: "cfun"; src: url("glyphs/woff2/899e83fa.woff2") format("woff2"), url("glyphs/woff/899e83fa.woff") format("woff"), url("glyphs/ttf/899e83fa.ttf") format("truetype"); unicode-range: U+E0A2; } @font-face { font-family: "coss"; src: url("glyphs/woff2/120564eb.woff2") format("woff2"), url("glyphs/woff/120564eb.woff") format("woff"), url("glyphs/ttf/120564eb.ttf") format("truetype"); unicode-range: U+E0A3; } @font-face { font-family: "coti"; src: url("glyphs/woff2/31722822.woff2") format("woff2"), url("glyphs/woff/31722822.woff") format("woff"), url("glyphs/ttf/31722822.ttf") format("truetype"); unicode-range: U+E0A4; } @font-face { font-family: "can"; src: url("glyphs/woff2/9be136c3.woff2") format("woff2"), url("glyphs/woff/9be136c3.woff") format("woff"), url("glyphs/ttf/9be136c3.ttf") format("truetype"); unicode-range: U+E0A5; } @font-face { font-family: "cpost"; src: url("glyphs/woff2/5ba710db.woff2") format("woff2"), url("glyphs/woff/5ba710db.woff") format("woff"), url("glyphs/ttf/5ba710db.ttf") format("truetype"); unicode-range: U+E0A6; } @font-face { font-family: "capp"; src: url("glyphs/woff2/a0183c8e.woff2") format("woff2"), url("glyphs/woff/a0183c8e.woff") format("woff"), url("glyphs/ttf/a0183c8e.ttf") format("truetype"); unicode-range: U+E0A7; } @font-face { font-family: "ada"; src: url("glyphs/woff2/41692e5f.woff2") format("woff2"), url("glyphs/woff/41692e5f.woff") format("woff"), url("glyphs/ttf/41692e5f.ttf") format("truetype"); unicode-range: U+E0A8; } @font-face { font-family: "carecredit"; src: url("glyphs/woff2/cda1a566.woff2") format("woff2"), url("glyphs/woff/cda1a566.woff") format("woff"), url("glyphs/ttf/cda1a566.ttf") format("truetype"); unicode-range: U+E0A9; } @font-face { font-family: "cxo"; src: url("glyphs/woff2/b5c60683.woff2") format("woff2"), url("glyphs/woff/b5c60683.woff") format("woff"), url("glyphs/ttf/b5c60683.ttf") format("truetype"); unicode-range: U+E0AA; } @font-face { font-family: "cartasi"; src: url("glyphs/woff2/7845e476.woff2") format("woff2"), url("glyphs/woff/7845e476.woff") format("woff"), url("glyphs/ttf/7845e476.ttf") format("truetype"); unicode-range: U+E0AB; } @font-face { font-family: "cartebancaire"; src: url("glyphs/woff2/4e9dce28.woff2") format("woff2"), url("glyphs/woff/4e9dce28.woff") format("woff"), url("glyphs/ttf/4e9dce28.ttf") format("truetype"); unicode-range: U+E0AC; } @font-face { font-family: "capp"; src: url("glyphs/woff2/a3805f14.woff2") format("woff2"), url("glyphs/woff/a3805f14.woff") format("woff"), url("glyphs/ttf/a3805f14.ttf") format("truetype"); unicode-range: U+E0AD; } @font-face { font-family: "cashcloud"; src: url("glyphs/woff2/38686314.woff2") format("woff2"), url("glyphs/woff/38686314.woff") format("woff"), url("glyphs/ttf/38686314.ttf") format("truetype"); unicode-range: U+E0AE; } @font-face { font-family: "cashu"; src: url("glyphs/woff2/5454be1e.woff2") format("woff2"), url("glyphs/woff/5454be1e.woff") format("woff"), url("glyphs/ttf/5454be1e.ttf") format("truetype"); unicode-range: U+E0AF; } @font-face { font-family: "csc"; src: url("glyphs/woff2/1d3e9975.woff2") format("woff2"), url("glyphs/woff/1d3e9975.woff") format("woff"), url("glyphs/ttf/1d3e9975.ttf") format("truetype"); unicode-range: U+E0B0; } @font-face { font-family: "link"; src: url("glyphs/woff2/d9002330.woff2") format("woff2"), url("glyphs/woff/d9002330.woff") format("woff"), url("glyphs/ttf/d9002330.ttf") format("truetype"); unicode-range: U+E0B1; } @font-face { font-family: "cag"; src: url("glyphs/woff2/6353dd1b.woff2") format("woff2"), url("glyphs/woff/6353dd1b.woff") format("woff"), url("glyphs/ttf/6353dd1b.ttf") format("truetype"); unicode-range: U+E0B2; } @font-face { font-family: "chase"; src: url("glyphs/woff2/edcb62d5.woff2") format("woff2"), url("glyphs/woff/edcb62d5.woff") format("woff"), url("glyphs/ttf/edcb62d5.ttf") format("truetype"); unicode-range: U+E0B3; } @font-face { font-family: "checkout"; src: url("glyphs/woff2/a7644d09.woff2") format("woff2"), url("glyphs/woff/a7644d09.woff") format("woff"), url("glyphs/ttf/a7644d09.ttf") format("truetype"); unicode-range: U+E0B4; } @font-face { font-family: "ccb"; src: url("glyphs/woff2/f73fed81.woff2") format("woff2"), url("glyphs/woff/f73fed81.woff") format("woff"), url("glyphs/ttf/f73fed81.ttf") format("truetype"); unicode-range: U+E0B5; } @font-face { font-family: "cmb"; src: url("glyphs/woff2/4a1c35d5.woff2") format("woff2"), url("glyphs/woff/4a1c35d5.woff") format("woff"), url("glyphs/ttf/4a1c35d5.ttf") format("truetype"); unicode-range: U+E0B6; } @font-face { font-family: "chinapost"; src: url("glyphs/woff2/34a01d7d.woff2") format("woff2"), url("glyphs/woff/34a01d7d.woff") format("woff"), url("glyphs/ttf/34a01d7d.ttf") format("truetype"); unicode-range: U+E0B7; } @font-face { font-family: "cny"; src: url("glyphs/woff2/f20a956f.woff2") format("woff2"), url("glyphs/woff/f20a956f.woff") format("woff"), url("glyphs/ttf/f20a956f.ttf") format("truetype"); unicode-range: U+E0B8; } @font-face { font-family: "time"; src: url("glyphs/woff2/bf5d7fd2.woff2") format("woff2"), url("glyphs/woff/bf5d7fd2.woff") format("woff"), url("glyphs/ttf/bf5d7fd2.ttf") format("truetype"); unicode-range: U+E0B9; } @font-face { font-family: "cnd"; src: url("glyphs/woff2/ea8e0a1a.woff2") format("woff2"), url("glyphs/woff/ea8e0a1a.woff") format("woff"), url("glyphs/ttf/ea8e0a1a.ttf") format("truetype"); unicode-range: U+E0BA; } @font-face { font-family: "cirrus"; src: url("glyphs/woff2/2163c4cf.woff2") format("woff2"), url("glyphs/woff/2163c4cf.woff") format("woff"), url("glyphs/ttf/2163c4cf.ttf") format("truetype"); unicode-range: U+E0BB; } @font-face { font-family: "citibank"; src: url("glyphs/woff2/3e131fc2.woff2") format("woff2"), url("glyphs/woff/3e131fc2.woff") format("woff"), url("glyphs/ttf/3e131fc2.ttf") format("truetype"); unicode-range: U+E0BC; } @font-face { font-family: "cizb"; src: url("glyphs/woff2/dce2e772.woff2") format("woff2"), url("glyphs/woff/dce2e772.woff") format("woff"), url("glyphs/ttf/dce2e772.ttf") format("truetype"); unicode-range: U+E0BD; } @font-face { font-family: "cizbc"; src: url("glyphs/woff2/6ec735fe.woff2") format("woff2"), url("glyphs/woff/6ec735fe.woff") format("woff"), url("glyphs/ttf/6ec735fe.ttf") format("truetype"); unicode-range: U+E0BE; } @font-face { font-family: "cvc"; src: url("glyphs/woff2/c08b2fca.woff2") format("woff2"), url("glyphs/woff/c08b2fca.woff") format("woff"), url("glyphs/ttf/c08b2fca.ttf") format("truetype"); unicode-range: U+E0BF; } @font-face { font-family: "clam"; src: url("glyphs/woff2/87dda7cc.woff2") format("woff2"), url("glyphs/woff/87dda7cc.woff") format("woff"), url("glyphs/ttf/87dda7cc.ttf") format("truetype"); unicode-range: U+E0C0; } @font-face { font-family: "clickandbuy"; src: url("glyphs/woff2/f6e65e59.woff2") format("woff2"), url("glyphs/woff/f6e65e59.woff") format("woff"), url("glyphs/ttf/f6e65e59.ttf") format("truetype"); unicode-range: U+E0C1; } @font-face { font-family: "cloak"; src: url("glyphs/woff2/3a52ed45.woff2") format("woff2"), url("glyphs/woff/3a52ed45.woff") format("woff"), url("glyphs/ttf/3a52ed45.ttf") format("truetype"); unicode-range: U+E0C2; } @font-face { font-family: "cld"; src: url("glyphs/woff2/36fb96fc.woff2") format("woff2"), url("glyphs/woff/36fb96fc.woff") format("woff"), url("glyphs/ttf/36fb96fc.ttf") format("truetype"); unicode-range: U+E0C3; } @font-face { font-family: "coe"; src: url("glyphs/woff2/74da00d4.woff2") format("woff2"), url("glyphs/woff/74da00d4.woff") format("woff"), url("glyphs/ttf/74da00d4.ttf") format("truetype"); unicode-range: U+E0C4; } @font-face { font-family: "coxst"; src: url("glyphs/woff2/430cca2f.woff2") format("woff2"), url("glyphs/woff/430cca2f.woff") format("woff"), url("glyphs/ttf/430cca2f.ttf") format("truetype"); unicode-range: U+E0C5; } @font-face { font-family: "cob"; src: url("glyphs/woff2/a6af89bd.woff2") format("woff2"), url("glyphs/woff/a6af89bd.woff") format("woff"), url("glyphs/ttf/a6af89bd.ttf") format("truetype"); unicode-range: U+E0C6; } @font-face { font-family: "cof"; src: url("glyphs/woff2/1a9e5d1a.woff2") format("woff2"), url("glyphs/woff/1a9e5d1a.woff") format("woff"), url("glyphs/ttf/1a9e5d1a.ttf") format("truetype"); unicode-range: U+E0C7; } @font-face { font-family: "cfi"; src: url("glyphs/woff2/e528cde1.woff2") format("woff2"), url("glyphs/woff/e528cde1.woff") format("woff"), url("glyphs/ttf/e528cde1.ttf") format("truetype"); unicode-range: U+E0C8; } @font-face { font-family: "cdt"; src: url("glyphs/woff2/b09f469a.woff2") format("woff2"), url("glyphs/woff/b09f469a.woff") format("woff"), url("glyphs/ttf/b09f469a.ttf") format("truetype"); unicode-range: U+E0C9; } @font-face { font-family: "mee"; src: url("glyphs/woff2/a5ee2945.woff2") format("woff2"), url("glyphs/woff/a5ee2945.woff") format("woff"), url("glyphs/ttf/a5ee2945.ttf") format("truetype"); unicode-range: U+E0CA; } @font-face { font-family: "cn1"; src: url("glyphs/woff2/8aa66ff2.woff2") format("woff2"), url("glyphs/woff/8aa66ff2.woff") format("woff"), url("glyphs/ttf/8aa66ff2.ttf") format("truetype"); unicode-range: U+E0CB; } @font-face { font-family: "cb"; src: url("glyphs/woff2/08e4c9db.woff2") format("woff2"), url("glyphs/woff/08e4c9db.woff") format("woff"), url("glyphs/ttf/08e4c9db.ttf") format("truetype"); unicode-range: U+E0CC; } @font-face { font-family: "coincheck"; src: url("glyphs/woff2/91c7605d.woff2") format("woff2"), url("glyphs/woff/91c7605d.woff") format("woff"), url("glyphs/ttf/91c7605d.ttf") format("truetype"); unicode-range: U+E0CD; } @font-face { font-family: "coindesk"; src: url("glyphs/woff2/2cee68c5.woff2") format("woff2"), url("glyphs/woff/2cee68c5.woff") format("woff"), url("glyphs/ttf/2cee68c5.ttf") format("truetype"); unicode-range: U+E0CE; } @font-face { font-family: "coinfloor"; src: url("glyphs/woff2/a1f0f211.woff2") format("woff2"), url("glyphs/woff/a1f0f211.woff") format("woff"), url("glyphs/ttf/a1f0f211.ttf") format("truetype"); unicode-range: U+E0CF; } @font-face { font-family: "cnfy"; src: url("glyphs/woff2/0cc88965.woff2") format("woff2"), url("glyphs/woff/0cc88965.woff") format("woff"), url("glyphs/ttf/0cc88965.ttf") format("truetype"); unicode-range: U+E0D0; } @font-face { font-family: "ctph"; src: url("glyphs/woff2/167004d8.woff2") format("woff2"), url("glyphs/woff/167004d8.woff") format("woff"), url("glyphs/ttf/167004d8.ttf") format("truetype"); unicode-range: U+E0D1; } @font-face { font-family: "colx"; src: url("glyphs/woff2/ed4c2c15.woff2") format("woff2"), url("glyphs/woff/ed4c2c15.woff") format("woff"), url("glyphs/ttf/ed4c2c15.ttf") format("truetype"); unicode-range: U+E0D2; } @font-face { font-family: "cmp"; src: url("glyphs/woff2/989ad0a9.woff2") format("woff2"), url("glyphs/woff/989ad0a9.woff") format("woff"), url("glyphs/ttf/989ad0a9.ttf") format("truetype"); unicode-range: U+E0D3; } @font-face { font-family: "sen"; src: url("glyphs/woff2/d9b31097.woff2") format("woff2"), url("glyphs/woff/d9b31097.woff") format("woff"), url("glyphs/ttf/d9b31097.ttf") format("truetype"); unicode-range: U+E0D4; } @font-face { font-family: "csys"; src: url("glyphs/woff2/578f348a.woff2") format("woff2"), url("glyphs/woff/578f348a.woff") format("woff"), url("glyphs/ttf/578f348a.ttf") format("truetype"); unicode-range: U+E0D5; } @font-face { font-family: "xcp"; src: url("glyphs/woff2/520274a8.woff2") format("woff2"), url("glyphs/woff/520274a8.woff") format("woff"), url("glyphs/ttf/520274a8.ttf") format("truetype"); unicode-range: U+E0D6; } @font-face { font-family: "cov"; src: url("glyphs/woff2/3ac9bbf7.woff2") format("woff2"), url("glyphs/woff/3ac9bbf7.woff") format("woff"), url("glyphs/ttf/3ac9bbf7.ttf") format("truetype"); unicode-range: U+E0D7; } @font-face { font-family: "crea"; src: url("glyphs/woff2/dfc642b4.woff2") format("woff2"), url("glyphs/woff/dfc642b4.woff") format("woff"), url("glyphs/ttf/dfc642b4.ttf") format("truetype"); unicode-range: U+E0D8; } @font-face { font-family: "csuis"; src: url("glyphs/woff2/00883b50.woff2") format("woff2"), url("glyphs/woff/00883b50.woff") format("woff"), url("glyphs/ttf/00883b50.ttf") format("truetype"); unicode-range: U+E0D9; } @font-face { font-family: "crb"; src: url("glyphs/woff2/6587b420.woff2") format("woff2"), url("glyphs/woff/6587b420.woff") format("woff"), url("glyphs/ttf/6587b420.ttf") format("truetype"); unicode-range: U+E0DA; } @font-face { font-family: "cs"; src: url("glyphs/woff2/e2b7f2e8.woff2") format("woff2"), url("glyphs/woff/e2b7f2e8.woff") format("woff"), url("glyphs/ttf/e2b7f2e8.ttf") format("truetype"); unicode-range: U+E0DB; } @font-face { font-family: "credo"; src: url("glyphs/woff2/b9507f5e.woff2") format("woff2"), url("glyphs/woff/b9507f5e.woff") format("woff"), url("glyphs/ttf/b9507f5e.ttf") format("truetype"); unicode-range: U+E0DC; } @font-face { font-family: "cmct"; src: url("glyphs/woff2/c42bbfd6.woff2") format("woff2"), url("glyphs/woff/c42bbfd6.woff") format("woff"), url("glyphs/ttf/c42bbfd6.ttf") format("truetype"); unicode-range: U+E0DD; } @font-face { font-family: "crpt"; src: url("glyphs/woff2/e0436cb5.woff2") format("woff2"), url("glyphs/woff/e0436cb5.woff") format("woff"), url("glyphs/ttf/e0436cb5.ttf") format("truetype"); unicode-range: U+E0DE; } @font-face { font-family: "cryptobridge"; src: url("glyphs/woff2/94bb9a0a.woff2") format("woff2"), url("glyphs/woff/94bb9a0a.woff") format("woff"), url("glyphs/ttf/94bb9a0a.ttf") format("truetype"); unicode-range: U+E0DF; } @font-face { font-family: "cnx"; src: url("glyphs/woff2/7e86b04d.woff2") format("woff2"), url("glyphs/woff/7e86b04d.woff") format("woff"), url("glyphs/ttf/7e86b04d.ttf") format("truetype"); unicode-range: U+E0E0; } @font-face { font-family: "cryptonit"; src: url("glyphs/woff2/22c6ed00.woff2") format("woff2"), url("glyphs/woff/22c6ed00.woff") format("woff"), url("glyphs/ttf/22c6ed00.ttf") format("truetype"); unicode-range: U+E0E1; } @font-face { font-family: "cryptopia"; src: url("glyphs/woff2/ba8d699c.woff2") format("woff2"), url("glyphs/woff/ba8d699c.woff") format("woff"), url("glyphs/ttf/ba8d699c.ttf") format("truetype"); unicode-range: U+E0E2; } @font-face { font-family: "cryptovest"; src: url("glyphs/woff2/11805c1a.woff2") format("woff2"), url("glyphs/woff/11805c1a.woff") format("woff"), url("glyphs/ttf/11805c1a.ttf") format("truetype"); unicode-range: U+E0E3; } @font-face { font-family: "auto"; src: url("glyphs/woff2/ea17073b.woff2") format("woff2"), url("glyphs/woff/ea17073b.woff") format("woff"), url("glyphs/ttf/ea17073b.ttf") format("truetype"); unicode-range: U+E0E4; } @font-face { font-family: "crnc"; src: url("glyphs/woff2/37481bd1.woff2") format("woff2"), url("glyphs/woff/37481bd1.woff") format("woff"), url("glyphs/ttf/37481bd1.ttf") format("truetype"); unicode-range: U+E0E5; } @font-face { font-family: "cvt"; src: url("glyphs/woff2/455032d0.woff2") format("woff2"), url("glyphs/woff/455032d0.woff") format("woff"), url("glyphs/ttf/455032d0.ttf") format("truetype"); unicode-range: U+E0E6; } @font-face { font-family: "dadi"; src: url("glyphs/woff2/56521359.woff2") format("woff2"), url("glyphs/woff/56521359.woff") format("woff"), url("glyphs/ttf/56521359.ttf") format("truetype"); unicode-range: U+E0E7; } @font-face { font-family: "dax"; src: url("glyphs/woff2/7651ec5d.woff2") format("woff2"), url("glyphs/woff/7651ec5d.woff") format("woff"), url("glyphs/ttf/7651ec5d.ttf") format("truetype"); unicode-range: U+E0E8; } @font-face { font-family: "dta"; src: url("glyphs/woff2/4a280971.woff2") format("woff2"), url("glyphs/woff/4a280971.woff") format("woff"), url("glyphs/ttf/4a280971.ttf") format("truetype"); unicode-range: U+E0E9; } @font-face { font-family: "datx"; src: url("glyphs/woff2/bb48d505.woff2") format("woff2"), url("glyphs/woff/bb48d505.woff") format("woff"), url("glyphs/ttf/bb48d505.ttf") format("truetype"); unicode-range: U+E0EA; } @font-face { font-family: "drp"; src: url("glyphs/woff2/f522c872.woff2") format("woff2"), url("glyphs/woff/f522c872.woff") format("woff"), url("glyphs/ttf/f522c872.ttf") format("truetype"); unicode-range: U+E0EB; } @font-face { font-family: "dct"; src: url("glyphs/woff2/be79d1c6.woff2") format("woff2"), url("glyphs/woff/be79d1c6.woff") format("woff"), url("glyphs/ttf/be79d1c6.ttf") format("truetype"); unicode-range: U+E0EC; } @font-face { font-family: "dew"; src: url("glyphs/woff2/b8f899c8.woff2") format("woff2"), url("glyphs/woff/b8f899c8.woff") format("woff"), url("glyphs/ttf/b8f899c8.ttf") format("truetype"); unicode-range: U+E0ED; } @font-face { font-family: "dhl"; src: url("glyphs/woff2/516cf792.woff2") format("woff2"), url("glyphs/woff/516cf792.woff") format("woff"), url("glyphs/ttf/516cf792.ttf") format("truetype"); unicode-range: U+E0EE; } @font-face { font-family: "dibc"; src: url("glyphs/woff2/df860193.woff2") format("woff2"), url("glyphs/woff/df860193.woff") format("woff"), url("glyphs/ttf/df860193.ttf") format("truetype"); unicode-range: U+E0EF; } @font-face { font-family: "discover"; src: url("glyphs/woff2/1eb35b35.woff2") format("woff2"), url("glyphs/woff/1eb35b35.woff") format("woff"), url("glyphs/ttf/1eb35b35.ttf") format("truetype"); unicode-range: U+E0F0; } @font-face { font-family: "dmt"; src: url("glyphs/woff2/734be349.woff2") format("woff2"), url("glyphs/woff/734be349.woff") format("woff"), url("glyphs/ttf/734be349.ttf") format("truetype"); unicode-range: U+E0F1; } @font-face { font-family: "note"; src: url("glyphs/woff2/862543ec.woff2") format("woff2"), url("glyphs/woff/862543ec.woff") format("woff"), url("glyphs/ttf/862543ec.ttf") format("truetype"); unicode-range: U+E0F2; } @font-face { font-family: "dovu"; src: url("glyphs/woff2/f0239cc2.woff2") format("woff2"), url("glyphs/woff/f0239cc2.woff") format("woff"), url("glyphs/ttf/f0239cc2.ttf") format("truetype"); unicode-range: U+E0F3; } @font-face { font-family: "dpd"; src: url("glyphs/woff2/389e0153.woff2") format("woff2"), url("glyphs/woff/389e0153.woff") format("woff"), url("glyphs/ttf/389e0153.ttf") format("truetype"); unicode-range: U+E0F4; } @font-face { font-family: "dsv"; src: url("glyphs/woff2/496a7c2f.woff2") format("woff2"), url("glyphs/woff/496a7c2f.woff") format("woff"), url("glyphs/ttf/496a7c2f.ttf") format("truetype"); unicode-range: U+E0F5; } @font-face { font-family: "dai"; src: url("glyphs/woff2/d09b48b1.woff2") format("woff2"), url("glyphs/woff/d09b48b1.woff") format("woff"), url("glyphs/ttf/d09b48b1.ttf") format("truetype"); unicode-range: U+E0F6; } @font-face { font-family: "dankort"; src: url("glyphs/woff2/766bbd91.woff2") format("woff2"), url("glyphs/woff/766bbd91.woff") format("woff"), url("glyphs/ttf/766bbd91.ttf") format("truetype"); unicode-range: U+E0F7; } @font-face { font-family: "daohb"; src: url("glyphs/woff2/b78ccf45.woff2") format("woff2"), url("glyphs/woff/b78ccf45.woff") format("woff"), url("glyphs/ttf/b78ccf45.ttf") format("truetype"); unicode-range: U+E0F8; } @font-face { font-family: "dash"; src: url("glyphs/woff2/3547c23d.woff2") format("woff2"), url("glyphs/woff/3547c23d.woff") format("woff"), url("glyphs/ttf/3547c23d.ttf") format("truetype"); unicode-range: U+E0F9; } @font-face { font-family: "dtt"; src: url("glyphs/woff2/066eea7e.woff2") format("woff2"), url("glyphs/woff/066eea7e.woff") format("woff"), url("glyphs/ttf/066eea7e.ttf") format("truetype"); unicode-range: U+E0FA; } @font-face { font-family: "dxt"; src: url("glyphs/woff2/9f205e65.woff2") format("woff2"), url("glyphs/woff/9f205e65.woff") format("woff"), url("glyphs/ttf/9f205e65.ttf") format("truetype"); unicode-range: U+E0FB; } @font-face { font-family: "dat"; src: url("glyphs/woff2/fd5fe89c.woff2") format("woff2"), url("glyphs/woff/fd5fe89c.woff") format("woff"), url("glyphs/ttf/fd5fe89c.ttf") format("truetype"); unicode-range: U+E0FC; } @font-face { font-family: "deb"; src: url("glyphs/woff2/7fc2dce7.woff2") format("woff2"), url("glyphs/woff/7fc2dce7.woff") format("woff"), url("glyphs/ttf/7fc2dce7.ttf") format("truetype"); unicode-range: U+E0FD; } @font-face { font-family: "mana"; src: url("glyphs/woff2/6dd1f0c3.woff2") format("woff2"), url("glyphs/woff/6dd1f0c3.woff") format("woff"), url("glyphs/ttf/6dd1f0c3.ttf") format("truetype"); unicode-range: U+E0FE; } @font-face { font-family: "dml"; src: url("glyphs/woff2/e7d3044b.woff2") format("woff2"), url("glyphs/woff/e7d3044b.woff") format("woff"), url("glyphs/ttf/e7d3044b.ttf") format("truetype"); unicode-range: U+E0FF; } @font-face { font-family: "hst"; src: url("glyphs/woff2/478bc2f3.woff2") format("woff2"), url("glyphs/woff/478bc2f3.woff") format("woff"), url("glyphs/ttf/478bc2f3.ttf") format("truetype"); unicode-range: U+E100; } @font-face { font-family: "dcr"; src: url("glyphs/woff2/ce9eb004.woff2") format("woff2"), url("glyphs/woff/ce9eb004.woff") format("woff"), url("glyphs/ttf/ce9eb004.ttf") format("truetype"); unicode-range: U+E101; } @font-face { font-family: "dbc"; src: url("glyphs/woff2/20f9b6e3.woff2") format("woff2"), url("glyphs/woff/20f9b6e3.woff") format("woff"), url("glyphs/ttf/20f9b6e3.ttf") format("truetype"); unicode-range: U+E102; } @font-face { font-family: "onion"; src: url("glyphs/woff2/55048901.woff2") format("woff2"), url("glyphs/woff/55048901.woff") format("woff"), url("glyphs/ttf/55048901.ttf") format("truetype"); unicode-range: U+E103; } @font-face { font-family: "dpy"; src: url("glyphs/woff2/eb67386f.woff2") format("woff2"), url("glyphs/woff/eb67386f.woff") format("woff"), url("glyphs/ttf/eb67386f.ttf") format("truetype"); unicode-range: U+E104; } @font-face { font-family: "dent"; src: url("glyphs/woff2/92b634cd.woff2") format("woff2"), url("glyphs/woff/92b634cd.woff") format("woff"), url("glyphs/ttf/92b634cd.ttf") format("truetype"); unicode-range: U+E105; } @font-face { font-family: "dcn"; src: url("glyphs/woff2/bb12d8ab.woff2") format("woff2"), url("glyphs/woff/bb12d8ab.woff") format("woff"), url("glyphs/ttf/bb12d8ab.ttf") format("truetype"); unicode-range: U+E106; } @font-face { font-family: "dth"; src: url("glyphs/woff2/bae4bae8.woff2") format("woff2"), url("glyphs/woff/bae4bae8.woff") format("woff"), url("glyphs/ttf/bae4bae8.ttf") format("truetype"); unicode-range: U+E107; } @font-face { font-family: "deub"; src: url("glyphs/woff2/c48a78a5.woff2") format("woff2"), url("glyphs/woff/c48a78a5.woff") format("woff"), url("glyphs/ttf/c48a78a5.ttf") format("truetype"); unicode-range: U+E108; } @font-face { font-family: "dpost"; src: url("glyphs/woff2/1a8afe19.woff2") format("woff2"), url("glyphs/woff/1a8afe19.woff") format("woff"), url("glyphs/ttf/1a8afe19.ttf") format("truetype"); unicode-range: U+E109; } @font-face { font-family: "eve"; src: url("glyphs/woff2/692990c2.woff2") format("woff2"), url("glyphs/woff/692990c2.woff") format("woff"), url("glyphs/ttf/692990c2.ttf") format("truetype"); unicode-range: U+E10A; } @font-face { font-family: "dfinity"; src: url("glyphs/woff2/b8a14959.woff2") format("woff2"), url("glyphs/woff/b8a14959.woff") format("woff"), url("glyphs/ttf/b8a14959.ttf") format("truetype"); unicode-range: U+E10B; } @font-face { font-family: "dmd"; src: url("glyphs/woff2/2d2cf221.woff2") format("woff2"), url("glyphs/woff/2d2cf221.woff") format("woff"), url("glyphs/ttf/2d2cf221.ttf") format("truetype"); unicode-range: U+E10C; } @font-face { font-family: "dgb"; src: url("glyphs/woff2/e29e8451.woff2") format("woff2"), url("glyphs/woff/e29e8451.woff") format("woff"), url("glyphs/ttf/e29e8451.ttf") format("truetype"); unicode-range: U+E10D; } @font-face { font-family: "xdn"; src: url("glyphs/woff2/1937cd98.woff2") format("woff2"), url("glyphs/woff/1937cd98.woff") format("woff"), url("glyphs/ttf/1937cd98.ttf") format("truetype"); unicode-range: U+E10E; } @font-face { font-family: "dgd"; src: url("glyphs/woff2/7faba1e2.woff2") format("woff2"), url("glyphs/woff/7faba1e2.woff") format("woff"), url("glyphs/ttf/7faba1e2.ttf") format("truetype"); unicode-range: U+E10F; } @font-face { font-family: "dgx"; src: url("glyphs/woff2/9eb86178.woff2") format("woff2"), url("glyphs/woff/9eb86178.woff") format("woff"), url("glyphs/ttf/9eb86178.ttf") format("truetype"); unicode-range: U+E110; } @font-face { font-family: "dime"; src: url("glyphs/woff2/4321166d.woff2") format("woff2"), url("glyphs/woff/4321166d.woff") format("woff"), url("glyphs/ttf/4321166d.ttf") format("truetype"); unicode-range: U+E111; } @font-face { font-family: "dinersclub"; src: url("glyphs/woff2/6895132f.woff2") format("woff2"), url("glyphs/woff/6895132f.woff") format("woff"), url("glyphs/ttf/6895132f.ttf") format("truetype"); unicode-range: U+E112; } @font-face { font-family: "directdebit"; src: url("glyphs/woff2/ea26fef6.woff2") format("woff2"), url("glyphs/woff/ea26fef6.woff") format("woff"), url("glyphs/ttf/ea26fef6.ttf") format("truetype"); unicode-range: U+E113; } @font-face { font-family: "divx"; src: url("glyphs/woff2/93b56efb.woff2") format("woff2"), url("glyphs/woff/93b56efb.woff") format("woff"), url("glyphs/ttf/93b56efb.ttf") format("truetype"); unicode-range: U+E114; } @font-face { font-family: "dockio"; src: url("glyphs/woff2/a9a9d798.woff2") format("woff2"), url("glyphs/woff/a9a9d798.woff") format("woff"), url("glyphs/ttf/a9a9d798.ttf") format("truetype"); unicode-range: U+E115; } @font-face { font-family: "doge"; src: url("glyphs/woff2/297959f6.woff2") format("woff2"), url("glyphs/woff/297959f6.woff") format("woff"), url("glyphs/ttf/297959f6.ttf") format("truetype"); unicode-range: U+E116; } @font-face { font-family: "drt"; src: url("glyphs/woff2/d228d1ac.woff2") format("woff2"), url("glyphs/woff/d228d1ac.woff") format("woff"), url("glyphs/ttf/d228d1ac.ttf") format("truetype"); unicode-range: U+E117; } @font-face { font-family: "drg"; src: url("glyphs/woff2/a4caee91.woff2") format("woff2"), url("glyphs/woff/a4caee91.woff") format("woff"), url("glyphs/ttf/a4caee91.ttf") format("truetype"); unicode-range: U+E118; } @font-face { font-family: "drgn"; src: url("glyphs/woff2/dc86c2f6.woff2") format("woff2"), url("glyphs/woff/dc86c2f6.woff") format("woff"), url("glyphs/ttf/dc86c2f6.ttf") format("truetype"); unicode-range: U+E119; } @font-face { font-family: "drmt"; src: url("glyphs/woff2/04c9aec2.woff2") format("woff2"), url("glyphs/woff/04c9aec2.woff") format("woff"), url("glyphs/ttf/04c9aec2.ttf") format("truetype"); unicode-range: U+E11A; } @font-face { font-family: "dyn"; src: url("glyphs/woff2/ad2eb64b.woff2") format("woff2"), url("glyphs/woff/ad2eb64b.woff") format("woff"), url("glyphs/ttf/ad2eb64b.ttf") format("truetype"); unicode-range: U+E11B; } @font-face { font-family: "dtr"; src: url("glyphs/woff2/9c739b13.woff2") format("woff2"), url("glyphs/woff/9c739b13.woff") format("woff"), url("glyphs/ttf/9c739b13.ttf") format("truetype"); unicode-range: U+E11C; } @font-face { font-family: "ecc"; src: url("glyphs/woff2/817d2a0a.woff2") format("woff2"), url("glyphs/woff/817d2a0a.woff") format("woff"), url("glyphs/ttf/817d2a0a.ttf") format("truetype"); unicode-range: U+E11D; } @font-face { font-family: "echo"; src: url("glyphs/woff2/580961bd.woff2") format("woff2"), url("glyphs/woff/580961bd.woff") format("woff"), url("glyphs/ttf/580961bd.ttf") format("truetype"); unicode-range: U+E11E; } @font-face { font-family: "elo"; src: url("glyphs/woff2/dcd33a62.woff2") format("woff2"), url("glyphs/woff/dcd33a62.woff") format("woff"), url("glyphs/ttf/dcd33a62.ttf") format("truetype"); unicode-range: U+E11F; } @font-face { font-family: "ems"; src: url("glyphs/woff2/3f29fe8f.woff2") format("woff2"), url("glyphs/woff/3f29fe8f.woff") format("woff"), url("glyphs/ttf/3f29fe8f.ttf") format("truetype"); unicode-range: U+E120; } @font-face { font-family: "eos"; src: url("glyphs/woff2/ae453c2f.woff2") format("woff2"), url("glyphs/woff/ae453c2f.woff") format("woff"), url("glyphs/ttf/ae453c2f.ttf") format("truetype"); unicode-range: U+E121; } @font-face { font-family: "esrwallet"; src: url("glyphs/woff2/f8a8936b.woff2") format("woff2"), url("glyphs/woff/f8a8936b.woff") format("woff"), url("glyphs/ttf/f8a8936b.ttf") format("truetype"); unicode-range: U+E122; } @font-face { font-family: "essa"; src: url("glyphs/woff2/218e296f.woff2") format("woff2"), url("glyphs/woff/218e296f.woff") format("woff"), url("glyphs/ttf/218e296f.ttf") format("truetype"); unicode-range: U+E123; } @font-face { font-family: "lend"; src: url("glyphs/woff2/57dd141e.woff2") format("woff2"), url("glyphs/woff/57dd141e.woff") format("woff"), url("glyphs/ttf/57dd141e.ttf") format("truetype"); unicode-range: U+E124; } @font-face { font-family: "exc"; src: url("glyphs/woff2/83f03b1d.woff2") format("woff2"), url("glyphs/woff/83f03b1d.woff") format("woff"), url("glyphs/ttf/83f03b1d.ttf") format("truetype"); unicode-range: U+E125; } @font-face { font-family: "exx"; src: url("glyphs/woff2/061e5117.woff2") format("woff2"), url("glyphs/woff/061e5117.woff") format("woff"), url("glyphs/ttf/061e5117.ttf") format("truetype"); unicode-range: U+E126; } @font-face { font-family: "ezt"; src: url("glyphs/woff2/09afd82a.woff2") format("woff2"), url("glyphs/woff/09afd82a.woff") format("woff"), url("glyphs/ttf/09afd82a.ttf") format("truetype"); unicode-range: U+E127; } @font-face { font-family: "earth"; src: url("glyphs/woff2/06fd396d.woff2") format("woff2"), url("glyphs/woff/06fd396d.woff") format("woff"), url("glyphs/ttf/06fd396d.ttf") format("truetype"); unicode-range: U+E128; } @font-face { font-family: "ebanx"; src: url("glyphs/woff2/d0e625c0.woff2") format("woff2"), url("glyphs/woff/d0e625c0.woff") format("woff"), url("glyphs/ttf/d0e625c0.ttf") format("truetype"); unicode-range: U+E129; } @font-face { font-family: "edg"; src: url("glyphs/woff2/4d59c24a.woff2") format("woff2"), url("glyphs/woff/4d59c24a.woff") format("woff"), url("glyphs/ttf/4d59c24a.ttf") format("truetype"); unicode-range: U+E12A; } @font-face { font-family: "efx"; src: url("glyphs/woff2/2a9dc20c.woff2") format("woff2"), url("glyphs/woff/2a9dc20c.woff") format("woff"), url("glyphs/ttf/2a9dc20c.ttf") format("truetype"); unicode-range: U+E12B; } @font-face { font-family: "edo"; src: url("glyphs/woff2/61965d02.woff2") format("woff2"), url("glyphs/woff/61965d02.woff") format("woff"), url("glyphs/ttf/61965d02.ttf") format("truetype"); unicode-range: U+E12C; } @font-face { font-family: "emc2"; src: url("glyphs/woff2/fe1a9b49.woff2") format("woff2"), url("glyphs/woff/fe1a9b49.woff") format("woff"), url("glyphs/ttf/fe1a9b49.ttf") format("truetype"); unicode-range: U+E12D; } @font-face { font-family: "elc"; src: url("glyphs/woff2/4ee23427.woff2") format("woff2"), url("glyphs/woff/4ee23427.woff") format("woff"), url("glyphs/ttf/4ee23427.ttf") format("truetype"); unicode-range: U+E12E; } @font-face { font-family: "xel"; src: url("glyphs/woff2/2a889c21.woff2") format("woff2"), url("glyphs/woff/2a889c21.woff") format("woff"), url("glyphs/ttf/2a889c21.ttf") format("truetype"); unicode-range: U+E12F; } @font-face { font-family: "ela"; src: url("glyphs/woff2/a87ed935.woff2") format("woff2"), url("glyphs/woff/a87ed935.woff") format("woff"), url("glyphs/ttf/a87ed935.ttf") format("truetype"); unicode-range: U+E130; } @font-face { font-family: "eca"; src: url("glyphs/woff2/dbf1f527.woff2") format("woff2"), url("glyphs/woff/dbf1f527.woff") format("woff"), url("glyphs/ttf/dbf1f527.ttf") format("truetype"); unicode-range: U+E131; } @font-face { font-family: "elec"; src: url("glyphs/woff2/e2920962.woff2") format("woff2"), url("glyphs/woff/e2920962.woff") format("woff"), url("glyphs/ttf/e2920962.ttf") format("truetype"); unicode-range: U+E132; } @font-face { font-family: "etn"; src: url("glyphs/woff2/7d8ef620.woff2") format("woff2"), url("glyphs/woff/7d8ef620.woff") format("woff"), url("glyphs/ttf/7d8ef620.ttf") format("truetype"); unicode-range: U+E133; } @font-face { font-family: "elix"; src: url("glyphs/woff2/a52bb57c.woff2") format("woff2"), url("glyphs/woff/a52bb57c.woff") format("woff"), url("glyphs/ttf/a52bb57c.ttf") format("truetype"); unicode-range: U+E134; } @font-face { font-family: "mbrs"; src: url("glyphs/woff2/ea915e6c.woff2") format("woff2"), url("glyphs/woff/ea915e6c.woff") format("woff"), url("glyphs/ttf/ea915e6c.ttf") format("truetype"); unicode-range: U+E135; } @font-face { font-family: "emc"; src: url("glyphs/woff2/2dc572da.woff2") format("woff2"), url("glyphs/woff/2dc572da.woff") format("woff"), url("glyphs/ttf/2dc572da.ttf") format("truetype"); unicode-range: U+E136; } @font-face { font-family: "ett"; src: url("glyphs/woff2/d72e5642.woff2") format("woff2"), url("glyphs/woff/d72e5642.woff") format("woff"), url("glyphs/ttf/d72e5642.ttf") format("truetype"); unicode-range: U+E137; } @font-face { font-family: "enrg"; src: url("glyphs/woff2/91d96ddb.woff2") format("woff2"), url("glyphs/woff/91d96ddb.woff") format("woff"), url("glyphs/ttf/91d96ddb.ttf") format("truetype"); unicode-range: U+E138; } @font-face { font-family: "eng"; src: url("glyphs/woff2/4062bc3a.woff2") format("woff2"), url("glyphs/woff/4062bc3a.woff") format("woff"), url("glyphs/ttf/4062bc3a.ttf") format("truetype"); unicode-range: U+E139; } @font-face { font-family: "enj"; src: url("glyphs/woff2/ad451fc0.woff2") format("woff2"), url("glyphs/woff/ad451fc0.woff") format("woff"), url("glyphs/ttf/ad451fc0.ttf") format("truetype"); unicode-range: U+E13A; } @font-face { font-family: "env"; src: url("glyphs/woff2/cf9d5267.woff2") format("woff2"), url("glyphs/woff/cf9d5267.woff") format("woff"), url("glyphs/ttf/cf9d5267.ttf") format("truetype"); unicode-range: U+E13B; } @font-face { font-family: "equa"; src: url("glyphs/woff2/1a54066a.woff2") format("woff2"), url("glyphs/woff/1a54066a.woff") format("woff"), url("glyphs/ttf/1a54066a.ttf") format("truetype"); unicode-range: U+E13C; } @font-face { font-family: "eql"; src: url("glyphs/woff2/73337a66.woff2") format("woff2"), url("glyphs/woff/73337a66.woff") format("woff"), url("glyphs/ttf/73337a66.ttf") format("truetype"); unicode-range: U+E13D; } @font-face { font-family: "edoge"; src: url("glyphs/woff2/e67af557.woff2") format("woff2"), url("glyphs/woff/e67af557.woff") format("woff"), url("glyphs/ttf/e67af557.ttf") format("truetype"); unicode-range: U+E13E; } @font-face { font-family: "ech"; src: url("glyphs/woff2/d0f4fedd.woff2") format("woff2"), url("glyphs/woff/d0f4fedd.woff") format("woff"), url("glyphs/ttf/d0f4fedd.ttf") format("truetype"); unicode-range: U+E13F; } @font-face { font-family: "etc"; src: url("glyphs/woff2/0e779307.woff2") format("woff2"), url("glyphs/woff/0e779307.woff") format("woff"), url("glyphs/ttf/0e779307.ttf") format("truetype"); unicode-range: U+E140; } @font-face { font-family: "eth"; src: url("glyphs/woff2/d68c6b5a.woff2") format("woff2"), url("glyphs/woff/d68c6b5a.woff") format("woff"), url("glyphs/ttf/d68c6b5a.ttf") format("truetype"); unicode-range: U+E141; } @font-face { font-family: "fuel"; src: url("glyphs/woff2/a4900e86.woff2") format("woff2"), url("glyphs/woff/a4900e86.woff") format("woff"), url("glyphs/ttf/a4900e86.ttf") format("truetype"); unicode-range: U+E142; } @font-face { font-family: "ethos"; src: url("glyphs/woff2/f265e93a.woff2") format("woff2"), url("glyphs/woff/f265e93a.woff") format("woff"), url("glyphs/ttf/f265e93a.ttf") format("truetype"); unicode-range: U+E143; } @font-face { font-family: "eur"; src: url("glyphs/woff2/67036539.woff2") format("woff2"), url("glyphs/woff/67036539.woff") format("woff"), url("glyphs/ttf/67036539.ttf") format("truetype"); unicode-range: U+E144; } @font-face { font-family: "eurocheque"; src: url("glyphs/woff2/6282768c.woff2") format("woff2"), url("glyphs/woff/6282768c.woff") format("woff"), url("glyphs/ttf/6282768c.ttf") format("truetype"); unicode-range: U+E145; } @font-face { font-family: "erc"; src: url("glyphs/woff2/d9f1f706.woff2") format("woff2"), url("glyphs/woff/d9f1f706.woff") format("woff"), url("glyphs/ttf/d9f1f706.ttf") format("truetype"); unicode-range: U+E146; } @font-face { font-family: "xuc"; src: url("glyphs/woff2/2200df99.woff2") format("woff2"), url("glyphs/woff/2200df99.woff") format("woff"), url("glyphs/ttf/2200df99.ttf") format("truetype"); unicode-range: U+E147; } @font-face { font-family: "exmo"; src: url("glyphs/woff2/d32f8a26.woff2") format("woff2"), url("glyphs/woff/d32f8a26.woff") format("woff"), url("glyphs/ttf/d32f8a26.ttf") format("truetype"); unicode-range: U+E148; } @font-face { font-family: "xp"; src: url("glyphs/woff2/dbdc4b76.woff2") format("woff2"), url("glyphs/woff/dbdc4b76.woff") format("woff"), url("glyphs/ttf/dbdc4b76.ttf") format("truetype"); unicode-range: U+E149; } @font-face { font-family: "exy"; src: url("glyphs/woff2/db17d1b4.woff2") format("woff2"), url("glyphs/woff/db17d1b4.woff") format("woff"), url("glyphs/ttf/db17d1b4.ttf") format("truetype"); unicode-range: U+E14A; } @font-face { font-family: "fct"; src: url("glyphs/woff2/7c28d0b9.woff2") format("woff2"), url("glyphs/woff/7c28d0b9.woff") format("woff"), url("glyphs/ttf/7c28d0b9.ttf") format("truetype"); unicode-range: U+E14B; } @font-face { font-family: "fair"; src: url("glyphs/woff2/2c977e31.woff2") format("woff2"), url("glyphs/woff/2c977e31.woff") format("woff"), url("glyphs/ttf/2c977e31.ttf") format("truetype"); unicode-range: U+E14C; } @font-face { font-family: "ftc"; src: url("glyphs/woff2/1ea52dfd.woff2") format("woff2"), url("glyphs/woff/1ea52dfd.woff") format("woff"), url("glyphs/ttf/1ea52dfd.ttf") format("truetype"); unicode-range: U+E14D; } @font-face { font-family: "fedex"; src: url("glyphs/woff2/f6a67776.woff2") format("woff2"), url("glyphs/woff/f6a67776.woff") format("woff"), url("glyphs/ttf/f6a67776.ttf") format("truetype"); unicode-range: U+E14E; } @font-face { font-family: "fil"; src: url("glyphs/woff2/9518b144.woff2") format("woff2"), url("glyphs/woff/9518b144.woff") format("woff"), url("glyphs/ttf/9518b144.ttf") format("truetype"); unicode-range: U+E14F; } @font-face { font-family: "fi"; src: url("glyphs/woff2/12c373f3.woff2") format("woff2"), url("glyphs/woff/12c373f3.woff") format("woff"), url("glyphs/ttf/12c373f3.ttf") format("truetype"); unicode-range: U+E150; } @font-face { font-family: "1st"; src: url("glyphs/woff2/51a9fa09.woff2") format("woff2"), url("glyphs/woff/51a9fa09.woff") format("woff"), url("glyphs/ttf/51a9fa09.ttf") format("truetype"); unicode-range: U+E151; } @font-face { font-family: "fash"; src: url("glyphs/woff2/7824402e.woff2") format("woff2"), url("glyphs/woff/7824402e.woff") format("woff"), url("glyphs/ttf/7824402e.ttf") format("truetype"); unicode-range: U+E152; } @font-face { font-family: "flattr"; src: url("glyphs/woff2/c7e8635b.woff2") format("woff2"), url("glyphs/woff/c7e8635b.woff") format("woff"), url("glyphs/ttf/c7e8635b.ttf") format("truetype"); unicode-range: U+E153; } @font-face { font-family: "flo"; src: url("glyphs/woff2/b524a1f5.woff2") format("woff2"), url("glyphs/woff/b524a1f5.woff") format("woff"), url("glyphs/ttf/b524a1f5.ttf") format("truetype"); unicode-range: U+E154; } @font-face { font-family: "fluz"; src: url("glyphs/woff2/f2a75c7f.woff2") format("woff2"), url("glyphs/woff/f2a75c7f.woff") format("woff"), url("glyphs/ttf/f2a75c7f.ttf") format("truetype"); unicode-range: U+E155; } @font-face { font-family: "frk"; src: url("glyphs/woff2/b3df67d1.woff2") format("woff2"), url("glyphs/woff/b3df67d1.woff") format("woff"), url("glyphs/ttf/b3df67d1.ttf") format("truetype"); unicode-range: U+E156; } @font-face { font-family: "fc2"; src: url("glyphs/woff2/c9b5076d.woff2") format("woff2"), url("glyphs/woff/c9b5076d.woff") format("woff"), url("glyphs/ttf/c9b5076d.ttf") format("truetype"); unicode-range: U+E157; } @font-face { font-family: "fun"; src: url("glyphs/woff2/1b180f14.woff2") format("woff2"), url("glyphs/woff/1b180f14.woff") format("woff"), url("glyphs/ttf/1b180f14.ttf") format("truetype"); unicode-range: U+E158; } @font-face { font-family: "fsn"; src: url("glyphs/woff2/6b36c863.woff2") format("woff2"), url("glyphs/woff/6b36c863.woff") format("woff"), url("glyphs/ttf/6b36c863.ttf") format("truetype"); unicode-range: U+E159; } @font-face { font-family: "gas"; src: url("glyphs/woff2/09b0664c.woff2") format("woff2"), url("glyphs/woff/09b0664c.woff") format("woff"), url("glyphs/ttf/09b0664c.ttf") format("truetype"); unicode-range: U+E15A; } @font-face { font-family: "gdax"; src: url("glyphs/woff2/d0f7d102.woff2") format("woff2"), url("glyphs/woff/d0f7d102.woff") format("woff"), url("glyphs/ttf/d0f7d102.ttf") format("truetype"); unicode-range: U+E15B; } @font-face { font-family: "get"; src: url("glyphs/woff2/aa6c0f8a.woff2") format("woff2"), url("glyphs/woff/aa6c0f8a.woff") format("woff"), url("glyphs/ttf/aa6c0f8a.ttf") format("truetype"); unicode-range: U+E15C; } @font-face { font-family: "gxs"; src: url("glyphs/woff2/dcfebe0e.woff2") format("woff2"), url("glyphs/woff/dcfebe0e.woff") format("woff"), url("glyphs/ttf/dcfebe0e.ttf") format("truetype"); unicode-range: U+E15D; } @font-face { font-family: "gxs"; src: url("glyphs/woff2/12d9f10f.woff2") format("woff2"), url("glyphs/woff/12d9f10f.woff") format("woff"), url("glyphs/ttf/12d9f10f.ttf") format("truetype"); unicode-range: U+E15E; } @font-face { font-family: "game"; src: url("glyphs/woff2/f076afbd.woff2") format("woff2"), url("glyphs/woff/f076afbd.woff") format("woff"), url("glyphs/ttf/f076afbd.ttf") format("truetype"); unicode-range: U+E15F; } @font-face { font-family: "gategoin"; src: url("glyphs/woff2/9a9a307d.woff2") format("woff2"), url("glyphs/woff/9a9a307d.woff") format("woff"), url("glyphs/ttf/9a9a307d.ttf") format("truetype"); unicode-range: U+E160; } @font-face { font-family: "gateio"; src: url("glyphs/woff2/eccf06e9.woff2") format("woff2"), url("glyphs/woff/eccf06e9.woff") format("woff"), url("glyphs/ttf/eccf06e9.ttf") format("truetype"); unicode-range: U+E161; } @font-face { font-family: "gemini"; src: url("glyphs/woff2/ab5759c1.woff2") format("woff2"), url("glyphs/woff/ab5759c1.woff") format("woff"), url("glyphs/ttf/ab5759c1.ttf") format("truetype"); unicode-range: U+E162; } @font-face { font-family: "gem"; src: url("glyphs/woff2/896bcc00.woff2") format("woff2"), url("glyphs/woff/896bcc00.woff") format("woff"), url("glyphs/ttf/896bcc00.ttf") format("truetype"); unicode-range: U+E163; } @font-face { font-family: "gvt"; src: url("glyphs/woff2/d662c711.woff2") format("woff2"), url("glyphs/woff/d662c711.woff") format("woff"), url("glyphs/ttf/d662c711.ttf") format("truetype"); unicode-range: U+E164; } @font-face { font-family: "gemz"; src: url("glyphs/woff2/72bccb9e.woff2") format("woff2"), url("glyphs/woff/72bccb9e.woff") format("woff"), url("glyphs/ttf/72bccb9e.ttf") format("truetype"); unicode-range: U+E165; } @font-face { font-family: "gto"; src: url("glyphs/woff2/65ed8428.woff2") format("woff2"), url("glyphs/woff/65ed8428.woff") format("woff"), url("glyphs/ttf/65ed8428.ttf") format("truetype"); unicode-range: U+E166; } @font-face { font-family: "gla"; src: url("glyphs/woff2/8cd085fd.woff2") format("woff2"), url("glyphs/woff/8cd085fd.woff") format("woff"), url("glyphs/ttf/8cd085fd.ttf") format("truetype"); unicode-range: U+E167; } @font-face { font-family: "gjc"; src: url("glyphs/woff2/9554c428.woff2") format("woff2"), url("glyphs/woff/9554c428.woff") format("woff"), url("glyphs/ttf/9554c428.ttf") format("truetype"); unicode-range: U+E168; } @font-face { font-family: "gno"; src: url("glyphs/woff2/61e4ec60.woff2") format("woff2"), url("glyphs/woff/61e4ec60.woff") format("woff"), url("glyphs/ttf/61e4ec60.ttf") format("truetype"); unicode-range: U+E169; } @font-face { font-family: "gld"; src: url("glyphs/woff2/9850be29.woff2") format("woff2"), url("glyphs/woff/9850be29.woff") format("woff"), url("glyphs/ttf/9850be29.ttf") format("truetype"); unicode-range: U+E16A; } @font-face { font-family: "gmnt"; src: url("glyphs/woff2/c67e4554.woff2") format("woff2"), url("glyphs/woff/c67e4554.woff") format("woff"), url("glyphs/ttf/c67e4554.ttf") format("truetype"); unicode-range: U+E16B; } @font-face { font-family: "gnt"; src: url("glyphs/woff2/52b1caf8.woff2") format("woff2"), url("glyphs/woff/52b1caf8.woff") format("woff"), url("glyphs/ttf/52b1caf8.ttf") format("truetype"); unicode-range: U+E16C; } @font-face { font-family: "golos"; src: url("glyphs/woff2/ac2048ca.woff2") format("woff2"), url("glyphs/woff/ac2048ca.woff") format("woff"), url("glyphs/ttf/ac2048ca.ttf") format("truetype"); unicode-range: U+E16D; } @font-face { font-family: "googlewallet"; src: url("glyphs/woff2/9393e70c.woff2") format("woff2"), url("glyphs/woff/9393e70c.woff") format("woff"), url("glyphs/ttf/9393e70c.ttf") format("truetype"); unicode-range: U+E16E; } @font-face { font-family: "gdc"; src: url("glyphs/woff2/f99464f4.woff2") format("woff2"), url("glyphs/woff/f99464f4.woff") format("woff"), url("glyphs/ttf/f99464f4.ttf") format("truetype"); unicode-range: U+E16F; } @font-face { font-family: "grmd"; src: url("glyphs/woff2/99b23887.woff2") format("woff2"), url("glyphs/woff/99b23887.woff") format("woff"), url("glyphs/ttf/99b23887.ttf") format("truetype"); unicode-range: U+E170; } @font-face { font-family: "grid"; src: url("glyphs/woff2/57c37525.woff2") format("woff2"), url("glyphs/woff/57c37525.woff") format("woff"), url("glyphs/ttf/57c37525.ttf") format("truetype"); unicode-range: U+E171; } @font-face { font-family: "grc"; src: url("glyphs/woff2/b853b110.woff2") format("woff2"), url("glyphs/woff/b853b110.woff") format("woff"), url("glyphs/ttf/b853b110.ttf") format("truetype"); unicode-range: U+E172; } @font-face { font-family: "grs"; src: url("glyphs/woff2/0cf3a20b.woff2") format("woff2"), url("glyphs/woff/0cf3a20b.woff") format("woff"), url("glyphs/ttf/0cf3a20b.ttf") format("truetype"); unicode-range: U+E173; } @font-face { font-family: "efl"; src: url("glyphs/woff2/b295da08.woff2") format("woff2"), url("glyphs/woff/b295da08.woff") format("woff"), url("glyphs/ttf/b295da08.ttf") format("truetype"); unicode-range: U+E174; } @font-face { font-family: "nlg"; src: url("glyphs/woff2/842ec06d.woff2") format("woff2"), url("glyphs/woff/842ec06d.woff") format("woff"), url("glyphs/ttf/842ec06d.ttf") format("truetype"); unicode-range: U+E175; } @font-face { font-family: "guppy"; src: url("glyphs/woff2/c7a8c9c1.woff2") format("woff2"), url("glyphs/woff/c7a8c9c1.woff") format("woff"), url("glyphs/ttf/c7a8c9c1.ttf") format("truetype"); unicode-range: U+E176; } @font-face { font-family: "heat"; src: url("glyphs/woff2/9046047a.woff2") format("woff2"), url("glyphs/woff/9046047a.woff") format("woff"), url("glyphs/ttf/9046047a.ttf") format("truetype"); unicode-range: U+E177; } @font-face { font-family: "hkn"; src: url("glyphs/woff2/7ee937ee.woff2") format("woff2"), url("glyphs/woff/7ee937ee.woff") format("woff"), url("glyphs/ttf/7ee937ee.ttf") format("truetype"); unicode-range: U+E178; } @font-face { font-family: "hac"; src: url("glyphs/woff2/d8f20bf0.woff2") format("woff2"), url("glyphs/woff/d8f20bf0.woff") format("woff"), url("glyphs/ttf/d8f20bf0.ttf") format("truetype"); unicode-range: U+E179; } @font-face { font-family: "hlc"; src: url("glyphs/woff2/fc061854.woff2") format("woff2"), url("glyphs/woff/fc061854.woff") format("woff"), url("glyphs/ttf/fc061854.ttf") format("truetype"); unicode-range: U+E17A; } @font-face { font-family: "hvv"; src: url("glyphs/woff2/e7c8de5d.woff2") format("woff2"), url("glyphs/woff/e7c8de5d.woff") format("woff"), url("glyphs/ttf/e7c8de5d.ttf") format("truetype"); unicode-range: U+E17B; } @font-face { font-family: "hdg"; src: url("glyphs/woff2/47413c16.woff2") format("woff2"), url("glyphs/woff/47413c16.woff") format("woff"), url("glyphs/ttf/47413c16.ttf") format("truetype"); unicode-range: U+E17C; } @font-face { font-family: "hgt"; src: url("glyphs/woff2/9f3909aa.woff2") format("woff2"), url("glyphs/woff/9f3909aa.woff") format("woff"), url("glyphs/ttf/9f3909aa.ttf") format("truetype"); unicode-range: U+E17D; } @font-face { font-family: "thc"; src: url("glyphs/woff2/1a7bcf02.woff2") format("woff2"), url("glyphs/woff/1a7bcf02.woff") format("woff"), url("glyphs/ttf/1a7bcf02.ttf") format("truetype"); unicode-range: U+E17E; } @font-face { font-family: "hermes"; src: url("glyphs/woff2/315c66f8.woff2") format("woff2"), url("glyphs/woff/315c66f8.woff") format("woff"), url("glyphs/ttf/315c66f8.ttf") format("truetype"); unicode-range: U+E17F; } @font-face { font-family: "hmc"; src: url("glyphs/woff2/cdb6b693.woff2") format("woff2"), url("glyphs/woff/cdb6b693.woff") format("woff"), url("glyphs/ttf/cdb6b693.ttf") format("truetype"); unicode-range: U+E180; } @font-face { font-family: "hpb"; src: url("glyphs/woff2/25eb254d.woff2") format("woff2"), url("glyphs/woff/25eb254d.woff") format("woff"), url("glyphs/ttf/25eb254d.ttf") format("truetype"); unicode-range: U+E181; } @font-face { font-family: "hitbtc"; src: url("glyphs/woff2/9a7fb4ed.woff2") format("woff2"), url("glyphs/woff/9a7fb4ed.woff") format("woff"), url("glyphs/ttf/9a7fb4ed.ttf") format("truetype"); unicode-range: U+E182; } @font-face { font-family: "hvn"; src: url("glyphs/woff2/3d32bff5.woff2") format("woff2"), url("glyphs/woff/3d32bff5.woff") format("woff"), url("glyphs/ttf/3d32bff5.ttf") format("truetype"); unicode-range: U+E183; } @font-face { font-family: "hsr"; src: url("glyphs/woff2/e18256ba.woff2") format("woff2"), url("glyphs/woff/e18256ba.woff") format("woff"), url("glyphs/ttf/e18256ba.ttf") format("truetype"); unicode-range: U+E184; } @font-face { font-family: "hmq"; src: url("glyphs/woff2/be153f92.woff2") format("woff2"), url("glyphs/woff/be153f92.woff") format("woff"), url("glyphs/ttf/be153f92.ttf") format("truetype"); unicode-range: U+E185; } @font-face { font-family: "huobi"; src: url("glyphs/woff2/252bbda4.woff2") format("woff2"), url("glyphs/woff/252bbda4.woff") format("woff"), url("glyphs/ttf/252bbda4.ttf") format("truetype"); unicode-range: U+E186; } @font-face { font-family: "tk"; src: url("glyphs/woff2/34833f66.woff2") format("woff2"), url("glyphs/woff/34833f66.woff") format("woff"), url("glyphs/ttf/34833f66.ttf") format("truetype"); unicode-range: U+E187; } @font-face { font-family: "hush"; src: url("glyphs/woff2/a851f472.woff2") format("woff2"), url("glyphs/woff/a851f472.woff") format("woff"), url("glyphs/ttf/a851f472.ttf") format("truetype"); unicode-range: U+E188; } @font-face { font-family: "icx"; src: url("glyphs/woff2/781792ac.woff2") format("woff2"), url("glyphs/woff/781792ac.woff") format("woff"), url("glyphs/ttf/781792ac.ttf") format("truetype"); unicode-range: U+E189; } @font-face { font-family: "idex"; src: url("glyphs/woff2/090f780c.woff2") format("woff2"), url("glyphs/woff/090f780c.woff") format("woff"), url("glyphs/ttf/090f780c.ttf") format("truetype"); unicode-range: U+E18A; } @font-face { font-family: "iht"; src: url("glyphs/woff2/c206b69c.woff2") format("woff2"), url("glyphs/woff/c206b69c.woff") format("woff"), url("glyphs/ttf/c206b69c.ttf") format("truetype"); unicode-range: U+E18B; } @font-face { font-family: "ingb"; src: url("glyphs/woff2/bfff0e1f.woff2") format("woff2"), url("glyphs/woff/bfff0e1f.woff") format("woff"), url("glyphs/ttf/bfff0e1f.ttf") format("truetype"); unicode-range: U+E18C; } @font-face { font-family: "ins"; src: url("glyphs/woff2/ccc16298.woff2") format("woff2"), url("glyphs/woff/ccc16298.woff") format("woff"), url("glyphs/ttf/ccc16298.ttf") format("truetype"); unicode-range: U+E18D; } @font-face { font-family: "ioc"; src: url("glyphs/woff2/a1fbcdf7.woff2") format("woff2"), url("glyphs/woff/a1fbcdf7.woff") format("woff"), url("glyphs/ttf/a1fbcdf7.ttf") format("truetype"); unicode-range: U+E18E; } @font-face { font-family: "ion"; src: url("glyphs/woff2/d2c72c19.woff2") format("woff2"), url("glyphs/woff/d2c72c19.woff") format("woff"), url("glyphs/ttf/d2c72c19.ttf") format("truetype"); unicode-range: U+E18F; } @font-face { font-family: "iost"; src: url("glyphs/woff2/288dafa6.woff2") format("woff2"), url("glyphs/woff/288dafa6.woff") format("woff"), url("glyphs/ttf/288dafa6.ttf") format("truetype"); unicode-range: U+E190; } @font-face { font-family: "iotaeco"; src: url("glyphs/woff2/e2f6544b.woff2") format("woff2"), url("glyphs/woff/e2f6544b.woff") format("woff"), url("glyphs/ttf/e2f6544b.ttf") format("truetype"); unicode-range: U+E191; } @font-face { font-family: "miota"; src: url("glyphs/woff2/12cd5e20.woff2") format("woff2"), url("glyphs/woff/12cd5e20.woff") format("woff"), url("glyphs/ttf/12cd5e20.ttf") format("truetype"); unicode-range: U+E192; } @font-face { font-family: "ipsx"; src: url("glyphs/woff2/c3f23f1d.woff2") format("woff2"), url("glyphs/woff/c3f23f1d.woff") format("woff"), url("glyphs/ttf/c3f23f1d.ttf") format("truetype"); unicode-range: U+E193; } @font-face { font-family: "icn"; src: url("glyphs/woff2/e6b4aab7.woff2") format("woff2"), url("glyphs/woff/e6b4aab7.woff") format("woff"), url("glyphs/ttf/e6b4aab7.ttf") format("truetype"); unicode-range: U+E194; } @font-face { font-family: "ignis"; src: url("glyphs/woff2/46a505fd.woff2") format("woff2"), url("glyphs/woff/46a505fd.woff") format("woff"), url("glyphs/ttf/46a505fd.ttf") format("truetype"); unicode-range: U+E195; } @font-face { font-family: "incnt"; src: url("glyphs/woff2/dc1b7673.woff2") format("woff2"), url("glyphs/woff/dc1b7673.woff") format("woff"), url("glyphs/ttf/dc1b7673.ttf") format("truetype"); unicode-range: U+E196; } @font-face { font-family: "idh"; src: url("glyphs/woff2/08e9330e.woff2") format("woff2"), url("glyphs/woff/08e9330e.woff") format("woff"), url("glyphs/ttf/08e9330e.ttf") format("truetype"); unicode-range: U+E197; } @font-face { font-family: "inr"; src: url("glyphs/woff2/cf2a0a85.woff2") format("woff2"), url("glyphs/woff/cf2a0a85.woff") format("woff"), url("glyphs/ttf/cf2a0a85.ttf") format("truetype"); unicode-range: U+E198; } @font-face { font-family: "indi"; src: url("glyphs/woff2/172e6f01.woff2") format("woff2"), url("glyphs/woff/172e6f01.woff") format("woff"), url("glyphs/ttf/172e6f01.ttf") format("truetype"); unicode-range: U+E199; } @font-face { font-family: "ifc"; src: url("glyphs/woff2/21619e9c.woff2") format("woff2"), url("glyphs/woff/21619e9c.woff") format("woff"), url("glyphs/ttf/21619e9c.ttf") format("truetype"); unicode-range: U+E19A; } @font-face { font-family: "ink"; src: url("glyphs/woff2/94c87c19.woff2") format("woff2"), url("glyphs/woff/94c87c19.woff") format("woff"), url("glyphs/ttf/94c87c19.ttf") format("truetype"); unicode-range: U+E19B; } @font-face { font-family: "xnk"; src: url("glyphs/woff2/e7803979.woff2") format("woff2"), url("glyphs/woff/e7803979.woff") format("woff"), url("glyphs/ttf/e7803979.ttf") format("truetype"); unicode-range: U+E19C; } @font-face { font-family: "inn"; src: url("glyphs/woff2/83bd70cd.woff2") format("woff2"), url("glyphs/woff/83bd70cd.woff") format("woff"), url("glyphs/ttf/83bd70cd.ttf") format("truetype"); unicode-range: U+E19D; } @font-face { font-family: "ipl"; src: url("glyphs/woff2/2489d00d.woff2") format("woff2"), url("glyphs/woff/2489d00d.woff") format("woff"), url("glyphs/ttf/2489d00d.ttf") format("truetype"); unicode-range: U+E19E; } @font-face { font-family: "int"; src: url("glyphs/woff2/d4fffa4b.woff2") format("woff2"), url("glyphs/woff/d4fffa4b.woff") format("woff"), url("glyphs/ttf/d4fffa4b.ttf") format("truetype"); unicode-range: U+E19F; } @font-face { font-family: "ipbc"; src: url("glyphs/woff2/36a3295a.woff2") format("woff2"), url("glyphs/woff/36a3295a.woff") format("woff"), url("glyphs/ttf/36a3295a.ttf") format("truetype"); unicode-range: U+E1A0; } @font-face { font-family: "ift"; src: url("glyphs/woff2/50b342a2.woff2") format("woff2"), url("glyphs/woff/50b342a2.woff") format("woff"), url("glyphs/ttf/50b342a2.ttf") format("truetype"); unicode-range: U+E1A1; } @font-face { font-family: "itc"; src: url("glyphs/woff2/4af4ef28.woff2") format("woff2"), url("glyphs/woff/4af4ef28.woff") format("woff"), url("glyphs/ttf/4af4ef28.ttf") format("truetype"); unicode-range: U+E1A2; } @font-face { font-family: "ing"; src: url("glyphs/woff2/ba711105.woff2") format("woff2"), url("glyphs/woff/ba711105.woff") format("woff"), url("glyphs/ttf/ba711105.ttf") format("truetype"); unicode-range: U+E1A3; } @font-face { font-family: "jcb"; src: url("glyphs/woff2/2d027c9d.woff2") format("woff2"), url("glyphs/woff/2d027c9d.woff") format("woff"), url("glyphs/ttf/2d027c9d.ttf") format("truetype"); unicode-range: U+E1A4; } @font-face { font-family: "j8t"; src: url("glyphs/woff2/70a458c9.woff2") format("woff2"), url("glyphs/woff/70a458c9.woff") format("woff"), url("glyphs/ttf/70a458c9.ttf") format("truetype"); unicode-range: U+E1A5; } @font-face { font-family: "js"; src: url("glyphs/woff2/3b7180f4.woff2") format("woff2"), url("glyphs/woff/3b7180f4.woff") format("woff"), url("glyphs/ttf/3b7180f4.ttf") format("truetype"); unicode-range: U+E1A6; } @font-face { font-family: "jpy"; src: url("glyphs/woff2/bb6c3f4f.woff2") format("woff2"), url("glyphs/woff/bb6c3f4f.woff") format("woff"), url("glyphs/ttf/bb6c3f4f.ttf") format("truetype"); unicode-range: U+E1A7; } @font-face { font-family: "jc"; src: url("glyphs/woff2/e3d7c442.woff2") format("woff2"), url("glyphs/woff/e3d7c442.woff") format("woff"), url("glyphs/ttf/e3d7c442.ttf") format("truetype"); unicode-range: U+E1A8; } @font-face { font-family: "jet"; src: url("glyphs/woff2/0a4097e4.woff2") format("woff2"), url("glyphs/woff/0a4097e4.woff") format("woff"), url("glyphs/ttf/0a4097e4.ttf") format("truetype"); unicode-range: U+E1A9; } @font-face { font-family: "jnt"; src: url("glyphs/woff2/8796b453.woff2") format("woff2"), url("glyphs/woff/8796b453.woff") format("woff"), url("glyphs/ttf/8796b453.ttf") format("truetype"); unicode-range: U+E1AA; } @font-face { font-family: "jcr"; src: url("glyphs/woff2/ac9383e4.woff2") format("woff2"), url("glyphs/woff/ac9383e4.woff") format("woff"), url("glyphs/ttf/ac9383e4.ttf") format("truetype"); unicode-range: U+E1AB; } @font-face { font-family: "jbs"; src: url("glyphs/woff2/c9480f66.woff2") format("woff2"), url("glyphs/woff/c9480f66.woff") format("woff"), url("glyphs/ttf/c9480f66.ttf") format("truetype"); unicode-range: U+E1AC; } @font-face { font-family: "kick"; src: url("glyphs/woff2/d0cecf4f.woff2") format("woff2"), url("glyphs/woff/d0cecf4f.woff") format("woff"), url("glyphs/ttf/d0cecf4f.ttf") format("truetype"); unicode-range: U+E1AD; } @font-face { font-family: "kin"; src: url("glyphs/woff2/1d31d67a.woff2") format("woff2"), url("glyphs/woff/1d31d67a.woff") format("woff"), url("glyphs/ttf/1d31d67a.ttf") format("truetype"); unicode-range: U+E1AE; } @font-face { font-family: "klarna"; src: url("glyphs/woff2/8f3601cc.woff2") format("woff2"), url("glyphs/woff/8f3601cc.woff") format("woff"), url("glyphs/ttf/8f3601cc.ttf") format("truetype"); unicode-range: U+E1AF; } @font-face { font-family: "kobo"; src: url("glyphs/woff2/c67c215e.woff2") format("woff2"), url("glyphs/woff/c67c215e.woff") format("woff"), url("glyphs/ttf/c67c215e.ttf") format("truetype"); unicode-range: U+E1B0; } @font-face { font-family: "kmd"; src: url("glyphs/woff2/b1eba251.woff2") format("woff2"), url("glyphs/woff/b1eba251.woff") format("woff"), url("glyphs/ttf/b1eba251.ttf") format("truetype"); unicode-range: U+E1B1; } @font-face { font-family: "korbit"; src: url("glyphs/woff2/efc8654c.woff2") format("woff2"), url("glyphs/woff/efc8654c.woff") format("woff"), url("glyphs/ttf/efc8654c.ttf") format("truetype"); unicode-range: U+E1B2; } @font-face { font-family: "kore"; src: url("glyphs/woff2/38dcac7f.woff2") format("woff2"), url("glyphs/woff/38dcac7f.woff") format("woff"), url("glyphs/ttf/38dcac7f.ttf") format("truetype"); unicode-range: U+E1B3; } @font-face { font-family: "kraken"; src: url("glyphs/woff2/5b78e2cb.woff2") format("woff2"), url("glyphs/woff/5b78e2cb.woff") format("woff"), url("glyphs/ttf/5b78e2cb.ttf") format("truetype"); unicode-range: U+E1B4; } @font-face { font-family: "kucoin"; src: url("glyphs/woff2/cfa9655f.woff2") format("woff2"), url("glyphs/woff/cfa9655f.woff") format("woff"), url("glyphs/ttf/cfa9655f.ttf") format("truetype"); unicode-range: U+E1B5; } @font-face { font-family: "kcs"; src: url("glyphs/woff2/97b82bce.woff2") format("woff2"), url("glyphs/woff/97b82bce.woff") format("woff"), url("glyphs/ttf/97b82bce.ttf") format("truetype"); unicode-range: U+E1B6; } @font-face { font-family: "knc"; src: url("glyphs/woff2/75577460.woff2") format("woff2"), url("glyphs/woff/75577460.woff") format("woff"), url("glyphs/ttf/75577460.ttf") format("truetype"); unicode-range: U+E1B7; } @font-face { font-family: "la"; src: url("glyphs/woff2/70d68f2f.woff2") format("woff2"), url("glyphs/woff/70d68f2f.woff") format("woff"), url("glyphs/ttf/70d68f2f.ttf") format("truetype"); unicode-range: U+E1B8; } @font-face { font-family: "lbc"; src: url("glyphs/woff2/61d34932.woff2") format("woff2"), url("glyphs/woff/61d34932.woff") format("woff"), url("glyphs/ttf/61d34932.ttf") format("truetype"); unicode-range: U+E1B9; } @font-face { font-family: "leo"; src: url("glyphs/woff2/da8ef2eb.woff2") format("woff2"), url("glyphs/woff/da8ef2eb.woff") format("woff"), url("glyphs/ttf/da8ef2eb.ttf") format("truetype"); unicode-range: U+E1BA; } @font-face { font-family: "life"; src: url("glyphs/woff2/ac31ca34.woff2") format("woff2"), url("glyphs/woff/ac31ca34.woff") format("woff"), url("glyphs/ttf/ac31ca34.ttf") format("truetype"); unicode-range: U+E1BB; } @font-face { font-family: "loci"; src: url("glyphs/woff2/bb074b56.woff2") format("woff2"), url("glyphs/woff/bb074b56.woff") format("woff"), url("glyphs/ttf/bb074b56.ttf") format("truetype"); unicode-range: U+E1BC; } @font-face { font-family: "lux"; src: url("glyphs/woff2/c9b3ada5.woff2") format("woff2"), url("glyphs/woff/c9b3ada5.woff") format("woff"), url("glyphs/ttf/c9b3ada5.ttf") format("truetype"); unicode-range: U+E1BD; } @font-face { font-family: "laposte"; src: url("glyphs/woff2/5330b47e.woff2") format("woff2"), url("glyphs/woff/5330b47e.woff") format("woff"), url("glyphs/ttf/5330b47e.ttf") format("truetype"); unicode-range: U+E1BE; } @font-face { font-family: "lala"; src: url("glyphs/woff2/8d40bc1f.woff2") format("woff2"), url("glyphs/woff/8d40bc1f.woff") format("woff"), url("glyphs/ttf/8d40bc1f.ttf") format("truetype"); unicode-range: U+E1BF; } @font-face { font-family: "lakebtc"; src: url("glyphs/woff2/3eed650c.woff2") format("woff2"), url("glyphs/woff/3eed650c.woff") format("woff"), url("glyphs/ttf/3eed650c.ttf") format("truetype"); unicode-range: U+E1C0; } @font-face { font-family: "tau"; src: url("glyphs/woff2/e8acadad.woff2") format("woff2"), url("glyphs/woff/e8acadad.woff") format("woff"), url("glyphs/ttf/e8acadad.ttf") format("truetype"); unicode-range: U+E1C1; } @font-face { font-family: "ldc"; src: url("glyphs/woff2/db92c609.woff2") format("woff2"), url("glyphs/woff/db92c609.woff") format("woff"), url("glyphs/ttf/db92c609.ttf") format("truetype"); unicode-range: U+E1C2; } @font-face { font-family: "ledger"; src: url("glyphs/woff2/4129e2ed.woff2") format("woff2"), url("glyphs/woff/4129e2ed.woff") format("woff"), url("glyphs/ttf/4129e2ed.ttf") format("truetype"); unicode-range: U+E1C3; } @font-face { font-family: "lst"; src: url("glyphs/woff2/eb2a76c7.woff2") format("woff2"), url("glyphs/woff/eb2a76c7.woff") format("woff"), url("glyphs/ttf/eb2a76c7.ttf") format("truetype"); unicode-range: U+E1C4; } @font-face { font-family: "lev"; src: url("glyphs/woff2/854811f2.woff2") format("woff2"), url("glyphs/woff/854811f2.woff") format("woff"), url("glyphs/ttf/854811f2.ttf") format("truetype"); unicode-range: U+E1C5; } @font-face { font-family: "linda"; src: url("glyphs/woff2/d289b887.woff2") format("woff2"), url("glyphs/woff/d289b887.woff") format("woff"), url("glyphs/ttf/d289b887.ttf") format("truetype"); unicode-range: U+E1C6; } @font-face { font-family: "linx"; src: url("glyphs/woff2/462ea6a3.woff2") format("woff2"), url("glyphs/woff/462ea6a3.woff") format("woff"), url("glyphs/ttf/462ea6a3.ttf") format("truetype"); unicode-range: U+E1C7; } @font-face { font-family: "liqui"; src: url("glyphs/woff2/52d65af9.woff2") format("woff2"), url("glyphs/woff/52d65af9.woff") format("woff"), url("glyphs/ttf/52d65af9.ttf") format("truetype"); unicode-range: U+E1C8; } @font-face { font-family: "lsk"; src: url("glyphs/woff2/8827eb24.woff2") format("woff2"), url("glyphs/woff/8827eb24.woff") format("woff"), url("glyphs/ttf/8827eb24.ttf") format("truetype"); unicode-range: U+E1C9; } @font-face { font-family: "ldoge"; src: url("glyphs/woff2/d615451a.woff2") format("woff2"), url("glyphs/woff/d615451a.woff") format("woff"), url("glyphs/ttf/d615451a.ttf") format("truetype"); unicode-range: U+E1CA; } @font-face { font-family: "lcc"; src: url("glyphs/woff2/e3ae4d2d.woff2") format("woff2"), url("glyphs/woff/e3ae4d2d.woff") format("woff"), url("glyphs/ttf/e3ae4d2d.ttf") format("truetype"); unicode-range: U+E1CB; } @font-face { font-family: "ltc"; src: url("glyphs/woff2/3fc14a91.woff2") format("woff2"), url("glyphs/woff/3fc14a91.woff") format("woff"), url("glyphs/ttf/3fc14a91.ttf") format("truetype"); unicode-range: U+E1CC; } @font-face { font-family: "livecoin"; src: url("glyphs/woff2/64bbaa0b.woff2") format("woff2"), url("glyphs/woff/64bbaa0b.woff") format("woff"), url("glyphs/ttf/64bbaa0b.ttf") format("truetype"); unicode-range: U+E1CD; } @font-face { font-family: "llb"; src: url("glyphs/woff2/63d16b50.woff2") format("woff2"), url("glyphs/woff/63d16b50.woff") format("woff"), url("glyphs/ttf/63d16b50.ttf") format("truetype"); unicode-range: U+E1CE; } @font-face { font-family: "lol"; src: url("glyphs/woff2/6a54a1a9.woff2") format("woff2"), url("glyphs/woff/6a54a1a9.woff") format("woff"), url("glyphs/ttf/6a54a1a9.ttf") format("truetype"); unicode-range: U+E1CF; } @font-face { font-family: "localbitcoins"; src: url("glyphs/woff2/80629e16.woff2") format("woff2"), url("glyphs/woff/80629e16.woff") format("woff"), url("glyphs/ttf/80629e16.ttf") format("truetype"); unicode-range: U+E1D0; } @font-face { font-family: "loom"; src: url("glyphs/woff2/e036f61e.woff2") format("woff2"), url("glyphs/woff/e036f61e.woff") format("woff"), url("glyphs/ttf/e036f61e.ttf") format("truetype"); unicode-range: U+E1D1; } @font-face { font-family: "lrc"; src: url("glyphs/woff2/02255308.woff2") format("woff2"), url("glyphs/woff/02255308.woff") format("woff"), url("glyphs/ttf/02255308.ttf") format("truetype"); unicode-range: U+E1D2; } @font-face { font-family: "lun"; src: url("glyphs/woff2/8c60c66a.woff2") format("woff2"), url("glyphs/woff/8c60c66a.woff") format("woff"), url("glyphs/ttf/8c60c66a.ttf") format("truetype"); unicode-range: U+E1D3; } @font-face { font-family: "lkk"; src: url("glyphs/woff2/aa227416.woff2") format("woff2"), url("glyphs/woff/aa227416.woff") format("woff"), url("glyphs/ttf/aa227416.ttf") format("truetype"); unicode-range: U+E1D4; } @font-face { font-family: "lym"; src: url("glyphs/woff2/de01f078.woff2") format("woff2"), url("glyphs/woff/de01f078.woff") format("woff"), url("glyphs/ttf/de01f078.ttf") format("truetype"); unicode-range: U+E1D5; } @font-face { font-family: "mrk"; src: url("glyphs/woff2/cf248e93.woff2") format("woff2"), url("glyphs/woff/cf248e93.woff") format("woff"), url("glyphs/ttf/cf248e93.ttf") format("truetype"); unicode-range: U+E1D6; } @font-face { font-family: "mcap"; src: url("glyphs/woff2/dbfd39a7.woff2") format("woff2"), url("glyphs/woff/dbfd39a7.woff") format("woff"), url("glyphs/ttf/dbfd39a7.ttf") format("truetype"); unicode-range: U+E1D7; } @font-face { font-family: "mir"; src: url("glyphs/woff2/3f3d19ae.woff2") format("woff2"), url("glyphs/woff/3f3d19ae.woff") format("woff"), url("glyphs/ttf/3f3d19ae.ttf") format("truetype"); unicode-range: U+E1D8; } @font-face { font-family: "moac"; src: url("glyphs/woff2/61b21f65.woff2") format("woff2"), url("glyphs/woff/61b21f65.woff") format("woff"), url("glyphs/ttf/61b21f65.ttf") format("truetype"); unicode-range: U+E1D9; } @font-face { font-family: "msd"; src: url("glyphs/woff2/6c1508be.woff2") format("woff2"), url("glyphs/woff/6c1508be.woff") format("woff"), url("glyphs/ttf/6c1508be.ttf") format("truetype"); unicode-range: U+E1DA; } @font-face { font-family: "muse"; src: url("glyphs/woff2/bebd5dcc.woff2") format("woff2"), url("glyphs/woff/bebd5dcc.woff") format("woff"), url("glyphs/ttf/bebd5dcc.ttf") format("truetype"); unicode-range: U+E1DB; } @font-face { font-family: "maestro"; src: url("glyphs/woff2/9f00be36.woff2") format("woff2"), url("glyphs/woff/9f00be36.woff") format("woff"), url("glyphs/ttf/9f00be36.ttf") format("truetype"); unicode-range: U+E1DC; } @font-face { font-family: "mai"; src: url("glyphs/woff2/5d77f6cd.woff2") format("woff2"), url("glyphs/woff/5d77f6cd.woff") format("woff"), url("glyphs/ttf/5d77f6cd.ttf") format("truetype"); unicode-range: U+E1DD; } @font-face { font-family: "maid"; src: url("glyphs/woff2/9b9375b4.woff2") format("woff2"), url("glyphs/woff/9b9375b4.woff") format("woff"), url("glyphs/ttf/9b9375b4.ttf") format("truetype"); unicode-range: U+E1DE; } @font-face { font-family: "mkr"; src: url("glyphs/woff2/0bcc804b.woff2") format("woff2"), url("glyphs/woff/0bcc804b.woff") format("woff"), url("glyphs/ttf/0bcc804b.ttf") format("truetype"); unicode-range: U+E1DF; } @font-face { font-family: "msc"; src: url("glyphs/woff2/3c678666.woff2") format("woff2"), url("glyphs/woff/3c678666.woff") format("woff"), url("glyphs/ttf/3c678666.ttf") format("truetype"); unicode-range: U+E1E0; } @font-face { font-family: "mastercard"; src: url("glyphs/woff2/7708bdcb.woff2") format("woff2"), url("glyphs/woff/7708bdcb.woff") format("woff"), url("glyphs/ttf/7708bdcb.ttf") format("truetype"); unicode-range: U+E1E1; } @font-face { font-family: "mtr"; src: url("glyphs/woff2/8c7e5269.woff2") format("woff2"), url("glyphs/woff/8c7e5269.woff") format("woff"), url("glyphs/ttf/8c7e5269.ttf") format("truetype"); unicode-range: U+E1E2; } @font-face { font-family: "gup"; src: url("glyphs/woff2/4003be53.woff2") format("woff2"), url("glyphs/woff/4003be53.woff") format("woff"), url("glyphs/ttf/4003be53.ttf") format("truetype"); unicode-range: U+E1E3; } @font-face { font-family: "med"; src: url("glyphs/woff2/935170dd.woff2") format("woff2"), url("glyphs/woff/935170dd.woff") format("woff"), url("glyphs/ttf/935170dd.ttf") format("truetype"); unicode-range: U+E1E4; } @font-face { font-family: "mds"; src: url("glyphs/woff2/700a244d.woff2") format("woff2"), url("glyphs/woff/700a244d.woff") format("woff"), url("glyphs/ttf/700a244d.ttf") format("truetype"); unicode-range: U+E1E5; } @font-face { font-family: "mln"; src: url("glyphs/woff2/a0ecbb18.woff2") format("woff2"), url("glyphs/woff/a0ecbb18.woff") format("woff"), url("glyphs/ttf/a0ecbb18.ttf") format("truetype"); unicode-range: U+E1E6; } @font-face { font-family: "mer"; src: url("glyphs/woff2/c3c3fe75.woff2") format("woff2"), url("glyphs/woff/c3c3fe75.woff") format("woff"), url("glyphs/ttf/c3c3fe75.ttf") format("truetype"); unicode-range: U+E1E7; } @font-face { font-family: "gmt"; src: url("glyphs/woff2/fcf313ef.woff2") format("woff2"), url("glyphs/woff/fcf313ef.woff") format("woff"), url("glyphs/ttf/fcf313ef.ttf") format("truetype"); unicode-range: U+E1E8; } @font-face { font-family: "mtl"; src: url("glyphs/woff2/de978ae9.woff2") format("woff2"), url("glyphs/woff/de978ae9.woff") format("woff"), url("glyphs/ttf/de978ae9.ttf") format("truetype"); unicode-range: U+E1E9; } @font-face { font-family: "etp"; src: url("glyphs/woff2/d269bf57.woff2") format("woff2"), url("glyphs/woff/d269bf57.woff") format("woff"), url("glyphs/ttf/d269bf57.ttf") format("truetype"); unicode-range: U+E1EA; } @font-face { font-family: "met"; src: url("glyphs/woff2/db26cd0b.woff2") format("woff2"), url("glyphs/woff/db26cd0b.woff") format("woff"), url("glyphs/ttf/db26cd0b.ttf") format("truetype"); unicode-range: U+E1EB; } @font-face { font-family: "amm"; src: url("glyphs/woff2/05b616e5.woff2") format("woff2"), url("glyphs/woff/05b616e5.woff") format("woff"), url("glyphs/ttf/05b616e5.ttf") format("truetype"); unicode-range: U+E1EC; } @font-face { font-family: "mnx"; src: url("glyphs/woff2/af7f0a6e.woff2") format("woff2"), url("glyphs/woff/af7f0a6e.woff") format("woff"), url("glyphs/ttf/af7f0a6e.ttf") format("truetype"); unicode-range: U+E1ED; } @font-face { font-family: "mint"; src: url("glyphs/woff2/f03ffe17.woff2") format("woff2"), url("glyphs/woff/f03ffe17.woff") format("woff"), url("glyphs/ttf/f03ffe17.ttf") format("truetype"); unicode-range: U+E1EE; } @font-face { font-family: "mith"; src: url("glyphs/woff2/1e143288.woff2") format("woff2"), url("glyphs/woff/1e143288.woff") format("woff"), url("glyphs/ttf/1e143288.ttf") format("truetype"); unicode-range: U+E1EF; } @font-face { font-family: "xin"; src: url("glyphs/woff2/34d7ab4a.woff2") format("woff2"), url("glyphs/woff/34d7ab4a.woff") format("woff"), url("glyphs/ttf/34d7ab4a.ttf") format("truetype"); unicode-range: U+E1F0; } @font-face { font-family: "mobiamo"; src: url("glyphs/woff2/2ed7bd06.woff2") format("woff2"), url("glyphs/woff/2ed7bd06.woff") format("woff"), url("glyphs/ttf/2ed7bd06.ttf") format("truetype"); unicode-range: U+E1F1; } @font-face { font-family: "mgo"; src: url("glyphs/woff2/dad2106c.woff2") format("woff2"), url("glyphs/woff/dad2106c.woff") format("woff"), url("glyphs/ttf/dad2106c.ttf") format("truetype"); unicode-range: U+E1F2; } @font-face { font-family: "mod"; src: url("glyphs/woff2/f4964839.woff2") format("woff2"), url("glyphs/woff/f4964839.woff") format("woff"), url("glyphs/ttf/f4964839.ttf") format("truetype"); unicode-range: U+E1F3; } @font-face { font-family: "mda"; src: url("glyphs/woff2/7add0458.woff2") format("woff2"), url("glyphs/woff/7add0458.woff") format("woff"), url("glyphs/ttf/7add0458.ttf") format("truetype"); unicode-range: U+E1F4; } @font-face { font-family: "moin"; src: url("glyphs/woff2/cebaa24b.woff2") format("woff2"), url("glyphs/woff/cebaa24b.woff") format("woff"), url("glyphs/ttf/cebaa24b.ttf") format("truetype"); unicode-range: U+E1F5; } @font-face { font-family: "mona"; src: url("glyphs/woff2/09a35da5.woff2") format("woff2"), url("glyphs/woff/09a35da5.woff") format("woff"), url("glyphs/ttf/09a35da5.ttf") format("truetype"); unicode-range: U+E1F6; } @font-face { font-family: "mco"; src: url("glyphs/woff2/f6b8b235.woff2") format("woff2"), url("glyphs/woff/f6b8b235.woff") format("woff"), url("glyphs/ttf/f6b8b235.ttf") format("truetype"); unicode-range: U+E1F7; } @font-face { font-family: "xmr"; src: url("glyphs/woff2/32c69208.woff2") format("woff2"), url("glyphs/woff/32c69208.woff") format("woff"), url("glyphs/ttf/32c69208.ttf") format("truetype"); unicode-range: U+E1F8; } @font-face { font-family: "mue"; src: url("glyphs/woff2/177d0611.woff2") format("woff2"), url("glyphs/woff/177d0611.woff") format("woff"), url("glyphs/ttf/177d0611.ttf") format("truetype"); unicode-range: U+E1F9; } @font-face { font-family: "mth"; src: url("glyphs/woff2/20b835b7.woff2") format("woff2"), url("glyphs/woff/20b835b7.woff") format("woff"), url("glyphs/ttf/20b835b7.ttf") format("truetype"); unicode-range: U+E1FA; } @font-face { font-family: "moon"; src: url("glyphs/woff2/42130fd7.woff2") format("woff2"), url("glyphs/woff/42130fd7.woff") format("woff"), url("glyphs/ttf/42130fd7.ttf") format("truetype"); unicode-range: U+E1FB; } @font-face { font-family: "mitx"; src: url("glyphs/woff2/29ef8c3a.woff2") format("woff2"), url("glyphs/woff/29ef8c3a.woff") format("woff"), url("glyphs/ttf/29ef8c3a.ttf") format("truetype"); unicode-range: U+E1FC; } @font-face { font-family: "msp"; src: url("glyphs/woff2/3069c5e2.woff2") format("woff2"), url("glyphs/woff/3069c5e2.woff") format("woff"), url("glyphs/ttf/3069c5e2.ttf") format("truetype"); unicode-range: U+E1FD; } @font-face { font-family: "myb"; src: url("glyphs/woff2/9d1ecd98.woff2") format("woff2"), url("glyphs/woff/9d1ecd98.woff") format("woff"), url("glyphs/ttf/9d1ecd98.ttf") format("truetype"); unicode-range: U+E1FE; } @font-face { font-family: "xmy"; src: url("glyphs/woff2/048120ba.woff2") format("woff2"), url("glyphs/woff/048120ba.woff") format("woff"), url("glyphs/ttf/048120ba.ttf") format("truetype"); unicode-range: U+E1FF; } @font-face { font-family: "myst"; src: url("glyphs/woff2/ef00237d.woff2") format("woff2"), url("glyphs/woff/ef00237d.woff") format("woff"), url("glyphs/ttf/ef00237d.ttf") format("truetype"); unicode-range: U+E200; } @font-face { font-family: "nanj"; src: url("glyphs/woff2/5e0938cb.woff2") format("woff2"), url("glyphs/woff/5e0938cb.woff") format("woff"), url("glyphs/ttf/5e0938cb.ttf") format("truetype"); unicode-range: U+E201; } @font-face { font-family: "nano"; src: url("glyphs/woff2/1394a474.woff2") format("woff2"), url("glyphs/woff/1394a474.woff") format("woff"), url("glyphs/ttf/1394a474.ttf") format("truetype"); unicode-range: U+E202; } @font-face { font-family: "nav"; src: url("glyphs/woff2/ccba5701.woff2") format("woff2"), url("glyphs/woff/ccba5701.woff") format("woff"), url("glyphs/ttf/ccba5701.ttf") format("truetype"); unicode-range: U+E203; } @font-face { font-family: "xem"; src: url("glyphs/woff2/22293ce5.woff2") format("woff2"), url("glyphs/woff/22293ce5.woff") format("woff"), url("glyphs/ttf/22293ce5.ttf") format("truetype"); unicode-range: U+E204; } @font-face { font-family: "neo"; src: url("glyphs/woff2/0d26bbc7.woff2") format("woff2"), url("glyphs/woff/0d26bbc7.woff") format("woff"), url("glyphs/ttf/0d26bbc7.ttf") format("truetype"); unicode-range: U+E205; } @font-face { font-family: "nex"; src: url("glyphs/woff2/125fe922.woff2") format("woff2"), url("glyphs/woff/125fe922.woff") format("woff"), url("glyphs/ttf/125fe922.ttf") format("truetype"); unicode-range: U+E206; } @font-face { font-family: "nexo"; src: url("glyphs/woff2/65bc5b9b.woff2") format("woff2"), url("glyphs/woff/65bc5b9b.woff") format("woff"), url("glyphs/ttf/65bc5b9b.ttf") format("truetype"); unicode-range: U+E207; } @font-face { font-family: "nvst"; src: url("glyphs/woff2/cdc770af.woff2") format("woff2"), url("glyphs/woff/cdc770af.woff") format("woff"), url("glyphs/ttf/cdc770af.ttf") format("truetype"); unicode-range: U+E208; } @font-face { font-family: "npx"; src: url("glyphs/woff2/11d82ab4.woff2") format("woff2"), url("glyphs/woff/11d82ab4.woff") format("woff"), url("glyphs/ttf/11d82ab4.ttf") format("truetype"); unicode-range: U+E209; } @font-face { font-family: "ngc"; src: url("glyphs/woff2/15802da1.woff2") format("woff2"), url("glyphs/woff/15802da1.woff") format("woff"), url("glyphs/ttf/15802da1.ttf") format("truetype"); unicode-range: U+E20A; } @font-face { font-family: "nmc"; src: url("glyphs/woff2/99a3e60b.woff2") format("woff2"), url("glyphs/woff/99a3e60b.woff") format("woff"), url("glyphs/ttf/99a3e60b.ttf") format("truetype"); unicode-range: U+E20B; } @font-face { font-family: "nebl"; src: url("glyphs/woff2/4dc72635.woff2") format("woff2"), url("glyphs/woff/4dc72635.woff") format("woff"), url("glyphs/ttf/4dc72635.ttf") format("truetype"); unicode-range: U+E20C; } @font-face { font-family: "nas"; src: url("glyphs/woff2/1a7920cb.woff2") format("woff2"), url("glyphs/woff/1a7920cb.woff") format("woff"), url("glyphs/ttf/1a7920cb.ttf") format("truetype"); unicode-range: U+E20D; } @font-face { font-family: "neos"; src: url("glyphs/woff2/0b12d5a0.woff2") format("woff2"), url("glyphs/woff/0b12d5a0.woff") format("woff"), url("glyphs/ttf/0b12d5a0.ttf") format("truetype"); unicode-range: U+E20E; } @font-face { font-family: "neu"; src: url("glyphs/woff2/6166611f.woff2") format("woff2"), url("glyphs/woff/6166611f.woff") format("woff"), url("glyphs/ttf/6166611f.ttf") format("truetype"); unicode-range: U+E20F; } @font-face { font-family: "ntk"; src: url("glyphs/woff2/fccd4567.woff2") format("woff2"), url("glyphs/woff/fccd4567.woff") format("woff"), url("glyphs/ttf/fccd4567.ttf") format("truetype"); unicode-range: U+E210; } @font-face { font-family: "ntrn"; src: url("glyphs/woff2/e4f0095c.woff2") format("woff2"), url("glyphs/woff/e4f0095c.woff") format("woff"), url("glyphs/ttf/e4f0095c.ttf") format("truetype"); unicode-range: U+E211; } @font-face { font-family: "npxs"; src: url("glyphs/woff2/808ad3a7.woff2") format("woff2"), url("glyphs/woff/808ad3a7.woff") format("woff"), url("glyphs/ttf/808ad3a7.ttf") format("truetype"); unicode-range: U+E212; } @font-face { font-family: "nxs"; src: url("glyphs/woff2/2d7aa05f.woff2") format("woff2"), url("glyphs/woff/2d7aa05f.woff") format("woff"), url("glyphs/ttf/2d7aa05f.ttf") format("truetype"); unicode-range: U+E213; } @font-face { font-family: "net"; src: url("glyphs/woff2/d7ecae43.woff2") format("woff2"), url("glyphs/woff/d7ecae43.woff") format("woff"), url("glyphs/ttf/d7ecae43.ttf") format("truetype"); unicode-range: U+E214; } @font-face { font-family: "nvc"; src: url("glyphs/woff2/9ccb9c44.woff2") format("woff2"), url("glyphs/woff/9ccb9c44.woff") format("woff"), url("glyphs/ttf/9ccb9c44.ttf") format("truetype"); unicode-range: U+E215; } @font-face { font-family: "nbt"; src: url("glyphs/woff2/2a96e401.woff2") format("woff2"), url("glyphs/woff/2a96e401.woff") format("woff"), url("glyphs/ttf/2a96e401.ttf") format("truetype"); unicode-range: U+E216; } @font-face { font-family: "nsr"; src: url("glyphs/woff2/a73e53ed.woff2") format("woff2"), url("glyphs/woff/a73e53ed.woff") format("woff"), url("glyphs/ttf/a73e53ed.ttf") format("truetype"); unicode-range: U+E217; } @font-face { font-family: "ncash"; src: url("glyphs/woff2/4e10ed5b.woff2") format("woff2"), url("glyphs/woff/4e10ed5b.woff") format("woff"), url("glyphs/ttf/4e10ed5b.ttf") format("truetype"); unicode-range: U+E218; } @font-face { font-family: "nuls"; src: url("glyphs/woff2/ca2be6c9.woff2") format("woff2"), url("glyphs/woff/ca2be6c9.woff") format("woff"), url("glyphs/ttf/ca2be6c9.ttf") format("truetype"); unicode-range: U+E219; } @font-face { font-family: "nmr"; src: url("glyphs/woff2/05ed7e4e.woff2") format("woff2"), url("glyphs/woff/05ed7e4e.woff") format("woff"), url("glyphs/ttf/05ed7e4e.ttf") format("truetype"); unicode-range: U+E21A; } @font-face { font-family: "nxt"; src: url("glyphs/woff2/894bfc80.woff2") format("woff2"), url("glyphs/woff/894bfc80.woff") format("woff"), url("glyphs/ttf/894bfc80.ttf") format("truetype"); unicode-range: U+E21B; } @font-face { font-family: "oanda"; src: url("glyphs/woff2/16ed590a.woff2") format("woff2"), url("glyphs/woff/16ed590a.woff") format("woff"), url("glyphs/ttf/16ed590a.ttf") format("truetype"); unicode-range: U+E21C; } @font-face { font-family: "oax"; src: url("glyphs/woff2/cf295f73.woff2") format("woff2"), url("glyphs/woff/cf295f73.woff") format("woff"), url("glyphs/ttf/cf295f73.ttf") format("truetype"); unicode-range: U+E21D; } @font-face { font-family: "ode"; src: url("glyphs/woff2/8179876c.woff2") format("woff2"), url("glyphs/woff/8179876c.woff") format("woff"), url("glyphs/ttf/8179876c.ttf") format("truetype"); unicode-range: U+E21E; } @font-face { font-family: "ok"; src: url("glyphs/woff2/b4fed649.woff2") format("woff2"), url("glyphs/woff/b4fed649.woff") format("woff"), url("glyphs/ttf/b4fed649.ttf") format("truetype"); unicode-range: U+E21F; } @font-face { font-family: "ost"; src: url("glyphs/woff2/bc23c05b.woff2") format("woff2"), url("glyphs/woff/bc23c05b.woff") format("woff"), url("glyphs/ttf/bc23c05b.ttf") format("truetype"); unicode-range: U+E220; } @font-face { font-family: "ox"; src: url("glyphs/woff2/6db9cbfa.woff2") format("woff2"), url("glyphs/woff/6db9cbfa.woff") format("woff"), url("glyphs/ttf/6db9cbfa.ttf") format("truetype"); unicode-range: U+E221; } @font-face { font-family: "oc"; src: url("glyphs/woff2/d7d56ff8.woff2") format("woff2"), url("glyphs/woff/d7d56ff8.woff") format("woff"), url("glyphs/ttf/d7d56ff8.ttf") format("truetype"); unicode-range: U+E222; } @font-face { font-family: "ocl"; src: url("glyphs/woff2/6994c18b.woff2") format("woff2"), url("glyphs/woff/6994c18b.woff") format("woff"), url("glyphs/ttf/6994c18b.ttf") format("truetype"); unicode-range: U+E223; } @font-face { font-family: "occ"; src: url("glyphs/woff2/1a797de5.woff2") format("woff2"), url("glyphs/woff/1a797de5.woff") format("woff"), url("glyphs/ttf/1a797de5.ttf") format("truetype"); unicode-range: U+E224; } @font-face { font-family: "ocn"; src: url("glyphs/woff2/322840cb.woff2") format("woff2"), url("glyphs/woff/322840cb.woff") format("woff"), url("glyphs/ttf/322840cb.ttf") format("truetype"); unicode-range: U+E225; } @font-face { font-family: "omg"; src: url("glyphs/woff2/fe2af1dc.woff2") format("woff2"), url("glyphs/woff/fe2af1dc.woff") format("woff"), url("glyphs/ttf/fe2af1dc.ttf") format("truetype"); unicode-range: U+E226; } @font-face { font-family: "omni"; src: url("glyphs/woff2/72751892.woff2") format("woff2"), url("glyphs/woff/72751892.woff") format("woff"), url("glyphs/ttf/72751892.ttf") format("truetype"); unicode-range: U+E227; } @font-face { font-family: "rnt"; src: url("glyphs/woff2/208046b5.woff2") format("woff2"), url("glyphs/woff/208046b5.woff") format("woff"), url("glyphs/ttf/208046b5.ttf") format("truetype"); unicode-range: U+E228; } @font-face { font-family: "ont"; src: url("glyphs/woff2/fbf90859.woff2") format("woff2"), url("glyphs/woff/fbf90859.woff") format("woff"), url("glyphs/ttf/fbf90859.ttf") format("truetype"); unicode-range: U+E229; } @font-face { font-family: "opal"; src: url("glyphs/woff2/8befb6ca.woff2") format("woff2"), url("glyphs/woff/8befb6ca.woff") format("woff"), url("glyphs/ttf/8befb6ca.ttf") format("truetype"); unicode-range: U+E22A; } @font-face { font-family: "otn"; src: url("glyphs/woff2/6da3182a.woff2") format("woff2"), url("glyphs/woff/6da3182a.woff") format("woff"), url("glyphs/ttf/6da3182a.ttf") format("truetype"); unicode-range: U+E22B; } @font-face { font-family: "trac"; src: url("glyphs/woff2/26fc4657.woff2") format("woff2"), url("glyphs/woff/26fc4657.woff") format("woff"), url("glyphs/ttf/26fc4657.ttf") format("truetype"); unicode-range: U+E22C; } @font-face { font-family: "orme"; src: url("glyphs/woff2/9352bab8.woff2") format("woff2"), url("glyphs/woff/9352bab8.woff") format("woff"), url("glyphs/ttf/9352bab8.ttf") format("truetype"); unicode-range: U+E22D; } @font-face { font-family: "oxy"; src: url("glyphs/woff2/d741c5dd.woff2") format("woff2"), url("glyphs/woff/d741c5dd.woff") format("woff"), url("glyphs/ttf/d741c5dd.ttf") format("truetype"); unicode-range: U+E22E; } @font-face { font-family: "prl"; src: url("glyphs/woff2/6302510b.woff2") format("woff2"), url("glyphs/woff/6302510b.woff") format("woff"), url("glyphs/ttf/6302510b.ttf") format("truetype"); unicode-range: U+E22F; } @font-face { font-family: "pac"; src: url("glyphs/woff2/5bdeb600.woff2") format("woff2"), url("glyphs/woff/5bdeb600.woff") format("woff"), url("glyphs/ttf/5bdeb600.ttf") format("truetype"); unicode-range: U+E230; } @font-face { font-family: "pin"; src: url("glyphs/woff2/b96007b9.woff2") format("woff2"), url("glyphs/woff/b96007b9.woff") format("woff"), url("glyphs/ttf/b96007b9.ttf") format("truetype"); unicode-range: U+E231; } @font-face { font-family: "pivx"; src: url("glyphs/woff2/311bcfdc.woff2") format("woff2"), url("glyphs/woff/311bcfdc.woff") format("woff"), url("glyphs/ttf/311bcfdc.ttf") format("truetype"); unicode-range: U+E232; } @font-face { font-family: "poa"; src: url("glyphs/woff2/971dbc94.woff2") format("woff2"), url("glyphs/woff/971dbc94.woff") format("woff"), url("glyphs/ttf/971dbc94.ttf") format("truetype"); unicode-range: U+E233; } @font-face { font-family: "pnd"; src: url("glyphs/woff2/3506ae92.woff2") format("woff2"), url("glyphs/woff/3506ae92.woff") format("woff"), url("glyphs/ttf/3506ae92.ttf") format("truetype"); unicode-range: U+E234; } @font-face { font-family: "prg"; src: url("glyphs/woff2/35e73fc6.woff2") format("woff2"), url("glyphs/woff/35e73fc6.woff") format("woff"), url("glyphs/ttf/35e73fc6.ttf") format("truetype"); unicode-range: U+E235; } @font-face { font-family: "pareto"; src: url("glyphs/woff2/53605668.woff2") format("woff2"), url("glyphs/woff/53605668.woff") format("woff"), url("glyphs/ttf/53605668.ttf") format("truetype"); unicode-range: U+E236; } @font-face { font-family: "part"; src: url("glyphs/woff2/0d9537d2.woff2") format("woff2"), url("glyphs/woff/0d9537d2.woff") format("woff"), url("glyphs/ttf/0d9537d2.ttf") format("truetype"); unicode-range: U+E237; } @font-face { font-family: "pasc"; src: url("glyphs/woff2/199aab73.woff2") format("woff2"), url("glyphs/woff/199aab73.woff") format("woff"), url("glyphs/ttf/199aab73.ttf") format("truetype"); unicode-range: U+E238; } @font-face { font-family: "ptoy"; src: url("glyphs/woff2/f3aa8be6.woff2") format("woff2"), url("glyphs/woff/f3aa8be6.woff") format("woff"), url("glyphs/ttf/f3aa8be6.ttf") format("truetype"); unicode-range: U+E239; } @font-face { font-family: "paysafe"; src: url("glyphs/woff2/8aacdf16.woff2") format("woff2"), url("glyphs/woff/8aacdf16.woff") format("woff"), url("glyphs/ttf/8aacdf16.ttf") format("truetype"); unicode-range: U+E23A; } @font-face { font-family: "paybox"; src: url("glyphs/woff2/023d4451.woff2") format("woff2"), url("glyphs/woff/023d4451.woff") format("woff"), url("glyphs/ttf/023d4451.ttf") format("truetype"); unicode-range: U+E23B; } @font-face { font-family: "xpy"; src: url("glyphs/woff2/aae08744.woff2") format("woff2"), url("glyphs/woff/aae08744.woff") format("woff"), url("glyphs/ttf/aae08744.ttf") format("truetype"); unicode-range: U+E23C; } @font-face { font-family: "paydirekt"; src: url("glyphs/woff2/6aa52642.woff2") format("woff2"), url("glyphs/woff/6aa52642.woff") format("woff"), url("glyphs/ttf/6aa52642.ttf") format("truetype"); unicode-range: U+E23D; } @font-face { font-family: "paypal"; src: url("glyphs/woff2/87626b68.woff2") format("woff2"), url("glyphs/woff/87626b68.woff") format("woff"), url("glyphs/ttf/87626b68.ttf") format("truetype"); unicode-range: U+E23E; } @font-face { font-family: "ppp"; src: url("glyphs/woff2/888412e6.woff2") format("woff2"), url("glyphs/woff/888412e6.woff") format("woff"), url("glyphs/ttf/888412e6.ttf") format("truetype"); unicode-range: U+E23F; } @font-face { font-family: "paypro"; src: url("glyphs/woff2/dd10b6f4.woff2") format("woff2"), url("glyphs/woff/dd10b6f4.woff") format("woff"), url("glyphs/ttf/dd10b6f4.ttf") format("truetype"); unicode-range: U+E240; } @font-face { font-family: "pfr"; src: url("glyphs/woff2/5798f31f.woff2") format("woff2"), url("glyphs/woff/5798f31f.woff") format("woff"), url("glyphs/ttf/5798f31f.ttf") format("truetype"); unicode-range: U+E241; } @font-face { font-family: "paymentwall"; src: url("glyphs/woff2/1165e24b.woff2") format("woff2"), url("glyphs/woff/1165e24b.woff") format("woff"), url("glyphs/ttf/1165e24b.ttf") format("truetype"); unicode-range: U+E242; } @font-face { font-family: "paymill"; src: url("glyphs/woff2/df01c285.woff2") format("woff2"), url("glyphs/woff/df01c285.woff") format("woff"), url("glyphs/ttf/df01c285.ttf") format("truetype"); unicode-range: U+E243; } @font-face { font-family: "ppc"; src: url("glyphs/woff2/59835a05.woff2") format("woff2"), url("glyphs/woff/59835a05.woff") format("woff"), url("glyphs/ttf/59835a05.ttf") format("truetype"); unicode-range: U+E244; } @font-face { font-family: "ppy"; src: url("glyphs/woff2/7188a9c1.woff2") format("woff2"), url("glyphs/woff/7188a9c1.woff") format("woff"), url("glyphs/ttf/7188a9c1.ttf") format("truetype"); unicode-range: U+E245; } @font-face { font-family: "phr"; src: url("glyphs/woff2/43664073.woff2") format("woff2"), url("glyphs/woff/43664073.woff") format("woff"), url("glyphs/ttf/43664073.ttf") format("truetype"); unicode-range: U+E246; } @font-face { font-family: "pho"; src: url("glyphs/woff2/9b8448e1.woff2") format("woff2"), url("glyphs/woff/9b8448e1.woff") format("woff"), url("glyphs/ttf/9b8448e1.ttf") format("truetype"); unicode-range: U+E247; } @font-face { font-family: "piggy"; src: url("glyphs/woff2/c0dc60c1.woff2") format("woff2"), url("glyphs/woff/c0dc60c1.woff") format("woff"), url("glyphs/ttf/c0dc60c1.ttf") format("truetype"); unicode-range: U+E248; } @font-face { font-family: "plr"; src: url("glyphs/woff2/9ced0dd7.woff2") format("woff2"), url("glyphs/woff/9ced0dd7.woff") format("woff"), url("glyphs/ttf/9ced0dd7.ttf") format("truetype"); unicode-range: U+E249; } @font-face { font-family: "pink"; src: url("glyphs/woff2/fef0478f.woff2") format("woff2"), url("glyphs/woff/fef0478f.woff") format("woff"), url("glyphs/ttf/fef0478f.ttf") format("truetype"); unicode-range: U+E24A; } @font-face { font-family: "pkt"; src: url("glyphs/woff2/b44b2013.woff2") format("woff2"), url("glyphs/woff/b44b2013.woff") format("woff"), url("glyphs/ttf/b44b2013.ttf") format("truetype"); unicode-range: U+E24B; } @font-face { font-family: "plu"; src: url("glyphs/woff2/8beb9dac.woff2") format("woff2"), url("glyphs/woff/8beb9dac.woff") format("woff"), url("glyphs/ttf/8beb9dac.ttf") format("truetype"); unicode-range: U+E24C; } @font-face { font-family: "posw"; src: url("glyphs/woff2/944650cf.woff2") format("woff2"), url("glyphs/woff/944650cf.woff") format("woff"), url("glyphs/ttf/944650cf.ttf") format("truetype"); unicode-range: U+E24D; } @font-face { font-family: "poe"; src: url("glyphs/woff2/74da7207.woff2") format("woff2"), url("glyphs/woff/74da7207.woff") format("woff"), url("glyphs/ttf/74da7207.ttf") format("truetype"); unicode-range: U+E24E; } @font-face { font-family: "polis"; src: url("glyphs/woff2/be09c3ad.woff2") format("woff2"), url("glyphs/woff/be09c3ad.woff") format("woff"), url("glyphs/ttf/be09c3ad.ttf") format("truetype"); unicode-range: U+E24F; } @font-face { font-family: "polkadot"; src: url("glyphs/woff2/354ca571.woff2") format("woff2"), url("glyphs/woff/354ca571.woff") format("woff"), url("glyphs/ttf/354ca571.ttf") format("truetype"); unicode-range: U+E250; } @font-face { font-family: "poloniex"; src: url("glyphs/woff2/900affc9.woff2") format("woff2"), url("glyphs/woff/900affc9.woff") format("woff"), url("glyphs/ttf/900affc9.ttf") format("truetype"); unicode-range: U+E251; } @font-face { font-family: "nct"; src: url("glyphs/woff2/7909aeb7.woff2") format("woff2"), url("glyphs/woff/7909aeb7.woff") format("woff"), url("glyphs/ttf/7909aeb7.ttf") format("truetype"); unicode-range: U+E252; } @font-face { font-family: "plbt"; src: url("glyphs/woff2/064b9505.woff2") format("woff2"), url("glyphs/woff/064b9505.woff") format("woff"), url("glyphs/ttf/064b9505.ttf") format("truetype"); unicode-range: U+E253; } @font-face { font-family: "poly"; src: url("glyphs/woff2/948b9f9b.woff2") format("woff2"), url("glyphs/woff/948b9f9b.woff") format("woff"), url("glyphs/ttf/948b9f9b.ttf") format("truetype"); unicode-range: U+E254; } @font-face { font-family: "ppt"; src: url("glyphs/woff2/41e7e67b.woff2") format("woff2"), url("glyphs/woff/41e7e67b.woff") format("woff"), url("glyphs/ttf/41e7e67b.ttf") format("truetype"); unicode-range: U+E255; } @font-face { font-family: "postnl"; src: url("glyphs/woff2/ab8056ea.woff2") format("woff2"), url("glyphs/woff/ab8056ea.woff") format("woff"), url("glyphs/ttf/ab8056ea.ttf") format("truetype"); unicode-range: U+E256; } @font-face { font-family: "postnord"; src: url("glyphs/woff2/36bf9ec5.woff2") format("woff2"), url("glyphs/woff/36bf9ec5.woff") format("woff"), url("glyphs/ttf/36bf9ec5.ttf") format("truetype"); unicode-range: U+E257; } @font-face { font-family: "pot"; src: url("glyphs/woff2/94ee3537.woff2") format("woff2"), url("glyphs/woff/94ee3537.woff") format("woff"), url("glyphs/ttf/94ee3537.ttf") format("truetype"); unicode-range: U+E258; } @font-face { font-family: "powr"; src: url("glyphs/woff2/4d040d05.woff2") format("woff2"), url("glyphs/woff/4d040d05.woff") format("woff"), url("glyphs/ttf/4d040d05.ttf") format("truetype"); unicode-range: U+E259; } @font-face { font-family: "pre"; src: url("glyphs/woff2/34152b57.woff2") format("woff2"), url("glyphs/woff/34152b57.woff") format("woff"), url("glyphs/ttf/34152b57.ttf") format("truetype"); unicode-range: U+E25A; } @font-face { font-family: "pbt"; src: url("glyphs/woff2/36728431.woff2") format("woff2"), url("glyphs/woff/36728431.woff") format("woff"), url("glyphs/ttf/36728431.ttf") format("truetype"); unicode-range: U+E25B; } @font-face { font-family: "xpm"; src: url("glyphs/woff2/1e3a5f47.woff2") format("woff2"), url("glyphs/woff/1e3a5f47.woff") format("woff"), url("glyphs/ttf/1e3a5f47.ttf") format("truetype"); unicode-range: U+E25C; } @font-face { font-family: "pro"; src: url("glyphs/woff2/d97e9886.woff2") format("woff2"), url("glyphs/woff/d97e9886.woff") format("woff"), url("glyphs/ttf/d97e9886.ttf") format("truetype"); unicode-range: U+E25D; } @font-face { font-family: "xes"; src: url("glyphs/woff2/cff6eea9.woff2") format("woff2"), url("glyphs/woff/cff6eea9.woff") format("woff"), url("glyphs/ttf/cff6eea9.ttf") format("truetype"); unicode-range: U+E25E; } @font-face { font-family: "pbl"; src: url("glyphs/woff2/5f3272da.woff2") format("woff2"), url("glyphs/woff/5f3272da.woff") format("woff"), url("glyphs/ttf/5f3272da.ttf") format("truetype"); unicode-range: U+E25F; } @font-face { font-family: "pxs"; src: url("glyphs/woff2/c035acf1.woff2") format("woff2"), url("glyphs/woff/c035acf1.woff") format("woff"), url("glyphs/ttf/c035acf1.ttf") format("truetype"); unicode-range: U+E260; } @font-face { font-family: "pura"; src: url("glyphs/woff2/836758e3.woff2") format("woff2"), url("glyphs/woff/836758e3.woff") format("woff"), url("glyphs/ttf/836758e3.ttf") format("truetype"); unicode-range: U+E261; } @font-face { font-family: "qash"; src: url("glyphs/woff2/5d9d090a.woff2") format("woff2"), url("glyphs/woff/5d9d090a.woff") format("woff"), url("glyphs/ttf/5d9d090a.ttf") format("truetype"); unicode-range: U+E262; } @font-face { font-family: "qlc"; src: url("glyphs/woff2/4259b075.woff2") format("woff2"), url("glyphs/woff/4259b075.woff") format("woff"), url("glyphs/ttf/4259b075.ttf") format("truetype"); unicode-range: U+E263; } @font-face { font-family: "qbt"; src: url("glyphs/woff2/73db31ed.woff2") format("woff2"), url("glyphs/woff/73db31ed.woff") format("woff"), url("glyphs/ttf/73db31ed.ttf") format("truetype"); unicode-range: U+E264; } @font-face { font-family: "qiwi"; src: url("glyphs/woff2/f21dea18.woff2") format("woff2"), url("glyphs/woff/f21dea18.woff") format("woff"), url("glyphs/ttf/f21dea18.ttf") format("truetype"); unicode-range: U+E265; } @font-face { font-family: "qtum"; src: url("glyphs/woff2/cdf1c3ef.woff2") format("woff2"), url("glyphs/woff/cdf1c3ef.woff") format("woff"), url("glyphs/ttf/cdf1c3ef.ttf") format("truetype"); unicode-range: U+E266; } @font-face { font-family: "quadrigacx"; src: url("glyphs/woff2/018f5952.woff2") format("woff2"), url("glyphs/woff/018f5952.woff") format("woff"), url("glyphs/ttf/018f5952.ttf") format("truetype"); unicode-range: U+E267; } @font-face { font-family: "qsp"; src: url("glyphs/woff2/a564f20f.woff2") format("woff2"), url("glyphs/woff/a564f20f.woff") format("woff"), url("glyphs/ttf/a564f20f.ttf") format("truetype"); unicode-range: U+E268; } @font-face { font-family: "qua"; src: url("glyphs/woff2/f51f8bf3.woff2") format("woff2"), url("glyphs/woff/f51f8bf3.woff") format("woff"), url("glyphs/ttf/f51f8bf3.ttf") format("truetype"); unicode-range: U+E269; } @font-face { font-family: "qrl"; src: url("glyphs/woff2/2db5fddf.woff2") format("woff2"), url("glyphs/woff/2db5fddf.woff") format("woff"), url("glyphs/ttf/2db5fddf.ttf") format("truetype"); unicode-range: U+E26A; } @font-face { font-family: "qrk"; src: url("glyphs/woff2/68db64d0.woff2") format("woff2"), url("glyphs/woff/68db64d0.woff") format("woff"), url("glyphs/ttf/68db64d0.ttf") format("truetype"); unicode-range: U+E26B; } @font-face { font-family: "qun"; src: url("glyphs/woff2/13753541.woff2") format("woff2"), url("glyphs/woff/13753541.woff") format("woff"), url("glyphs/ttf/13753541.ttf") format("truetype"); unicode-range: U+E26C; } @font-face { font-family: "quoine"; src: url("glyphs/woff2/21a02826.woff2") format("woff2"), url("glyphs/woff/21a02826.woff") format("woff"), url("glyphs/ttf/21a02826.ttf") format("truetype"); unicode-range: U+E26D; } @font-face { font-family: "rhoc"; src: url("glyphs/woff2/55092daa.woff2") format("woff2"), url("glyphs/woff/55092daa.woff") format("woff"), url("glyphs/ttf/55092daa.ttf") format("truetype"); unicode-range: U+E26E; } @font-face { font-family: "roka"; src: url("glyphs/woff2/254c8943.woff2") format("woff2"), url("glyphs/woff/254c8943.woff") format("woff"), url("glyphs/ttf/254c8943.ttf") format("truetype"); unicode-range: U+E26F; } @font-face { font-family: "rabo"; src: url("glyphs/woff2/d8f26b1e.woff2") format("woff2"), url("glyphs/woff/d8f26b1e.woff") format("woff"), url("glyphs/ttf/d8f26b1e.ttf") format("truetype"); unicode-range: U+E270; } @font-face { font-family: "rads"; src: url("glyphs/woff2/98a0b6a0.woff2") format("woff2"), url("glyphs/woff/98a0b6a0.woff") format("woff"), url("glyphs/ttf/98a0b6a0.ttf") format("truetype"); unicode-range: U+E271; } @font-face { font-family: "xrb"; src: url("glyphs/woff2/4e1ac177.woff2") format("woff2"), url("glyphs/woff/4e1ac177.woff") format("woff"), url("glyphs/ttf/4e1ac177.ttf") format("truetype"); unicode-range: U+E272; } @font-face { font-family: "rdn"; src: url("glyphs/woff2/7f3c219c.woff2") format("woff2"), url("glyphs/woff/7f3c219c.woff") format("woff"), url("glyphs/ttf/7f3c219c.ttf") format("truetype"); unicode-range: U+E273; } @font-face { font-family: "raif"; src: url("glyphs/woff2/a04998d6.woff2") format("woff2"), url("glyphs/woff/a04998d6.woff") format("woff"), url("glyphs/ttf/a04998d6.ttf") format("truetype"); unicode-range: U+E274; } @font-face { font-family: "rebl"; src: url("glyphs/woff2/6e8af6a3.woff2") format("woff2"), url("glyphs/woff/6e8af6a3.woff") format("woff"), url("glyphs/ttf/6e8af6a3.ttf") format("truetype"); unicode-range: U+E275; } @font-face { font-family: "rrt"; src: url("glyphs/woff2/b7a172a3.woff2") format("woff2"), url("glyphs/woff/b7a172a3.woff") format("woff"), url("glyphs/ttf/b7a172a3.ttf") format("truetype"); unicode-range: U+E276; } @font-face { font-family: "rpx"; src: url("glyphs/woff2/7257f8e5.woff2") format("woff2"), url("glyphs/woff/7257f8e5.woff") format("woff"), url("glyphs/ttf/7257f8e5.ttf") format("truetype"); unicode-range: U+E277; } @font-face { font-family: "rdd"; src: url("glyphs/woff2/3b064daf.woff2") format("woff2"), url("glyphs/woff/3b064daf.woff") format("woff"), url("glyphs/ttf/3b064daf.ttf") format("truetype"); unicode-range: U+E278; } @font-face { font-family: "rfc"; src: url("glyphs/woff2/4a849376.woff2") format("woff2"), url("glyphs/woff/4a849376.woff") format("woff"), url("glyphs/ttf/4a849376.ttf") format("truetype"); unicode-range: U+E279; } @font-face { font-family: "rfm"; src: url("glyphs/woff2/1079bbd9.woff2") format("woff2"), url("glyphs/woff/1079bbd9.woff") format("woff"), url("glyphs/ttf/1079bbd9.ttf") format("truetype"); unicode-range: U+E27A; } @font-face { font-family: "rmc"; src: url("glyphs/woff2/117dc215.woff2") format("woff2"), url("glyphs/woff/117dc215.woff") format("woff"), url("glyphs/ttf/117dc215.ttf") format("truetype"); unicode-range: U+E27B; } @font-face { font-family: "remme"; src: url("glyphs/woff2/59d1acbe.woff2") format("woff2"), url("glyphs/woff/59d1acbe.woff") format("woff"), url("glyphs/ttf/59d1acbe.ttf") format("truetype"); unicode-range: U+E27C; } @font-face { font-family: "berry"; src: url("glyphs/woff2/328fad59.woff2") format("woff2"), url("glyphs/woff/328fad59.woff") format("woff"), url("glyphs/ttf/328fad59.ttf") format("truetype"); unicode-range: U+E27D; } @font-face { font-family: "ren"; src: url("glyphs/woff2/bb366587.woff2") format("woff2"), url("glyphs/woff/bb366587.woff") format("woff"), url("glyphs/ttf/bb366587.ttf") format("truetype"); unicode-range: U+E27E; } @font-face { font-family: "req"; src: url("glyphs/woff2/2bd2fc24.woff2") format("woff2"), url("glyphs/woff/2bd2fc24.woff") format("woff"), url("glyphs/ttf/2bd2fc24.ttf") format("truetype"); unicode-range: U+E27F; } @font-face { font-family: "mwat"; src: url("glyphs/woff2/7d67a50f.woff2") format("woff2"), url("glyphs/woff/7d67a50f.woff") format("woff"), url("glyphs/ttf/7d67a50f.ttf") format("truetype"); unicode-range: U+E280; } @font-face { font-family: "r"; src: url("glyphs/woff2/ae943640.woff2") format("woff2"), url("glyphs/woff/ae943640.woff") format("woff"), url("glyphs/ttf/ae943640.ttf") format("truetype"); unicode-range: U+E281; } @font-face { font-family: "xrl"; src: url("glyphs/woff2/6338d88d.woff2") format("woff2"), url("glyphs/woff/6338d88d.woff") format("woff"), url("glyphs/ttf/6338d88d.ttf") format("truetype"); unicode-range: U+E282; } @font-face { font-family: "rbt"; src: url("glyphs/woff2/2928cfa1.woff2") format("woff2"), url("glyphs/woff/2928cfa1.woff") format("woff"), url("glyphs/ttf/2928cfa1.ttf") format("truetype"); unicode-range: U+E283; } @font-face { font-family: "rcn"; src: url("glyphs/woff2/246660f5.woff2") format("woff2"), url("glyphs/woff/246660f5.woff") format("woff"), url("glyphs/ttf/246660f5.ttf") format("truetype"); unicode-range: U+E284; } @font-face { font-family: "xrp"; src: url("glyphs/woff2/839981ee.woff2") format("woff2"), url("glyphs/woff/839981ee.woff") format("woff"), url("glyphs/ttf/839981ee.ttf") format("truetype"); unicode-range: U+E285; } @font-face { font-family: "rbx"; src: url("glyphs/woff2/4a54867e.woff2") format("woff2"), url("glyphs/woff/4a54867e.woff") format("woff"), url("glyphs/ttf/4a54867e.ttf") format("truetype"); unicode-range: U+E286; } @font-face { font-family: "rise"; src: url("glyphs/woff2/e264079a.woff2") format("woff2"), url("glyphs/woff/e264079a.woff") format("woff"), url("glyphs/ttf/e264079a.ttf") format("truetype"); unicode-range: U+E287; } @font-face { font-family: "round"; src: url("glyphs/woff2/e7aad562.woff2") format("woff2"), url("glyphs/woff/e7aad562.woff") format("woff"), url("glyphs/ttf/e7aad562.ttf") format("truetype"); unicode-range: U+E288; } @font-face { font-family: "rkc"; src: url("glyphs/woff2/24cd796b.woff2") format("woff2"), url("glyphs/woff/24cd796b.woff") format("woff"), url("glyphs/ttf/24cd796b.ttf") format("truetype"); unicode-range: U+E289; } @font-face { font-family: "rbies"; src: url("glyphs/woff2/825014e6.woff2") format("woff2"), url("glyphs/woff/825014e6.woff") format("woff"), url("glyphs/ttf/825014e6.ttf") format("truetype"); unicode-range: U+E28A; } @font-face { font-family: "rby"; src: url("glyphs/woff2/c7e82146.woff2") format("woff2"), url("glyphs/woff/c7e82146.woff") format("woff"), url("glyphs/ttf/c7e82146.ttf") format("truetype"); unicode-range: U+E28B; } @font-face { font-family: "salt"; src: url("glyphs/woff2/4ae1ce28.woff2") format("woff2"), url("glyphs/woff/4ae1ce28.woff") format("woff"), url("glyphs/ttf/4ae1ce28.ttf") format("truetype"); unicode-range: U+E28C; } @font-face { font-family: "sepa"; src: url("glyphs/woff2/e9b1d552.woff2") format("woff2"), url("glyphs/woff/e9b1d552.woff") format("woff"), url("glyphs/ttf/e9b1d552.ttf") format("truetype"); unicode-range: U+E28D; } @font-face { font-family: "xsh"; src: url("glyphs/woff2/ce715050.woff2") format("woff2"), url("glyphs/woff/ce715050.woff") format("woff"), url("glyphs/ttf/ce715050.ttf") format("truetype"); unicode-range: U+E28E; } @font-face { font-family: "sib"; src: url("glyphs/woff2/d2ebd46c.woff2") format("woff2"), url("glyphs/woff/d2ebd46c.woff") format("woff"), url("glyphs/ttf/d2ebd46c.ttf") format("truetype"); unicode-range: U+E28F; } @font-face { font-family: "srn"; src: url("glyphs/woff2/74dc98f9.woff2") format("woff2"), url("glyphs/woff/74dc98f9.woff") format("woff"), url("glyphs/ttf/74dc98f9.ttf") format("truetype"); unicode-range: U+E290; } @font-face { font-family: "skynet"; src: url("glyphs/woff2/7c37a4d6.woff2") format("woff2"), url("glyphs/woff/7c37a4d6.woff") format("woff"), url("glyphs/ttf/7c37a4d6.ttf") format("truetype"); unicode-range: U+E291; } @font-face { font-family: "snm"; src: url("glyphs/woff2/c9a00be7.woff2") format("woff2"), url("glyphs/woff/c9a00be7.woff") format("woff"), url("glyphs/ttf/c9a00be7.ttf") format("truetype"); unicode-range: U+E292; } @font-face { font-family: "altcom"; src: url("glyphs/woff2/db8e73dd.woff2") format("woff2"), url("glyphs/woff/db8e73dd.woff") format("woff"), url("glyphs/ttf/db8e73dd.ttf") format("truetype"); unicode-range: U+E293; } @font-face { font-family: "stk"; src: url("glyphs/woff2/c9ede1cf.woff2") format("woff2"), url("glyphs/woff/c9ede1cf.woff") format("woff"), url("glyphs/ttf/c9ede1cf.ttf") format("truetype"); unicode-range: U+E294; } @font-face { font-family: "safex"; src: url("glyphs/woff2/282e3874.woff2") format("woff2"), url("glyphs/woff/282e3874.woff") format("woff"), url("glyphs/ttf/282e3874.ttf") format("truetype"); unicode-range: U+E295; } @font-face { font-family: "sage"; src: url("glyphs/woff2/088eafe1.woff2") format("woff2"), url("glyphs/woff/088eafe1.woff") format("woff"), url("glyphs/ttf/088eafe1.ttf") format("truetype"); unicode-range: U+E296; } @font-face { font-family: "sls"; src: url("glyphs/woff2/77d98a34.woff2") format("woff2"), url("glyphs/woff/77d98a34.woff") format("woff"), url("glyphs/ttf/77d98a34.ttf") format("truetype"); unicode-range: U+E297; } @font-face { font-family: "sant"; src: url("glyphs/woff2/89eb94d2.woff2") format("woff2"), url("glyphs/woff/89eb94d2.woff") format("woff"), url("glyphs/ttf/89eb94d2.ttf") format("truetype"); unicode-range: U+E298; } @font-face { font-family: "san"; src: url("glyphs/woff2/78600846.woff2") format("woff2"), url("glyphs/woff/78600846.woff") format("woff"), url("glyphs/ttf/78600846.ttf") format("truetype"); unicode-range: U+E299; } @font-face { font-family: "sar"; src: url("glyphs/woff2/c0ef3e5e.woff2") format("woff2"), url("glyphs/woff/c0ef3e5e.woff") format("woff"), url("glyphs/ttf/c0ef3e5e.ttf") format("truetype"); unicode-range: U+E29A; } @font-face { font-family: "scot"; src: url("glyphs/woff2/81e03745.woff2") format("woff2"), url("glyphs/woff/81e03745.woff") format("woff"), url("glyphs/ttf/81e03745.ttf") format("truetype"); unicode-range: U+E29B; } @font-face { font-family: "key"; src: url("glyphs/woff2/61c4be74.woff2") format("woff2"), url("glyphs/woff/61c4be74.woff") format("woff"), url("glyphs/ttf/61c4be74.ttf") format("truetype"); unicode-range: U+E29C; } @font-face { font-family: "sense"; src: url("glyphs/woff2/439e5c3d.woff2") format("woff2"), url("glyphs/woff/439e5c3d.woff") format("woff"), url("glyphs/ttf/439e5c3d.ttf") format("truetype"); unicode-range: U+E29D; } @font-face { font-family: "seth"; src: url("glyphs/woff2/1b7ba367.woff2") format("woff2"), url("glyphs/woff/1b7ba367.woff") format("woff"), url("glyphs/ttf/1b7ba367.ttf") format("truetype"); unicode-range: U+E29E; } @font-face { font-family: "sdc"; src: url("glyphs/woff2/dcf87866.woff2") format("woff2"), url("glyphs/woff/dcf87866.woff") format("woff"), url("glyphs/ttf/dcf87866.ttf") format("truetype"); unicode-range: U+E29F; } @font-face { font-family: "shapeshift"; src: url("glyphs/woff2/6065bb77.woff2") format("woff2"), url("glyphs/woff/6065bb77.woff") format("woff"), url("glyphs/ttf/6065bb77.ttf") format("truetype"); unicode-range: U+E2A0; } @font-face { font-family: "shp"; src: url("glyphs/woff2/1fd6b062.woff2") format("woff2"), url("glyphs/woff/1fd6b062.woff") format("woff"), url("glyphs/ttf/1fd6b062.ttf") format("truetype"); unicode-range: U+E2A1; } @font-face { font-family: "jew"; src: url("glyphs/woff2/be0e8a5a.woff2") format("woff2"), url("glyphs/woff/be0e8a5a.woff") format("woff"), url("glyphs/ttf/be0e8a5a.ttf") format("truetype"); unicode-range: U+E2A2; } @font-face { font-family: "shift"; src: url("glyphs/woff2/bcd60da4.woff2") format("woff2"), url("glyphs/woff/bcd60da4.woff") format("woff"), url("glyphs/ttf/bcd60da4.ttf") format("truetype"); unicode-range: U+E2A3; } @font-face { font-family: "sc"; src: url("glyphs/woff2/2ef4a942.woff2") format("woff2"), url("glyphs/woff/2ef4a942.woff") format("woff"), url("glyphs/ttf/2ef4a942.ttf") format("truetype"); unicode-range: U+E2A4; } @font-face { font-family: "sig"; src: url("glyphs/woff2/9899cecb.woff2") format("woff2"), url("glyphs/woff/9899cecb.woff") format("woff"), url("glyphs/ttf/9899cecb.ttf") format("truetype"); unicode-range: U+E2A5; } @font-face { font-family: "sgn"; src: url("glyphs/woff2/31782ddd.woff2") format("woff2"), url("glyphs/woff/31782ddd.woff") format("woff"), url("glyphs/ttf/31782ddd.ttf") format("truetype"); unicode-range: U+E2A6; } @font-face { font-family: "sto"; src: url("glyphs/woff2/1778d94c.woff2") format("woff2"), url("glyphs/woff/1778d94c.woff") format("woff"), url("glyphs/ttf/1778d94c.ttf") format("truetype"); unicode-range: U+E2A7; } @font-face { font-family: "sngls"; src: url("glyphs/woff2/081f89e0.woff2") format("woff2"), url("glyphs/woff/081f89e0.woff") format("woff"), url("glyphs/ttf/081f89e0.ttf") format("truetype"); unicode-range: U+E2A8; } @font-face { font-family: "skc"; src: url("glyphs/woff2/6795017c.woff2") format("woff2"), url("glyphs/woff/6795017c.woff") format("woff"), url("glyphs/ttf/6795017c.ttf") format("truetype"); unicode-range: U+E2A9; } @font-face { font-family: "skrill"; src: url("glyphs/woff2/25ea7b82.woff2") format("woff2"), url("glyphs/woff/25ea7b82.woff") format("woff"), url("glyphs/ttf/25ea7b82.ttf") format("truetype"); unicode-range: U+E2AA; } @font-face { font-family: "sky"; src: url("glyphs/woff2/68a429e1.woff2") format("woff2"), url("glyphs/woff/68a429e1.woff") format("woff"), url("glyphs/ttf/68a429e1.ttf") format("truetype"); unicode-range: U+E2AB; } @font-face { font-family: "smart"; src: url("glyphs/woff2/676821e3.woff2") format("woff2"), url("glyphs/woff/676821e3.woff") format("woff"), url("glyphs/ttf/676821e3.ttf") format("truetype"); unicode-range: U+E2AC; } @font-face { font-family: "slt"; src: url("glyphs/woff2/b84384c5.woff2") format("woff2"), url("glyphs/woff/b84384c5.woff") format("woff"), url("glyphs/ttf/b84384c5.ttf") format("truetype"); unicode-range: U+E2AD; } @font-face { font-family: "snov"; src: url("glyphs/woff2/ffa0cc23.woff2") format("woff2"), url("glyphs/woff/ffa0cc23.woff") format("woff"), url("glyphs/ttf/ffa0cc23.ttf") format("truetype"); unicode-range: U+E2AE; } @font-face { font-family: "soar"; src: url("glyphs/woff2/36bc1a9d.woff2") format("woff2"), url("glyphs/woff/36bc1a9d.woff") format("woff"), url("glyphs/ttf/36bc1a9d.ttf") format("truetype"); unicode-range: U+E2AF; } @font-face { font-family: "som"; src: url("glyphs/woff2/131ebb37.woff2") format("woff2"), url("glyphs/woff/131ebb37.woff") format("woff"), url("glyphs/ttf/131ebb37.ttf") format("truetype"); unicode-range: U+E2B0; } @font-face { font-family: "slr"; src: url("glyphs/woff2/4a7c46ed.woff2") format("woff2"), url("glyphs/woff/4a7c46ed.woff") format("woff"), url("glyphs/ttf/4a7c46ed.ttf") format("truetype"); unicode-range: U+E2B1; } @font-face { font-family: "xlr"; src: url("glyphs/woff2/860a7588.woff2") format("woff2"), url("glyphs/woff/860a7588.woff") format("woff"), url("glyphs/ttf/860a7588.ttf") format("truetype"); unicode-range: U+E2B2; } @font-face { font-family: "sphtx"; src: url("glyphs/woff2/525958c5.woff2") format("woff2"), url("glyphs/woff/525958c5.woff") format("woff"), url("glyphs/ttf/525958c5.ttf") format("truetype"); unicode-range: U+E2B3; } @font-face { font-family: "krw"; src: url("glyphs/woff2/85b9ab95.woff2") format("woff2"), url("glyphs/woff/85b9ab95.woff") format("woff"), url("glyphs/ttf/85b9ab95.ttf") format("truetype"); unicode-range: U+E2B4; } @font-face { font-family: "spc"; src: url("glyphs/woff2/f4c46d43.woff2") format("woff2"), url("glyphs/woff/f4c46d43.woff") format("woff"), url("glyphs/ttf/f4c46d43.ttf") format("truetype"); unicode-range: U+E2B5; } @font-face { font-family: "spank"; src: url("glyphs/woff2/e2cd4ea9.woff2") format("woff2"), url("glyphs/woff/e2cd4ea9.woff") format("woff"), url("glyphs/ttf/e2cd4ea9.ttf") format("truetype"); unicode-range: U+E2B6; } @font-face { font-family: "scdt"; src: url("glyphs/woff2/b7ecc4fc.woff2") format("woff2"), url("glyphs/woff/b7ecc4fc.woff") format("woff"), url("glyphs/ttf/b7ecc4fc.ttf") format("truetype"); unicode-range: U+E2B7; } @font-face { font-family: "xspec"; src: url("glyphs/woff2/8625f0eb.woff2") format("woff2"), url("glyphs/woff/8625f0eb.woff") format("woff"), url("glyphs/ttf/8625f0eb.ttf") format("truetype"); unicode-range: U+E2B8; } @font-face { font-family: "sms"; src: url("glyphs/woff2/4477f406.woff2") format("woff2"), url("glyphs/woff/4477f406.woff") format("woff"), url("glyphs/ttf/4477f406.ttf") format("truetype"); unicode-range: U+E2B9; } @font-face { font-family: "spf"; src: url("glyphs/woff2/68243e39.woff2") format("woff2"), url("glyphs/woff/68243e39.woff") format("woff"), url("glyphs/ttf/68243e39.ttf") format("truetype"); unicode-range: U+E2BA; } @font-face { font-family: "squareup"; src: url("glyphs/woff2/56c47c5a.woff2") format("woff2"), url("glyphs/woff/56c47c5a.woff") format("woff"), url("glyphs/ttf/56c47c5a.ttf") format("truetype"); unicode-range: U+E2BB; } @font-face { font-family: "kst"; src: url("glyphs/woff2/aa0b1cf4.woff2") format("woff2"), url("glyphs/woff/aa0b1cf4.woff") format("woff"), url("glyphs/ttf/aa0b1cf4.ttf") format("truetype"); unicode-range: U+E2BC; } @font-face { font-family: "start"; src: url("glyphs/woff2/0b4fc343.woff2") format("woff2"), url("glyphs/woff/0b4fc343.woff") format("woff"), url("glyphs/ttf/0b4fc343.ttf") format("truetype"); unicode-range: U+E2BD; } @font-face { font-family: "stac"; src: url("glyphs/woff2/cf02d8e2.woff2") format("woff2"), url("glyphs/woff/cf02d8e2.woff") format("woff"), url("glyphs/ttf/cf02d8e2.ttf") format("truetype"); unicode-range: U+E2BE; } @font-face { font-family: "snt"; src: url("glyphs/woff2/79fefc18.woff2") format("woff2"), url("glyphs/woff/79fefc18.woff") format("woff"), url("glyphs/ttf/79fefc18.ttf") format("truetype"); unicode-range: U+E2BF; } @font-face { font-family: "xst"; src: url("glyphs/woff2/df2fadba.woff2") format("woff2"), url("glyphs/woff/df2fadba.woff") format("woff"), url("glyphs/ttf/df2fadba.ttf") format("truetype"); unicode-range: U+E2C0; } @font-face { font-family: "steem"; src: url("glyphs/woff2/f874c31d.woff2") format("woff2"), url("glyphs/woff/f874c31d.woff") format("woff"), url("glyphs/ttf/f874c31d.ttf") format("truetype"); unicode-range: U+E2C1; } @font-face { font-family: "xlm"; src: url("glyphs/woff2/0ca412f2.woff2") format("woff2"), url("glyphs/woff/0ca412f2.woff") format("woff"), url("glyphs/ttf/0ca412f2.ttf") format("truetype"); unicode-range: U+E2C2; } @font-face { font-family: "slg"; src: url("glyphs/woff2/9375b000.woff2") format("woff2"), url("glyphs/woff/9375b000.woff") format("woff"), url("glyphs/ttf/9375b000.ttf") format("truetype"); unicode-range: U+E2C3; } @font-face { font-family: "stq"; src: url("glyphs/woff2/bae65807.woff2") format("woff2"), url("glyphs/woff/bae65807.woff") format("woff"), url("glyphs/ttf/bae65807.ttf") format("truetype"); unicode-range: U+E2C4; } @font-face { font-family: "storj"; src: url("glyphs/woff2/7b978459.woff2") format("woff2"), url("glyphs/woff/7b978459.woff") format("woff"), url("glyphs/ttf/7b978459.ttf") format("truetype"); unicode-range: U+E2C5; } @font-face { font-family: "sjcx"; src: url("glyphs/woff2/c3ad2575.woff2") format("woff2"), url("glyphs/woff/c3ad2575.woff") format("woff"), url("glyphs/ttf/c3ad2575.ttf") format("truetype"); unicode-range: U+E2C6; } @font-face { font-family: "storm"; src: url("glyphs/woff2/24e7e96e.woff2") format("woff2"), url("glyphs/woff/24e7e96e.woff") format("woff"), url("glyphs/ttf/24e7e96e.ttf") format("truetype"); unicode-range: U+E2C7; } @font-face { font-family: "stx"; src: url("glyphs/woff2/993b5d5e.woff2") format("woff2"), url("glyphs/woff/993b5d5e.woff") format("woff"), url("glyphs/ttf/993b5d5e.ttf") format("truetype"); unicode-range: U+E2C8; } @font-face { font-family: "strat"; src: url("glyphs/woff2/c71e8d9a.woff2") format("woff2"), url("glyphs/woff/c71e8d9a.woff") format("woff"), url("glyphs/ttf/c71e8d9a.ttf") format("truetype"); unicode-range: U+E2C9; } @font-face { font-family: "data"; src: url("glyphs/woff2/25ba326c.woff2") format("woff2"), url("glyphs/woff/25ba326c.woff") format("woff"), url("glyphs/ttf/25ba326c.ttf") format("truetype"); unicode-range: U+E2CA; } @font-face { font-family: "sub"; src: url("glyphs/woff2/e33b2c7f.woff2") format("woff2"), url("glyphs/woff/e33b2c7f.woff") format("woff"), url("glyphs/ttf/e33b2c7f.ttf") format("truetype"); unicode-range: U+E2CB; } @font-face { font-family: "sgr"; src: url("glyphs/woff2/ee154cca.woff2") format("woff2"), url("glyphs/woff/ee154cca.woff") format("woff"), url("glyphs/ttf/ee154cca.ttf") format("truetype"); unicode-range: U+E2CC; } @font-face { font-family: "sumo"; src: url("glyphs/woff2/b779fc78.woff2") format("woff2"), url("glyphs/woff/b779fc78.woff") format("woff"), url("glyphs/ttf/b779fc78.ttf") format("truetype"); unicode-range: U+E2CD; } @font-face { font-family: "snc"; src: url("glyphs/woff2/250eac5a.woff2") format("woff2"), url("glyphs/woff/250eac5a.woff") format("woff"), url("glyphs/ttf/250eac5a.ttf") format("truetype"); unicode-range: U+E2CE; } @font-face { font-family: "unity"; src: url("glyphs/woff2/c0becad5.woff2") format("woff2"), url("glyphs/woff/c0becad5.woff") format("woff"), url("glyphs/ttf/c0becad5.ttf") format("truetype"); unicode-range: U+E2CF; } @font-face { font-family: "swt"; src: url("glyphs/woff2/df6bc6bf.woff2") format("woff2"), url("glyphs/woff/df6bc6bf.woff") format("woff"), url("glyphs/ttf/df6bc6bf.ttf") format("truetype"); unicode-range: U+E2D0; } @font-face { font-family: "swm"; src: url("glyphs/woff2/7d68324f.woff2") format("woff2"), url("glyphs/woff/7d68324f.woff") format("woff"), url("glyphs/ttf/7d68324f.ttf") format("truetype"); unicode-range: U+E2D1; } @font-face { font-family: "swisspost"; src: url("glyphs/woff2/24a80660.woff2") format("woff2"), url("glyphs/woff/24a80660.woff") format("woff"), url("glyphs/ttf/24a80660.ttf") format("truetype"); unicode-range: U+E2D2; } @font-face { font-family: "swh"; src: url("glyphs/woff2/d2e8e796.woff2") format("woff2"), url("glyphs/woff/d2e8e796.woff") format("woff"), url("glyphs/ttf/d2e8e796.ttf") format("truetype"); unicode-range: U+E2D3; } @font-face { font-family: "sync"; src: url("glyphs/woff2/0067bba3.woff2") format("woff2"), url("glyphs/woff/0067bba3.woff") format("woff"), url("glyphs/ttf/0067bba3.ttf") format("truetype"); unicode-range: U+E2D4; } @font-face { font-family: "mfg"; src: url("glyphs/woff2/c290dee9.woff2") format("woff2"), url("glyphs/woff/c290dee9.woff") format("woff"), url("glyphs/ttf/c290dee9.ttf") format("truetype"); unicode-range: U+E2D5; } @font-face { font-family: "amp"; src: url("glyphs/woff2/61e075b5.woff2") format("woff2"), url("glyphs/woff/61e075b5.woff") format("woff"), url("glyphs/ttf/61e075b5.ttf") format("truetype"); unicode-range: U+E2D6; } @font-face { font-family: "snrg"; src: url("glyphs/woff2/e0cf68e8.woff2") format("woff2"), url("glyphs/woff/e0cf68e8.woff") format("woff"), url("glyphs/ttf/e0cf68e8.ttf") format("truetype"); unicode-range: U+E2D7; } @font-face { font-family: "sys"; src: url("glyphs/woff2/b86d565c.woff2") format("woff2"), url("glyphs/woff/b86d565c.woff") format("woff"), url("glyphs/ttf/b86d565c.ttf") format("truetype"); unicode-range: U+E2D8; } @font-face { font-family: "tidex"; src: url("glyphs/woff2/fd56eaf9.woff2") format("woff2"), url("glyphs/woff/fd56eaf9.woff") format("woff"), url("glyphs/ttf/fd56eaf9.ttf") format("truetype"); unicode-range: U+E2D9; } @font-face { font-family: "tie"; src: url("glyphs/woff2/6e3568e1.woff2") format("woff2"), url("glyphs/woff/6e3568e1.woff") format("woff"), url("glyphs/ttf/6e3568e1.ttf") format("truetype"); unicode-range: U+E2DA; } @font-face { font-family: "tntpost"; src: url("glyphs/woff2/159ee498.woff2") format("woff2"), url("glyphs/woff/159ee498.woff") format("woff"), url("glyphs/ttf/159ee498.ttf") format("truetype"); unicode-range: U+E2DB; } @font-face { font-family: "toll"; src: url("glyphs/woff2/957ea602.woff2") format("woff2"), url("glyphs/woff/957ea602.woff") format("woff"), url("glyphs/ttf/957ea602.ttf") format("truetype"); unicode-range: U+E2DC; } @font-face { font-family: "trezor"; src: url("glyphs/woff2/b8276594.woff2") format("woff2"), url("glyphs/woff/b8276594.woff") format("woff"), url("glyphs/ttf/b8276594.ttf") format("truetype"); unicode-range: U+E2DD; } @font-face { font-family: "trx"; src: url("glyphs/woff2/af60aa55.woff2") format("woff2"), url("glyphs/woff/af60aa55.woff") format("woff"), url("glyphs/ttf/af60aa55.ttf") format("truetype"); unicode-range: U+E2DE; } @font-face { font-family: "taas"; src: url("glyphs/woff2/e2ffe70e.woff2") format("woff2"), url("glyphs/woff/e2ffe70e.woff") format("woff"), url("glyphs/ttf/e2ffe70e.ttf") format("truetype"); unicode-range: U+E2DF; } @font-face { font-family: "tel"; src: url("glyphs/woff2/30042e01.woff2") format("woff2"), url("glyphs/woff/30042e01.woff") format("woff"), url("glyphs/ttf/30042e01.ttf") format("truetype"); unicode-range: U+E2E0; } @font-face { font-family: "pay"; src: url("glyphs/woff2/54940801.woff2") format("woff2"), url("glyphs/woff/54940801.woff") format("woff"), url("glyphs/ttf/54940801.ttf") format("truetype"); unicode-range: U+E2E1; } @font-face { font-family: "trc"; src: url("glyphs/woff2/14880f85.woff2") format("woff2"), url("glyphs/woff/14880f85.woff") format("woff"), url("glyphs/ttf/14880f85.ttf") format("truetype"); unicode-range: U+E2E2; } @font-face { font-family: "usdt"; src: url("glyphs/woff2/51792712.woff2") format("woff2"), url("glyphs/woff/51792712.woff") format("woff"), url("glyphs/ttf/51792712.ttf") format("truetype"); unicode-range: U+E2E3; } @font-face { font-family: "xtz"; src: url("glyphs/woff2/fda7a318.woff2") format("woff2"), url("glyphs/woff/fda7a318.woff") format("woff"), url("glyphs/ttf/fda7a318.ttf") format("truetype"); unicode-range: U+E2E4; } @font-face { font-family: "dao"; src: url("glyphs/woff2/1d45862b.woff2") format("woff2"), url("glyphs/woff/1d45862b.woff") format("woff"), url("glyphs/ttf/1d45862b.ttf") format("truetype"); unicode-range: U+E2E5; } @font-face { font-family: "rocktrading"; src: url("glyphs/woff2/d0a546a6.woff2") format("woff2"), url("glyphs/woff/d0a546a6.woff") format("woff"), url("glyphs/ttf/d0a546a6.ttf") format("truetype"); unicode-range: U+E2E6; } @font-face { font-family: "theta"; src: url("glyphs/woff2/2ae6c3ff.woff2") format("woff2"), url("glyphs/woff/2ae6c3ff.woff") format("woff"), url("glyphs/ttf/2ae6c3ff.ttf") format("truetype"); unicode-range: U+E2E7; } @font-face { font-family: "tnt"; src: url("glyphs/woff2/e516e4c5.woff2") format("woff2"), url("glyphs/woff/e516e4c5.woff") format("woff"), url("glyphs/ttf/e516e4c5.ttf") format("truetype"); unicode-range: U+E2E8; } @font-face { font-family: "tig"; src: url("glyphs/woff2/2be8c581.woff2") format("woff2"), url("glyphs/woff/2be8c581.woff") format("woff"), url("glyphs/ttf/2be8c581.ttf") format("truetype"); unicode-range: U+E2E9; } @font-face { font-family: "tnb"; src: url("glyphs/woff2/5496b078.woff2") format("woff2"), url("glyphs/woff/5496b078.woff") format("woff"), url("glyphs/ttf/5496b078.ttf") format("truetype"); unicode-range: U+E2EA; } @font-face { font-family: "tbar"; src: url("glyphs/woff2/0ecabbc7.woff2") format("woff2"), url("glyphs/woff/0ecabbc7.woff") format("woff"), url("glyphs/ttf/0ecabbc7.ttf") format("truetype"); unicode-range: U+E2EB; } @font-face { font-family: "bar"; src: url("glyphs/woff2/2e5887ef.woff2") format("woff2"), url("glyphs/woff/2e5887ef.woff") format("woff"), url("glyphs/ttf/2e5887ef.ttf") format("truetype"); unicode-range: U+E2EC; } @font-face { font-family: "token"; src: url("glyphs/woff2/36ac1140.woff2") format("woff2"), url("glyphs/woff/36ac1140.woff") format("woff"), url("glyphs/ttf/36ac1140.ttf") format("truetype"); unicode-range: U+E2ED; } @font-face { font-family: "tkn"; src: url("glyphs/woff2/8b604615.woff2") format("woff2"), url("glyphs/woff/8b604615.woff") format("woff"), url("glyphs/ttf/8b604615.ttf") format("truetype"); unicode-range: U+E2EE; } @font-face { font-family: "lyl"; src: url("glyphs/woff2/7dd88093.woff2") format("woff2"), url("glyphs/woff/7dd88093.woff") format("woff"), url("glyphs/ttf/7dd88093.ttf") format("truetype"); unicode-range: U+E2EF; } @font-face { font-family: "tpay"; src: url("glyphs/woff2/75058b72.woff2") format("woff2"), url("glyphs/woff/75058b72.woff") format("woff"), url("glyphs/ttf/75058b72.ttf") format("truetype"); unicode-range: U+E2F0; } @font-face { font-family: "tbx"; src: url("glyphs/woff2/d20bd061.woff2") format("woff2"), url("glyphs/woff/d20bd061.woff") format("woff"), url("glyphs/ttf/d20bd061.ttf") format("truetype"); unicode-range: U+E2F1; } @font-face { font-family: "tomo"; src: url("glyphs/woff2/8f9646bf.woff2") format("woff2"), url("glyphs/woff/8f9646bf.woff") format("woff"), url("glyphs/ttf/8f9646bf.ttf") format("truetype"); unicode-range: U+E2F2; } @font-face { font-family: "trct"; src: url("glyphs/woff2/0f971447.woff2") format("woff2"), url("glyphs/woff/0f971447.woff") format("woff"), url("glyphs/ttf/0f971447.ttf") format("truetype"); unicode-range: U+E2F3; } @font-face { font-family: "tradesatoshi"; src: url("glyphs/woff2/c1581e36.woff2") format("woff2"), url("glyphs/woff/c1581e36.woff") format("woff"), url("glyphs/ttf/c1581e36.ttf") format("truetype"); unicode-range: U+E2F4; } @font-face { font-family: "tio"; src: url("glyphs/woff2/b410b0fe.woff2") format("woff2"), url("glyphs/woff/b410b0fe.woff") format("woff"), url("glyphs/ttf/b410b0fe.ttf") format("truetype"); unicode-range: U+E2F5; } @font-face { font-family: "tradingview"; src: url("glyphs/woff2/619e1843.woff2") format("woff2"), url("glyphs/woff/619e1843.woff") format("woff"), url("glyphs/ttf/619e1843.ttf") format("truetype"); unicode-range: U+E2F6; } @font-face { font-family: "tx"; src: url("glyphs/woff2/66a94b72.woff2") format("woff2"), url("glyphs/woff/66a94b72.woff") format("woff"), url("glyphs/ttf/66a94b72.ttf") format("truetype"); unicode-range: U+E2F7; } @font-face { font-family: "trig"; src: url("glyphs/woff2/b82f6a43.woff2") format("woff2"), url("glyphs/woff/b82f6a43.woff") format("woff"), url("glyphs/ttf/b82f6a43.ttf") format("truetype"); unicode-range: U+E2F8; } @font-face { font-family: "tnc"; src: url("glyphs/woff2/b3273cc3.woff2") format("woff2"), url("glyphs/woff/b3273cc3.woff") format("woff"), url("glyphs/ttf/b3273cc3.ttf") format("truetype"); unicode-range: U+E2F9; } @font-face { font-family: "true"; src: url("glyphs/woff2/49c0e6d5.woff2") format("woff2"), url("glyphs/woff/49c0e6d5.woff") format("woff"), url("glyphs/ttf/49c0e6d5.ttf") format("truetype"); unicode-range: U+E2FA; } @font-face { font-family: "tusd"; src: url("glyphs/woff2/72213980.woff2") format("woff2"), url("glyphs/woff/72213980.woff") format("woff"), url("glyphs/ttf/72213980.ttf") format("truetype"); unicode-range: U+E2FB; } @font-face { font-family: "try"; src: url("glyphs/woff2/f674659b.woff2") format("woff2"), url("glyphs/woff/f674659b.woff") format("woff"), url("glyphs/ttf/f674659b.ttf") format("truetype"); unicode-range: U+E2FC; } @font-face { font-family: "ucash"; src: url("glyphs/woff2/300b40cf.woff2") format("woff2"), url("glyphs/woff/300b40cf.woff") format("woff"), url("glyphs/ttf/300b40cf.ttf") format("truetype"); unicode-range: U+E2FD; } @font-face { font-family: "ups"; src: url("glyphs/woff2/c0b59cd5.woff2") format("woff2"), url("glyphs/woff/c0b59cd5.woff") format("woff"), url("glyphs/ttf/c0b59cd5.ttf") format("truetype"); unicode-range: U+E2FE; } @font-face { font-family: "usd"; src: url("glyphs/woff2/604eb358.woff2") format("woff2"), url("glyphs/woff/604eb358.woff") format("woff"), url("glyphs/ttf/604eb358.ttf") format("truetype"); unicode-range: U+E2FF; } @font-face { font-family: "utk"; src: url("glyphs/woff2/2849840b.woff2") format("woff2"), url("glyphs/woff/2849840b.woff") format("woff"), url("glyphs/ttf/2849840b.ttf") format("truetype"); unicode-range: U+E300; } @font-face { font-family: "ubq"; src: url("glyphs/woff2/a54fe823.woff2") format("woff2"), url("glyphs/woff/a54fe823.woff") format("woff"), url("glyphs/ttf/a54fe823.ttf") format("truetype"); unicode-range: U+E301; } @font-face { font-family: "ukg"; src: url("glyphs/woff2/b25a5c47.woff2") format("woff2"), url("glyphs/woff/b25a5c47.woff") format("woff"), url("glyphs/ttf/b25a5c47.ttf") format("truetype"); unicode-range: U+E302; } @font-face { font-family: "ubank"; src: url("glyphs/woff2/e07866a3.woff2") format("woff2"), url("glyphs/woff/e07866a3.woff") format("woff"), url("glyphs/ttf/e07866a3.ttf") format("truetype"); unicode-range: U+E303; } @font-face { font-family: "uboi"; src: url("glyphs/woff2/8ba1a228.woff2") format("woff2"), url("glyphs/woff/8ba1a228.woff") format("woff"), url("glyphs/ttf/8ba1a228.ttf") format("truetype"); unicode-range: U+E304; } @font-face { font-family: "unionpay"; src: url("glyphs/woff2/1cc31435.woff2") format("woff2"), url("glyphs/woff/1cc31435.woff") format("woff"), url("glyphs/ttf/1cc31435.ttf") format("truetype"); unicode-range: U+E305; } @font-face { font-family: "usps"; src: url("glyphs/woff2/66ef61bc.woff2") format("woff2"), url("glyphs/woff/66ef61bc.woff") format("woff"), url("glyphs/ttf/66ef61bc.ttf") format("truetype"); unicode-range: U+E306; } @font-face { font-family: "uno"; src: url("glyphs/woff2/98357202.woff2") format("woff2"), url("glyphs/woff/98357202.woff") format("woff"), url("glyphs/ttf/98357202.ttf") format("truetype"); unicode-range: U+E307; } @font-face { font-family: "up"; src: url("glyphs/woff2/56ed6f41.woff2") format("woff2"), url("glyphs/woff/56ed6f41.woff") format("woff"), url("glyphs/ttf/56ed6f41.ttf") format("truetype"); unicode-range: U+E308; } @font-face { font-family: "upcoin"; src: url("glyphs/woff2/accd5a71.woff2") format("woff2"), url("glyphs/woff/accd5a71.woff") format("woff"), url("glyphs/ttf/accd5a71.ttf") format("truetype"); unicode-range: U+E309; } @font-face { font-family: "vpay"; src: url("glyphs/woff2/1cd81072.woff2") format("woff2"), url("glyphs/woff/1cd81072.woff") format("woff"), url("glyphs/ttf/1cd81072.ttf") format("truetype"); unicode-range: U+E30A; } @font-face { font-family: "vibe"; src: url("glyphs/woff2/793b5687.woff2") format("woff2"), url("glyphs/woff/793b5687.woff") format("woff"), url("glyphs/ttf/793b5687.ttf") format("truetype"); unicode-range: U+E30B; } @font-face { font-family: "visa"; src: url("glyphs/woff2/e094cfe4.woff2") format("woff2"), url("glyphs/woff/e094cfe4.woff") format("woff"), url("glyphs/ttf/e094cfe4.ttf") format("truetype"); unicode-range: U+E30C; } @font-face { font-family: "vash"; src: url("glyphs/woff2/f871e4e4.woff2") format("woff2"), url("glyphs/woff/f871e4e4.woff") format("woff"), url("glyphs/ttf/f871e4e4.ttf") format("truetype"); unicode-range: U+E30D; } @font-face { font-family: "vlc"; src: url("glyphs/woff2/86e445ff.woff2") format("woff2"), url("glyphs/woff/86e445ff.woff") format("woff"), url("glyphs/ttf/86e445ff.ttf") format("truetype"); unicode-range: U+E30E; } @font-face { font-family: "vnl"; src: url("glyphs/woff2/81c6c9c0.woff2") format("woff2"), url("glyphs/woff/81c6c9c0.woff") format("woff"), url("glyphs/ttf/81c6c9c0.ttf") format("truetype"); unicode-range: U+E30F; } @font-face { font-family: "vaultoro"; src: url("glyphs/woff2/0c40016a.woff2") format("woff2"), url("glyphs/woff/0c40016a.woff") format("woff"), url("glyphs/ttf/0c40016a.ttf") format("truetype"); unicode-range: U+E310; } @font-face { font-family: "ven"; src: url("glyphs/woff2/6ff07dde.woff2") format("woff2"), url("glyphs/woff/6ff07dde.woff") format("woff"), url("glyphs/ttf/6ff07dde.ttf") format("truetype"); unicode-range: U+E311; } @font-face { font-family: "xvg"; src: url("glyphs/woff2/e8777ffa.woff2") format("woff2"), url("glyphs/woff/e8777ffa.woff") format("woff"), url("glyphs/ttf/e8777ffa.ttf") format("truetype"); unicode-range: U+E312; } @font-face { font-family: "vrc"; src: url("glyphs/woff2/667938fd.woff2") format("woff2"), url("glyphs/woff/667938fd.woff") format("woff"), url("glyphs/ttf/667938fd.ttf") format("truetype"); unicode-range: U+E313; } @font-face { font-family: "verisign"; src: url("glyphs/woff2/3e670521.woff2") format("woff2"), url("glyphs/woff/3e670521.woff") format("woff"), url("glyphs/ttf/3e670521.ttf") format("truetype"); unicode-range: U+E314; } @font-face { font-family: "cred"; src: url("glyphs/woff2/cd3dc2c3.woff2") format("woff2"), url("glyphs/woff/cd3dc2c3.woff") format("woff"), url("glyphs/ttf/cd3dc2c3.ttf") format("truetype"); unicode-range: U+E315; } @font-face { font-family: "veri"; src: url("glyphs/woff2/3bd53fee.woff2") format("woff2"), url("glyphs/woff/3bd53fee.woff") format("woff"), url("glyphs/ttf/3bd53fee.ttf") format("truetype"); unicode-range: U+E316; } @font-face { font-family: "vtc"; src: url("glyphs/woff2/95ce85b0.woff2") format("woff2"), url("glyphs/woff/95ce85b0.woff") format("woff"), url("glyphs/ttf/95ce85b0.ttf") format("truetype"); unicode-range: U+E317; } @font-face { font-family: "via"; src: url("glyphs/woff2/a97d857e.woff2") format("woff2"), url("glyphs/woff/a97d857e.woff") format("woff"), url("glyphs/ttf/a97d857e.ttf") format("truetype"); unicode-range: U+E318; } @font-face { font-family: "vib"; src: url("glyphs/woff2/2e27c6c1.woff2") format("woff2"), url("glyphs/woff/2e27c6c1.woff") format("woff"), url("glyphs/ttf/2e27c6c1.ttf") format("truetype"); unicode-range: U+E319; } @font-face { font-family: "vit"; src: url("glyphs/woff2/9e0089cc.woff2") format("woff2"), url("glyphs/woff/9e0089cc.woff") format("woff"), url("glyphs/ttf/9e0089cc.ttf") format("truetype"); unicode-range: U+E31A; } @font-face { font-family: "vior"; src: url("glyphs/woff2/c931b176.woff2") format("woff2"), url("glyphs/woff/c931b176.woff") format("woff"), url("glyphs/ttf/c931b176.ttf") format("truetype"); unicode-range: U+E31B; } @font-face { font-family: "viu"; src: url("glyphs/woff2/511209fe.woff2") format("woff2"), url("glyphs/woff/511209fe.woff") format("woff"), url("glyphs/ttf/511209fe.ttf") format("truetype"); unicode-range: U+E31C; } @font-face { font-family: "voise"; src: url("glyphs/woff2/4b099001.woff2") format("woff2"), url("glyphs/woff/4b099001.woff") format("woff"), url("glyphs/ttf/4b099001.ttf") format("truetype"); unicode-range: U+E31D; } @font-face { font-family: "vtn"; src: url("glyphs/woff2/2fd2e914.woff2") format("woff2"), url("glyphs/woff/2fd2e914.woff") format("woff"), url("glyphs/ttf/2fd2e914.ttf") format("truetype"); unicode-range: U+E31E; } @font-face { font-family: "vox"; src: url("glyphs/woff2/b70c5e32.woff2") format("woff2"), url("glyphs/woff/b70c5e32.woff") format("woff"), url("glyphs/ttf/b70c5e32.ttf") format("truetype"); unicode-range: U+E31F; } @font-face { font-family: "vsx"; src: url("glyphs/woff2/d57e51c5.woff2") format("woff2"), url("glyphs/woff/d57e51c5.woff") format("woff"), url("glyphs/ttf/d57e51c5.ttf") format("truetype"); unicode-range: U+E320; } @font-face { font-family: "wax"; src: url("glyphs/woff2/b9a227e4.woff2") format("woff2"), url("glyphs/woff/b9a227e4.woff") format("woff"), url("glyphs/ttf/b9a227e4.ttf") format("truetype"); unicode-range: U+E321; } @font-face { font-family: "weth"; src: url("glyphs/woff2/882182c1.woff2") format("woff2"), url("glyphs/woff/882182c1.woff") format("woff"), url("glyphs/ttf/882182c1.ttf") format("truetype"); unicode-range: U+E322; } @font-face { font-family: "wabi"; src: url("glyphs/woff2/c579a0a6.woff2") format("woff2"), url("glyphs/woff/c579a0a6.woff") format("woff"), url("glyphs/ttf/c579a0a6.ttf") format("truetype"); unicode-range: U+E323; } @font-face { font-family: "wgr"; src: url("glyphs/woff2/7ca46b25.woff2") format("woff2"), url("glyphs/woff/7ca46b25.woff") format("woff"), url("glyphs/ttf/7ca46b25.ttf") format("truetype"); unicode-range: U+E324; } @font-face { font-family: "wtc"; src: url("glyphs/woff2/19f8d5af.woff2") format("woff2"), url("glyphs/woff/19f8d5af.woff") format("woff"), url("glyphs/ttf/19f8d5af.ttf") format("truetype"); unicode-range: U+E325; } @font-face { font-family: "wan"; src: url("glyphs/woff2/982f3edc.woff2") format("woff2"), url("glyphs/woff/982f3edc.woff") format("woff"), url("glyphs/ttf/982f3edc.ttf") format("truetype"); unicode-range: U+E326; } @font-face { font-family: "wct"; src: url("glyphs/woff2/85a57a2a.woff2") format("woff2"), url("glyphs/woff/85a57a2a.woff") format("woff"), url("glyphs/ttf/85a57a2a.ttf") format("truetype"); unicode-range: U+E327; } @font-face { font-family: "waves"; src: url("glyphs/woff2/f324b46a.woff2") format("woff2"), url("glyphs/woff/f324b46a.woff") format("woff"), url("glyphs/ttf/f324b46a.ttf") format("truetype"); unicode-range: U+E328; } @font-face { font-family: "wechatpay"; src: url("glyphs/woff2/c7e2b3d5.woff2") format("woff2"), url("glyphs/woff/c7e2b3d5.woff") format("woff"), url("glyphs/ttf/c7e2b3d5.ttf") format("truetype"); unicode-range: U+E329; } @font-face { font-family: "wpr"; src: url("glyphs/woff2/80160b96.woff2") format("woff2"), url("glyphs/woff/80160b96.woff") format("woff"), url("glyphs/ttf/80160b96.ttf") format("truetype"); unicode-range: U+E32A; } @font-face { font-family: "trst"; src: url("glyphs/woff2/78f17a21.woff2") format("woff2"), url("glyphs/woff/78f17a21.woff") format("woff"), url("glyphs/ttf/78f17a21.ttf") format("truetype"); unicode-range: U+E32B; } @font-face { font-family: "webmoney"; src: url("glyphs/woff2/7692acf2.woff2") format("woff2"), url("glyphs/woff/7692acf2.woff") format("woff"), url("glyphs/ttf/7692acf2.ttf") format("truetype"); unicode-range: U+E32C; } @font-face { font-family: "wings"; src: url("glyphs/woff2/e98b08c6.woff2") format("woff2"), url("glyphs/woff/e98b08c6.woff") format("woff"), url("glyphs/ttf/e98b08c6.ttf") format("truetype"); unicode-range: U+E32D; } @font-face { font-family: "wrc"; src: url("glyphs/woff2/264d968f.woff2") format("woff2"), url("glyphs/woff/264d968f.woff") format("woff"), url("glyphs/ttf/264d968f.ttf") format("truetype"); unicode-range: U+E32E; } @font-face { font-family: "xpa"; src: url("glyphs/woff2/58c58e95.woff2") format("woff2"), url("glyphs/woff/58c58e95.woff") format("woff"), url("glyphs/ttf/58c58e95.ttf") format("truetype"); unicode-range: U+E32F; } @font-face { font-family: "xpl"; src: url("glyphs/woff2/30d929ef.woff2") format("woff2"), url("glyphs/woff/30d929ef.woff") format("woff"), url("glyphs/ttf/30d929ef.ttf") format("truetype"); unicode-range: U+E330; } @font-face { font-family: "xby"; src: url("glyphs/woff2/f352189b.woff2") format("woff2"), url("glyphs/woff/f352189b.woff") format("woff"), url("glyphs/ttf/f352189b.ttf") format("truetype"); unicode-range: U+E331; } @font-face { font-family: "xaur"; src: url("glyphs/woff2/6cf59e55.woff2") format("woff2"), url("glyphs/woff/6cf59e55.woff") format("woff"), url("glyphs/ttf/6cf59e55.ttf") format("truetype"); unicode-range: U+E332; } @font-face { font-family: "xnn"; src: url("glyphs/woff2/131b3834.woff2") format("woff2"), url("glyphs/woff/131b3834.woff") format("woff"), url("glyphs/ttf/131b3834.ttf") format("truetype"); unicode-range: U+E333; } @font-face { font-family: "yoyow"; src: url("glyphs/woff2/e5e909f3.woff2") format("woff2"), url("glyphs/woff/e5e909f3.woff") format("woff"), url("glyphs/ttf/e5e909f3.ttf") format("truetype"); unicode-range: U+E334; } @font-face { font-family: "yandex"; src: url("glyphs/woff2/cb2908e9.woff2") format("woff2"), url("glyphs/woff/cb2908e9.woff") format("woff"), url("glyphs/ttf/cb2908e9.ttf") format("truetype"); unicode-range: U+E335; } @font-face { font-family: "ybc"; src: url("glyphs/woff2/10350c93.woff2") format("woff2"), url("glyphs/woff/10350c93.woff") format("woff"), url("glyphs/ttf/10350c93.ttf") format("truetype"); unicode-range: U+E336; } @font-face { font-family: "yobit"; src: url("glyphs/woff2/f80829f5.woff2") format("woff2"), url("glyphs/woff/f80829f5.woff") format("woff"), url("glyphs/ttf/f80829f5.ttf") format("truetype"); unicode-range: U+E337; } @font-face { font-family: "zcl"; src: url("glyphs/woff2/5922a1ce.woff2") format("woff2"), url("glyphs/woff/5922a1ce.woff") format("woff"), url("glyphs/ttf/5922a1ce.ttf") format("truetype"); unicode-range: U+E338; } @font-face { font-family: "xzc"; src: url("glyphs/woff2/fa9edb37.woff2") format("woff2"), url("glyphs/woff/fa9edb37.woff") format("woff"), url("glyphs/ttf/fa9edb37.ttf") format("truetype"); unicode-range: U+E339; } @font-face { font-family: "zec"; src: url("glyphs/woff2/0cfc2998.woff2") format("woff2"), url("glyphs/woff/0cfc2998.woff") format("woff"), url("glyphs/ttf/0cfc2998.ttf") format("truetype"); unicode-range: U+E33A; } @font-face { font-family: "zpt"; src: url("glyphs/woff2/e49824ce.woff2") format("woff2"), url("glyphs/woff/e49824ce.woff") format("woff"), url("glyphs/ttf/e49824ce.ttf") format("truetype"); unicode-range: U+E33B; } @font-face { font-family: "zeit"; src: url("glyphs/woff2/f6bda42b.woff2") format("woff2"), url("glyphs/woff/f6bda42b.woff") format("woff"), url("glyphs/ttf/f6bda42b.ttf") format("truetype"); unicode-range: U+E33C; } @font-face { font-family: "zen"; src: url("glyphs/woff2/24d18e39.woff2") format("woff2"), url("glyphs/woff/24d18e39.woff") format("woff"), url("glyphs/ttf/24d18e39.ttf") format("truetype"); unicode-range: U+E33D; } @font-face { font-family: "zrx"; src: url("glyphs/woff2/2f84e1d2.woff2") format("woff2"), url("glyphs/woff/2f84e1d2.woff") format("woff"), url("glyphs/ttf/2f84e1d2.ttf") format("truetype"); unicode-range: U+E33E; } @font-face { font-family: "zsc"; src: url("glyphs/woff2/97e6e2a1.woff2") format("woff2"), url("glyphs/woff/97e6e2a1.woff") format("woff"), url("glyphs/ttf/97e6e2a1.ttf") format("truetype"); unicode-range: U+E33F; } @font-face { font-family: "zil"; src: url("glyphs/woff2/98117c28.woff2") format("woff2"), url("glyphs/woff/98117c28.woff") format("woff"), url("glyphs/ttf/98117c28.ttf") format("truetype"); unicode-range: U+E340; } @font-face { font-family: "zoi"; src: url("glyphs/woff2/a1b08642.woff2") format("woff2"), url("glyphs/woff/a1b08642.woff") format("woff"), url("glyphs/ttf/a1b08642.ttf") format("truetype"); unicode-range: U+E341; } @font-face { font-family: "zrc"; src: url("glyphs/woff2/8d4d7cd2.woff2") format("woff2"), url("glyphs/woff/8d4d7cd2.woff") format("woff"), url("glyphs/ttf/8d4d7cd2.ttf") format("truetype"); unicode-range: U+E342; } @font-face { font-family: "axp"; src: url("glyphs/woff2/703d038d.woff2") format("woff2"), url("glyphs/woff/703d038d.woff") format("woff"), url("glyphs/ttf/703d038d.ttf") format("truetype"); unicode-range: U+E343; } @font-face { font-family: "adt"; src: url("glyphs/woff2/d214de53.woff2") format("woff2"), url("glyphs/woff/d214de53.woff") format("woff"), url("glyphs/ttf/d214de53.ttf") format("truetype"); unicode-range: U+E344; } @font-face { font-family: "elf"; src: url("glyphs/woff2/907dea52.woff2") format("woff2"), url("glyphs/woff/907dea52.woff") format("woff"), url("glyphs/ttf/907dea52.ttf") format("truetype"); unicode-range: U+E345; } @font-face { font-family: "bitcny"; src: url("glyphs/woff2/114520c4.woff2") format("woff2"), url("glyphs/woff/114520c4.woff") format("woff"), url("glyphs/ttf/114520c4.ttf") format("truetype"); unicode-range: U+E346; } @font-face { font-family: "coinsecure"; src: url("glyphs/woff2/afb6634e.woff2") format("woff2"), url("glyphs/woff/afb6634e.woff") format("woff"), url("glyphs/ttf/afb6634e.ttf") format("truetype"); unicode-range: U+E347; } @font-face { font-family: "coinw"; src: url("glyphs/woff2/b2e0a125.woff2") format("woff2"), url("glyphs/woff/b2e0a125.woff") format("woff"), url("glyphs/ttf/b2e0a125.ttf") format("truetype"); unicode-range: U+E348; } @font-face { font-family: "dnt"; src: url("glyphs/woff2/616d19f1.woff2") format("woff2"), url("glyphs/woff/616d19f1.woff") format("woff"), url("glyphs/ttf/616d19f1.ttf") format("truetype"); unicode-range: U+E349; } @font-face { font-family: "ebtc"; src: url("glyphs/woff2/928b86d7.woff2") format("woff2"), url("glyphs/woff/928b86d7.woff") format("woff"), url("glyphs/ttf/928b86d7.ttf") format("truetype"); unicode-range: U+E34A; } @font-face { font-family: "egold"; src: url("glyphs/woff2/1098551a.woff2") format("woff2"), url("glyphs/woff/1098551a.woff") format("woff"), url("glyphs/ttf/1098551a.ttf") format("truetype"); unicode-range: U+E34B; } @font-face { font-family: "ideal"; src: url("glyphs/woff2/6c187b99.woff2") format("woff2"), url("glyphs/woff/6c187b99.woff") format("woff"), url("glyphs/ttf/6c187b99.ttf") format("truetype"); unicode-range: U+E34C; } @font-face { font-family: "rlc"; src: url("glyphs/woff2/6d4a4c73.woff2") format("woff2"), url("glyphs/woff/6d4a4c73.woff") format("woff"), url("glyphs/ttf/6d4a4c73.ttf") format("truetype"); unicode-range: U+E34D; } @font-face { font-family: "ixt"; src: url("glyphs/woff2/d6f4d6c5.woff2") format("woff2"), url("glyphs/woff/d6f4d6c5.woff") format("woff"), url("glyphs/ttf/d6f4d6c5.ttf") format("truetype"); unicode-range: U+E34E; } @font-face { font-family: "mrc"; src: url("glyphs/woff2/4d6b8b33.woff2") format("woff2"), url("glyphs/woff/4d6b8b33.woff") format("woff"), url("glyphs/ttf/4d6b8b33.ttf") format("truetype"); unicode-range: U+E34F; } @font-face { font-family: "stripe"; src: url("glyphs/woff2/56652a37.woff2") format("woff2"), url("glyphs/woff/56652a37.woff") format("woff"), url("glyphs/ttf/56652a37.ttf") format("truetype"); unicode-range: U+E350; } \ No newline at end of file | |||
diff --git a/cmd/web/static/fonts/cryptocoins.css b/cmd/web/static/fonts/cryptocoins.css deleted file mode 100644 index 6829169..0000000 --- a/cmd/web/static/fonts/cryptocoins.css +++ /dev/null | |||
@@ -1,1150 +0,0 @@ | |||
1 | /*! Cryptocoins - cryptocurrency icon font | https://github.com/allienworks/cryptocoins */ | ||
2 | |||
3 | @font-face { | ||
4 | font-family: "cryptocoins"; | ||
5 | src: url('cryptocoins.woff2') format('woff2'), | ||
6 | url('cryptocoins.woff') format('woff'), | ||
7 | url('cryptocoins.ttf') format('truetype'); | ||
8 | } | ||
9 | |||
10 | /* .cc:before { */ | ||
11 | .cc::before { | ||
12 | font-family: "cryptocoins"; | ||
13 | -webkit-font-smoothing: antialiased; | ||
14 | -moz-osx-font-smoothing: grayscale; | ||
15 | font-style: normal; | ||
16 | font-variant: normal; | ||
17 | font-weight: normal; | ||
18 | /* speak: none; only necessary if not using the private unicode range (firstGlyph option) */ | ||
19 | text-decoration: none; | ||
20 | text-transform: none; | ||
21 | } | ||
22 | |||
23 | |||
24 | .cc.ADA-alt::before { | ||
25 | content: "\E001"; | ||
26 | } | ||
27 | |||
28 | .cc.ADA::before { | ||
29 | content: "\E002"; | ||
30 | } | ||
31 | |||
32 | .cc.ADC-alt::before { | ||
33 | content: "\E003"; | ||
34 | } | ||
35 | |||
36 | .cc.ADC::before { | ||
37 | content: "\E004"; | ||
38 | } | ||
39 | |||
40 | .cc.AEON-alt::before { | ||
41 | content: "\E005"; | ||
42 | } | ||
43 | |||
44 | .cc.AEON::before { | ||
45 | content: "\E006"; | ||
46 | } | ||
47 | |||
48 | .cc.AMP-alt::before { | ||
49 | content: "\E007"; | ||
50 | } | ||
51 | |||
52 | .cc.AMP::before { | ||
53 | content: "\E008"; | ||
54 | } | ||
55 | |||
56 | .cc.ANC-alt::before { | ||
57 | content: "\E009"; | ||
58 | } | ||
59 | |||
60 | .cc.ANC::before { | ||
61 | content: "\E00A"; | ||
62 | } | ||
63 | |||
64 | .cc.ARCH-alt::before { | ||
65 | content: "\E00B"; | ||
66 | } | ||
67 | |||
68 | .cc.ARCH::before { | ||
69 | content: "\E00C"; | ||
70 | } | ||
71 | |||
72 | .cc.ARDR-alt::before { | ||
73 | content: "\E00D"; | ||
74 | } | ||
75 | |||
76 | .cc.ARDR::before { | ||
77 | content: "\E00E"; | ||
78 | } | ||
79 | |||
80 | .cc.ARK-alt::before { | ||
81 | content: "\E00F"; | ||
82 | } | ||
83 | |||
84 | .cc.ARK::before { | ||
85 | content: "\E010"; | ||
86 | } | ||
87 | |||
88 | .cc.AUR-alt::before { | ||
89 | content: "\E011"; | ||
90 | } | ||
91 | |||
92 | .cc.AUR::before { | ||
93 | content: "\E012"; | ||
94 | } | ||
95 | |||
96 | .cc.BANX-alt::before { | ||
97 | content: "\E013"; | ||
98 | } | ||
99 | |||
100 | .cc.BANX::before { | ||
101 | content: "\E014"; | ||
102 | } | ||
103 | |||
104 | .cc.BAT-alt::before { | ||
105 | content: "\E015"; | ||
106 | } | ||
107 | |||
108 | .cc.BAT::before { | ||
109 | content: "\E016"; | ||
110 | } | ||
111 | |||
112 | .cc.BAY-alt::before { | ||
113 | content: "\E017"; | ||
114 | } | ||
115 | |||
116 | .cc.BAY::before { | ||
117 | content: "\E018"; | ||
118 | } | ||
119 | |||
120 | .cc.BC-alt::before { | ||
121 | content: "\E019"; | ||
122 | } | ||
123 | |||
124 | .cc.BC::before { | ||
125 | content: "\E01A"; | ||
126 | } | ||
127 | |||
128 | .cc.BCH-alt::before { | ||
129 | content: "\E01B"; | ||
130 | } | ||
131 | |||
132 | .cc.BCH::before { | ||
133 | content: "\E01C"; | ||
134 | } | ||
135 | |||
136 | .cc.BCN-alt::before { | ||
137 | content: "\E01D"; | ||
138 | } | ||
139 | |||
140 | .cc.BCN::before { | ||
141 | content: "\E01E"; | ||
142 | } | ||
143 | |||
144 | .cc.BFT-alt::before { | ||
145 | content: "\E01F"; | ||
146 | } | ||
147 | |||
148 | .cc.BFT::before { | ||
149 | content: "\E020"; | ||
150 | } | ||
151 | |||
152 | .cc.BRK-alt::before { | ||
153 | content: "\E021"; | ||
154 | } | ||
155 | |||
156 | .cc.BRK::before { | ||
157 | content: "\E022"; | ||
158 | } | ||
159 | |||
160 | .cc.BRX-alt::before { | ||
161 | content: "\E023"; | ||
162 | } | ||
163 | |||
164 | .cc.BRX::before { | ||
165 | content: "\E024"; | ||
166 | } | ||
167 | |||
168 | .cc.BSD-alt::before { | ||
169 | content: "\E025"; | ||
170 | } | ||
171 | |||
172 | .cc.BSD::before { | ||
173 | content: "\E026"; | ||
174 | } | ||
175 | |||
176 | .cc.BTA::before { | ||
177 | content: "\E027"; | ||
178 | } | ||
179 | |||
180 | .cc.BTC-alt::before { | ||
181 | content: "\E028"; | ||
182 | } | ||
183 | |||
184 | .cc.BTC::before { | ||
185 | content: "\E029"; | ||
186 | } | ||
187 | |||
188 | .cc.BTCD-alt::before { | ||
189 | content: "\E02A"; | ||
190 | } | ||
191 | |||
192 | .cc.BTCD::before { | ||
193 | content: "\E02B"; | ||
194 | } | ||
195 | |||
196 | .cc.BTM-alt::before { | ||
197 | content: "\E02C"; | ||
198 | } | ||
199 | |||
200 | .cc.BTM::before { | ||
201 | content: "\E02D"; | ||
202 | } | ||
203 | |||
204 | .cc.BTS-alt::before { | ||
205 | content: "\E02E"; | ||
206 | } | ||
207 | |||
208 | .cc.BTS::before { | ||
209 | content: "\E02F"; | ||
210 | } | ||
211 | |||
212 | .cc.CLAM-alt::before { | ||
213 | content: "\E030"; | ||
214 | } | ||
215 | |||
216 | .cc.CLAM::before { | ||
217 | content: "\E031"; | ||
218 | } | ||
219 | |||
220 | .cc.CLOAK-alt::before { | ||
221 | content: "\E032"; | ||
222 | } | ||
223 | |||
224 | .cc.CLOAK::before { | ||
225 | content: "\E033"; | ||
226 | } | ||
227 | |||
228 | .cc.DAO-alt::before { | ||
229 | content: "\E034"; | ||
230 | } | ||
231 | |||
232 | .cc.DAO::before { | ||
233 | content: "\E035"; | ||
234 | } | ||
235 | |||
236 | .cc.DASH-alt::before { | ||
237 | content: "\E036"; | ||
238 | } | ||
239 | |||
240 | .cc.DASH::before { | ||
241 | content: "\E037"; | ||
242 | } | ||
243 | |||
244 | .cc.DCR-alt::before { | ||
245 | content: "\E038"; | ||
246 | } | ||
247 | |||
248 | .cc.DCR::before { | ||
249 | content: "\E039"; | ||
250 | } | ||
251 | |||
252 | .cc.DCT-alt::before { | ||
253 | content: "\E03A"; | ||
254 | } | ||
255 | |||
256 | .cc.DCT::before { | ||
257 | content: "\E03B"; | ||
258 | } | ||
259 | |||
260 | .cc.DGB-alt::before { | ||
261 | content: "\E03C"; | ||
262 | } | ||
263 | |||
264 | .cc.DGB::before { | ||
265 | content: "\E03D"; | ||
266 | } | ||
267 | |||
268 | .cc.DGD::before { | ||
269 | content: "\E03E"; | ||
270 | } | ||
271 | |||
272 | .cc.DGX::before { | ||
273 | content: "\E03F"; | ||
274 | } | ||
275 | |||
276 | .cc.DMD-alt::before { | ||
277 | content: "\E040"; | ||
278 | } | ||
279 | |||
280 | .cc.DMD::before { | ||
281 | content: "\E041"; | ||
282 | } | ||
283 | |||
284 | .cc.DOGE-alt::before { | ||
285 | content: "\E042"; | ||
286 | } | ||
287 | |||
288 | .cc.DOGE::before { | ||
289 | content: "\E043"; | ||
290 | } | ||
291 | |||
292 | .cc.EMC-alt::before { | ||
293 | content: "\E044"; | ||
294 | } | ||
295 | |||
296 | .cc.EMC::before { | ||
297 | content: "\E045"; | ||
298 | } | ||
299 | |||
300 | .cc.EOS-alt::before { | ||
301 | content: "\E046"; | ||
302 | } | ||
303 | |||
304 | .cc.EOS::before { | ||
305 | content: "\E047"; | ||
306 | } | ||
307 | |||
308 | .cc.ERC-alt::before { | ||
309 | content: "\E048"; | ||
310 | } | ||
311 | |||
312 | .cc.ERC::before { | ||
313 | content: "\E049"; | ||
314 | } | ||
315 | |||
316 | .cc.ETC-alt::before { | ||
317 | content: "\E04A"; | ||
318 | } | ||
319 | |||
320 | .cc.ETC::before { | ||
321 | content: "\E04B"; | ||
322 | } | ||
323 | |||
324 | .cc.ETH-alt::before { | ||
325 | content: "\E04C"; | ||
326 | } | ||
327 | |||
328 | .cc.ETH::before { | ||
329 | content: "\E04D"; | ||
330 | } | ||
331 | |||
332 | .cc.FC2-alt::before { | ||
333 | content: "\E04E"; | ||
334 | } | ||
335 | |||
336 | .cc.FC2::before { | ||
337 | content: "\E04F"; | ||
338 | } | ||
339 | |||
340 | .cc.FCT-alt::before { | ||
341 | content: "\E050"; | ||
342 | } | ||
343 | |||
344 | .cc.FCT::before { | ||
345 | content: "\E051"; | ||
346 | } | ||
347 | |||
348 | .cc.FLO-alt::before { | ||
349 | content: "\E052"; | ||
350 | } | ||
351 | |||
352 | .cc.FLO::before { | ||
353 | content: "\E053"; | ||
354 | } | ||
355 | |||
356 | .cc.FRK-alt::before { | ||
357 | content: "\E054"; | ||
358 | } | ||
359 | |||
360 | .cc.FRK::before { | ||
361 | content: "\E055"; | ||
362 | } | ||
363 | |||
364 | .cc.FTC-alt::before { | ||
365 | content: "\E056"; | ||
366 | } | ||
367 | |||
368 | .cc.FTC::before { | ||
369 | content: "\E057"; | ||
370 | } | ||
371 | |||
372 | .cc.GAME-alt::before { | ||
373 | content: "\E058"; | ||
374 | } | ||
375 | |||
376 | .cc.GAME::before { | ||
377 | content: "\E059"; | ||
378 | } | ||
379 | |||
380 | .cc.GBYTE-alt::before { | ||
381 | content: "\E05A"; | ||
382 | } | ||
383 | |||
384 | .cc.GBYTE::before { | ||
385 | content: "\E05B"; | ||
386 | } | ||
387 | |||
388 | .cc.GDC-alt::before { | ||
389 | content: "\E05C"; | ||
390 | } | ||
391 | |||
392 | .cc.GDC::before { | ||
393 | content: "\E05D"; | ||
394 | } | ||
395 | |||
396 | .cc.GEMZ-alt::before { | ||
397 | content: "\E05E"; | ||
398 | } | ||
399 | |||
400 | .cc.GEMZ::before { | ||
401 | content: "\E05F"; | ||
402 | } | ||
403 | |||
404 | .cc.GLD-alt::before { | ||
405 | content: "\E060"; | ||
406 | } | ||
407 | |||
408 | .cc.GLD::before { | ||
409 | content: "\E061"; | ||
410 | } | ||
411 | |||
412 | .cc.GNO-alt::before { | ||
413 | content: "\E062"; | ||
414 | } | ||
415 | |||
416 | .cc.GNO::before { | ||
417 | content: "\E063"; | ||
418 | } | ||
419 | |||
420 | .cc.GNT-alt::before { | ||
421 | content: "\E064"; | ||
422 | } | ||
423 | |||
424 | .cc.GNT::before { | ||
425 | content: "\E065"; | ||
426 | } | ||
427 | |||
428 | .cc.GOLOS-alt::before { | ||
429 | content: "\E066"; | ||
430 | } | ||
431 | |||
432 | .cc.GOLOS::before { | ||
433 | content: "\E067"; | ||
434 | } | ||
435 | |||
436 | .cc.GRC-alt::before { | ||
437 | content: "\E068"; | ||
438 | } | ||
439 | |||
440 | .cc.GRC::before { | ||
441 | content: "\E069"; | ||
442 | } | ||
443 | |||
444 | .cc.GRS::before { | ||
445 | content: "\E06A"; | ||
446 | } | ||
447 | |||
448 | .cc.HEAT-alt::before { | ||
449 | content: "\E06B"; | ||
450 | } | ||
451 | |||
452 | .cc.HEAT::before { | ||
453 | content: "\E06C"; | ||
454 | } | ||
455 | |||
456 | .cc.ICN-alt::before { | ||
457 | content: "\E06D"; | ||
458 | } | ||
459 | |||
460 | .cc.ICN::before { | ||
461 | content: "\E06E"; | ||
462 | } | ||
463 | |||
464 | .cc.IFC-alt::before { | ||
465 | content: "\E06F"; | ||
466 | } | ||
467 | |||
468 | .cc.IFC::before { | ||
469 | content: "\E070"; | ||
470 | } | ||
471 | |||
472 | .cc.INCNT-alt::before { | ||
473 | content: "\E071"; | ||
474 | } | ||
475 | |||
476 | .cc.INCNT::before { | ||
477 | content: "\E072"; | ||
478 | } | ||
479 | |||
480 | .cc.IOC-alt::before { | ||
481 | content: "\E073"; | ||
482 | } | ||
483 | |||
484 | .cc.IOC::before { | ||
485 | content: "\E074"; | ||
486 | } | ||
487 | |||
488 | .cc.IOTA-alt::before { | ||
489 | content: "\E075"; | ||
490 | } | ||
491 | |||
492 | .cc.IOTA::before { | ||
493 | content: "\E076"; | ||
494 | } | ||
495 | |||
496 | .cc.JBS-alt::before { | ||
497 | content: "\E077"; | ||
498 | } | ||
499 | |||
500 | .cc.JBS::before { | ||
501 | content: "\E078"; | ||
502 | } | ||
503 | |||
504 | .cc.KMD-alt::before { | ||
505 | content: "\E079"; | ||
506 | } | ||
507 | |||
508 | .cc.KMD::before { | ||
509 | content: "\E07A"; | ||
510 | } | ||
511 | |||
512 | .cc.KOBO::before { | ||
513 | content: "\E07B"; | ||
514 | } | ||
515 | |||
516 | .cc.KORE-alt::before { | ||
517 | content: "\E07C"; | ||
518 | } | ||
519 | |||
520 | .cc.KORE::before { | ||
521 | content: "\E07D"; | ||
522 | } | ||
523 | |||
524 | .cc.LBC-alt::before { | ||
525 | content: "\E07E"; | ||
526 | } | ||
527 | |||
528 | .cc.LBC::before { | ||
529 | content: "\E07F"; | ||
530 | } | ||
531 | |||
532 | .cc.LDOGE-alt::before { | ||
533 | content: "\E080"; | ||
534 | } | ||
535 | |||
536 | .cc.LDOGE::before { | ||
537 | content: "\E081"; | ||
538 | } | ||
539 | |||
540 | .cc.LSK-alt::before { | ||
541 | content: "\E082"; | ||
542 | } | ||
543 | |||
544 | .cc.LSK::before { | ||
545 | content: "\E083"; | ||
546 | } | ||
547 | |||
548 | .cc.LTC-alt::before { | ||
549 | content: "\E084"; | ||
550 | } | ||
551 | |||
552 | .cc.LTC::before { | ||
553 | content: "\E085"; | ||
554 | } | ||
555 | |||
556 | .cc.MAID-alt::before { | ||
557 | content: "\E086"; | ||
558 | } | ||
559 | |||
560 | .cc.MAID::before { | ||
561 | content: "\E087"; | ||
562 | } | ||
563 | |||
564 | .cc.MCO-alt::before { | ||
565 | content: "\E088"; | ||
566 | } | ||
567 | |||
568 | .cc.MCO::before { | ||
569 | content: "\E089"; | ||
570 | } | ||
571 | |||
572 | .cc.MINT-alt::before { | ||
573 | content: "\E08A"; | ||
574 | } | ||
575 | |||
576 | .cc.MINT::before { | ||
577 | content: "\E08B"; | ||
578 | } | ||
579 | |||
580 | .cc.MONA-alt::before { | ||
581 | content: "\E08C"; | ||
582 | } | ||
583 | |||
584 | .cc.MONA::before { | ||
585 | content: "\E08D"; | ||
586 | } | ||
587 | |||
588 | .cc.MRC::before { | ||
589 | content: "\E08E"; | ||
590 | } | ||
591 | |||
592 | .cc.MSC-alt::before { | ||
593 | content: "\E08F"; | ||
594 | } | ||
595 | |||
596 | .cc.MSC::before { | ||
597 | content: "\E090"; | ||
598 | } | ||
599 | |||
600 | .cc.MTR-alt::before { | ||
601 | content: "\E091"; | ||
602 | } | ||
603 | |||
604 | .cc.MTR::before { | ||
605 | content: "\E092"; | ||
606 | } | ||
607 | |||
608 | .cc.MUE-alt::before { | ||
609 | content: "\E093"; | ||
610 | } | ||
611 | |||
612 | .cc.MUE::before { | ||
613 | content: "\E094"; | ||
614 | } | ||
615 | |||
616 | .cc.NBT::before { | ||
617 | content: "\E095"; | ||
618 | } | ||
619 | |||
620 | .cc.NEO-alt::before { | ||
621 | content: "\E096"; | ||
622 | } | ||
623 | |||
624 | .cc.NEO::before { | ||
625 | content: "\E097"; | ||
626 | } | ||
627 | |||
628 | .cc.NEOS-alt::before { | ||
629 | content: "\E098"; | ||
630 | } | ||
631 | |||
632 | .cc.NEOS::before { | ||
633 | content: "\E099"; | ||
634 | } | ||
635 | |||
636 | .cc.NEU-alt::before { | ||
637 | content: "\E09A"; | ||
638 | } | ||
639 | |||
640 | .cc.NEU::before { | ||
641 | content: "\E09B"; | ||
642 | } | ||
643 | |||
644 | .cc.NLG-alt::before { | ||
645 | content: "\E09C"; | ||
646 | } | ||
647 | |||
648 | .cc.NLG::before { | ||
649 | content: "\E09D"; | ||
650 | } | ||
651 | |||
652 | .cc.NMC-alt::before { | ||
653 | content: "\E09E"; | ||
654 | } | ||
655 | |||
656 | .cc.NMC::before { | ||
657 | content: "\E09F"; | ||
658 | } | ||
659 | |||
660 | .cc.NOTE-alt::before { | ||
661 | content: "\E0A0"; | ||
662 | } | ||
663 | |||
664 | .cc.NOTE::before { | ||
665 | content: "\E0A1"; | ||
666 | } | ||
667 | |||
668 | .cc.NVC-alt::before { | ||
669 | content: "\E0A2"; | ||
670 | } | ||
671 | |||
672 | .cc.NVC::before { | ||
673 | content: "\E0A3"; | ||
674 | } | ||
675 | |||
676 | .cc.NXT-alt::before { | ||
677 | content: "\E0A4"; | ||
678 | } | ||
679 | |||
680 | .cc.NXT::before { | ||
681 | content: "\E0A5"; | ||
682 | } | ||
683 | |||
684 | .cc.OK-alt::before { | ||
685 | content: "\E0A6"; | ||
686 | } | ||
687 | |||
688 | .cc.OK::before { | ||
689 | content: "\E0A7"; | ||
690 | } | ||
691 | |||
692 | .cc.OMG-alt::before { | ||
693 | content: "\E0A8"; | ||
694 | } | ||
695 | |||
696 | .cc.OMG::before { | ||
697 | content: "\E0A9"; | ||
698 | } | ||
699 | |||
700 | .cc.OMNI-alt::before { | ||
701 | content: "\E0AA"; | ||
702 | } | ||
703 | |||
704 | .cc.OMNI::before { | ||
705 | content: "\E0AB"; | ||
706 | } | ||
707 | |||
708 | .cc.OPAL-alt::before { | ||
709 | content: "\E0AC"; | ||
710 | } | ||
711 | |||
712 | .cc.OPAL::before { | ||
713 | content: "\E0AD"; | ||
714 | } | ||
715 | |||
716 | .cc.PART-alt::before { | ||
717 | content: "\E0AE"; | ||
718 | } | ||
719 | |||
720 | .cc.PART::before { | ||
721 | content: "\E0AF"; | ||
722 | } | ||
723 | |||
724 | .cc.PIGGY-alt::before { | ||
725 | content: "\E0B0"; | ||
726 | } | ||
727 | |||
728 | .cc.PIGGY::before { | ||
729 | content: "\E0B1"; | ||
730 | } | ||
731 | |||
732 | .cc.PINK-alt::before { | ||
733 | content: "\E0B2"; | ||
734 | } | ||
735 | |||
736 | .cc.PINK::before { | ||
737 | content: "\E0B3"; | ||
738 | } | ||
739 | |||
740 | .cc.PIVX-alt::before { | ||
741 | content: "\E0B4"; | ||
742 | } | ||
743 | |||
744 | .cc.PIVX::before { | ||
745 | content: "\E0B5"; | ||
746 | } | ||
747 | |||
748 | .cc.POT-alt::before { | ||
749 | content: "\E0B6"; | ||
750 | } | ||
751 | |||
752 | .cc.POT::before { | ||
753 | content: "\E0B7"; | ||
754 | } | ||
755 | |||
756 | .cc.PPC-alt::before { | ||
757 | content: "\E0B8"; | ||
758 | } | ||
759 | |||
760 | .cc.PPC::before { | ||
761 | content: "\E0B9"; | ||
762 | } | ||
763 | |||
764 | .cc.QRK-alt::before { | ||
765 | content: "\E0BA"; | ||
766 | } | ||
767 | |||
768 | .cc.QRK::before { | ||
769 | content: "\E0BB"; | ||
770 | } | ||
771 | |||
772 | .cc.QTUM-alt::before { | ||
773 | content: "\E0BC"; | ||
774 | } | ||
775 | |||
776 | .cc.QTUM::before { | ||
777 | content: "\E0BD"; | ||
778 | } | ||
779 | |||
780 | .cc.RADS-alt::before { | ||
781 | content: "\E0BE"; | ||
782 | } | ||
783 | |||
784 | .cc.RADS::before { | ||
785 | content: "\E0BF"; | ||
786 | } | ||
787 | |||
788 | .cc.RBIES-alt::before { | ||
789 | content: "\E0C0"; | ||
790 | } | ||
791 | |||
792 | .cc.RBIES::before { | ||
793 | content: "\E0C1"; | ||
794 | } | ||
795 | |||
796 | .cc.RBT-alt::before { | ||
797 | content: "\E0C2"; | ||
798 | } | ||
799 | |||
800 | .cc.RBT::before { | ||
801 | content: "\E0C3"; | ||
802 | } | ||
803 | |||
804 | .cc.RBY-alt::before { | ||
805 | content: "\E0C4"; | ||
806 | } | ||
807 | |||
808 | .cc.RBY::before { | ||
809 | content: "\E0C5"; | ||
810 | } | ||
811 | |||
812 | .cc.RDD-alt::before { | ||
813 | content: "\E0C6"; | ||
814 | } | ||
815 | |||
816 | .cc.RDD::before { | ||
817 | content: "\E0C7"; | ||
818 | } | ||
819 | |||
820 | .cc.REP-alt::before { | ||
821 | content: "\E0C8"; | ||
822 | } | ||
823 | |||
824 | .cc.REP::before { | ||
825 | content: "\E0C9"; | ||
826 | } | ||
827 | |||
828 | .cc.RISE-alt::before { | ||
829 | content: "\E0CA"; | ||
830 | } | ||
831 | |||
832 | .cc.RISE::before { | ||
833 | content: "\E0CB"; | ||
834 | } | ||
835 | |||
836 | .cc.SALT-alt::before { | ||
837 | content: "\E0CC"; | ||
838 | } | ||
839 | |||
840 | .cc.SALT::before { | ||
841 | content: "\E0CD"; | ||
842 | } | ||
843 | |||
844 | .cc.SAR-alt::before { | ||
845 | content: "\E0CE"; | ||
846 | } | ||
847 | |||
848 | .cc.SAR::before { | ||
849 | content: "\E0CF"; | ||
850 | } | ||
851 | |||
852 | .cc.SCOT-alt::before { | ||
853 | content: "\E0D0"; | ||
854 | } | ||
855 | |||
856 | .cc.SCOT::before { | ||
857 | content: "\E0D1"; | ||
858 | } | ||
859 | |||
860 | .cc.SDC-alt::before { | ||
861 | content: "\E0D2"; | ||
862 | } | ||
863 | |||
864 | .cc.SDC::before { | ||
865 | content: "\E0D3"; | ||
866 | } | ||
867 | |||
868 | .cc.SIA-alt::before { | ||
869 | content: "\E0D4"; | ||
870 | } | ||
871 | |||
872 | .cc.SIA::before { | ||
873 | content: "\E0D5"; | ||
874 | } | ||
875 | |||
876 | .cc.SJCX-alt::before { | ||
877 | content: "\E0D6"; | ||
878 | } | ||
879 | |||
880 | .cc.SJCX::before { | ||
881 | content: "\E0D7"; | ||
882 | } | ||
883 | |||
884 | .cc.SLG-alt::before { | ||
885 | content: "\E0D8"; | ||
886 | } | ||
887 | |||
888 | .cc.SLG::before { | ||
889 | content: "\E0D9"; | ||
890 | } | ||
891 | |||
892 | .cc.SLS-alt::before { | ||
893 | content: "\E0DA"; | ||
894 | } | ||
895 | |||
896 | .cc.SLS::before { | ||
897 | content: "\E0DB"; | ||
898 | } | ||
899 | |||
900 | .cc.SNRG-alt::before { | ||
901 | content: "\E0DC"; | ||
902 | } | ||
903 | |||
904 | .cc.SNRG::before { | ||
905 | content: "\E0DD"; | ||
906 | } | ||
907 | |||
908 | .cc.START-alt::before { | ||
909 | content: "\E0DE"; | ||
910 | } | ||
911 | |||
912 | .cc.START::before { | ||
913 | content: "\E0DF"; | ||
914 | } | ||
915 | |||
916 | .cc.STEEM-alt::before { | ||
917 | content: "\E0E0"; | ||
918 | } | ||
919 | |||
920 | .cc.STEEM::before { | ||
921 | content: "\E0E1"; | ||
922 | } | ||
923 | |||
924 | .cc.STR-alt::before { | ||
925 | content: "\E0E2"; | ||
926 | } | ||
927 | |||
928 | .cc.STR::before { | ||
929 | content: "\E0E3"; | ||
930 | } | ||
931 | |||
932 | .cc.STRAT-alt::before { | ||
933 | content: "\E0E4"; | ||
934 | } | ||
935 | |||
936 | .cc.STRAT::before { | ||
937 | content: "\E0E5"; | ||
938 | } | ||
939 | |||
940 | .cc.SWIFT-alt::before { | ||
941 | content: "\E0E6"; | ||
942 | } | ||
943 | |||
944 | .cc.SWIFT::before { | ||
945 | content: "\E0E7"; | ||
946 | } | ||
947 | |||
948 | .cc.SYNC-alt::before { | ||
949 | content: "\E0E8"; | ||
950 | } | ||
951 | |||
952 | .cc.SYNC::before { | ||
953 | content: "\E0E9"; | ||
954 | } | ||
955 | |||
956 | .cc.SYS-alt::before { | ||
957 | content: "\E0EA"; | ||
958 | } | ||
959 | |||
960 | .cc.SYS::before { | ||
961 | content: "\E0EB"; | ||
962 | } | ||
963 | |||
964 | .cc.TRIG-alt::before { | ||
965 | content: "\E0EC"; | ||
966 | } | ||
967 | |||
968 | .cc.TRIG::before { | ||
969 | content: "\E0ED"; | ||
970 | } | ||
971 | |||
972 | .cc.TX-alt::before { | ||
973 | content: "\E0EE"; | ||
974 | } | ||
975 | |||
976 | .cc.TX::before { | ||
977 | content: "\E0EF"; | ||
978 | } | ||
979 | |||
980 | .cc.UBQ-alt::before { | ||
981 | content: "\E0F0"; | ||
982 | } | ||
983 | |||
984 | .cc.UBQ::before { | ||
985 | content: "\E0F1"; | ||
986 | } | ||
987 | |||
988 | .cc.UNITY-alt::before { | ||
989 | content: "\E0F2"; | ||
990 | } | ||
991 | |||
992 | .cc.UNITY::before { | ||
993 | content: "\E0F3"; | ||
994 | } | ||
995 | |||
996 | .cc.USDT-alt::before { | ||
997 | content: "\E0F4"; | ||
998 | } | ||
999 | |||
1000 | .cc.USDT::before { | ||
1001 | content: "\E0F5"; | ||
1002 | } | ||
1003 | |||
1004 | .cc.VIOR-alt::before { | ||
1005 | content: "\E0F6"; | ||
1006 | } | ||
1007 | |||
1008 | .cc.VIOR::before { | ||
1009 | content: "\E0F7"; | ||
1010 | } | ||
1011 | |||
1012 | .cc.VNL-alt::before { | ||
1013 | content: "\E0F8"; | ||
1014 | } | ||
1015 | |||
1016 | .cc.VNL::before { | ||
1017 | content: "\E0F9"; | ||
1018 | } | ||
1019 | |||
1020 | .cc.VPN-alt::before { | ||
1021 | content: "\E0FA"; | ||
1022 | } | ||
1023 | |||
1024 | .cc.VPN::before { | ||
1025 | content: "\E0FB"; | ||
1026 | } | ||
1027 | |||
1028 | .cc.VRC-alt::before { | ||
1029 | content: "\E0FC"; | ||
1030 | } | ||
1031 | |||
1032 | .cc.VRC::before { | ||
1033 | content: "\E0FD"; | ||
1034 | } | ||
1035 | |||
1036 | .cc.VTC-alt::before { | ||
1037 | content: "\E0FE"; | ||
1038 | } | ||
1039 | |||
1040 | .cc.VTC::before { | ||
1041 | content: "\E0FF"; | ||
1042 | } | ||
1043 | |||
1044 | .cc.WAVES-alt::before { | ||
1045 | content: "\E100"; | ||
1046 | } | ||
1047 | |||
1048 | .cc.WAVES::before { | ||
1049 | content: "\E101"; | ||
1050 | } | ||
1051 | |||
1052 | .cc.XAI-alt::before { | ||
1053 | content: "\E102"; | ||
1054 | } | ||
1055 | |||
1056 | .cc.XAI::before { | ||
1057 | content: "\E103"; | ||
1058 | } | ||
1059 | |||
1060 | .cc.XBS-alt::before { | ||
1061 | content: "\E104"; | ||
1062 | } | ||
1063 | |||
1064 | .cc.XBS::before { | ||
1065 | content: "\E105"; | ||
1066 | } | ||
1067 | |||
1068 | .cc.XCP-alt::before { | ||
1069 | content: "\E106"; | ||
1070 | } | ||
1071 | |||
1072 | .cc.XCP::before { | ||
1073 | content: "\E107"; | ||
1074 | } | ||
1075 | |||
1076 | .cc.XEM-alt::before { | ||
1077 | content: "\E108"; | ||
1078 | } | ||
1079 | |||
1080 | .cc.XEM::before { | ||
1081 | content: "\E109"; | ||
1082 | } | ||
1083 | |||
1084 | .cc.XMR::before { | ||
1085 | content: "\E10A"; | ||
1086 | } | ||
1087 | |||
1088 | .cc.XPM-alt::before { | ||
1089 | content: "\E10B"; | ||
1090 | } | ||
1091 | |||
1092 | .cc.XPM::before { | ||
1093 | content: "\E10C"; | ||
1094 | } | ||
1095 | |||
1096 | .cc.XRP-alt::before { | ||
1097 | content: "\E10D"; | ||
1098 | } | ||
1099 | |||
1100 | .cc.XRP::before { | ||
1101 | content: "\E10E"; | ||
1102 | } | ||
1103 | |||
1104 | .cc.XTZ-alt::before { | ||
1105 | content: "\E10F"; | ||
1106 | } | ||
1107 | |||
1108 | .cc.XTZ::before { | ||
1109 | content: "\E110"; | ||
1110 | } | ||
1111 | |||
1112 | .cc.XVG-alt::before { | ||
1113 | content: "\E111"; | ||
1114 | } | ||
1115 | |||
1116 | .cc.XVG::before { | ||
1117 | content: "\E112"; | ||
1118 | } | ||
1119 | |||
1120 | .cc.XZC-alt::before { | ||
1121 | content: "\E113"; | ||
1122 | } | ||
1123 | |||
1124 | .cc.XZC::before { | ||
1125 | content: "\E114"; | ||
1126 | } | ||
1127 | |||
1128 | .cc.YBC-alt::before { | ||
1129 | content: "\E115"; | ||
1130 | } | ||
1131 | |||
1132 | .cc.YBC::before { | ||
1133 | content: "\E116"; | ||
1134 | } | ||
1135 | |||
1136 | .cc.ZEC-alt::before { | ||
1137 | content: "\E117"; | ||
1138 | } | ||
1139 | |||
1140 | .cc.ZEC::before { | ||
1141 | content: "\E118"; | ||
1142 | } | ||
1143 | |||
1144 | .cc.ZEIT-alt::before { | ||
1145 | content: "\E119"; | ||
1146 | } | ||
1147 | |||
1148 | .cc.ZEIT::before { | ||
1149 | content: "\E11A"; | ||
1150 | } \ No newline at end of file | ||
diff --git a/cmd/web/static/fonts/cryptocoins.ttf b/cmd/web/static/fonts/cryptocoins.ttf deleted file mode 100644 index b92c27d..0000000 --- a/cmd/web/static/fonts/cryptocoins.ttf +++ /dev/null | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/cryptocoins.woff b/cmd/web/static/fonts/cryptocoins.woff deleted file mode 100644 index bf8eb08..0000000 --- a/cmd/web/static/fonts/cryptocoins.woff +++ /dev/null | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/cryptocoins.woff2 b/cmd/web/static/fonts/cryptocoins.woff2 deleted file mode 100644 index dcc195c..0000000 --- a/cmd/web/static/fonts/cryptocoins.woff2 +++ /dev/null | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/fontello.eot b/cmd/web/static/fonts/fontello.eot index 14932cc..f9547a0 100644 --- a/cmd/web/static/fonts/fontello.eot +++ b/cmd/web/static/fonts/fontello.eot | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/fontello.svg b/cmd/web/static/fonts/fontello.svg index dce8334..195ae3c 100644 --- a/cmd/web/static/fonts/fontello.svg +++ b/cmd/web/static/fonts/fontello.svg | |||
@@ -6,15 +6,13 @@ | |||
6 | <font id="fontello" horiz-adv-x="1000" > | 6 | <font id="fontello" horiz-adv-x="1000" > |
7 | <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" /> | 7 | <font-face font-family="fontello" font-weight="400" font-stretch="normal" units-per-em="1000" ascent="850" descent="-150" /> |
8 | <missing-glyph horiz-adv-x="1000" /> | 8 | <missing-glyph horiz-adv-x="1000" /> |
9 | <glyph glyph-name="ok-circled" unicode="" d="M717 440q0 16-10 26l-51 50q-11 11-25 11t-25-11l-228-227-126 126q-11 11-25 11t-25-11l-51-50q-10-10-10-26 0-15 10-25l202-202q10-10 25-10 15 0 26 10l303 303q10 10 10 25z m140-90q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" /> | 9 | <glyph glyph-name="cancel" unicode="" d="M724 112q0-22-15-38l-76-76q-16-15-38-15t-38 15l-164 165-164-165q-16-15-38-15t-38 15l-76 76q-16 16-16 38t16 38l164 164-164 164q-16 16-16 38t16 38l76 76q16 16 38 16t38-16l164-164 164 164q16 16 38 16t38-16l76-76q15-15 15-38t-15-38l-164-164 164-164q15-15 15-38z" horiz-adv-x="785.7" /> |
10 | |||
11 | <glyph glyph-name="cancel-circled" unicode="" d="M641 224q0 14-10 25l-101 101 101 101q10 11 10 25 0 15-10 26l-51 50q-10 11-25 11-15 0-25-11l-101-101-101 101q-11 11-25 11-16 0-26-11l-50-50q-11-11-11-26 0-14 11-25l101-101-101-101q-11-11-11-25 0-15 11-26l50-50q10-11 26-11 14 0 25 11l101 101 101-101q10-11 25-11 15 0 25 11l51 50q10 11 10 26z m216 126q0-117-57-215t-156-156-215-58-216 58-155 156-58 215 58 215 155 156 216 58 215-58 156-156 57-215z" horiz-adv-x="857.1" /> | ||
12 | 10 | ||
13 | <glyph glyph-name="key" unicode="" d="M464 564q0 45-31 76t-76 31-76-31-31-76q0-23 11-46-23 11-47 11-44 0-76-32t-31-76 31-75 76-32 76 32 31 75q0 24-10 47 23-11 46-11 45 0 76 31t31 76z m475-393q0-9-27-36t-37-28q-5 0-16 9t-20 19-22 22-13 14l-54-53 123-123q15-16 15-38 0-23-21-45t-46-22q-22 0-37 16l-375 374q-98-73-204-73-91 0-148 57t-57 149q0 89 53 174t138 139 175 53q91 0 148-58t57-148q0-105-73-203l198-199 54 54q-2 2-14 14t-23 21-18 21-9 15q0 10 27 37t37 28q7 0 13-6 3-3 26-25t45-44 49-48 40-44 16-23z" horiz-adv-x="1000" /> | 11 | <glyph glyph-name="key" unicode="" d="M464 564q0 45-31 76t-76 31-76-31-31-76q0-23 11-46-23 11-47 11-44 0-76-32t-31-76 31-75 76-32 76 32 31 75q0 24-10 47 23-11 46-11 45 0 76 31t31 76z m475-393q0-9-27-36t-37-28q-5 0-16 9t-20 19-22 22-13 14l-54-53 123-123q15-16 15-38 0-23-21-45t-46-22q-22 0-37 16l-375 374q-98-73-204-73-91 0-148 57t-57 149q0 89 53 174t138 139 175 53q91 0 148-58t57-148q0-105-73-203l198-199 54 54q-2 2-14 14t-23 21-18 21-9 15q0 10 27 37t37 28q7 0 13-6 3-3 26-25t45-44 49-48 40-44 16-23z" horiz-adv-x="1000" /> |
14 | 12 | ||
15 | <glyph glyph-name="user" unicode="" d="M714 69q0-60-35-104t-84-44h-476q-49 0-84 44t-35 104q0 48 5 90t17 85 33 73 52 50 76 19q73-72 174-72t175 72q42 0 75-19t52-50 33-73 18-85 4-90z m-143 495q0-88-62-151t-152-63-151 63-63 151 63 152 151 63 152-63 62-152z" horiz-adv-x="714.3" /> | 13 | <glyph glyph-name="user" unicode="" d="M714 69q0-60-35-104t-84-44h-476q-49 0-84 44t-35 104q0 48 5 90t17 85 33 73 52 50 76 19q73-72 174-72t175 72q42 0 75-19t52-50 33-73 18-85 4-90z m-143 495q0-88-62-151t-152-63-151 63-63 151 63 152 151 63 152-63 62-152z" horiz-adv-x="714.3" /> |
16 | 14 | ||
17 | <glyph glyph-name="hourglass-2" unicode="" d="M786 779q0-146-60-258t-148-171q89-59 148-171t60-258h53q8 0 13-5t5-12v-36q0-8-5-13t-13-5h-821q-8 0-13 5t-5 13v36q0 7 5 12t13 5h53q0 146 60 258t149 171q-90 59-149 171t-60 258h-53q-8 0-13 5t-5 12v36q0 8 5 13t13 5h821q8 0 13-5t5-13v-36q0-7-5-12t-13-5h-53z m-72 0h-571q0-115 47-215h477q47 100 47 215z m-31-679q-31 79-82 135t-108 79h-129q-57-23-108-79t-81-135h508z" horiz-adv-x="857.1" /> | 15 | <glyph glyph-name="ok" unicode="" d="M933 534q0-22-16-38l-404-404-76-76q-16-15-38-15t-38 15l-76 76-202 202q-15 16-15 38t15 38l76 76q16 16 38 16t38-16l164-165 366 367q16 16 38 16t38-16l76-76q16-15 16-38z" horiz-adv-x="1000" /> |
18 | </font> | 16 | </font> |
19 | </defs> | 17 | </defs> |
20 | </svg> \ No newline at end of file | 18 | </svg> \ No newline at end of file |
diff --git a/cmd/web/static/fonts/fontello.ttf b/cmd/web/static/fonts/fontello.ttf index ab1efb3..d319347 100644 --- a/cmd/web/static/fonts/fontello.ttf +++ b/cmd/web/static/fonts/fontello.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/fontello.woff b/cmd/web/static/fonts/fontello.woff index 6faf045..dfdb9fc 100644 --- a/cmd/web/static/fonts/fontello.woff +++ b/cmd/web/static/fonts/fontello.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/fontello.woff2 b/cmd/web/static/fonts/fontello.woff2 index 8e41726..6f98bfc 100644 --- a/cmd/web/static/fonts/fontello.woff2 +++ b/cmd/web/static/fonts/fontello.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf b/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf new file mode 100644 index 0000000..da7d70e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0067bba3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf b/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf new file mode 100644 index 0000000..75ba1d0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/00883b50.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf b/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf new file mode 100644 index 0000000..492a0ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/011ee55c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf b/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf new file mode 100644 index 0000000..4f07adb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/018f5952.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf b/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf new file mode 100644 index 0000000..cae6c41 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/01e07cf4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/02255308.ttf b/cmd/web/static/fonts/glyphs/ttf/02255308.ttf new file mode 100644 index 0000000..07d8acf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/02255308.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf b/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf new file mode 100644 index 0000000..f30463a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/023d4451.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf b/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf new file mode 100644 index 0000000..7b2f427 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/02d0c663.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf b/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf new file mode 100644 index 0000000..5c54c45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/048120ba.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf b/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf new file mode 100644 index 0000000..1310caa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/04c9aec2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf b/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf new file mode 100644 index 0000000..231c772 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/05b616e5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf b/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf new file mode 100644 index 0000000..c22a7cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/05ed7e4e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf b/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf new file mode 100644 index 0000000..71ea966 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/061e5117.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf b/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf new file mode 100644 index 0000000..429a895 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/064b9505.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf b/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf new file mode 100644 index 0000000..d19c316 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/066eea7e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf b/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf new file mode 100644 index 0000000..e1d79a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/06fd396d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf b/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf new file mode 100644 index 0000000..be1002d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/081f89e0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf b/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf new file mode 100644 index 0000000..8c9cadc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/088eafe1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf b/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf new file mode 100644 index 0000000..24bf853 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/08e4c9db.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf b/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf new file mode 100644 index 0000000..0237e2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/08e9330e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf b/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf new file mode 100644 index 0000000..4baaccf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/090f780c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf b/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf new file mode 100644 index 0000000..46020f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/09a35da5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf b/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf new file mode 100644 index 0000000..6e758db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/09afd82a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf b/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf new file mode 100644 index 0000000..a1ab6a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/09b0664c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf b/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf new file mode 100644 index 0000000..6ddc27a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0a01e6d0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf b/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf new file mode 100644 index 0000000..1fe3bdf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0a32e2fb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf b/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf new file mode 100644 index 0000000..446e130 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0a4097e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf b/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf new file mode 100644 index 0000000..8d34e32 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0ac058dd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf b/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf new file mode 100644 index 0000000..5a6fd62 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0b12d5a0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf b/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf new file mode 100644 index 0000000..e9b98e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0b4fc343.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf b/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf new file mode 100644 index 0000000..a20a964 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0bcc804b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf b/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf new file mode 100644 index 0000000..26868ff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0c40016a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf b/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf new file mode 100644 index 0000000..9e828cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0ca412f2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf b/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf new file mode 100644 index 0000000..b30825b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0cbb9805.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf b/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf new file mode 100644 index 0000000..b025c99 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0cc88965.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf b/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf new file mode 100644 index 0000000..8e96846 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0cf3a20b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf b/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf new file mode 100644 index 0000000..7094365 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0cfc2998.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf b/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf new file mode 100644 index 0000000..4f29149 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0d085f1c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf b/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf new file mode 100644 index 0000000..a48647b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0d26bbc7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf b/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf new file mode 100644 index 0000000..a86eec5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0d9537d2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf b/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf new file mode 100644 index 0000000..0a9c130 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0e779307.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf b/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf new file mode 100644 index 0000000..66db9dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0ecabbc7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf b/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf new file mode 100644 index 0000000..bfc257f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0f971447.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf b/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf new file mode 100644 index 0000000..0aa5198 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/0ff7e3fd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf b/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf new file mode 100644 index 0000000..0dae6dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/10350c93.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf b/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf new file mode 100644 index 0000000..1efa24a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1079bbd9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf b/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf new file mode 100644 index 0000000..01074ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1098551a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf b/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf new file mode 100644 index 0000000..173850c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/110df6cd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf b/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf new file mode 100644 index 0000000..9195e03 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/114520c4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf b/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf new file mode 100644 index 0000000..3bb540f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1165e24b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf b/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf new file mode 100644 index 0000000..b032f1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/117dc215.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf b/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf new file mode 100644 index 0000000..02a757b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/11805c1a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf b/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf new file mode 100644 index 0000000..c304499 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/11c88fa3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf b/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf new file mode 100644 index 0000000..89a7fac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/11d82ab4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf b/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf new file mode 100644 index 0000000..999a876 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/120564eb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf b/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf new file mode 100644 index 0000000..c9684ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/125fe922.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf b/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf new file mode 100644 index 0000000..58d952b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/129ec899.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf b/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf new file mode 100644 index 0000000..e112197 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/12c373f3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf b/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf new file mode 100644 index 0000000..0b6ed1b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/12cd5e20.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf b/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf new file mode 100644 index 0000000..311acd8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/12d9f10f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf b/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf new file mode 100644 index 0000000..578954b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/131b3834.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf b/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf new file mode 100644 index 0000000..a79ded6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/131ebb37.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/13753541.ttf b/cmd/web/static/fonts/glyphs/ttf/13753541.ttf new file mode 100644 index 0000000..2506bbe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/13753541.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf b/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf new file mode 100644 index 0000000..96eb239 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1394a474.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf b/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf new file mode 100644 index 0000000..1ea0549 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/13b487b1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf b/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf new file mode 100644 index 0000000..b0af7bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/14880f85.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf b/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf new file mode 100644 index 0000000..22200b8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/15802da1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf b/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf new file mode 100644 index 0000000..d47db90 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/159ee498.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf b/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf new file mode 100644 index 0000000..1bcbbb7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/167004d8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf b/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf new file mode 100644 index 0000000..a2d8981 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/16ed590a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf b/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf new file mode 100644 index 0000000..ede0563 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/172e6f01.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf b/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf new file mode 100644 index 0000000..44a54fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1778d94c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf b/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf new file mode 100644 index 0000000..22bb507 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/177d0611.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf b/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf new file mode 100644 index 0000000..e3bbfa1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/179f13d3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf b/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf new file mode 100644 index 0000000..1086fcc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/17a7a115.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf b/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf new file mode 100644 index 0000000..4884231 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1817efca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf b/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf new file mode 100644 index 0000000..8267149 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1937cd98.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf b/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf new file mode 100644 index 0000000..50e51f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/199aab73.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf b/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf new file mode 100644 index 0000000..8ef4157 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/19f8d5af.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf b/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf new file mode 100644 index 0000000..86669a4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a54066a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf b/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf new file mode 100644 index 0000000..5a1a889 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a7920cb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf b/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf new file mode 100644 index 0000000..09158f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a797de5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf b/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf new file mode 100644 index 0000000..758eeac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a7bcf02.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf b/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf new file mode 100644 index 0000000..a35b63e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a8afe19.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf b/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf new file mode 100644 index 0000000..a639b08 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1a9e5d1a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf b/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf new file mode 100644 index 0000000..e692aad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1b07c59f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf b/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf new file mode 100644 index 0000000..4d0a3c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1b180f14.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf b/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf new file mode 100644 index 0000000..3c23a42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1b7ba367.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf b/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf new file mode 100644 index 0000000..b3a1924 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1ca00690.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf b/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf new file mode 100644 index 0000000..27bac74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1cc31435.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf b/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf new file mode 100644 index 0000000..f0b40fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1cd81072.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf b/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf new file mode 100644 index 0000000..31be8b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1d31d67a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf b/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf new file mode 100644 index 0000000..70f668a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1d3e9975.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf b/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf new file mode 100644 index 0000000..a661a66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1d45862b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf b/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf new file mode 100644 index 0000000..5e6af63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1df9ac89.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf b/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf new file mode 100644 index 0000000..048b60d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1e143288.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf b/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf new file mode 100644 index 0000000..3023927 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1e3a5f47.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf b/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf new file mode 100644 index 0000000..5326b83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1ea52dfd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf b/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf new file mode 100644 index 0000000..f39c7b5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1eb35b35.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf b/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf new file mode 100644 index 0000000..7485c78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/1fd6b062.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf b/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf new file mode 100644 index 0000000..6df6311 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/208046b5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf b/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf new file mode 100644 index 0000000..31147e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/20b835b7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf b/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf new file mode 100644 index 0000000..384a981 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/20f9b6e3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf b/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf new file mode 100644 index 0000000..cfd2412 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/21619e9c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf b/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf new file mode 100644 index 0000000..ee9f5b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2163c4cf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf b/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf new file mode 100644 index 0000000..ab9012d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/218e296f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf b/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf new file mode 100644 index 0000000..c6c62f4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/21a02826.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf b/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf new file mode 100644 index 0000000..d1c940f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2200df99.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf b/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf new file mode 100644 index 0000000..320550e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/22293ce5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf b/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf new file mode 100644 index 0000000..a85a6c6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/22c6ed00.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf b/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf new file mode 100644 index 0000000..34d5b8b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/23b476b4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf b/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf new file mode 100644 index 0000000..c85d6d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2422dc89.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf b/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf new file mode 100644 index 0000000..68dbbee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/246660f5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf b/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf new file mode 100644 index 0000000..c09906e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2489d00d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf b/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf new file mode 100644 index 0000000..009da9e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/24a80660.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf b/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf new file mode 100644 index 0000000..271e3e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/24cd796b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf b/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf new file mode 100644 index 0000000..cf422df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/24d18e39.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf b/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf new file mode 100644 index 0000000..fd78766 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/24e7e96e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf b/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf new file mode 100644 index 0000000..ef1783f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/250eac5a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf b/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf new file mode 100644 index 0000000..c0e8063 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/252bbda4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf b/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf new file mode 100644 index 0000000..ecb2da7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/254c8943.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf b/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf new file mode 100644 index 0000000..a4ff59f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/25ba326c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf b/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf new file mode 100644 index 0000000..cdb5cbe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/25ea7b82.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf b/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf new file mode 100644 index 0000000..b9901ca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/25eb254d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf b/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf new file mode 100644 index 0000000..ade141f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/264d968f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf b/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf new file mode 100644 index 0000000..d39f3bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/26fc4657.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf b/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf new file mode 100644 index 0000000..b4f04ac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/282e3874.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf b/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf new file mode 100644 index 0000000..b6e58fe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2849840b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf b/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf new file mode 100644 index 0000000..99673da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/288dafa6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf b/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf new file mode 100644 index 0000000..797f508 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2928cfa1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf b/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf new file mode 100644 index 0000000..4b5963a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/297959f6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf b/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf new file mode 100644 index 0000000..eaf562e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/29ef8c3a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf b/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf new file mode 100644 index 0000000..95aeb52 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2a4ae11d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf b/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf new file mode 100644 index 0000000..514622b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2a889c21.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf b/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf new file mode 100644 index 0000000..69082c1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2a96e401.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf b/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf new file mode 100644 index 0000000..b0f70c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2a9dc20c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf b/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf new file mode 100644 index 0000000..6ba6ec0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2ae6c3ff.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf b/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf new file mode 100644 index 0000000..9a4217f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2b4b2b6f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf b/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf new file mode 100644 index 0000000..cbb2110 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2b52c387.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf b/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf new file mode 100644 index 0000000..58d66c1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2bd2fc24.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf b/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf new file mode 100644 index 0000000..c595dea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2be8c581.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf b/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf new file mode 100644 index 0000000..56fd9d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2c977e31.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf b/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf new file mode 100644 index 0000000..4f40c62 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2cee68c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf b/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf new file mode 100644 index 0000000..615573a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2d027c9d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf b/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf new file mode 100644 index 0000000..31b9533 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2d2cf221.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf b/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf new file mode 100644 index 0000000..4b12550 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2d5cb25e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf b/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf new file mode 100644 index 0000000..f9d89d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2d7aa05f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf b/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf new file mode 100644 index 0000000..1726a5b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2db5fddf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf b/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf new file mode 100644 index 0000000..d3475ff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2dc572da.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf b/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf new file mode 100644 index 0000000..fee006f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2e27c6c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf b/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf new file mode 100644 index 0000000..fb48c38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2e5887ef.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf b/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf new file mode 100644 index 0000000..53c397d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2ed7bd06.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf b/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf new file mode 100644 index 0000000..2e12245 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2ef4a942.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf b/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf new file mode 100644 index 0000000..4fa4898 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2f84e1d2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf b/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf new file mode 100644 index 0000000..b6cbb00 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/2fd2e914.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf b/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf new file mode 100644 index 0000000..38e793b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/30042e01.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf b/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf new file mode 100644 index 0000000..3350e2c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/300b40cf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf b/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf new file mode 100644 index 0000000..9e6d794 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3069c5e2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf b/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf new file mode 100644 index 0000000..20e5768 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/30d929ef.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf b/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf new file mode 100644 index 0000000..77c0cfc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/311bcfdc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf b/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf new file mode 100644 index 0000000..f1454e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/31234fc4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf b/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf new file mode 100644 index 0000000..31cd6c5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/315c66f8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/31722822.ttf b/cmd/web/static/fonts/glyphs/ttf/31722822.ttf new file mode 100644 index 0000000..e94d323 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/31722822.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf b/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf new file mode 100644 index 0000000..fba725c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/31782ddd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf b/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf new file mode 100644 index 0000000..a8b6b8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/322840cb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf b/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf new file mode 100644 index 0000000..7ab856c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/323a4cec.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf b/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf new file mode 100644 index 0000000..2f7ebe1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/325a5ac2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf b/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf new file mode 100644 index 0000000..234c89c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/328fad59.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf b/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf new file mode 100644 index 0000000..e2f3f04 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/32c69208.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf b/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf new file mode 100644 index 0000000..d2e8905 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/32cb1e15.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf b/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf new file mode 100644 index 0000000..337ed92 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/34152b57.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf b/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf new file mode 100644 index 0000000..40dfe2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/34833f66.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf b/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf new file mode 100644 index 0000000..1a0d334 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/34a01d7d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf b/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf new file mode 100644 index 0000000..79d5ec6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/34d7ab4a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf b/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf new file mode 100644 index 0000000..93769b9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3506ae92.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf b/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf new file mode 100644 index 0000000..2fe7674 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3547c23d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf b/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf new file mode 100644 index 0000000..5f8be4a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/354ca571.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf b/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf new file mode 100644 index 0000000..e859b6e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/35e73fc6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36728431.ttf b/cmd/web/static/fonts/glyphs/ttf/36728431.ttf new file mode 100644 index 0000000..02eccff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36728431.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf b/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf new file mode 100644 index 0000000..1734a78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36a3295a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf b/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf new file mode 100644 index 0000000..9ea9b3c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36ac1140.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf b/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf new file mode 100644 index 0000000..732530b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36bc1a9d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf b/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf new file mode 100644 index 0000000..ebf2ce7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36bf9ec5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf b/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf new file mode 100644 index 0000000..d97016f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/36fb96fc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf b/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf new file mode 100644 index 0000000..fdf68b5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/370da5ae.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf b/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf new file mode 100644 index 0000000..1e76fe2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/37481bd1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf b/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf new file mode 100644 index 0000000..82a267f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/385855c8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/38686314.ttf b/cmd/web/static/fonts/glyphs/ttf/38686314.ttf new file mode 100644 index 0000000..141b93c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/38686314.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf b/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf new file mode 100644 index 0000000..5f0c058 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/389e0153.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf b/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf new file mode 100644 index 0000000..3de6aa3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/38dcac7f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf b/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf new file mode 100644 index 0000000..99de204 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/393bcee2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf b/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf new file mode 100644 index 0000000..9a05374 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/39b74aca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf b/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf new file mode 100644 index 0000000..d808ecb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3a52ed45.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf b/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf new file mode 100644 index 0000000..ffe1d0d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3a530c59.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf b/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf new file mode 100644 index 0000000..a910f12 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3abbb79a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf b/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf new file mode 100644 index 0000000..f777586 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3ac9bbf7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf b/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf new file mode 100644 index 0000000..78b16ad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3b064daf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf b/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf new file mode 100644 index 0000000..f006416 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3b5ff71f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf b/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf new file mode 100644 index 0000000..7f8ec7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3b6b07e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf b/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf new file mode 100644 index 0000000..e7a73ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3b7180f4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf b/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf new file mode 100644 index 0000000..9fd8238 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3bd53fee.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf b/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf new file mode 100644 index 0000000..d9315a2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3c678666.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf b/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf new file mode 100644 index 0000000..cf7c5cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3d32bff5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf b/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf new file mode 100644 index 0000000..4a07c45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3e131fc2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf b/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf new file mode 100644 index 0000000..4dd14e5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3e670521.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf b/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf new file mode 100644 index 0000000..c1b8d9a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3eed650c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf b/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf new file mode 100644 index 0000000..30b0070 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3f29fe8f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf b/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf new file mode 100644 index 0000000..128af02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3f357a26.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf b/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf new file mode 100644 index 0000000..d7219d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3f3d19ae.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf b/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf new file mode 100644 index 0000000..98b6b3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/3fc14a91.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf b/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf new file mode 100644 index 0000000..578e5fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4003be53.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf b/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf new file mode 100644 index 0000000..72a6c58 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4062bc3a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/41038137.ttf b/cmd/web/static/fonts/glyphs/ttf/41038137.ttf new file mode 100644 index 0000000..25a9fda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/41038137.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf b/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf new file mode 100644 index 0000000..8b5e6c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4129e2ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf b/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf new file mode 100644 index 0000000..6bdd0a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/41692e5f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf b/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf new file mode 100644 index 0000000..587d756 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/41e7e67b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf b/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf new file mode 100644 index 0000000..69b3357 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/42130fd7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf b/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf new file mode 100644 index 0000000..c983110 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4259b075.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf b/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf new file mode 100644 index 0000000..3cc588f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/430cca2f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf b/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf new file mode 100644 index 0000000..b38c215 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4321166d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/43664073.ttf b/cmd/web/static/fonts/glyphs/ttf/43664073.ttf new file mode 100644 index 0000000..5f5cf73 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/43664073.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf b/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf new file mode 100644 index 0000000..4a02152 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/439e5c3d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf b/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf new file mode 100644 index 0000000..6a3e7ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4477f406.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf b/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf new file mode 100644 index 0000000..398142a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/455032d0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf b/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf new file mode 100644 index 0000000..0211d46 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/45a8e7e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf b/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf new file mode 100644 index 0000000..4c67d14 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/462ea6a3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf b/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf new file mode 100644 index 0000000..9034d09 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/463c644c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf b/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf new file mode 100644 index 0000000..43258be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/46a505fd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf b/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf new file mode 100644 index 0000000..01125b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/47413c16.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf b/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf new file mode 100644 index 0000000..54dcfa4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/478bc2f3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf b/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf new file mode 100644 index 0000000..3c02405 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/47f8aa49.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf b/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf new file mode 100644 index 0000000..1621f15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/496a7c2f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf b/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf new file mode 100644 index 0000000..a9c249e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/49c0e6d5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf b/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf new file mode 100644 index 0000000..65532e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a1c35d5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf b/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf new file mode 100644 index 0000000..1d2e70a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a1c4041.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf b/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf new file mode 100644 index 0000000..35c3493 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a280971.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf b/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf new file mode 100644 index 0000000..e215b58 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a40a88a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf b/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf new file mode 100644 index 0000000..925dbc6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a54867e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf b/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf new file mode 100644 index 0000000..394f546 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a7c46ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf b/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf new file mode 100644 index 0000000..d9edf88 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4a849376.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf b/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf new file mode 100644 index 0000000..d73018b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4ae1ce28.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf b/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf new file mode 100644 index 0000000..24c56f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4af4ef28.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf b/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf new file mode 100644 index 0000000..7cb0e23 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4b099001.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf b/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf new file mode 100644 index 0000000..dcd937c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4d040d05.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf b/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf new file mode 100644 index 0000000..54a3a66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4d59c24a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf b/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf new file mode 100644 index 0000000..0da638c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4d6b8b33.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf b/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf new file mode 100644 index 0000000..9048397 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4dc72635.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf b/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf new file mode 100644 index 0000000..db2f4da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4e10ed5b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf b/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf new file mode 100644 index 0000000..e0e6461 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4e1ac177.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf b/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf new file mode 100644 index 0000000..857c801 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4e9dce28.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf b/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf new file mode 100644 index 0000000..8c1ab0d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4eb499b8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf b/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf new file mode 100644 index 0000000..66b611f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4ee23427.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf b/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf new file mode 100644 index 0000000..bb2d26b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/4fd52c87.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf b/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf new file mode 100644 index 0000000..126efd2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/50b342a2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf b/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf new file mode 100644 index 0000000..8cff26b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/50f3c095.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf b/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf new file mode 100644 index 0000000..3cc090b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/511209fe.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf b/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf new file mode 100644 index 0000000..ce8856e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/516cf792.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/51792712.ttf b/cmd/web/static/fonts/glyphs/ttf/51792712.ttf new file mode 100644 index 0000000..ef6e2d9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/51792712.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf b/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf new file mode 100644 index 0000000..33b1ecf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/51a7c9cb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf b/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf new file mode 100644 index 0000000..74807fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/51a9fa09.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf b/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf new file mode 100644 index 0000000..df7bebf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/520274a8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf b/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf new file mode 100644 index 0000000..c5fe00b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/525958c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf b/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf new file mode 100644 index 0000000..b53f38c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/52b1caf8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf b/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf new file mode 100644 index 0000000..19dde33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/52d65af9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf b/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf new file mode 100644 index 0000000..66eef51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5330b47e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/53605668.ttf b/cmd/web/static/fonts/glyphs/ttf/53605668.ttf new file mode 100644 index 0000000..2717f3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/53605668.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf b/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf new file mode 100644 index 0000000..f0f9180 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/53e7de8b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf b/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf new file mode 100644 index 0000000..adc3c23 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5454be1e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/54940801.ttf b/cmd/web/static/fonts/glyphs/ttf/54940801.ttf new file mode 100644 index 0000000..d31222a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/54940801.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf b/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf new file mode 100644 index 0000000..9eda750 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5496b078.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/55048901.ttf b/cmd/web/static/fonts/glyphs/ttf/55048901.ttf new file mode 100644 index 0000000..7196a84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/55048901.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf b/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf new file mode 100644 index 0000000..b89c74a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/55092daa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf b/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf new file mode 100644 index 0000000..56f683c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/565212e9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/56521359.ttf b/cmd/web/static/fonts/glyphs/ttf/56521359.ttf new file mode 100644 index 0000000..cbb9957 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/56521359.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf b/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf new file mode 100644 index 0000000..4806140 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/56652a37.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf b/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf new file mode 100644 index 0000000..4af3250 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5685167b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf b/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf new file mode 100644 index 0000000..b9b7ab0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/56c47c5a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf b/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf new file mode 100644 index 0000000..2d1b7e5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/56ed6f41.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf b/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf new file mode 100644 index 0000000..e8710b7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/576582f8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf b/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf new file mode 100644 index 0000000..43153d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/578f348a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf b/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf new file mode 100644 index 0000000..9dbb8dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5798f31f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf b/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf new file mode 100644 index 0000000..00822cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/57c37525.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf b/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf new file mode 100644 index 0000000..341d9f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/57dd141e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf b/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf new file mode 100644 index 0000000..d261dd6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/57eb30ea.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf b/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf new file mode 100644 index 0000000..a336428 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/580961bd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf b/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf new file mode 100644 index 0000000..99475e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/58c58e95.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf b/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf new file mode 100644 index 0000000..6afdf4c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5922a1ce.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf b/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf new file mode 100644 index 0000000..6750994 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/59835a05.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf b/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf new file mode 100644 index 0000000..d96c2b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/59d1acbe.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf b/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf new file mode 100644 index 0000000..a01c8f0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5b5bda30.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf b/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf new file mode 100644 index 0000000..4cd1abc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5b78e2cb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf b/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf new file mode 100644 index 0000000..46a5b32 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5ba710db.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf b/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf new file mode 100644 index 0000000..69e3f85 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5bdeb600.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf b/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf new file mode 100644 index 0000000..fd18327 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5d77f6cd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf b/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf new file mode 100644 index 0000000..d6e4e3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5d9d090a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf b/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf new file mode 100644 index 0000000..bf0a7de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5e0938cb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf b/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf new file mode 100644 index 0000000..6015b2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5f1cfaf4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf b/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf new file mode 100644 index 0000000..2ce7e58 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/5f3272da.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf b/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf new file mode 100644 index 0000000..756b606 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/604eb358.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf b/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf new file mode 100644 index 0000000..cb8d18f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6065bb77.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf b/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf new file mode 100644 index 0000000..816f67f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6166611f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf b/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf new file mode 100644 index 0000000..25cd661 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/616d19f1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf b/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf new file mode 100644 index 0000000..df7dd06 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61965d02.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf b/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf new file mode 100644 index 0000000..7478ff5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/619e1843.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf b/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf new file mode 100644 index 0000000..1c5565b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61b21f65.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf b/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf new file mode 100644 index 0000000..cfac0f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61c4be74.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf b/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf new file mode 100644 index 0000000..259ba40 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61d34932.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf b/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf new file mode 100644 index 0000000..b0e9326 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61e075b5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf b/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf new file mode 100644 index 0000000..a67643e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61e4ec60.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf b/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf new file mode 100644 index 0000000..a46777f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/61fed715.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf b/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf new file mode 100644 index 0000000..1f488df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6282768c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf b/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf new file mode 100644 index 0000000..0a49381 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6302510b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf b/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf new file mode 100644 index 0000000..429eb87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6338d88d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf b/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf new file mode 100644 index 0000000..0b81560 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6353dd1b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf b/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf new file mode 100644 index 0000000..29ca24a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/63d16b50.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf b/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf new file mode 100644 index 0000000..d4dbe63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6435b8b4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf b/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf new file mode 100644 index 0000000..d9263e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/64bbaa0b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf b/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf new file mode 100644 index 0000000..03f174f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6587b420.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf b/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf new file mode 100644 index 0000000..053c61b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/65bc5b9b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf b/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf new file mode 100644 index 0000000..62ec5b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/65ed8428.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf b/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf new file mode 100644 index 0000000..28368b5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/667938fd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf b/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf new file mode 100644 index 0000000..ba202ad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6690e503.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf b/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf new file mode 100644 index 0000000..35f9a0a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/66a94b72.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf b/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf new file mode 100644 index 0000000..45652c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/66ef61bc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/67036539.ttf b/cmd/web/static/fonts/glyphs/ttf/67036539.ttf new file mode 100644 index 0000000..28223e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/67036539.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf b/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf new file mode 100644 index 0000000..512495f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6748e774.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf b/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf new file mode 100644 index 0000000..ffb285a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/676821e3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf b/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf new file mode 100644 index 0000000..90ebf3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6795017c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf b/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf new file mode 100644 index 0000000..ea21697 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/67fdb825.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf b/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf new file mode 100644 index 0000000..ba0c9d0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/68243e39.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf b/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf new file mode 100644 index 0000000..e02afca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6895132f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf b/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf new file mode 100644 index 0000000..393977b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/68a429e1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf b/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf new file mode 100644 index 0000000..acbb574 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/68db64d0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf b/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf new file mode 100644 index 0000000..f1eba92 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/692990c2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf b/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf new file mode 100644 index 0000000..c25d6df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6961fbe3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf b/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf new file mode 100644 index 0000000..5ab6225 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6994c18b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf b/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf new file mode 100644 index 0000000..4caa721 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/69dbef10.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf b/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf new file mode 100644 index 0000000..abd2a47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6a4f89c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf b/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf new file mode 100644 index 0000000..0e06f47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6a54a1a9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf b/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf new file mode 100644 index 0000000..38227b7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6a5cf79e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf b/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf new file mode 100644 index 0000000..524e81a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6a836616.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf b/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf new file mode 100644 index 0000000..f871c45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6aa52642.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf b/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf new file mode 100644 index 0000000..ba00421 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6b36c863.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf b/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf new file mode 100644 index 0000000..c446441 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6bb79e9f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf b/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf new file mode 100644 index 0000000..32971d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6c1508be.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf b/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf new file mode 100644 index 0000000..be4b8c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6c187b99.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf b/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf new file mode 100644 index 0000000..452f18c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6cf59e55.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf b/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf new file mode 100644 index 0000000..481a949 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6cf5db04.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf b/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf new file mode 100644 index 0000000..d6882af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6d4a4c73.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf b/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf new file mode 100644 index 0000000..a5d6879 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6da3182a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf b/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf new file mode 100644 index 0000000..4c6b04c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6db9cbfa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf b/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf new file mode 100644 index 0000000..437fd4c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6dd1f0c3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf b/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf new file mode 100644 index 0000000..6692cb7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6e131b1a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf b/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf new file mode 100644 index 0000000..a7f819b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6e3568e1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf b/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf new file mode 100644 index 0000000..9d941cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6e8af6a3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf b/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf new file mode 100644 index 0000000..5bdf459 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6ec735fe.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf b/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf new file mode 100644 index 0000000..36d799f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/6ff07dde.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf b/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf new file mode 100644 index 0000000..9e9fa7e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/700a244d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf b/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf new file mode 100644 index 0000000..87d8735 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/700b8efe.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/70159625.ttf b/cmd/web/static/fonts/glyphs/ttf/70159625.ttf new file mode 100644 index 0000000..a5b92f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/70159625.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf b/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf new file mode 100644 index 0000000..d686de7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/703d038d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf b/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf new file mode 100644 index 0000000..43d8bee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/70a458c9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf b/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf new file mode 100644 index 0000000..f7eca70 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/70ce9c46.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf b/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf new file mode 100644 index 0000000..0c5994b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/70d68f2f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf b/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf new file mode 100644 index 0000000..2707d54 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7188a9c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/72213980.ttf b/cmd/web/static/fonts/glyphs/ttf/72213980.ttf new file mode 100644 index 0000000..95d87eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/72213980.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf b/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf new file mode 100644 index 0000000..e5c92fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7257f8e5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/72751892.ttf b/cmd/web/static/fonts/glyphs/ttf/72751892.ttf new file mode 100644 index 0000000..7b2ee34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/72751892.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf b/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf new file mode 100644 index 0000000..7ecf103 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/72bccb9e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf b/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf new file mode 100644 index 0000000..bef1897 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/73337a66.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf b/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf new file mode 100644 index 0000000..5d75523 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/73363ff7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf b/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf new file mode 100644 index 0000000..fc9f6f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7345156e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/734be349.ttf b/cmd/web/static/fonts/glyphs/ttf/734be349.ttf new file mode 100644 index 0000000..1f8f19f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/734be349.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf b/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf new file mode 100644 index 0000000..96687f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/73db31ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf b/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf new file mode 100644 index 0000000..e56162e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/74da00d4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf b/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf new file mode 100644 index 0000000..fefb44d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/74da7207.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf b/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf new file mode 100644 index 0000000..2cde42a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/74dc98f9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf b/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf new file mode 100644 index 0000000..6cf280a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/75058b72.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/75577460.ttf b/cmd/web/static/fonts/glyphs/ttf/75577460.ttf new file mode 100644 index 0000000..1824af7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/75577460.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf b/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf new file mode 100644 index 0000000..7193214 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7651ec5d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf b/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf new file mode 100644 index 0000000..bc84d1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/766bbd91.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf b/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf new file mode 100644 index 0000000..9be4e59 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7692acf2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf b/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf new file mode 100644 index 0000000..24d1c7c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7708bdcb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf b/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf new file mode 100644 index 0000000..85c95e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/77d98a34.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf b/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf new file mode 100644 index 0000000..23d4e6c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/781792ac.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf b/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf new file mode 100644 index 0000000..7e00cb9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7824402e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf b/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf new file mode 100644 index 0000000..3f81aa3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/782774ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf b/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf new file mode 100644 index 0000000..eb7a712 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7845e476.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/78600846.ttf b/cmd/web/static/fonts/glyphs/ttf/78600846.ttf new file mode 100644 index 0000000..0e69f5f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/78600846.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf b/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf new file mode 100644 index 0000000..ecaccde --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/78f17a21.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf b/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf new file mode 100644 index 0000000..8de459e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7909aeb7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf b/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf new file mode 100644 index 0000000..bb56b89 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/793b5687.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf b/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf new file mode 100644 index 0000000..d7df827 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/79fefc18.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf b/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf new file mode 100644 index 0000000..528e337 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7add0458.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf b/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf new file mode 100644 index 0000000..832ddb5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7b978459.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf b/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf new file mode 100644 index 0000000..5fe4d31 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7bd1e500.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf b/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf new file mode 100644 index 0000000..ed559f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7c28d0b9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf b/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf new file mode 100644 index 0000000..31ad250 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7c37a4d6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf b/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf new file mode 100644 index 0000000..74564b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7c77a98a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf b/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf new file mode 100644 index 0000000..e9e45c1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7ca46b25.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf b/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf new file mode 100644 index 0000000..b2e1128 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7d67a50f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf b/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf new file mode 100644 index 0000000..a478b04 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7d68324f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf b/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf new file mode 100644 index 0000000..802ebc7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7d8ef620.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf b/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf new file mode 100644 index 0000000..54e8288 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7dd88093.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf b/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf new file mode 100644 index 0000000..3699ef5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7e2c66dd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf b/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf new file mode 100644 index 0000000..2a87bbc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7e86b04d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf b/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf new file mode 100644 index 0000000..7402c3b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7ee937ee.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf b/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf new file mode 100644 index 0000000..5d7c61d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7f3c219c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf b/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf new file mode 100644 index 0000000..af3a8f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7f4ff157.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf b/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf new file mode 100644 index 0000000..c8a5736 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7faba1e2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf b/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf new file mode 100644 index 0000000..02bd70e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/7fc2dce7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf b/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf new file mode 100644 index 0000000..d1248a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/80160b96.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf b/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf new file mode 100644 index 0000000..e9a30d0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8021a1fc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf b/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf new file mode 100644 index 0000000..98d6b61 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/80629e16.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf b/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf new file mode 100644 index 0000000..f59c22d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/808ad3a7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf b/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf new file mode 100644 index 0000000..9779eea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8179876c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf b/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf new file mode 100644 index 0000000..60f2033 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/817d2a0a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf b/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf new file mode 100644 index 0000000..e7ee22a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/81c6c9c0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf b/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf new file mode 100644 index 0000000..9047219 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/81e03745.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf b/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf new file mode 100644 index 0000000..8f4704b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8216b752.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf b/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf new file mode 100644 index 0000000..9e7131b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/825014e6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf b/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf new file mode 100644 index 0000000..30e1fb7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/836758e3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf b/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf new file mode 100644 index 0000000..3e29300 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8377e39a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf b/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf new file mode 100644 index 0000000..f34bda5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/839981ee.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf b/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf new file mode 100644 index 0000000..92ae469 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/83bd70cd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf b/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf new file mode 100644 index 0000000..c0b1fb6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/83f03b1d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf b/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf new file mode 100644 index 0000000..855682c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/840f090f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf b/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf new file mode 100644 index 0000000..6efcf3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/842ec06d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf b/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf new file mode 100644 index 0000000..6b4d1ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/84aca33c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf b/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf new file mode 100644 index 0000000..19f8ff6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/854811f2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf b/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf new file mode 100644 index 0000000..968b08a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/85a57a2a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf b/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf new file mode 100644 index 0000000..74d49af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/85b9ab95.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf b/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf new file mode 100644 index 0000000..74a21d9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/860a7588.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf b/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf new file mode 100644 index 0000000..fdff8ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/862543ec.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf b/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf new file mode 100644 index 0000000..4b10cbb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8625f0eb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf b/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf new file mode 100644 index 0000000..aca755e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/86d4d2fb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf b/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf new file mode 100644 index 0000000..87e5bfa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/86e445ff.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf b/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf new file mode 100644 index 0000000..8deb2b8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/871f2951.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf b/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf new file mode 100644 index 0000000..98ca5f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/87626b68.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf b/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf new file mode 100644 index 0000000..fbc33f4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8796b453.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf b/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf new file mode 100644 index 0000000..932950b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/87dda7cc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf b/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf new file mode 100644 index 0000000..c6588d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/882182c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf b/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf new file mode 100644 index 0000000..ac90c3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8827eb24.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf b/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf new file mode 100644 index 0000000..a705c47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/888412e6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf b/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf new file mode 100644 index 0000000..47f0465 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/894bfc80.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf b/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf new file mode 100644 index 0000000..e24b905 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/896bcc00.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf b/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf new file mode 100644 index 0000000..9869062 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/899e83fa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf b/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf new file mode 100644 index 0000000..dadaf65 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/89eb94d2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf b/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf new file mode 100644 index 0000000..57c6af6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8a52dabb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf b/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf new file mode 100644 index 0000000..c72d9a9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8aa66ff2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf b/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf new file mode 100644 index 0000000..a7bd07c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8aacdf16.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf b/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf new file mode 100644 index 0000000..a044052 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8b45a38b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf b/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf new file mode 100644 index 0000000..1bc1842 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8b604615.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf b/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf new file mode 100644 index 0000000..df6ceb5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8ba1a228.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf b/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf new file mode 100644 index 0000000..403df6c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8beb9dac.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf b/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf new file mode 100644 index 0000000..299480f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8befb6ca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf b/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf new file mode 100644 index 0000000..763a2df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8c60c66a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf b/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf new file mode 100644 index 0000000..09cdfaf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8c610c58.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf b/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf new file mode 100644 index 0000000..f5611ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8c7e5269.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf b/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf new file mode 100644 index 0000000..76d86e6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8cd085fd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf b/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf new file mode 100644 index 0000000..396d8e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8d40bc1f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf b/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf new file mode 100644 index 0000000..2d611a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8d4d7cd2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf b/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf new file mode 100644 index 0000000..a5d04f0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8f3601cc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf b/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf new file mode 100644 index 0000000..6bf8e8f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/8f9646bf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf b/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf new file mode 100644 index 0000000..bb95cb2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/900affc9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf b/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf new file mode 100644 index 0000000..cb31d39 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9046047a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf b/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf new file mode 100644 index 0000000..68fe5ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/907dea52.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf b/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf new file mode 100644 index 0000000..14e6257 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/91c7605d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf b/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf new file mode 100644 index 0000000..9ef1d00 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/91d96ddb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf b/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf new file mode 100644 index 0000000..79c6683 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/91e6882a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf b/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf new file mode 100644 index 0000000..d62067f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/928b86d7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf b/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf new file mode 100644 index 0000000..284cab6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/92b634cd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf b/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf new file mode 100644 index 0000000..bf037f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/935170dd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf b/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf new file mode 100644 index 0000000..c541a3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9352bab8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf b/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf new file mode 100644 index 0000000..f0d0b3d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9375b000.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf b/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf new file mode 100644 index 0000000..7359706 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9393e70c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf b/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf new file mode 100644 index 0000000..09efdb0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/93b56efb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf b/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf new file mode 100644 index 0000000..3c064e6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/944650cf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf b/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf new file mode 100644 index 0000000..8760225 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/94531f1b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf b/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf new file mode 100644 index 0000000..e420634 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/948b9f9b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf b/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf new file mode 100644 index 0000000..b199a98 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/94bb9a0a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf b/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf new file mode 100644 index 0000000..a6d83f3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/94c87c19.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf b/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf new file mode 100644 index 0000000..f95c986 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/94ee3537.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf b/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf new file mode 100644 index 0000000..4430aae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/95114a7a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf b/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf new file mode 100644 index 0000000..76f539d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9518b144.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf b/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf new file mode 100644 index 0000000..e936ff6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9554c428.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf b/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf new file mode 100644 index 0000000..e0b36e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/957ea602.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf b/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf new file mode 100644 index 0000000..7c67b1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/95ce85b0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf b/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf new file mode 100644 index 0000000..b760217 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9605447e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf b/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf new file mode 100644 index 0000000..4306d6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/971dbc94.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf b/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf new file mode 100644 index 0000000..ee5ef5f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9730509c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf b/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf new file mode 100644 index 0000000..08d0ef6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/97b82bce.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf b/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf new file mode 100644 index 0000000..8e62c02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/97ba67f1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf b/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf new file mode 100644 index 0000000..190523a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/97e6e2a1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf b/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf new file mode 100644 index 0000000..b30f0d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/98117c28.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf b/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf new file mode 100644 index 0000000..1716305 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/982f3edc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/98357202.ttf b/cmd/web/static/fonts/glyphs/ttf/98357202.ttf new file mode 100644 index 0000000..0060262 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/98357202.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf b/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf new file mode 100644 index 0000000..93170a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9850be29.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf b/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf new file mode 100644 index 0000000..59d1da6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9899cecb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf b/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf new file mode 100644 index 0000000..9e92df2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/989ad0a9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf b/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf new file mode 100644 index 0000000..3bef119 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/98a0b6a0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf b/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf new file mode 100644 index 0000000..8c97615 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/993b5d5e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf b/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf new file mode 100644 index 0000000..0262a34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/99a3e60b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf b/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf new file mode 100644 index 0000000..c1342ba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/99b23887.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf b/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf new file mode 100644 index 0000000..7205b3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9a7fb4ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf b/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf new file mode 100644 index 0000000..a45786a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9a9a307d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf b/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf new file mode 100644 index 0000000..8743472 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9b8448e1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf b/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf new file mode 100644 index 0000000..8f86648 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9b9375b4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf b/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf new file mode 100644 index 0000000..33e6623 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9bb36328.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf b/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf new file mode 100644 index 0000000..1c46a0a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9be136c3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf b/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf new file mode 100644 index 0000000..54e2eb0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9c739b13.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf b/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf new file mode 100644 index 0000000..0be4e6d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9ccb9c44.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf b/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf new file mode 100644 index 0000000..f7404db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9ced0dd7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf b/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf new file mode 100644 index 0000000..e0fe9fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9d1ecd98.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf b/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf new file mode 100644 index 0000000..f669d15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9e0089cc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf b/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf new file mode 100644 index 0000000..6bc9ba2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9e3addab.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf b/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf new file mode 100644 index 0000000..3b30b7b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9eb86178.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf b/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf new file mode 100644 index 0000000..b829db3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9f00be36.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf b/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf new file mode 100644 index 0000000..f31edf3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9f205e65.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf b/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf new file mode 100644 index 0000000..edc178a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/9f3909aa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf b/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf new file mode 100644 index 0000000..dc35cda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a0183c8e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf b/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf new file mode 100644 index 0000000..00cdcfd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a04998d6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf b/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf new file mode 100644 index 0000000..96b2ea5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a0a347f1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf b/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf new file mode 100644 index 0000000..ff501c6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a0e42042.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf b/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf new file mode 100644 index 0000000..3fcceca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a0ecbb18.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf b/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf new file mode 100644 index 0000000..07cfc56 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a1b08642.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf b/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf new file mode 100644 index 0000000..161c815 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a1f0f211.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf b/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf new file mode 100644 index 0000000..7432880 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a1fbcdf7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf new file mode 100644 index 0000000..7b68360 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a22847ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf b/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf new file mode 100644 index 0000000..b579c5e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a36d6959.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf b/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf new file mode 100644 index 0000000..1958944 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a3805f14.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf new file mode 100644 index 0000000..71b5bef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a45832ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf b/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf new file mode 100644 index 0000000..a50782d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a4900e86.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf b/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf new file mode 100644 index 0000000..9849b62 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a4b9f2e5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf b/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf new file mode 100644 index 0000000..d0844ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a4caee91.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf b/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf new file mode 100644 index 0000000..71ec708 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a52bb57c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf b/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf new file mode 100644 index 0000000..8ddb404 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a54fe823.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf b/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf new file mode 100644 index 0000000..a623f51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a564f20f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf b/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf new file mode 100644 index 0000000..29b8811 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a5ee2945.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf b/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf new file mode 100644 index 0000000..603b9fa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a6af89bd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf b/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf new file mode 100644 index 0000000..cb69c9b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a73e53ed.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf b/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf new file mode 100644 index 0000000..0851871 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a7644d09.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf b/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf new file mode 100644 index 0000000..05708d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a851f472.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf b/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf new file mode 100644 index 0000000..fabea7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a87ed935.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf b/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf new file mode 100644 index 0000000..b5c3b18 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a97d857e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf b/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf new file mode 100644 index 0000000..32f45fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a9a9d798.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf b/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf new file mode 100644 index 0000000..ff18b06 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/a9daf068.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf b/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf new file mode 100644 index 0000000..907f3ca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/aa0b1cf4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf b/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf new file mode 100644 index 0000000..0b27f99 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/aa227416.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf b/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf new file mode 100644 index 0000000..7a36707 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/aa6c0f8a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf b/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf new file mode 100644 index 0000000..4959966 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/aae08744.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf b/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf new file mode 100644 index 0000000..1666dde --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ab5759c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf b/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf new file mode 100644 index 0000000..8e9f16a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ab8056ea.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf b/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf new file mode 100644 index 0000000..496de0d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ac2048ca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf b/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf new file mode 100644 index 0000000..40165c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ac31ca34.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf b/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf new file mode 100644 index 0000000..ce42993 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ac9383e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf b/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf new file mode 100644 index 0000000..3902799 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/accd5a71.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf b/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf new file mode 100644 index 0000000..e9039bc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ad2eb64b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf b/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf new file mode 100644 index 0000000..02f5066 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ad451fc0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf b/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf new file mode 100644 index 0000000..d3a60cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ad5bcd8d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf b/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf new file mode 100644 index 0000000..4c15286 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ad6d5849.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf b/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf new file mode 100644 index 0000000..0cc8216 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ae3b63af.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf b/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf new file mode 100644 index 0000000..1e6c303 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ae453c2f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf b/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf new file mode 100644 index 0000000..7f64601 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ae943640.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf b/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf new file mode 100644 index 0000000..bb378ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/af60aa55.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf b/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf new file mode 100644 index 0000000..229a6d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/af7f0a6e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf b/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf new file mode 100644 index 0000000..d63cdcf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/afb6634e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf b/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf new file mode 100644 index 0000000..6cbab7b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b09f469a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf b/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf new file mode 100644 index 0000000..934930a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b0ad53ea.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf b/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf new file mode 100644 index 0000000..5d4b3f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b166a7c6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf b/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf new file mode 100644 index 0000000..20bc078 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b1eba251.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf b/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf new file mode 100644 index 0000000..4d24756 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b25a5c47.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf b/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf new file mode 100644 index 0000000..3c9a245 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b295da08.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf b/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf new file mode 100644 index 0000000..68af38f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b29ecf6c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf b/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf new file mode 100644 index 0000000..1e28539 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b2e0a125.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf b/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf new file mode 100644 index 0000000..6ec0cd2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b2f15dff.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf b/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf new file mode 100644 index 0000000..138ff1c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b3273cc3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf b/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf new file mode 100644 index 0000000..3cd1062 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b3df67d1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf b/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf new file mode 100644 index 0000000..05921e4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b410b0fe.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf b/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf new file mode 100644 index 0000000..a8af7ba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b44b2013.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf b/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf new file mode 100644 index 0000000..dfdddf8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b4fed649.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf b/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf new file mode 100644 index 0000000..d9208d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b524a1f5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf b/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf new file mode 100644 index 0000000..25f43da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b53f50d1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf b/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf new file mode 100644 index 0000000..91f19b6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b5c50661.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf b/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf new file mode 100644 index 0000000..de676fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b5c60683.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf b/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf new file mode 100644 index 0000000..35a112d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b70c5e32.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf b/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf new file mode 100644 index 0000000..d8c3edf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b779fc78.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf b/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf new file mode 100644 index 0000000..357f229 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b78ccf45.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf b/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf new file mode 100644 index 0000000..e91db8f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b7a172a3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf b/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf new file mode 100644 index 0000000..ffa5a0e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b7ecc4fc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf b/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf new file mode 100644 index 0000000..0ac6d83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b8276594.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf b/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf new file mode 100644 index 0000000..16d1708 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b82f6a43.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf b/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf new file mode 100644 index 0000000..d6b8273 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b84384c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf b/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf new file mode 100644 index 0000000..f86d153 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b853b110.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf b/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf new file mode 100644 index 0000000..b9ac345 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b86d565c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf b/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf new file mode 100644 index 0000000..6c2704b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b8a14959.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf b/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf new file mode 100644 index 0000000..4940dbf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b8f899c8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf b/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf new file mode 100644 index 0000000..7fe023e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b9507f5e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf b/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf new file mode 100644 index 0000000..8ad6e23 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b96007b9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf b/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf new file mode 100644 index 0000000..4286197 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/b9a227e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf b/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf new file mode 100644 index 0000000..afa2e69 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ba711105.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf b/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf new file mode 100644 index 0000000..d856334 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ba8d699c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf b/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf new file mode 100644 index 0000000..9bf3c20 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bae4bae8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf b/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf new file mode 100644 index 0000000..3768a67 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bae65807.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf b/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf new file mode 100644 index 0000000..a6a1017 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bb074b56.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf b/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf new file mode 100644 index 0000000..fc84111 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bb12d8ab.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf b/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf new file mode 100644 index 0000000..952f868 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bb366587.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf b/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf new file mode 100644 index 0000000..fec697f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bb48d505.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf b/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf new file mode 100644 index 0000000..bd82721 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bb6c3f4f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf b/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf new file mode 100644 index 0000000..93628d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bc23c05b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf b/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf new file mode 100644 index 0000000..5a3d3db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bcd60da4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf b/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf new file mode 100644 index 0000000..b7fe2f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bd81a851.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf b/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf new file mode 100644 index 0000000..f7362e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/be09c3ad.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf b/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf new file mode 100644 index 0000000..a313aef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/be0e8a5a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf b/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf new file mode 100644 index 0000000..9598b3a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/be153f92.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf b/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf new file mode 100644 index 0000000..5c2b7bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/be79d1c6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf b/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf new file mode 100644 index 0000000..4d6f45e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/beaff0e5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf b/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf new file mode 100644 index 0000000..2fcdcf6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bebd5dcc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf b/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf new file mode 100644 index 0000000..4346858 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bf5d7fd2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf b/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf new file mode 100644 index 0000000..5a99a72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/bfff0e1f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf b/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf new file mode 100644 index 0000000..88f0674 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c035acf1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf b/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf new file mode 100644 index 0000000..8b2915d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c08b2fca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf b/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf new file mode 100644 index 0000000..b3661b6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c0b59cd5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf b/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf new file mode 100644 index 0000000..e15de68 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c0becad5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf b/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf new file mode 100644 index 0000000..253fe7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c0dc60c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf b/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf new file mode 100644 index 0000000..3db455c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c0ef3e5e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf b/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf new file mode 100644 index 0000000..028eb9a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c1538030.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf b/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf new file mode 100644 index 0000000..ab47ab5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c1581e36.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf b/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf new file mode 100644 index 0000000..3cee3e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c17f2a95.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf b/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf new file mode 100644 index 0000000..0b80486 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c206b69c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf b/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf new file mode 100644 index 0000000..cfd85e4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c21fd5eb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf b/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf new file mode 100644 index 0000000..aff6ce4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c290dee9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf b/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf new file mode 100644 index 0000000..7379911 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c3ad2575.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf b/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf new file mode 100644 index 0000000..bcaf9d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c3c3fe75.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf b/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf new file mode 100644 index 0000000..13b1959 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c3f23f1d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf b/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf new file mode 100644 index 0000000..1402649 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c407df2f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf b/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf new file mode 100644 index 0000000..8ceadec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c42bbfd6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf b/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf new file mode 100644 index 0000000..ebd5beb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c48a78a5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf b/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf new file mode 100644 index 0000000..c000a30 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c579a0a6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf b/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf new file mode 100644 index 0000000..b115a0c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c67c215e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf b/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf new file mode 100644 index 0000000..d5c50fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c67e4554.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf b/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf new file mode 100644 index 0000000..906e681 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c71e8d9a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf b/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf new file mode 100644 index 0000000..d372d25 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c7a8c9c1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf new file mode 100644 index 0000000..0150191 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c7e2b3d5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf new file mode 100644 index 0000000..969b898 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c7e82146.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf b/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf new file mode 100644 index 0000000..99b3611 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c7e8635b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf b/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf new file mode 100644 index 0000000..5b87062 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c8e64019.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf b/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf new file mode 100644 index 0000000..9bcaa83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c931b176.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf b/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf new file mode 100644 index 0000000..388851e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9480f66.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf b/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf new file mode 100644 index 0000000..207f919 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9797180.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf b/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf new file mode 100644 index 0000000..57d97e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9a00be7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf b/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf new file mode 100644 index 0000000..3048b63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9b3ada5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf b/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf new file mode 100644 index 0000000..d119b1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9b5076d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf b/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf new file mode 100644 index 0000000..40417aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/c9ede1cf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf b/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf new file mode 100644 index 0000000..5c6d51f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ca2be6c9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf b/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf new file mode 100644 index 0000000..f6db181 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cb2908e9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf b/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf new file mode 100644 index 0000000..756ad3d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cba0a9ca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf b/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf new file mode 100644 index 0000000..6de0100 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cbac8aaa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf b/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf new file mode 100644 index 0000000..fcd40a4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ccba5701.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf b/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf new file mode 100644 index 0000000..e10d73d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ccc16298.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf b/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf new file mode 100644 index 0000000..ecc155a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cce1425f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf b/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf new file mode 100644 index 0000000..e20b838 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cd3dc2c3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf b/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf new file mode 100644 index 0000000..ca01b1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cd4d8f7a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf b/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf new file mode 100644 index 0000000..6b0797c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cda1a566.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf b/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf new file mode 100644 index 0000000..f1ac9d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cdb6b693.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf b/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf new file mode 100644 index 0000000..6e89e37 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cdc770af.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf b/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf new file mode 100644 index 0000000..1b6dab1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cdf1c3ef.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf b/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf new file mode 100644 index 0000000..05764b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ce715050.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf b/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf new file mode 100644 index 0000000..5688def --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ce9eb004.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf b/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf new file mode 100644 index 0000000..bfe0790 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cebaa24b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf b/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf new file mode 100644 index 0000000..003cd71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf02d8e2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf b/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf new file mode 100644 index 0000000..ec867d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf248e93.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf b/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf new file mode 100644 index 0000000..abf28c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf295f73.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf b/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf new file mode 100644 index 0000000..f5581c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf2a0a85.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf b/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf new file mode 100644 index 0000000..b325d97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf6d6f30.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf b/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf new file mode 100644 index 0000000..0981df3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cf9d5267.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf b/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf new file mode 100644 index 0000000..05d6c42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cfa9655f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf b/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf new file mode 100644 index 0000000..6f3de98 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/cff6eea9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf b/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf new file mode 100644 index 0000000..e4c70a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0342038.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf b/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf new file mode 100644 index 0000000..a8f26c8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d09b48b1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf b/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf new file mode 100644 index 0000000..23c810b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0a546a6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf b/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf new file mode 100644 index 0000000..620c67a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0cecf4f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf b/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf new file mode 100644 index 0000000..8df5ba5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0e625c0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf b/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf new file mode 100644 index 0000000..39c41be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0f4fedd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf b/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf new file mode 100644 index 0000000..d8b9801 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d0f7d102.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf b/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf new file mode 100644 index 0000000..af86e16 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d108850a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf b/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf new file mode 100644 index 0000000..1ebe3d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d129485b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf b/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf new file mode 100644 index 0000000..912fbaa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d20bd061.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf b/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf new file mode 100644 index 0000000..62cb2f8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d214de53.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf b/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf new file mode 100644 index 0000000..901d9a0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d219fd91.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf b/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf new file mode 100644 index 0000000..8d827ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d228d1ac.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf b/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf new file mode 100644 index 0000000..e145cc6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d269bf57.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf b/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf new file mode 100644 index 0000000..9021ba9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d2800ad0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf b/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf new file mode 100644 index 0000000..7e675f3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d289b887.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf b/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf new file mode 100644 index 0000000..7ee383a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d2c72c19.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf b/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf new file mode 100644 index 0000000..7009584 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d2e8e796.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf b/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf new file mode 100644 index 0000000..8fbaf0b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d2ebd46c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf b/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf new file mode 100644 index 0000000..bef64f4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d32f8a26.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf b/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf new file mode 100644 index 0000000..11805a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d43f6100.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf b/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf new file mode 100644 index 0000000..a4b3df5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d4a96716.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf b/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf new file mode 100644 index 0000000..10142fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d4ae9299.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf b/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf new file mode 100644 index 0000000..459fc1f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d4fffa4b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf b/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf new file mode 100644 index 0000000..16ba0f3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d57e51c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf b/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf new file mode 100644 index 0000000..86d4c0b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d5e77211.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf b/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf new file mode 100644 index 0000000..d1dc9d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d615451a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf b/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf new file mode 100644 index 0000000..a0820ef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d662c711.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf b/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf new file mode 100644 index 0000000..4a212aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d68c6b5a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf b/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf new file mode 100644 index 0000000..97b3738 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d6f4d6c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf b/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf new file mode 100644 index 0000000..627a698 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d702d8e9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf b/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf new file mode 100644 index 0000000..30992cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d72e5642.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf b/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf new file mode 100644 index 0000000..e9d7fad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d741c5dd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf b/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf new file mode 100644 index 0000000..df92f7b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d7a69b7b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf b/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf new file mode 100644 index 0000000..8eb4eef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d7d56ff8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf b/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf new file mode 100644 index 0000000..887baad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d7ecae43.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf b/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf new file mode 100644 index 0000000..d9cc222 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d8f20bf0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf b/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf new file mode 100644 index 0000000..a70f0b2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d8f26b1e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf b/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf new file mode 100644 index 0000000..696400b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d9002330.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf b/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf new file mode 100644 index 0000000..0116ad5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d97e9886.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf b/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf new file mode 100644 index 0000000..0b1fccd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d9b31097.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf b/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf new file mode 100644 index 0000000..09ad1af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/d9f1f706.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf b/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf new file mode 100644 index 0000000..79e6fe5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/da29dda0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf b/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf new file mode 100644 index 0000000..f971816 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/da46da57.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf b/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf new file mode 100644 index 0000000..e61da38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/da8ef2eb.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf b/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf new file mode 100644 index 0000000..eb9f28d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dad2106c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf b/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf new file mode 100644 index 0000000..5149425 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dafd1a87.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf b/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf new file mode 100644 index 0000000..b39d590 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/db17d1b4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf b/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf new file mode 100644 index 0000000..fe0e9be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/db26cd0b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf b/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf new file mode 100644 index 0000000..44e2f2f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/db8e73dd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf b/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf new file mode 100644 index 0000000..2abb753 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/db92c609.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf b/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf new file mode 100644 index 0000000..23a8ff1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dbdc4b76.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf b/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf new file mode 100644 index 0000000..e51b994 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dbf1f527.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf b/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf new file mode 100644 index 0000000..49852a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dbfd39a7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf b/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf new file mode 100644 index 0000000..aa12ce9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dc1b7673.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf b/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf new file mode 100644 index 0000000..227750e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dc86c2f6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf b/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf new file mode 100644 index 0000000..04a71e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dcd33a62.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf b/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf new file mode 100644 index 0000000..34b2f79 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dcd7c346.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf b/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf new file mode 100644 index 0000000..f306413 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dce2e772.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf b/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf new file mode 100644 index 0000000..2e7e8dc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dcf87866.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf b/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf new file mode 100644 index 0000000..a4de1db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dcfebe0e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf b/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf new file mode 100644 index 0000000..2b6a809 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dd10b6f4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf b/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf new file mode 100644 index 0000000..dc74808 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dda67aa8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf b/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf new file mode 100644 index 0000000..c0057dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ddff0b65.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf b/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf new file mode 100644 index 0000000..2d17239 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/de01f078.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf b/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf new file mode 100644 index 0000000..d07063f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/de978ae9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf b/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf new file mode 100644 index 0000000..879079c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dee08cc0.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf b/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf new file mode 100644 index 0000000..9cb2e33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/df01c285.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf b/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf new file mode 100644 index 0000000..21b8f5f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/df2fadba.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf b/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf new file mode 100644 index 0000000..1603588 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/df6bc6bf.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf b/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf new file mode 100644 index 0000000..8252914 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/df82f44f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/df860193.ttf b/cmd/web/static/fonts/glyphs/ttf/df860193.ttf new file mode 100644 index 0000000..ac0a3d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/df860193.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf b/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf new file mode 100644 index 0000000..66174d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/dfc642b4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf b/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf new file mode 100644 index 0000000..de990d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e036f61e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf b/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf new file mode 100644 index 0000000..ac374b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e0436cb5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf b/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf new file mode 100644 index 0000000..6eea000 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e07866a3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf b/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf new file mode 100644 index 0000000..b9d1282 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e094cfe4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf b/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf new file mode 100644 index 0000000..fc2c74b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e0cf68e8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf b/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf new file mode 100644 index 0000000..de49f61 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e18256ba.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf b/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf new file mode 100644 index 0000000..72fff1c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e24b4971.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf b/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf new file mode 100644 index 0000000..c32271e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e264079a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf b/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf new file mode 100644 index 0000000..08fbe4a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e2920962.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf b/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf new file mode 100644 index 0000000..7f8a888 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e29e8451.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf b/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf new file mode 100644 index 0000000..1527842 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e2b7f2e8.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf b/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf new file mode 100644 index 0000000..47e4c02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e2cd4ea9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf b/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf new file mode 100644 index 0000000..d74fff9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e2f6544b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf b/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf new file mode 100644 index 0000000..fa373dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e2ffe70e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf b/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf new file mode 100644 index 0000000..0c471cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e33b2c7f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf b/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf new file mode 100644 index 0000000..59c7f63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e3ae4d2d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf b/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf new file mode 100644 index 0000000..9796f4e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e3d7c442.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf b/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf new file mode 100644 index 0000000..b725ccf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e49824ce.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf b/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf new file mode 100644 index 0000000..2e1195d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e4ec2dc2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf b/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf new file mode 100644 index 0000000..93ec97a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e4f0095c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf b/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf new file mode 100644 index 0000000..d622609 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e516e4c5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf b/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf new file mode 100644 index 0000000..1f4d31f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e528cde1.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf b/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf new file mode 100644 index 0000000..ba3a59a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e55176f2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf b/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf new file mode 100644 index 0000000..e973b27 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e5e909f3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf b/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf new file mode 100644 index 0000000..944e1b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e67af557.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf b/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf new file mode 100644 index 0000000..2280f51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e6b4aab7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf b/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf new file mode 100644 index 0000000..ebf7939 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e7803979.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf b/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf new file mode 100644 index 0000000..d69ef1b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e7aad562.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf b/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf new file mode 100644 index 0000000..34e952e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e7c8de5d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf b/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf new file mode 100644 index 0000000..c831b6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e7d3044b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf b/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf new file mode 100644 index 0000000..dba5e69 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e83034c6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf b/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf new file mode 100644 index 0000000..590e33a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e8777ffa.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf b/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf new file mode 100644 index 0000000..b4751ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e8acadad.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf b/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf new file mode 100644 index 0000000..1346e5c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e98b08c6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf b/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf new file mode 100644 index 0000000..c632079 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/e9b1d552.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf b/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf new file mode 100644 index 0000000..bd99cda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ea17073b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf b/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf new file mode 100644 index 0000000..1eaa128 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ea26fef6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf b/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf new file mode 100644 index 0000000..6baa902 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ea8e0a1a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf b/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf new file mode 100644 index 0000000..bfdfa33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ea915e6c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf b/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf new file mode 100644 index 0000000..49c9574 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eaca633e.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf b/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf new file mode 100644 index 0000000..191315f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eb2a76c7.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf b/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf new file mode 100644 index 0000000..648d82f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eb67386f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf b/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf new file mode 100644 index 0000000..a6dadd1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eb7c1720.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf b/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf new file mode 100644 index 0000000..8401931 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ec5a8b64.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf b/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf new file mode 100644 index 0000000..26a2a6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ec62219b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf b/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf new file mode 100644 index 0000000..4a3369a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ec9c031f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf b/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf new file mode 100644 index 0000000..9f6c928 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eca1fd47.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf b/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf new file mode 100644 index 0000000..3397693 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/eccf06e9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf b/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf new file mode 100644 index 0000000..a38e5f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ecd94f38.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf b/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf new file mode 100644 index 0000000..6385aea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ed4c2c15.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf b/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf new file mode 100644 index 0000000..6cebd2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ed5cf55c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf b/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf new file mode 100644 index 0000000..a6b7e25 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/edba7c75.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf b/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf new file mode 100644 index 0000000..4288a83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/edcb62d5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf b/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf new file mode 100644 index 0000000..c5c8c8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ee154cca.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf b/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf new file mode 100644 index 0000000..da241d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ef00237d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf b/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf new file mode 100644 index 0000000..31259fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/efc8654c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf b/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf new file mode 100644 index 0000000..759f900 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f0239cc2.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf b/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf new file mode 100644 index 0000000..1b24e78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f03ffe17.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf b/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf new file mode 100644 index 0000000..3a5d73e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f076afbd.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf b/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf new file mode 100644 index 0000000..f3240d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f20a956f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf b/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf new file mode 100644 index 0000000..1a02d67 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f21dea18.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf b/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf new file mode 100644 index 0000000..dc75dc7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f265e93a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf b/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf new file mode 100644 index 0000000..2cdb6e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f2a75c7f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf b/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf new file mode 100644 index 0000000..83a8c6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f324b46a.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf b/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf new file mode 100644 index 0000000..77be25e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f352189b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf b/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf new file mode 100644 index 0000000..c7470b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f38f3a94.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf b/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf new file mode 100644 index 0000000..31fd9f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f3aa8be6.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf b/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf new file mode 100644 index 0000000..792bf5f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f3b8c582.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf b/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf new file mode 100644 index 0000000..594af68 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f4964839.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf b/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf new file mode 100644 index 0000000..3ee9bb3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f4c46d43.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf b/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf new file mode 100644 index 0000000..e4f503e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f51f8bf3.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf b/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf new file mode 100644 index 0000000..8ec6ec4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f522c872.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf b/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf new file mode 100644 index 0000000..109ce5f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f674659b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf b/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf new file mode 100644 index 0000000..29a9a5b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f6a67776.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf b/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf new file mode 100644 index 0000000..cf34a15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f6b8b235.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf b/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf new file mode 100644 index 0000000..a19b61d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f6bda42b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf b/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf new file mode 100644 index 0000000..9f8f75f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f6e65e59.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf b/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf new file mode 100644 index 0000000..b6994c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f73fed81.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf b/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf new file mode 100644 index 0000000..12573cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f80829f5.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf b/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf new file mode 100644 index 0000000..0a1ed37 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f871e4e4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf b/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf new file mode 100644 index 0000000..678c310 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f874c31d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf b/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf new file mode 100644 index 0000000..ac6d983 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f8a8936b.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf b/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf new file mode 100644 index 0000000..caf06a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f8c78a1d.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf b/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf new file mode 100644 index 0000000..5a54b26 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f952c473.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf b/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf new file mode 100644 index 0000000..31b3dc9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/f99464f4.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf b/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf new file mode 100644 index 0000000..abdbe90 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fa9edb37.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf b/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf new file mode 100644 index 0000000..e7f7818 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fbf90859.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf b/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf new file mode 100644 index 0000000..3e9dbad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fc061854.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf b/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf new file mode 100644 index 0000000..a8ae01d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fccd4567.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf b/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf new file mode 100644 index 0000000..ac7d57f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fcf313ef.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf b/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf new file mode 100644 index 0000000..bda1b2d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fd56eaf9.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf b/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf new file mode 100644 index 0000000..2a5b5e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fd5fe89c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf b/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf new file mode 100644 index 0000000..199530b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fda7a318.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf b/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf new file mode 100644 index 0000000..e098d1e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fdc4299c.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf b/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf new file mode 100644 index 0000000..2b112fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fe1a9b49.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf b/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf new file mode 100644 index 0000000..11ff901 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fe2af1dc.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf b/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf new file mode 100644 index 0000000..1821c92 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/fef0478f.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf b/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf new file mode 100644 index 0000000..c0af0dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/ttf/ffa0cc23.ttf | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0067bba3.woff b/cmd/web/static/fonts/glyphs/woff/0067bba3.woff new file mode 100644 index 0000000..3365f66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0067bba3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/00883b50.woff b/cmd/web/static/fonts/glyphs/woff/00883b50.woff new file mode 100644 index 0000000..9a82fb1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/00883b50.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/011ee55c.woff b/cmd/web/static/fonts/glyphs/woff/011ee55c.woff new file mode 100644 index 0000000..a5c356b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/011ee55c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/018f5952.woff b/cmd/web/static/fonts/glyphs/woff/018f5952.woff new file mode 100644 index 0000000..b453985 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/018f5952.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff b/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff new file mode 100644 index 0000000..e904089 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/01e07cf4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/02255308.woff b/cmd/web/static/fonts/glyphs/woff/02255308.woff new file mode 100644 index 0000000..3c8b70b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/02255308.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/023d4451.woff b/cmd/web/static/fonts/glyphs/woff/023d4451.woff new file mode 100644 index 0000000..982da83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/023d4451.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/02d0c663.woff b/cmd/web/static/fonts/glyphs/woff/02d0c663.woff new file mode 100644 index 0000000..a458837 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/02d0c663.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/048120ba.woff b/cmd/web/static/fonts/glyphs/woff/048120ba.woff new file mode 100644 index 0000000..2ba2972 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/048120ba.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff b/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff new file mode 100644 index 0000000..7309124 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/04c9aec2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/05b616e5.woff b/cmd/web/static/fonts/glyphs/woff/05b616e5.woff new file mode 100644 index 0000000..6f08882 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/05b616e5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff b/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff new file mode 100644 index 0000000..7ad2d6d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/05ed7e4e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/061e5117.woff b/cmd/web/static/fonts/glyphs/woff/061e5117.woff new file mode 100644 index 0000000..9ebb361 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/061e5117.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/064b9505.woff b/cmd/web/static/fonts/glyphs/woff/064b9505.woff new file mode 100644 index 0000000..d768a8f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/064b9505.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/066eea7e.woff b/cmd/web/static/fonts/glyphs/woff/066eea7e.woff new file mode 100644 index 0000000..42c678a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/066eea7e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/06fd396d.woff b/cmd/web/static/fonts/glyphs/woff/06fd396d.woff new file mode 100644 index 0000000..b5fdb97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/06fd396d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/081f89e0.woff b/cmd/web/static/fonts/glyphs/woff/081f89e0.woff new file mode 100644 index 0000000..cdd2491 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/081f89e0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/088eafe1.woff b/cmd/web/static/fonts/glyphs/woff/088eafe1.woff new file mode 100644 index 0000000..ebae01f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/088eafe1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff b/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff new file mode 100644 index 0000000..28b60a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/08e4c9db.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/08e9330e.woff b/cmd/web/static/fonts/glyphs/woff/08e9330e.woff new file mode 100644 index 0000000..21007bc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/08e9330e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/090f780c.woff b/cmd/web/static/fonts/glyphs/woff/090f780c.woff new file mode 100644 index 0000000..7411fde --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/090f780c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/09a35da5.woff b/cmd/web/static/fonts/glyphs/woff/09a35da5.woff new file mode 100644 index 0000000..b406e15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/09a35da5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/09afd82a.woff b/cmd/web/static/fonts/glyphs/woff/09afd82a.woff new file mode 100644 index 0000000..f26c0bd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/09afd82a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/09b0664c.woff b/cmd/web/static/fonts/glyphs/woff/09b0664c.woff new file mode 100644 index 0000000..ecfae03 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/09b0664c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff b/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff new file mode 100644 index 0000000..3977bfb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0a01e6d0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff b/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff new file mode 100644 index 0000000..d5d0785 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0a32e2fb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff b/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff new file mode 100644 index 0000000..66f5563 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0a4097e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff b/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff new file mode 100644 index 0000000..911118f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0ac058dd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff b/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff new file mode 100644 index 0000000..5725822 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0b12d5a0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff b/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff new file mode 100644 index 0000000..e4ca652 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0b4fc343.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff b/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff new file mode 100644 index 0000000..924671b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0bcc804b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0c40016a.woff b/cmd/web/static/fonts/glyphs/woff/0c40016a.woff new file mode 100644 index 0000000..c02c7c6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0c40016a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff b/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff new file mode 100644 index 0000000..27e29d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0ca412f2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff b/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff new file mode 100644 index 0000000..70735f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0cbb9805.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0cc88965.woff b/cmd/web/static/fonts/glyphs/woff/0cc88965.woff new file mode 100644 index 0000000..45e456f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0cc88965.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff b/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff new file mode 100644 index 0000000..6073c1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0cf3a20b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff b/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff new file mode 100644 index 0000000..3d328a9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0cfc2998.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff b/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff new file mode 100644 index 0000000..65bcd76 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0d085f1c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff b/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff new file mode 100644 index 0000000..bc16e77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0d26bbc7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff b/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff new file mode 100644 index 0000000..029a5bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0d9537d2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0e779307.woff b/cmd/web/static/fonts/glyphs/woff/0e779307.woff new file mode 100644 index 0000000..a36ce2a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0e779307.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff b/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff new file mode 100644 index 0000000..e125434 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0ecabbc7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0f971447.woff b/cmd/web/static/fonts/glyphs/woff/0f971447.woff new file mode 100644 index 0000000..cb9821a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0f971447.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff b/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff new file mode 100644 index 0000000..c6e0e45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/0ff7e3fd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/10350c93.woff b/cmd/web/static/fonts/glyphs/woff/10350c93.woff new file mode 100644 index 0000000..58643b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/10350c93.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff b/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff new file mode 100644 index 0000000..26f9c61 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1079bbd9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1098551a.woff b/cmd/web/static/fonts/glyphs/woff/1098551a.woff new file mode 100644 index 0000000..bc992cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1098551a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/110df6cd.woff b/cmd/web/static/fonts/glyphs/woff/110df6cd.woff new file mode 100644 index 0000000..62d164d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/110df6cd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/114520c4.woff b/cmd/web/static/fonts/glyphs/woff/114520c4.woff new file mode 100644 index 0000000..cd59955 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/114520c4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1165e24b.woff b/cmd/web/static/fonts/glyphs/woff/1165e24b.woff new file mode 100644 index 0000000..db0f425 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1165e24b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/117dc215.woff b/cmd/web/static/fonts/glyphs/woff/117dc215.woff new file mode 100644 index 0000000..4b8ba8b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/117dc215.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/11805c1a.woff b/cmd/web/static/fonts/glyphs/woff/11805c1a.woff new file mode 100644 index 0000000..64f0ce9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/11805c1a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff b/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff new file mode 100644 index 0000000..2bfcd09 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/11c88fa3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff b/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff new file mode 100644 index 0000000..0644979 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/11d82ab4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/120564eb.woff b/cmd/web/static/fonts/glyphs/woff/120564eb.woff new file mode 100644 index 0000000..8554c42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/120564eb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/125fe922.woff b/cmd/web/static/fonts/glyphs/woff/125fe922.woff new file mode 100644 index 0000000..22d646d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/125fe922.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/129ec899.woff b/cmd/web/static/fonts/glyphs/woff/129ec899.woff new file mode 100644 index 0000000..cc26842 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/129ec899.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/12c373f3.woff b/cmd/web/static/fonts/glyphs/woff/12c373f3.woff new file mode 100644 index 0000000..4b86b19 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/12c373f3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff b/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff new file mode 100644 index 0000000..179ed1c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/12cd5e20.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff b/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff new file mode 100644 index 0000000..2241729 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/12d9f10f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/131b3834.woff b/cmd/web/static/fonts/glyphs/woff/131b3834.woff new file mode 100644 index 0000000..9b54e58 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/131b3834.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/131ebb37.woff b/cmd/web/static/fonts/glyphs/woff/131ebb37.woff new file mode 100644 index 0000000..f862a41 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/131ebb37.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/13753541.woff b/cmd/web/static/fonts/glyphs/woff/13753541.woff new file mode 100644 index 0000000..ce31e3d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/13753541.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1394a474.woff b/cmd/web/static/fonts/glyphs/woff/1394a474.woff new file mode 100644 index 0000000..d5f2805 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1394a474.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/13b487b1.woff b/cmd/web/static/fonts/glyphs/woff/13b487b1.woff new file mode 100644 index 0000000..8372ff2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/13b487b1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/14880f85.woff b/cmd/web/static/fonts/glyphs/woff/14880f85.woff new file mode 100644 index 0000000..3bacc40 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/14880f85.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/15802da1.woff b/cmd/web/static/fonts/glyphs/woff/15802da1.woff new file mode 100644 index 0000000..df5c4be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/15802da1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/159ee498.woff b/cmd/web/static/fonts/glyphs/woff/159ee498.woff new file mode 100644 index 0000000..15266d3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/159ee498.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/167004d8.woff b/cmd/web/static/fonts/glyphs/woff/167004d8.woff new file mode 100644 index 0000000..2399661 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/167004d8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/16ed590a.woff b/cmd/web/static/fonts/glyphs/woff/16ed590a.woff new file mode 100644 index 0000000..e199813 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/16ed590a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/172e6f01.woff b/cmd/web/static/fonts/glyphs/woff/172e6f01.woff new file mode 100644 index 0000000..006ffc5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/172e6f01.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1778d94c.woff b/cmd/web/static/fonts/glyphs/woff/1778d94c.woff new file mode 100644 index 0000000..b1cea85 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1778d94c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/177d0611.woff b/cmd/web/static/fonts/glyphs/woff/177d0611.woff new file mode 100644 index 0000000..6089193 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/177d0611.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/179f13d3.woff b/cmd/web/static/fonts/glyphs/woff/179f13d3.woff new file mode 100644 index 0000000..f2b984f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/179f13d3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/17a7a115.woff b/cmd/web/static/fonts/glyphs/woff/17a7a115.woff new file mode 100644 index 0000000..defb315 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/17a7a115.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1817efca.woff b/cmd/web/static/fonts/glyphs/woff/1817efca.woff new file mode 100644 index 0000000..d34df15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1817efca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1937cd98.woff b/cmd/web/static/fonts/glyphs/woff/1937cd98.woff new file mode 100644 index 0000000..7042804 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1937cd98.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/199aab73.woff b/cmd/web/static/fonts/glyphs/woff/199aab73.woff new file mode 100644 index 0000000..d2388cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/199aab73.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff b/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff new file mode 100644 index 0000000..7220117 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/19f8d5af.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a54066a.woff b/cmd/web/static/fonts/glyphs/woff/1a54066a.woff new file mode 100644 index 0000000..dcdf38d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a54066a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff b/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff new file mode 100644 index 0000000..d3d2876 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a7920cb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a797de5.woff b/cmd/web/static/fonts/glyphs/woff/1a797de5.woff new file mode 100644 index 0000000..ef0a8d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a797de5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff b/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff new file mode 100644 index 0000000..79a3244 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a7bcf02.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff b/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff new file mode 100644 index 0000000..45e53c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a8afe19.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff b/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff new file mode 100644 index 0000000..be11df5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1a9e5d1a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff b/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff new file mode 100644 index 0000000..3e2a6a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1b07c59f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1b180f14.woff b/cmd/web/static/fonts/glyphs/woff/1b180f14.woff new file mode 100644 index 0000000..03cf472 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1b180f14.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff b/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff new file mode 100644 index 0000000..f295287 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1b7ba367.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1ca00690.woff b/cmd/web/static/fonts/glyphs/woff/1ca00690.woff new file mode 100644 index 0000000..d4ca2eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1ca00690.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1cc31435.woff b/cmd/web/static/fonts/glyphs/woff/1cc31435.woff new file mode 100644 index 0000000..c5a1449 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1cc31435.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1cd81072.woff b/cmd/web/static/fonts/glyphs/woff/1cd81072.woff new file mode 100644 index 0000000..dcab1de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1cd81072.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff b/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff new file mode 100644 index 0000000..a2b0dab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1d31d67a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff b/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff new file mode 100644 index 0000000..09592b9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1d3e9975.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1d45862b.woff b/cmd/web/static/fonts/glyphs/woff/1d45862b.woff new file mode 100644 index 0000000..38beffb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1d45862b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff b/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff new file mode 100644 index 0000000..e8652cb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1df9ac89.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1e143288.woff b/cmd/web/static/fonts/glyphs/woff/1e143288.woff new file mode 100644 index 0000000..a8e2dca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1e143288.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff b/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff new file mode 100644 index 0000000..81e1a91 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1e3a5f47.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff b/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff new file mode 100644 index 0000000..71d44f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1ea52dfd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff b/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff new file mode 100644 index 0000000..44ba1c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1eb35b35.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff b/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff new file mode 100644 index 0000000..67a9db5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/1fd6b062.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/208046b5.woff b/cmd/web/static/fonts/glyphs/woff/208046b5.woff new file mode 100644 index 0000000..2e489a8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/208046b5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/20b835b7.woff b/cmd/web/static/fonts/glyphs/woff/20b835b7.woff new file mode 100644 index 0000000..824ea64 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/20b835b7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff b/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff new file mode 100644 index 0000000..6be5322 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/20f9b6e3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/21619e9c.woff b/cmd/web/static/fonts/glyphs/woff/21619e9c.woff new file mode 100644 index 0000000..e9d03ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/21619e9c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff b/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff new file mode 100644 index 0000000..285e0c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2163c4cf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/218e296f.woff b/cmd/web/static/fonts/glyphs/woff/218e296f.woff new file mode 100644 index 0000000..130d19d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/218e296f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/21a02826.woff b/cmd/web/static/fonts/glyphs/woff/21a02826.woff new file mode 100644 index 0000000..f8db4fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/21a02826.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2200df99.woff b/cmd/web/static/fonts/glyphs/woff/2200df99.woff new file mode 100644 index 0000000..9cdb14d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2200df99.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/22293ce5.woff b/cmd/web/static/fonts/glyphs/woff/22293ce5.woff new file mode 100644 index 0000000..0e8a1bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/22293ce5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff b/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff new file mode 100644 index 0000000..8331ee0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/22c6ed00.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/23b476b4.woff b/cmd/web/static/fonts/glyphs/woff/23b476b4.woff new file mode 100644 index 0000000..3e4e15e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/23b476b4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2422dc89.woff b/cmd/web/static/fonts/glyphs/woff/2422dc89.woff new file mode 100644 index 0000000..1a7986b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2422dc89.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/246660f5.woff b/cmd/web/static/fonts/glyphs/woff/246660f5.woff new file mode 100644 index 0000000..6eabedb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/246660f5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2489d00d.woff b/cmd/web/static/fonts/glyphs/woff/2489d00d.woff new file mode 100644 index 0000000..756b18a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2489d00d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/24a80660.woff b/cmd/web/static/fonts/glyphs/woff/24a80660.woff new file mode 100644 index 0000000..f5f144d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/24a80660.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/24cd796b.woff b/cmd/web/static/fonts/glyphs/woff/24cd796b.woff new file mode 100644 index 0000000..4b3c817 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/24cd796b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/24d18e39.woff b/cmd/web/static/fonts/glyphs/woff/24d18e39.woff new file mode 100644 index 0000000..cca30ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/24d18e39.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff b/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff new file mode 100644 index 0000000..39f041d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/24e7e96e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/250eac5a.woff b/cmd/web/static/fonts/glyphs/woff/250eac5a.woff new file mode 100644 index 0000000..c4f6f6c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/250eac5a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/252bbda4.woff b/cmd/web/static/fonts/glyphs/woff/252bbda4.woff new file mode 100644 index 0000000..b32bc4d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/252bbda4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/254c8943.woff b/cmd/web/static/fonts/glyphs/woff/254c8943.woff new file mode 100644 index 0000000..0678614 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/254c8943.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/25ba326c.woff b/cmd/web/static/fonts/glyphs/woff/25ba326c.woff new file mode 100644 index 0000000..1fa650d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/25ba326c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff b/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff new file mode 100644 index 0000000..f74fb47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/25ea7b82.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/25eb254d.woff b/cmd/web/static/fonts/glyphs/woff/25eb254d.woff new file mode 100644 index 0000000..4c03eb3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/25eb254d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/264d968f.woff b/cmd/web/static/fonts/glyphs/woff/264d968f.woff new file mode 100644 index 0000000..6096892 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/264d968f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/26fc4657.woff b/cmd/web/static/fonts/glyphs/woff/26fc4657.woff new file mode 100644 index 0000000..4b94337 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/26fc4657.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/282e3874.woff b/cmd/web/static/fonts/glyphs/woff/282e3874.woff new file mode 100644 index 0000000..fb38480 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/282e3874.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2849840b.woff b/cmd/web/static/fonts/glyphs/woff/2849840b.woff new file mode 100644 index 0000000..7559f87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2849840b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/288dafa6.woff b/cmd/web/static/fonts/glyphs/woff/288dafa6.woff new file mode 100644 index 0000000..321e17f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/288dafa6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff b/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff new file mode 100644 index 0000000..d8df91a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2928cfa1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/297959f6.woff b/cmd/web/static/fonts/glyphs/woff/297959f6.woff new file mode 100644 index 0000000..2514814 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/297959f6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff b/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff new file mode 100644 index 0000000..2e45ac7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/29ef8c3a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff b/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff new file mode 100644 index 0000000..9f09267 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2a4ae11d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2a889c21.woff b/cmd/web/static/fonts/glyphs/woff/2a889c21.woff new file mode 100644 index 0000000..6b6b944 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2a889c21.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2a96e401.woff b/cmd/web/static/fonts/glyphs/woff/2a96e401.woff new file mode 100644 index 0000000..94a3aa8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2a96e401.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff b/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff new file mode 100644 index 0000000..41c7c9c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2a9dc20c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff b/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff new file mode 100644 index 0000000..6102bcc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2ae6c3ff.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff b/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff new file mode 100644 index 0000000..cbf63bc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2b4b2b6f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2b52c387.woff b/cmd/web/static/fonts/glyphs/woff/2b52c387.woff new file mode 100644 index 0000000..b8ba3cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2b52c387.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff b/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff new file mode 100644 index 0000000..d8def9d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2bd2fc24.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2be8c581.woff b/cmd/web/static/fonts/glyphs/woff/2be8c581.woff new file mode 100644 index 0000000..d0dc1a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2be8c581.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2c977e31.woff b/cmd/web/static/fonts/glyphs/woff/2c977e31.woff new file mode 100644 index 0000000..4eb20c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2c977e31.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff b/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff new file mode 100644 index 0000000..d3ad343 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2cee68c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff b/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff new file mode 100644 index 0000000..b649a19 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2d027c9d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff b/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff new file mode 100644 index 0000000..dd4e262 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2d2cf221.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff b/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff new file mode 100644 index 0000000..fc43bc5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2d5cb25e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff b/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff new file mode 100644 index 0000000..cfba2a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2d7aa05f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff b/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff new file mode 100644 index 0000000..d89b166 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2db5fddf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2dc572da.woff b/cmd/web/static/fonts/glyphs/woff/2dc572da.woff new file mode 100644 index 0000000..9e9c8c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2dc572da.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff b/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff new file mode 100644 index 0000000..c4f83b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2e27c6c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff b/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff new file mode 100644 index 0000000..3f0031d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2e5887ef.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff b/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff new file mode 100644 index 0000000..8c716d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2ed7bd06.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff b/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff new file mode 100644 index 0000000..c7078fe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2ef4a942.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff b/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff new file mode 100644 index 0000000..4637258 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2f84e1d2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff b/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff new file mode 100644 index 0000000..ef8ebc5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/2fd2e914.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/30042e01.woff b/cmd/web/static/fonts/glyphs/woff/30042e01.woff new file mode 100644 index 0000000..0974478 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/30042e01.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/300b40cf.woff b/cmd/web/static/fonts/glyphs/woff/300b40cf.woff new file mode 100644 index 0000000..a26e819 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/300b40cf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff b/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff new file mode 100644 index 0000000..d1fc8c9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3069c5e2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/30d929ef.woff b/cmd/web/static/fonts/glyphs/woff/30d929ef.woff new file mode 100644 index 0000000..0cf0acd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/30d929ef.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff b/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff new file mode 100644 index 0000000..698982e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/311bcfdc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/31234fc4.woff b/cmd/web/static/fonts/glyphs/woff/31234fc4.woff new file mode 100644 index 0000000..609bea8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/31234fc4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/315c66f8.woff b/cmd/web/static/fonts/glyphs/woff/315c66f8.woff new file mode 100644 index 0000000..26ec0a8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/315c66f8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/31722822.woff b/cmd/web/static/fonts/glyphs/woff/31722822.woff new file mode 100644 index 0000000..034e8ad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/31722822.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/31782ddd.woff b/cmd/web/static/fonts/glyphs/woff/31782ddd.woff new file mode 100644 index 0000000..e930bc6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/31782ddd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/322840cb.woff b/cmd/web/static/fonts/glyphs/woff/322840cb.woff new file mode 100644 index 0000000..465c6fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/322840cb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/323a4cec.woff b/cmd/web/static/fonts/glyphs/woff/323a4cec.woff new file mode 100644 index 0000000..5289fb8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/323a4cec.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff b/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff new file mode 100644 index 0000000..4f8b43c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/325a5ac2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/328fad59.woff b/cmd/web/static/fonts/glyphs/woff/328fad59.woff new file mode 100644 index 0000000..6fa0fe5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/328fad59.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/32c69208.woff b/cmd/web/static/fonts/glyphs/woff/32c69208.woff new file mode 100644 index 0000000..9598a4a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/32c69208.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff b/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff new file mode 100644 index 0000000..ebdcb34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/32cb1e15.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/34152b57.woff b/cmd/web/static/fonts/glyphs/woff/34152b57.woff new file mode 100644 index 0000000..ee32e50 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/34152b57.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/34833f66.woff b/cmd/web/static/fonts/glyphs/woff/34833f66.woff new file mode 100644 index 0000000..21ee1c5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/34833f66.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff b/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff new file mode 100644 index 0000000..551547a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/34a01d7d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff b/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff new file mode 100644 index 0000000..b58350c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/34d7ab4a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3506ae92.woff b/cmd/web/static/fonts/glyphs/woff/3506ae92.woff new file mode 100644 index 0000000..12f8aec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3506ae92.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3547c23d.woff b/cmd/web/static/fonts/glyphs/woff/3547c23d.woff new file mode 100644 index 0000000..78fc1e5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3547c23d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/354ca571.woff b/cmd/web/static/fonts/glyphs/woff/354ca571.woff new file mode 100644 index 0000000..abba058 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/354ca571.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff b/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff new file mode 100644 index 0000000..de402ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/35e73fc6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36728431.woff b/cmd/web/static/fonts/glyphs/woff/36728431.woff new file mode 100644 index 0000000..5f33388 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36728431.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36a3295a.woff b/cmd/web/static/fonts/glyphs/woff/36a3295a.woff new file mode 100644 index 0000000..8338a7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36a3295a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36ac1140.woff b/cmd/web/static/fonts/glyphs/woff/36ac1140.woff new file mode 100644 index 0000000..f2de81e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36ac1140.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff b/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff new file mode 100644 index 0000000..97d3dfe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36bc1a9d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff b/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff new file mode 100644 index 0000000..02757e6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36bf9ec5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff b/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff new file mode 100644 index 0000000..b184425 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/36fb96fc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/370da5ae.woff b/cmd/web/static/fonts/glyphs/woff/370da5ae.woff new file mode 100644 index 0000000..e9670db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/370da5ae.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/37481bd1.woff b/cmd/web/static/fonts/glyphs/woff/37481bd1.woff new file mode 100644 index 0000000..82dbf1e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/37481bd1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/385855c8.woff b/cmd/web/static/fonts/glyphs/woff/385855c8.woff new file mode 100644 index 0000000..f53a4eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/385855c8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/38686314.woff b/cmd/web/static/fonts/glyphs/woff/38686314.woff new file mode 100644 index 0000000..3b97da4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/38686314.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/389e0153.woff b/cmd/web/static/fonts/glyphs/woff/389e0153.woff new file mode 100644 index 0000000..eb54eca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/389e0153.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff b/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff new file mode 100644 index 0000000..63188de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/38dcac7f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/393bcee2.woff b/cmd/web/static/fonts/glyphs/woff/393bcee2.woff new file mode 100644 index 0000000..ab15937 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/393bcee2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/39b74aca.woff b/cmd/web/static/fonts/glyphs/woff/39b74aca.woff new file mode 100644 index 0000000..e924a1d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/39b74aca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff b/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff new file mode 100644 index 0000000..6fe07c6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3a52ed45.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3a530c59.woff b/cmd/web/static/fonts/glyphs/woff/3a530c59.woff new file mode 100644 index 0000000..dbdaeb1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3a530c59.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff b/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff new file mode 100644 index 0000000..6ecf55a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3abbb79a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff b/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff new file mode 100644 index 0000000..dcef6a4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3ac9bbf7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3b064daf.woff b/cmd/web/static/fonts/glyphs/woff/3b064daf.woff new file mode 100644 index 0000000..4eff54a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3b064daf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff b/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff new file mode 100644 index 0000000..e540e10 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3b5ff71f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff b/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff new file mode 100644 index 0000000..e766730 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3b6b07e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff b/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff new file mode 100644 index 0000000..c5b4a4b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3b7180f4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff b/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff new file mode 100644 index 0000000..2382b68 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3bd53fee.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3c678666.woff b/cmd/web/static/fonts/glyphs/woff/3c678666.woff new file mode 100644 index 0000000..38f1efa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3c678666.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff b/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff new file mode 100644 index 0000000..6f4fb07 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3d32bff5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff b/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff new file mode 100644 index 0000000..2b51489 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3e131fc2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3e670521.woff b/cmd/web/static/fonts/glyphs/woff/3e670521.woff new file mode 100644 index 0000000..38f45be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3e670521.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3eed650c.woff b/cmd/web/static/fonts/glyphs/woff/3eed650c.woff new file mode 100644 index 0000000..588667e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3eed650c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff b/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff new file mode 100644 index 0000000..3749ffc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3f29fe8f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3f357a26.woff b/cmd/web/static/fonts/glyphs/woff/3f357a26.woff new file mode 100644 index 0000000..3d08708 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3f357a26.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff b/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff new file mode 100644 index 0000000..e6597eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3f3d19ae.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff b/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff new file mode 100644 index 0000000..aa194d3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/3fc14a91.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4003be53.woff b/cmd/web/static/fonts/glyphs/woff/4003be53.woff new file mode 100644 index 0000000..48bff71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4003be53.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff b/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff new file mode 100644 index 0000000..6c99575 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4062bc3a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/41038137.woff b/cmd/web/static/fonts/glyphs/woff/41038137.woff new file mode 100644 index 0000000..f82a7af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/41038137.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff b/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff new file mode 100644 index 0000000..871d622 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4129e2ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/41692e5f.woff b/cmd/web/static/fonts/glyphs/woff/41692e5f.woff new file mode 100644 index 0000000..023dc7a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/41692e5f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff b/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff new file mode 100644 index 0000000..4db62da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/41e7e67b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/42130fd7.woff b/cmd/web/static/fonts/glyphs/woff/42130fd7.woff new file mode 100644 index 0000000..76d0da5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/42130fd7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4259b075.woff b/cmd/web/static/fonts/glyphs/woff/4259b075.woff new file mode 100644 index 0000000..f3399da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4259b075.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/430cca2f.woff b/cmd/web/static/fonts/glyphs/woff/430cca2f.woff new file mode 100644 index 0000000..5aa8eda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/430cca2f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4321166d.woff b/cmd/web/static/fonts/glyphs/woff/4321166d.woff new file mode 100644 index 0000000..334029a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4321166d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/43664073.woff b/cmd/web/static/fonts/glyphs/woff/43664073.woff new file mode 100644 index 0000000..2648c98 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/43664073.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff b/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff new file mode 100644 index 0000000..0b3abcb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/439e5c3d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4477f406.woff b/cmd/web/static/fonts/glyphs/woff/4477f406.woff new file mode 100644 index 0000000..11de556 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4477f406.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/455032d0.woff b/cmd/web/static/fonts/glyphs/woff/455032d0.woff new file mode 100644 index 0000000..110c4b8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/455032d0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff b/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff new file mode 100644 index 0000000..d3f91a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/45a8e7e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff b/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff new file mode 100644 index 0000000..0ff5985 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/462ea6a3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/463c644c.woff b/cmd/web/static/fonts/glyphs/woff/463c644c.woff new file mode 100644 index 0000000..696ad36 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/463c644c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/46a505fd.woff b/cmd/web/static/fonts/glyphs/woff/46a505fd.woff new file mode 100644 index 0000000..4d4738a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/46a505fd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/47413c16.woff b/cmd/web/static/fonts/glyphs/woff/47413c16.woff new file mode 100644 index 0000000..4a73943 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/47413c16.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff b/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff new file mode 100644 index 0000000..8ddbc16 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/478bc2f3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff b/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff new file mode 100644 index 0000000..6ba9257 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/47f8aa49.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff b/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff new file mode 100644 index 0000000..1b08023 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/496a7c2f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff b/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff new file mode 100644 index 0000000..cf7b2fa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/49c0e6d5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff b/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff new file mode 100644 index 0000000..7aed3b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a1c35d5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff b/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff new file mode 100644 index 0000000..e1b7058 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a1c4041.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a280971.woff b/cmd/web/static/fonts/glyphs/woff/4a280971.woff new file mode 100644 index 0000000..385d9b0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a280971.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff b/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff new file mode 100644 index 0000000..40ffba0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a40a88a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a54867e.woff b/cmd/web/static/fonts/glyphs/woff/4a54867e.woff new file mode 100644 index 0000000..8d5e5cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a54867e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff b/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff new file mode 100644 index 0000000..6055b9b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a7c46ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4a849376.woff b/cmd/web/static/fonts/glyphs/woff/4a849376.woff new file mode 100644 index 0000000..8d8f563 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4a849376.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff b/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff new file mode 100644 index 0000000..7fd74a8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4ae1ce28.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff b/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff new file mode 100644 index 0000000..71e19a0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4af4ef28.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4b099001.woff b/cmd/web/static/fonts/glyphs/woff/4b099001.woff new file mode 100644 index 0000000..7c1710c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4b099001.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4d040d05.woff b/cmd/web/static/fonts/glyphs/woff/4d040d05.woff new file mode 100644 index 0000000..3c93f02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4d040d05.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff b/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff new file mode 100644 index 0000000..f6d63d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4d59c24a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff b/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff new file mode 100644 index 0000000..3b6bdcf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4d6b8b33.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4dc72635.woff b/cmd/web/static/fonts/glyphs/woff/4dc72635.woff new file mode 100644 index 0000000..9b0bb53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4dc72635.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff b/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff new file mode 100644 index 0000000..84adffb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4e10ed5b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff b/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff new file mode 100644 index 0000000..dcbbd42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4e1ac177.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff b/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff new file mode 100644 index 0000000..3e290f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4e9dce28.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff b/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff new file mode 100644 index 0000000..5defedf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4eb499b8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4ee23427.woff b/cmd/web/static/fonts/glyphs/woff/4ee23427.woff new file mode 100644 index 0000000..d79e5f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4ee23427.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff b/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff new file mode 100644 index 0000000..f4a4ec2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/4fd52c87.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/50b342a2.woff b/cmd/web/static/fonts/glyphs/woff/50b342a2.woff new file mode 100644 index 0000000..7cc57c3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/50b342a2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/50f3c095.woff b/cmd/web/static/fonts/glyphs/woff/50f3c095.woff new file mode 100644 index 0000000..f1ad874 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/50f3c095.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/511209fe.woff b/cmd/web/static/fonts/glyphs/woff/511209fe.woff new file mode 100644 index 0000000..943c8db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/511209fe.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/516cf792.woff b/cmd/web/static/fonts/glyphs/woff/516cf792.woff new file mode 100644 index 0000000..e9ffac6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/516cf792.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/51792712.woff b/cmd/web/static/fonts/glyphs/woff/51792712.woff new file mode 100644 index 0000000..101a417 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/51792712.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff b/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff new file mode 100644 index 0000000..b3089a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/51a7c9cb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff b/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff new file mode 100644 index 0000000..341487b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/51a9fa09.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/520274a8.woff b/cmd/web/static/fonts/glyphs/woff/520274a8.woff new file mode 100644 index 0000000..a7fba1e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/520274a8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/525958c5.woff b/cmd/web/static/fonts/glyphs/woff/525958c5.woff new file mode 100644 index 0000000..6b4b581 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/525958c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff b/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff new file mode 100644 index 0000000..95fcf92 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/52b1caf8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/52d65af9.woff b/cmd/web/static/fonts/glyphs/woff/52d65af9.woff new file mode 100644 index 0000000..5450a33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/52d65af9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5330b47e.woff b/cmd/web/static/fonts/glyphs/woff/5330b47e.woff new file mode 100644 index 0000000..16b5491 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5330b47e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/53605668.woff b/cmd/web/static/fonts/glyphs/woff/53605668.woff new file mode 100644 index 0000000..d53e198 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/53605668.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff b/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff new file mode 100644 index 0000000..7767fa8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/53e7de8b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5454be1e.woff b/cmd/web/static/fonts/glyphs/woff/5454be1e.woff new file mode 100644 index 0000000..64550c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5454be1e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/54940801.woff b/cmd/web/static/fonts/glyphs/woff/54940801.woff new file mode 100644 index 0000000..81cbb9d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/54940801.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5496b078.woff b/cmd/web/static/fonts/glyphs/woff/5496b078.woff new file mode 100644 index 0000000..ad0b91b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5496b078.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/55048901.woff b/cmd/web/static/fonts/glyphs/woff/55048901.woff new file mode 100644 index 0000000..ffc11bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/55048901.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/55092daa.woff b/cmd/web/static/fonts/glyphs/woff/55092daa.woff new file mode 100644 index 0000000..9e97fb1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/55092daa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/565212e9.woff b/cmd/web/static/fonts/glyphs/woff/565212e9.woff new file mode 100644 index 0000000..5e8a773 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/565212e9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/56521359.woff b/cmd/web/static/fonts/glyphs/woff/56521359.woff new file mode 100644 index 0000000..96d770a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/56521359.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/56652a37.woff b/cmd/web/static/fonts/glyphs/woff/56652a37.woff new file mode 100644 index 0000000..1bdfa2a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/56652a37.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5685167b.woff b/cmd/web/static/fonts/glyphs/woff/5685167b.woff new file mode 100644 index 0000000..6dfe7ac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5685167b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff b/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff new file mode 100644 index 0000000..a23c68d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/56c47c5a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff b/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff new file mode 100644 index 0000000..3feecdc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/56ed6f41.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/576582f8.woff b/cmd/web/static/fonts/glyphs/woff/576582f8.woff new file mode 100644 index 0000000..703f79b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/576582f8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/578f348a.woff b/cmd/web/static/fonts/glyphs/woff/578f348a.woff new file mode 100644 index 0000000..db97e08 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/578f348a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5798f31f.woff b/cmd/web/static/fonts/glyphs/woff/5798f31f.woff new file mode 100644 index 0000000..aa81c0a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5798f31f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/57c37525.woff b/cmd/web/static/fonts/glyphs/woff/57c37525.woff new file mode 100644 index 0000000..1f807f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/57c37525.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/57dd141e.woff b/cmd/web/static/fonts/glyphs/woff/57dd141e.woff new file mode 100644 index 0000000..89d3158 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/57dd141e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff b/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff new file mode 100644 index 0000000..66af43a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/57eb30ea.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/580961bd.woff b/cmd/web/static/fonts/glyphs/woff/580961bd.woff new file mode 100644 index 0000000..7f41b18 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/580961bd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/58c58e95.woff b/cmd/web/static/fonts/glyphs/woff/58c58e95.woff new file mode 100644 index 0000000..23b2066 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/58c58e95.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff b/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff new file mode 100644 index 0000000..436ee8e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5922a1ce.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/59835a05.woff b/cmd/web/static/fonts/glyphs/woff/59835a05.woff new file mode 100644 index 0000000..9656d48 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/59835a05.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff b/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff new file mode 100644 index 0000000..eda463b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/59d1acbe.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff b/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff new file mode 100644 index 0000000..4409d78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5b5bda30.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff b/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff new file mode 100644 index 0000000..97bd1b7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5b78e2cb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5ba710db.woff b/cmd/web/static/fonts/glyphs/woff/5ba710db.woff new file mode 100644 index 0000000..9fdd337 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5ba710db.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff b/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff new file mode 100644 index 0000000..9911072 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5bdeb600.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff b/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff new file mode 100644 index 0000000..19a7260 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5d77f6cd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff b/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff new file mode 100644 index 0000000..f17e337 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5d9d090a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff b/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff new file mode 100644 index 0000000..dcd1057 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5e0938cb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff b/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff new file mode 100644 index 0000000..e6e8e25 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5f1cfaf4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/5f3272da.woff b/cmd/web/static/fonts/glyphs/woff/5f3272da.woff new file mode 100644 index 0000000..2239cff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/5f3272da.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/604eb358.woff b/cmd/web/static/fonts/glyphs/woff/604eb358.woff new file mode 100644 index 0000000..88588a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/604eb358.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6065bb77.woff b/cmd/web/static/fonts/glyphs/woff/6065bb77.woff new file mode 100644 index 0000000..8c93e07 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6065bb77.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6166611f.woff b/cmd/web/static/fonts/glyphs/woff/6166611f.woff new file mode 100644 index 0000000..c88e582 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6166611f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/616d19f1.woff b/cmd/web/static/fonts/glyphs/woff/616d19f1.woff new file mode 100644 index 0000000..0a9d5e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/616d19f1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61965d02.woff b/cmd/web/static/fonts/glyphs/woff/61965d02.woff new file mode 100644 index 0000000..0b4d0f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61965d02.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/619e1843.woff b/cmd/web/static/fonts/glyphs/woff/619e1843.woff new file mode 100644 index 0000000..32d19fc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/619e1843.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61b21f65.woff b/cmd/web/static/fonts/glyphs/woff/61b21f65.woff new file mode 100644 index 0000000..990ada5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61b21f65.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61c4be74.woff b/cmd/web/static/fonts/glyphs/woff/61c4be74.woff new file mode 100644 index 0000000..0ed91eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61c4be74.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61d34932.woff b/cmd/web/static/fonts/glyphs/woff/61d34932.woff new file mode 100644 index 0000000..9a54e38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61d34932.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61e075b5.woff b/cmd/web/static/fonts/glyphs/woff/61e075b5.woff new file mode 100644 index 0000000..c7d8090 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61e075b5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff b/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff new file mode 100644 index 0000000..636fbc4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61e4ec60.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/61fed715.woff b/cmd/web/static/fonts/glyphs/woff/61fed715.woff new file mode 100644 index 0000000..29aa623 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/61fed715.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6282768c.woff b/cmd/web/static/fonts/glyphs/woff/6282768c.woff new file mode 100644 index 0000000..5d2c020 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6282768c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6302510b.woff b/cmd/web/static/fonts/glyphs/woff/6302510b.woff new file mode 100644 index 0000000..2e7884b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6302510b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6338d88d.woff b/cmd/web/static/fonts/glyphs/woff/6338d88d.woff new file mode 100644 index 0000000..582428c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6338d88d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff b/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff new file mode 100644 index 0000000..32d0add --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6353dd1b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/63d16b50.woff b/cmd/web/static/fonts/glyphs/woff/63d16b50.woff new file mode 100644 index 0000000..807f35e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/63d16b50.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff b/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff new file mode 100644 index 0000000..adcc709 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6435b8b4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff b/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff new file mode 100644 index 0000000..5c23fb3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/64bbaa0b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6587b420.woff b/cmd/web/static/fonts/glyphs/woff/6587b420.woff new file mode 100644 index 0000000..5a2b4c3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6587b420.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff b/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff new file mode 100644 index 0000000..86cace3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/65bc5b9b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/65ed8428.woff b/cmd/web/static/fonts/glyphs/woff/65ed8428.woff new file mode 100644 index 0000000..aed8236 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/65ed8428.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/667938fd.woff b/cmd/web/static/fonts/glyphs/woff/667938fd.woff new file mode 100644 index 0000000..64e5e53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/667938fd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6690e503.woff b/cmd/web/static/fonts/glyphs/woff/6690e503.woff new file mode 100644 index 0000000..a128ee0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6690e503.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/66a94b72.woff b/cmd/web/static/fonts/glyphs/woff/66a94b72.woff new file mode 100644 index 0000000..a228c09 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/66a94b72.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff b/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff new file mode 100644 index 0000000..5cee521 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/66ef61bc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/67036539.woff b/cmd/web/static/fonts/glyphs/woff/67036539.woff new file mode 100644 index 0000000..81f7c84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/67036539.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6748e774.woff b/cmd/web/static/fonts/glyphs/woff/6748e774.woff new file mode 100644 index 0000000..b460152 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6748e774.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/676821e3.woff b/cmd/web/static/fonts/glyphs/woff/676821e3.woff new file mode 100644 index 0000000..66969be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/676821e3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6795017c.woff b/cmd/web/static/fonts/glyphs/woff/6795017c.woff new file mode 100644 index 0000000..ffa7b5c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6795017c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/67fdb825.woff b/cmd/web/static/fonts/glyphs/woff/67fdb825.woff new file mode 100644 index 0000000..c396d97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/67fdb825.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/68243e39.woff b/cmd/web/static/fonts/glyphs/woff/68243e39.woff new file mode 100644 index 0000000..c560e1f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/68243e39.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6895132f.woff b/cmd/web/static/fonts/glyphs/woff/6895132f.woff new file mode 100644 index 0000000..9e20adc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6895132f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/68a429e1.woff b/cmd/web/static/fonts/glyphs/woff/68a429e1.woff new file mode 100644 index 0000000..27fde73 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/68a429e1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/68db64d0.woff b/cmd/web/static/fonts/glyphs/woff/68db64d0.woff new file mode 100644 index 0000000..12a00f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/68db64d0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/692990c2.woff b/cmd/web/static/fonts/glyphs/woff/692990c2.woff new file mode 100644 index 0000000..308b0a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/692990c2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff b/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff new file mode 100644 index 0000000..b8e7f6a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6961fbe3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6994c18b.woff b/cmd/web/static/fonts/glyphs/woff/6994c18b.woff new file mode 100644 index 0000000..96977cb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6994c18b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/69dbef10.woff b/cmd/web/static/fonts/glyphs/woff/69dbef10.woff new file mode 100644 index 0000000..6020c7e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/69dbef10.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff b/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff new file mode 100644 index 0000000..d1d4b74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6a4f89c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff b/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff new file mode 100644 index 0000000..8313938 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6a54a1a9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff b/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff new file mode 100644 index 0000000..d359e33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6a5cf79e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6a836616.woff b/cmd/web/static/fonts/glyphs/woff/6a836616.woff new file mode 100644 index 0000000..f0de239 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6a836616.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6aa52642.woff b/cmd/web/static/fonts/glyphs/woff/6aa52642.woff new file mode 100644 index 0000000..d61aa14 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6aa52642.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6b36c863.woff b/cmd/web/static/fonts/glyphs/woff/6b36c863.woff new file mode 100644 index 0000000..5ae44d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6b36c863.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff b/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff new file mode 100644 index 0000000..c9d0e52 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6bb79e9f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6c1508be.woff b/cmd/web/static/fonts/glyphs/woff/6c1508be.woff new file mode 100644 index 0000000..b5ca5d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6c1508be.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6c187b99.woff b/cmd/web/static/fonts/glyphs/woff/6c187b99.woff new file mode 100644 index 0000000..828ee75 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6c187b99.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff b/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff new file mode 100644 index 0000000..9e80c60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6cf59e55.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff b/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff new file mode 100644 index 0000000..6eb9023 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6cf5db04.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff b/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff new file mode 100644 index 0000000..4f567c1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6d4a4c73.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6da3182a.woff b/cmd/web/static/fonts/glyphs/woff/6da3182a.woff new file mode 100644 index 0000000..0073234 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6da3182a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff b/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff new file mode 100644 index 0000000..038e104 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6db9cbfa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff b/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff new file mode 100644 index 0000000..6dca226 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6dd1f0c3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff b/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff new file mode 100644 index 0000000..f910105 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6e131b1a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff b/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff new file mode 100644 index 0000000..5adec51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6e3568e1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff b/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff new file mode 100644 index 0000000..0ecaefd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6e8af6a3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff b/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff new file mode 100644 index 0000000..2262088 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6ec735fe.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff b/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff new file mode 100644 index 0000000..38c69b9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/6ff07dde.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/700a244d.woff b/cmd/web/static/fonts/glyphs/woff/700a244d.woff new file mode 100644 index 0000000..f871832 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/700a244d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/700b8efe.woff b/cmd/web/static/fonts/glyphs/woff/700b8efe.woff new file mode 100644 index 0000000..01c26b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/700b8efe.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/70159625.woff b/cmd/web/static/fonts/glyphs/woff/70159625.woff new file mode 100644 index 0000000..9f4596a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/70159625.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/703d038d.woff b/cmd/web/static/fonts/glyphs/woff/703d038d.woff new file mode 100644 index 0000000..00106ef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/703d038d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/70a458c9.woff b/cmd/web/static/fonts/glyphs/woff/70a458c9.woff new file mode 100644 index 0000000..b77bf11 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/70a458c9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff b/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff new file mode 100644 index 0000000..738e38b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/70ce9c46.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff b/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff new file mode 100644 index 0000000..a32472c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/70d68f2f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff b/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff new file mode 100644 index 0000000..59a155f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7188a9c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/72213980.woff b/cmd/web/static/fonts/glyphs/woff/72213980.woff new file mode 100644 index 0000000..923d6d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/72213980.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff b/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff new file mode 100644 index 0000000..362078e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7257f8e5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/72751892.woff b/cmd/web/static/fonts/glyphs/woff/72751892.woff new file mode 100644 index 0000000..cc6c902 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/72751892.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff b/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff new file mode 100644 index 0000000..e0a8e71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/72bccb9e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/73337a66.woff b/cmd/web/static/fonts/glyphs/woff/73337a66.woff new file mode 100644 index 0000000..1c486a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/73337a66.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/73363ff7.woff b/cmd/web/static/fonts/glyphs/woff/73363ff7.woff new file mode 100644 index 0000000..fa32189 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/73363ff7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7345156e.woff b/cmd/web/static/fonts/glyphs/woff/7345156e.woff new file mode 100644 index 0000000..b1133f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7345156e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/734be349.woff b/cmd/web/static/fonts/glyphs/woff/734be349.woff new file mode 100644 index 0000000..04d740d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/734be349.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/73db31ed.woff b/cmd/web/static/fonts/glyphs/woff/73db31ed.woff new file mode 100644 index 0000000..0589986 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/73db31ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/74da00d4.woff b/cmd/web/static/fonts/glyphs/woff/74da00d4.woff new file mode 100644 index 0000000..6b3d14d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/74da00d4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/74da7207.woff b/cmd/web/static/fonts/glyphs/woff/74da7207.woff new file mode 100644 index 0000000..8d8774d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/74da7207.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff b/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff new file mode 100644 index 0000000..2842509 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/74dc98f9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/75058b72.woff b/cmd/web/static/fonts/glyphs/woff/75058b72.woff new file mode 100644 index 0000000..eff21a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/75058b72.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/75577460.woff b/cmd/web/static/fonts/glyphs/woff/75577460.woff new file mode 100644 index 0000000..ee855b5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/75577460.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff b/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff new file mode 100644 index 0000000..cab2a55 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7651ec5d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/766bbd91.woff b/cmd/web/static/fonts/glyphs/woff/766bbd91.woff new file mode 100644 index 0000000..f01d035 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/766bbd91.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7692acf2.woff b/cmd/web/static/fonts/glyphs/woff/7692acf2.woff new file mode 100644 index 0000000..f8c84fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7692acf2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff b/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff new file mode 100644 index 0000000..680ceee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7708bdcb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/77d98a34.woff b/cmd/web/static/fonts/glyphs/woff/77d98a34.woff new file mode 100644 index 0000000..57655d3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/77d98a34.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/781792ac.woff b/cmd/web/static/fonts/glyphs/woff/781792ac.woff new file mode 100644 index 0000000..f825040 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/781792ac.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7824402e.woff b/cmd/web/static/fonts/glyphs/woff/7824402e.woff new file mode 100644 index 0000000..3c07fa8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7824402e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/782774ed.woff b/cmd/web/static/fonts/glyphs/woff/782774ed.woff new file mode 100644 index 0000000..3ba7f93 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/782774ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7845e476.woff b/cmd/web/static/fonts/glyphs/woff/7845e476.woff new file mode 100644 index 0000000..d17087c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7845e476.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/78600846.woff b/cmd/web/static/fonts/glyphs/woff/78600846.woff new file mode 100644 index 0000000..39dc9e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/78600846.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/78f17a21.woff b/cmd/web/static/fonts/glyphs/woff/78f17a21.woff new file mode 100644 index 0000000..3a88605 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/78f17a21.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff b/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff new file mode 100644 index 0000000..8a02519 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7909aeb7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/793b5687.woff b/cmd/web/static/fonts/glyphs/woff/793b5687.woff new file mode 100644 index 0000000..c5118cb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/793b5687.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/79fefc18.woff b/cmd/web/static/fonts/glyphs/woff/79fefc18.woff new file mode 100644 index 0000000..00116bd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/79fefc18.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7add0458.woff b/cmd/web/static/fonts/glyphs/woff/7add0458.woff new file mode 100644 index 0000000..876ea3c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7add0458.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7b978459.woff b/cmd/web/static/fonts/glyphs/woff/7b978459.woff new file mode 100644 index 0000000..0503add --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7b978459.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff b/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff new file mode 100644 index 0000000..a91ae1d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7bd1e500.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff b/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff new file mode 100644 index 0000000..41fe348 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7c28d0b9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff b/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff new file mode 100644 index 0000000..3129fec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7c37a4d6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff b/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff new file mode 100644 index 0000000..f92cd3d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7c77a98a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff b/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff new file mode 100644 index 0000000..e0a9be2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7ca46b25.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff b/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff new file mode 100644 index 0000000..5965a2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7d67a50f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7d68324f.woff b/cmd/web/static/fonts/glyphs/woff/7d68324f.woff new file mode 100644 index 0000000..ec471c8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7d68324f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff b/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff new file mode 100644 index 0000000..e7dc07e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7d8ef620.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7dd88093.woff b/cmd/web/static/fonts/glyphs/woff/7dd88093.woff new file mode 100644 index 0000000..1fdfcf2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7dd88093.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff b/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff new file mode 100644 index 0000000..a5d4919 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7e2c66dd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff b/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff new file mode 100644 index 0000000..75de908 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7e86b04d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff b/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff new file mode 100644 index 0000000..36c9d2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7ee937ee.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff b/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff new file mode 100644 index 0000000..3a4d09f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7f3c219c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff b/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff new file mode 100644 index 0000000..3948c6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7f4ff157.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff b/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff new file mode 100644 index 0000000..b95a922 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7faba1e2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff b/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff new file mode 100644 index 0000000..5a68cb1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/7fc2dce7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/80160b96.woff b/cmd/web/static/fonts/glyphs/woff/80160b96.woff new file mode 100644 index 0000000..2b74b9a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/80160b96.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff b/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff new file mode 100644 index 0000000..36cc912 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8021a1fc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/80629e16.woff b/cmd/web/static/fonts/glyphs/woff/80629e16.woff new file mode 100644 index 0000000..f18adcc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/80629e16.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff b/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff new file mode 100644 index 0000000..8488d86 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/808ad3a7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8179876c.woff b/cmd/web/static/fonts/glyphs/woff/8179876c.woff new file mode 100644 index 0000000..85511c9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8179876c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff b/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff new file mode 100644 index 0000000..c03f1c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/817d2a0a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff b/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff new file mode 100644 index 0000000..58a1246 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/81c6c9c0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/81e03745.woff b/cmd/web/static/fonts/glyphs/woff/81e03745.woff new file mode 100644 index 0000000..81a12e2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/81e03745.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8216b752.woff b/cmd/web/static/fonts/glyphs/woff/8216b752.woff new file mode 100644 index 0000000..6ae72f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8216b752.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/825014e6.woff b/cmd/web/static/fonts/glyphs/woff/825014e6.woff new file mode 100644 index 0000000..eb74e19 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/825014e6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/836758e3.woff b/cmd/web/static/fonts/glyphs/woff/836758e3.woff new file mode 100644 index 0000000..7e0e4ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/836758e3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8377e39a.woff b/cmd/web/static/fonts/glyphs/woff/8377e39a.woff new file mode 100644 index 0000000..9ab292a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8377e39a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/839981ee.woff b/cmd/web/static/fonts/glyphs/woff/839981ee.woff new file mode 100644 index 0000000..614de22 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/839981ee.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff b/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff new file mode 100644 index 0000000..2ea128b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/83bd70cd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff b/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff new file mode 100644 index 0000000..7c99ffe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/83f03b1d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/840f090f.woff b/cmd/web/static/fonts/glyphs/woff/840f090f.woff new file mode 100644 index 0000000..3926a53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/840f090f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/842ec06d.woff b/cmd/web/static/fonts/glyphs/woff/842ec06d.woff new file mode 100644 index 0000000..d295da4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/842ec06d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/84aca33c.woff b/cmd/web/static/fonts/glyphs/woff/84aca33c.woff new file mode 100644 index 0000000..1023bdf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/84aca33c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/854811f2.woff b/cmd/web/static/fonts/glyphs/woff/854811f2.woff new file mode 100644 index 0000000..023cf97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/854811f2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff b/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff new file mode 100644 index 0000000..2ec21c3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/85a57a2a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff b/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff new file mode 100644 index 0000000..87bf2c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/85b9ab95.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/860a7588.woff b/cmd/web/static/fonts/glyphs/woff/860a7588.woff new file mode 100644 index 0000000..bdc49ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/860a7588.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/862543ec.woff b/cmd/web/static/fonts/glyphs/woff/862543ec.woff new file mode 100644 index 0000000..2ffac6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/862543ec.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff b/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff new file mode 100644 index 0000000..81f0e93 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8625f0eb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff b/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff new file mode 100644 index 0000000..85c2efa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/86d4d2fb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/86e445ff.woff b/cmd/web/static/fonts/glyphs/woff/86e445ff.woff new file mode 100644 index 0000000..3b2060c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/86e445ff.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/871f2951.woff b/cmd/web/static/fonts/glyphs/woff/871f2951.woff new file mode 100644 index 0000000..85fc0c3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/871f2951.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/87626b68.woff b/cmd/web/static/fonts/glyphs/woff/87626b68.woff new file mode 100644 index 0000000..7888513 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/87626b68.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8796b453.woff b/cmd/web/static/fonts/glyphs/woff/8796b453.woff new file mode 100644 index 0000000..06b5f6a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8796b453.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff b/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff new file mode 100644 index 0000000..3807947 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/87dda7cc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/882182c1.woff b/cmd/web/static/fonts/glyphs/woff/882182c1.woff new file mode 100644 index 0000000..a96215a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/882182c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8827eb24.woff b/cmd/web/static/fonts/glyphs/woff/8827eb24.woff new file mode 100644 index 0000000..e6f10e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8827eb24.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/888412e6.woff b/cmd/web/static/fonts/glyphs/woff/888412e6.woff new file mode 100644 index 0000000..2fb42ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/888412e6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/894bfc80.woff b/cmd/web/static/fonts/glyphs/woff/894bfc80.woff new file mode 100644 index 0000000..ee9c42f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/894bfc80.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/896bcc00.woff b/cmd/web/static/fonts/glyphs/woff/896bcc00.woff new file mode 100644 index 0000000..1398479 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/896bcc00.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/899e83fa.woff b/cmd/web/static/fonts/glyphs/woff/899e83fa.woff new file mode 100644 index 0000000..37bee93 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/899e83fa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff b/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff new file mode 100644 index 0000000..9ff9dd3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/89eb94d2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff b/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff new file mode 100644 index 0000000..5678f3c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8a52dabb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff b/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff new file mode 100644 index 0000000..da6a054 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8aa66ff2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff b/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff new file mode 100644 index 0000000..8584dfd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8aacdf16.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff b/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff new file mode 100644 index 0000000..ee785a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8b45a38b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8b604615.woff b/cmd/web/static/fonts/glyphs/woff/8b604615.woff new file mode 100644 index 0000000..20214cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8b604615.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff b/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff new file mode 100644 index 0000000..f97b64b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8ba1a228.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff b/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff new file mode 100644 index 0000000..a838d7b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8beb9dac.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff b/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff new file mode 100644 index 0000000..fb485ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8befb6ca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff b/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff new file mode 100644 index 0000000..6038723 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8c60c66a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8c610c58.woff b/cmd/web/static/fonts/glyphs/woff/8c610c58.woff new file mode 100644 index 0000000..a10e413 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8c610c58.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff b/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff new file mode 100644 index 0000000..65decf5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8c7e5269.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff b/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff new file mode 100644 index 0000000..31a2714 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8cd085fd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff b/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff new file mode 100644 index 0000000..11aad0b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8d40bc1f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff b/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff new file mode 100644 index 0000000..da55e91 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8d4d7cd2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff b/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff new file mode 100644 index 0000000..e9e521e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8f3601cc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff b/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff new file mode 100644 index 0000000..84bd52c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/8f9646bf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/900affc9.woff b/cmd/web/static/fonts/glyphs/woff/900affc9.woff new file mode 100644 index 0000000..e73e56a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/900affc9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9046047a.woff b/cmd/web/static/fonts/glyphs/woff/9046047a.woff new file mode 100644 index 0000000..92cd433 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9046047a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/907dea52.woff b/cmd/web/static/fonts/glyphs/woff/907dea52.woff new file mode 100644 index 0000000..9d1b0b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/907dea52.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/91c7605d.woff b/cmd/web/static/fonts/glyphs/woff/91c7605d.woff new file mode 100644 index 0000000..d621080 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/91c7605d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff b/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff new file mode 100644 index 0000000..c78eba4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/91d96ddb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/91e6882a.woff b/cmd/web/static/fonts/glyphs/woff/91e6882a.woff new file mode 100644 index 0000000..9f1acd5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/91e6882a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/928b86d7.woff b/cmd/web/static/fonts/glyphs/woff/928b86d7.woff new file mode 100644 index 0000000..bf3cb06 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/928b86d7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/92b634cd.woff b/cmd/web/static/fonts/glyphs/woff/92b634cd.woff new file mode 100644 index 0000000..2a8c54a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/92b634cd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/935170dd.woff b/cmd/web/static/fonts/glyphs/woff/935170dd.woff new file mode 100644 index 0000000..88aaadf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/935170dd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9352bab8.woff b/cmd/web/static/fonts/glyphs/woff/9352bab8.woff new file mode 100644 index 0000000..6d5250c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9352bab8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9375b000.woff b/cmd/web/static/fonts/glyphs/woff/9375b000.woff new file mode 100644 index 0000000..358d550 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9375b000.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9393e70c.woff b/cmd/web/static/fonts/glyphs/woff/9393e70c.woff new file mode 100644 index 0000000..ee85b10 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9393e70c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/93b56efb.woff b/cmd/web/static/fonts/glyphs/woff/93b56efb.woff new file mode 100644 index 0000000..ff25fc6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/93b56efb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/944650cf.woff b/cmd/web/static/fonts/glyphs/woff/944650cf.woff new file mode 100644 index 0000000..98106f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/944650cf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/94531f1b.woff b/cmd/web/static/fonts/glyphs/woff/94531f1b.woff new file mode 100644 index 0000000..c052b46 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/94531f1b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff b/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff new file mode 100644 index 0000000..8446792 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/948b9f9b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff b/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff new file mode 100644 index 0000000..ce792ff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/94bb9a0a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/94c87c19.woff b/cmd/web/static/fonts/glyphs/woff/94c87c19.woff new file mode 100644 index 0000000..e1de4fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/94c87c19.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/94ee3537.woff b/cmd/web/static/fonts/glyphs/woff/94ee3537.woff new file mode 100644 index 0000000..9150f77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/94ee3537.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/95114a7a.woff b/cmd/web/static/fonts/glyphs/woff/95114a7a.woff new file mode 100644 index 0000000..30f2769 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/95114a7a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9518b144.woff b/cmd/web/static/fonts/glyphs/woff/9518b144.woff new file mode 100644 index 0000000..51210b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9518b144.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9554c428.woff b/cmd/web/static/fonts/glyphs/woff/9554c428.woff new file mode 100644 index 0000000..131c352 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9554c428.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/957ea602.woff b/cmd/web/static/fonts/glyphs/woff/957ea602.woff new file mode 100644 index 0000000..758ac90 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/957ea602.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff b/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff new file mode 100644 index 0000000..a8e5355 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/95ce85b0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9605447e.woff b/cmd/web/static/fonts/glyphs/woff/9605447e.woff new file mode 100644 index 0000000..68ad3ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9605447e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/971dbc94.woff b/cmd/web/static/fonts/glyphs/woff/971dbc94.woff new file mode 100644 index 0000000..65d8803 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/971dbc94.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9730509c.woff b/cmd/web/static/fonts/glyphs/woff/9730509c.woff new file mode 100644 index 0000000..29b29e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9730509c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/97b82bce.woff b/cmd/web/static/fonts/glyphs/woff/97b82bce.woff new file mode 100644 index 0000000..c9ac8d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/97b82bce.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff b/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff new file mode 100644 index 0000000..6c277d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/97ba67f1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff b/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff new file mode 100644 index 0000000..d363a1d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/97e6e2a1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/98117c28.woff b/cmd/web/static/fonts/glyphs/woff/98117c28.woff new file mode 100644 index 0000000..fcdda68 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/98117c28.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/982f3edc.woff b/cmd/web/static/fonts/glyphs/woff/982f3edc.woff new file mode 100644 index 0000000..d8abdf2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/982f3edc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/98357202.woff b/cmd/web/static/fonts/glyphs/woff/98357202.woff new file mode 100644 index 0000000..e974cf1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/98357202.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9850be29.woff b/cmd/web/static/fonts/glyphs/woff/9850be29.woff new file mode 100644 index 0000000..c2beef5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9850be29.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9899cecb.woff b/cmd/web/static/fonts/glyphs/woff/9899cecb.woff new file mode 100644 index 0000000..1564a1a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9899cecb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff b/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff new file mode 100644 index 0000000..76188c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/989ad0a9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff b/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff new file mode 100644 index 0000000..969fae0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/98a0b6a0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff b/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff new file mode 100644 index 0000000..bd513a0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/993b5d5e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff b/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff new file mode 100644 index 0000000..b6c082d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/99a3e60b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/99b23887.woff b/cmd/web/static/fonts/glyphs/woff/99b23887.woff new file mode 100644 index 0000000..8e64840 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/99b23887.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff b/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff new file mode 100644 index 0000000..0c76f4c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9a7fb4ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff b/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff new file mode 100644 index 0000000..dcaa398 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9a9a307d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff b/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff new file mode 100644 index 0000000..a453b31 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9b8448e1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff b/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff new file mode 100644 index 0000000..b250b78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9b9375b4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9bb36328.woff b/cmd/web/static/fonts/glyphs/woff/9bb36328.woff new file mode 100644 index 0000000..4c94203 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9bb36328.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9be136c3.woff b/cmd/web/static/fonts/glyphs/woff/9be136c3.woff new file mode 100644 index 0000000..2e45942 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9be136c3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9c739b13.woff b/cmd/web/static/fonts/glyphs/woff/9c739b13.woff new file mode 100644 index 0000000..53d3644 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9c739b13.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff b/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff new file mode 100644 index 0000000..316f171 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9ccb9c44.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff b/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff new file mode 100644 index 0000000..1ed6716 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9ced0dd7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff b/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff new file mode 100644 index 0000000..f994ad0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9d1ecd98.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff b/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff new file mode 100644 index 0000000..7d0f130 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9e0089cc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9e3addab.woff b/cmd/web/static/fonts/glyphs/woff/9e3addab.woff new file mode 100644 index 0000000..5161b47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9e3addab.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9eb86178.woff b/cmd/web/static/fonts/glyphs/woff/9eb86178.woff new file mode 100644 index 0000000..276374a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9eb86178.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9f00be36.woff b/cmd/web/static/fonts/glyphs/woff/9f00be36.woff new file mode 100644 index 0000000..1171e04 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9f00be36.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9f205e65.woff b/cmd/web/static/fonts/glyphs/woff/9f205e65.woff new file mode 100644 index 0000000..87ceea7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9f205e65.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff b/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff new file mode 100644 index 0000000..bf15851 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/9f3909aa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff b/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff new file mode 100644 index 0000000..adb9e24 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a0183c8e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a04998d6.woff b/cmd/web/static/fonts/glyphs/woff/a04998d6.woff new file mode 100644 index 0000000..8bc1ad0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a04998d6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff b/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff new file mode 100644 index 0000000..1e5f1ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a0a347f1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a0e42042.woff b/cmd/web/static/fonts/glyphs/woff/a0e42042.woff new file mode 100644 index 0000000..0c33bfc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a0e42042.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff b/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff new file mode 100644 index 0000000..8da041c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a0ecbb18.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a1b08642.woff b/cmd/web/static/fonts/glyphs/woff/a1b08642.woff new file mode 100644 index 0000000..24f631c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a1b08642.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff b/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff new file mode 100644 index 0000000..31159c9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a1f0f211.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff b/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff new file mode 100644 index 0000000..9b83f53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a1fbcdf7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a22847ed.woff b/cmd/web/static/fonts/glyphs/woff/a22847ed.woff new file mode 100644 index 0000000..3d59446 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a22847ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a36d6959.woff b/cmd/web/static/fonts/glyphs/woff/a36d6959.woff new file mode 100644 index 0000000..0c87d81 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a36d6959.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a3805f14.woff b/cmd/web/static/fonts/glyphs/woff/a3805f14.woff new file mode 100644 index 0000000..56ac3f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a3805f14.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a45832ed.woff b/cmd/web/static/fonts/glyphs/woff/a45832ed.woff new file mode 100644 index 0000000..10038e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a45832ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a4900e86.woff b/cmd/web/static/fonts/glyphs/woff/a4900e86.woff new file mode 100644 index 0000000..c079a81 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a4900e86.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff b/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff new file mode 100644 index 0000000..feafa75 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a4b9f2e5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a4caee91.woff b/cmd/web/static/fonts/glyphs/woff/a4caee91.woff new file mode 100644 index 0000000..1a4684d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a4caee91.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff b/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff new file mode 100644 index 0000000..b06e900 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a52bb57c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a54fe823.woff b/cmd/web/static/fonts/glyphs/woff/a54fe823.woff new file mode 100644 index 0000000..da41fc4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a54fe823.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a564f20f.woff b/cmd/web/static/fonts/glyphs/woff/a564f20f.woff new file mode 100644 index 0000000..efcb78b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a564f20f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff b/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff new file mode 100644 index 0000000..ec0edeb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a5ee2945.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff b/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff new file mode 100644 index 0000000..1731557 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a6af89bd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff b/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff new file mode 100644 index 0000000..6702b02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a73e53ed.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a7644d09.woff b/cmd/web/static/fonts/glyphs/woff/a7644d09.woff new file mode 100644 index 0000000..431f5a8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a7644d09.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a851f472.woff b/cmd/web/static/fonts/glyphs/woff/a851f472.woff new file mode 100644 index 0000000..bef5384 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a851f472.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a87ed935.woff b/cmd/web/static/fonts/glyphs/woff/a87ed935.woff new file mode 100644 index 0000000..d83598a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a87ed935.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a97d857e.woff b/cmd/web/static/fonts/glyphs/woff/a97d857e.woff new file mode 100644 index 0000000..704d892 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a97d857e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff b/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff new file mode 100644 index 0000000..b025ca8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a9a9d798.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/a9daf068.woff b/cmd/web/static/fonts/glyphs/woff/a9daf068.woff new file mode 100644 index 0000000..eabefb1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/a9daf068.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff b/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff new file mode 100644 index 0000000..c7d2fd9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/aa0b1cf4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/aa227416.woff b/cmd/web/static/fonts/glyphs/woff/aa227416.woff new file mode 100644 index 0000000..193b082 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/aa227416.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff b/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff new file mode 100644 index 0000000..0258a3d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/aa6c0f8a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/aae08744.woff b/cmd/web/static/fonts/glyphs/woff/aae08744.woff new file mode 100644 index 0000000..2e367cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/aae08744.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff b/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff new file mode 100644 index 0000000..af117d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ab5759c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff b/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff new file mode 100644 index 0000000..41aa4ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ab8056ea.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff b/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff new file mode 100644 index 0000000..2b1dcdc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ac2048ca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff b/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff new file mode 100644 index 0000000..b7abceb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ac31ca34.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff b/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff new file mode 100644 index 0000000..981754b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ac9383e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/accd5a71.woff b/cmd/web/static/fonts/glyphs/woff/accd5a71.woff new file mode 100644 index 0000000..d18eeb7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/accd5a71.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff b/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff new file mode 100644 index 0000000..6cd738c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ad2eb64b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff b/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff new file mode 100644 index 0000000..55288ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ad451fc0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff b/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff new file mode 100644 index 0000000..e8aa9f8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ad5bcd8d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff b/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff new file mode 100644 index 0000000..415e9bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ad6d5849.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff b/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff new file mode 100644 index 0000000..2a50850 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ae3b63af.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff b/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff new file mode 100644 index 0000000..badd68b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ae453c2f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ae943640.woff b/cmd/web/static/fonts/glyphs/woff/ae943640.woff new file mode 100644 index 0000000..5d65349 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ae943640.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/af60aa55.woff b/cmd/web/static/fonts/glyphs/woff/af60aa55.woff new file mode 100644 index 0000000..5a3cb2f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/af60aa55.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff b/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff new file mode 100644 index 0000000..2a2fff4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/af7f0a6e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/afb6634e.woff b/cmd/web/static/fonts/glyphs/woff/afb6634e.woff new file mode 100644 index 0000000..6698245 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/afb6634e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b09f469a.woff b/cmd/web/static/fonts/glyphs/woff/b09f469a.woff new file mode 100644 index 0000000..9590aee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b09f469a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff b/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff new file mode 100644 index 0000000..01bcb49 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b0ad53ea.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff b/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff new file mode 100644 index 0000000..59dc163 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b166a7c6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b1eba251.woff b/cmd/web/static/fonts/glyphs/woff/b1eba251.woff new file mode 100644 index 0000000..9a8fa24 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b1eba251.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff b/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff new file mode 100644 index 0000000..ad50718 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b25a5c47.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b295da08.woff b/cmd/web/static/fonts/glyphs/woff/b295da08.woff new file mode 100644 index 0000000..82b9158 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b295da08.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff b/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff new file mode 100644 index 0000000..b0a45b7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b29ecf6c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff b/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff new file mode 100644 index 0000000..5700668 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b2e0a125.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff b/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff new file mode 100644 index 0000000..6ddcc2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b2f15dff.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff b/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff new file mode 100644 index 0000000..bcde7cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b3273cc3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff b/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff new file mode 100644 index 0000000..c9e6a54 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b3df67d1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff b/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff new file mode 100644 index 0000000..3d9f621 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b410b0fe.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b44b2013.woff b/cmd/web/static/fonts/glyphs/woff/b44b2013.woff new file mode 100644 index 0000000..d6b9bd0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b44b2013.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b4fed649.woff b/cmd/web/static/fonts/glyphs/woff/b4fed649.woff new file mode 100644 index 0000000..4b5c3ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b4fed649.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff b/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff new file mode 100644 index 0000000..f7b395d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b524a1f5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff b/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff new file mode 100644 index 0000000..5fd9ff9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b53f50d1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b5c50661.woff b/cmd/web/static/fonts/glyphs/woff/b5c50661.woff new file mode 100644 index 0000000..7b7325d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b5c50661.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b5c60683.woff b/cmd/web/static/fonts/glyphs/woff/b5c60683.woff new file mode 100644 index 0000000..6e48102 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b5c60683.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff b/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff new file mode 100644 index 0000000..f1d6f96 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b70c5e32.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b779fc78.woff b/cmd/web/static/fonts/glyphs/woff/b779fc78.woff new file mode 100644 index 0000000..f758fed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b779fc78.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff b/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff new file mode 100644 index 0000000..0361df2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b78ccf45.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff b/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff new file mode 100644 index 0000000..15a445f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b7a172a3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff b/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff new file mode 100644 index 0000000..c56bea4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b7ecc4fc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b8276594.woff b/cmd/web/static/fonts/glyphs/woff/b8276594.woff new file mode 100644 index 0000000..5833a6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b8276594.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff b/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff new file mode 100644 index 0000000..e7d76b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b82f6a43.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b84384c5.woff b/cmd/web/static/fonts/glyphs/woff/b84384c5.woff new file mode 100644 index 0000000..8d6894b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b84384c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b853b110.woff b/cmd/web/static/fonts/glyphs/woff/b853b110.woff new file mode 100644 index 0000000..24cf03c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b853b110.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b86d565c.woff b/cmd/web/static/fonts/glyphs/woff/b86d565c.woff new file mode 100644 index 0000000..842f198 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b86d565c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b8a14959.woff b/cmd/web/static/fonts/glyphs/woff/b8a14959.woff new file mode 100644 index 0000000..12ff88a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b8a14959.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff b/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff new file mode 100644 index 0000000..8b87765 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b8f899c8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff b/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff new file mode 100644 index 0000000..a680ab8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b9507f5e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b96007b9.woff b/cmd/web/static/fonts/glyphs/woff/b96007b9.woff new file mode 100644 index 0000000..69cc15b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b96007b9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff b/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff new file mode 100644 index 0000000..68b1903 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/b9a227e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ba711105.woff b/cmd/web/static/fonts/glyphs/woff/ba711105.woff new file mode 100644 index 0000000..215b5ef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ba711105.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff b/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff new file mode 100644 index 0000000..91c2bf3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ba8d699c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff b/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff new file mode 100644 index 0000000..9dabdf8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bae4bae8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bae65807.woff b/cmd/web/static/fonts/glyphs/woff/bae65807.woff new file mode 100644 index 0000000..cc35016 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bae65807.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bb074b56.woff b/cmd/web/static/fonts/glyphs/woff/bb074b56.woff new file mode 100644 index 0000000..ea2845a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bb074b56.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff b/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff new file mode 100644 index 0000000..b880823 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bb12d8ab.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bb366587.woff b/cmd/web/static/fonts/glyphs/woff/bb366587.woff new file mode 100644 index 0000000..0ffce42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bb366587.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bb48d505.woff b/cmd/web/static/fonts/glyphs/woff/bb48d505.woff new file mode 100644 index 0000000..44286f0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bb48d505.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff b/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff new file mode 100644 index 0000000..6adbc2a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bb6c3f4f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff b/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff new file mode 100644 index 0000000..5c17c85 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bc23c05b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff b/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff new file mode 100644 index 0000000..e2a932a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bcd60da4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bd81a851.woff b/cmd/web/static/fonts/glyphs/woff/bd81a851.woff new file mode 100644 index 0000000..cc2fcbf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bd81a851.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff b/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff new file mode 100644 index 0000000..c7548a0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/be09c3ad.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff b/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff new file mode 100644 index 0000000..5a242a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/be0e8a5a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/be153f92.woff b/cmd/web/static/fonts/glyphs/woff/be153f92.woff new file mode 100644 index 0000000..11245e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/be153f92.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff b/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff new file mode 100644 index 0000000..0683214 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/be79d1c6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff b/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff new file mode 100644 index 0000000..74840d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/beaff0e5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff b/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff new file mode 100644 index 0000000..fc0bfb8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bebd5dcc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff b/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff new file mode 100644 index 0000000..b4ee5b6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bf5d7fd2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff b/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff new file mode 100644 index 0000000..e5db106 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/bfff0e1f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c035acf1.woff b/cmd/web/static/fonts/glyphs/woff/c035acf1.woff new file mode 100644 index 0000000..e29f417 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c035acf1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff b/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff new file mode 100644 index 0000000..00616b3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c08b2fca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff b/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff new file mode 100644 index 0000000..996f20f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c0b59cd5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c0becad5.woff b/cmd/web/static/fonts/glyphs/woff/c0becad5.woff new file mode 100644 index 0000000..b46ae2d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c0becad5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff b/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff new file mode 100644 index 0000000..ea5d104 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c0dc60c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff b/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff new file mode 100644 index 0000000..9f10b58 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c0ef3e5e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c1538030.woff b/cmd/web/static/fonts/glyphs/woff/c1538030.woff new file mode 100644 index 0000000..6f90967 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c1538030.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c1581e36.woff b/cmd/web/static/fonts/glyphs/woff/c1581e36.woff new file mode 100644 index 0000000..8fcdb8b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c1581e36.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff b/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff new file mode 100644 index 0000000..df1f001 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c17f2a95.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c206b69c.woff b/cmd/web/static/fonts/glyphs/woff/c206b69c.woff new file mode 100644 index 0000000..292cb8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c206b69c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff b/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff new file mode 100644 index 0000000..534a110 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c21fd5eb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c290dee9.woff b/cmd/web/static/fonts/glyphs/woff/c290dee9.woff new file mode 100644 index 0000000..f2eac73 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c290dee9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff b/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff new file mode 100644 index 0000000..63b7f98 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c3ad2575.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff b/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff new file mode 100644 index 0000000..e52536a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c3c3fe75.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff b/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff new file mode 100644 index 0000000..5840c55 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c3f23f1d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c407df2f.woff b/cmd/web/static/fonts/glyphs/woff/c407df2f.woff new file mode 100644 index 0000000..9fb5203 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c407df2f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff b/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff new file mode 100644 index 0000000..4ef73d9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c42bbfd6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff b/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff new file mode 100644 index 0000000..ed4d536 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c48a78a5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff b/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff new file mode 100644 index 0000000..8f1b424 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c579a0a6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c67c215e.woff b/cmd/web/static/fonts/glyphs/woff/c67c215e.woff new file mode 100644 index 0000000..a899d1b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c67c215e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c67e4554.woff b/cmd/web/static/fonts/glyphs/woff/c67e4554.woff new file mode 100644 index 0000000..c3eb532 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c67e4554.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff b/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff new file mode 100644 index 0000000..0ae239e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c71e8d9a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff b/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff new file mode 100644 index 0000000..be5210a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c7a8c9c1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff b/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff new file mode 100644 index 0000000..e92c277 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c7e2b3d5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c7e82146.woff b/cmd/web/static/fonts/glyphs/woff/c7e82146.woff new file mode 100644 index 0000000..f1159f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c7e82146.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff b/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff new file mode 100644 index 0000000..7079708 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c7e8635b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c8e64019.woff b/cmd/web/static/fonts/glyphs/woff/c8e64019.woff new file mode 100644 index 0000000..6b9c38d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c8e64019.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c931b176.woff b/cmd/web/static/fonts/glyphs/woff/c931b176.woff new file mode 100644 index 0000000..1366b8e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c931b176.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9480f66.woff b/cmd/web/static/fonts/glyphs/woff/c9480f66.woff new file mode 100644 index 0000000..5331522 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9480f66.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9797180.woff b/cmd/web/static/fonts/glyphs/woff/c9797180.woff new file mode 100644 index 0000000..7e9a736 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9797180.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff b/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff new file mode 100644 index 0000000..455ca53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9a00be7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff b/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff new file mode 100644 index 0000000..2a72bb9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9b3ada5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff b/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff new file mode 100644 index 0000000..1eaef53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9b5076d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff b/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff new file mode 100644 index 0000000..db2ed87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/c9ede1cf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff b/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff new file mode 100644 index 0000000..a0ce8ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ca2be6c9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff b/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff new file mode 100644 index 0000000..9b8269d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cb2908e9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff b/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff new file mode 100644 index 0000000..220779b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cba0a9ca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff b/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff new file mode 100644 index 0000000..d92066d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cbac8aaa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ccba5701.woff b/cmd/web/static/fonts/glyphs/woff/ccba5701.woff new file mode 100644 index 0000000..d9f657f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ccba5701.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ccc16298.woff b/cmd/web/static/fonts/glyphs/woff/ccc16298.woff new file mode 100644 index 0000000..fe230a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ccc16298.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cce1425f.woff b/cmd/web/static/fonts/glyphs/woff/cce1425f.woff new file mode 100644 index 0000000..dac62e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cce1425f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff b/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff new file mode 100644 index 0000000..e2881ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cd3dc2c3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff b/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff new file mode 100644 index 0000000..1a9a4e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cd4d8f7a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cda1a566.woff b/cmd/web/static/fonts/glyphs/woff/cda1a566.woff new file mode 100644 index 0000000..061a87d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cda1a566.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff b/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff new file mode 100644 index 0000000..e913118 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cdb6b693.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cdc770af.woff b/cmd/web/static/fonts/glyphs/woff/cdc770af.woff new file mode 100644 index 0000000..f36b36b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cdc770af.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff b/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff new file mode 100644 index 0000000..f787836 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cdf1c3ef.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ce715050.woff b/cmd/web/static/fonts/glyphs/woff/ce715050.woff new file mode 100644 index 0000000..4f9d5dc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ce715050.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff b/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff new file mode 100644 index 0000000..41224a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ce9eb004.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff b/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff new file mode 100644 index 0000000..510bed8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cebaa24b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff b/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff new file mode 100644 index 0000000..e961c0e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf02d8e2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf248e93.woff b/cmd/web/static/fonts/glyphs/woff/cf248e93.woff new file mode 100644 index 0000000..0e35144 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf248e93.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf295f73.woff b/cmd/web/static/fonts/glyphs/woff/cf295f73.woff new file mode 100644 index 0000000..74f5a92 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf295f73.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff b/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff new file mode 100644 index 0000000..380801b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf2a0a85.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff b/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff new file mode 100644 index 0000000..96a03f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf6d6f30.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff b/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff new file mode 100644 index 0000000..b4982e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cf9d5267.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff b/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff new file mode 100644 index 0000000..07122ac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cfa9655f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff b/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff new file mode 100644 index 0000000..037053f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/cff6eea9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0342038.woff b/cmd/web/static/fonts/glyphs/woff/d0342038.woff new file mode 100644 index 0000000..d82f42d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0342038.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff b/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff new file mode 100644 index 0000000..9bcdce8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d09b48b1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff b/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff new file mode 100644 index 0000000..4789fc2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0a546a6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff b/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff new file mode 100644 index 0000000..011babd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0cecf4f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff b/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff new file mode 100644 index 0000000..36fcc0e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0e625c0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff b/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff new file mode 100644 index 0000000..5e0a5f4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0f4fedd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff b/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff new file mode 100644 index 0000000..2af2857 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d0f7d102.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d108850a.woff b/cmd/web/static/fonts/glyphs/woff/d108850a.woff new file mode 100644 index 0000000..95933c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d108850a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d129485b.woff b/cmd/web/static/fonts/glyphs/woff/d129485b.woff new file mode 100644 index 0000000..7619443 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d129485b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d20bd061.woff b/cmd/web/static/fonts/glyphs/woff/d20bd061.woff new file mode 100644 index 0000000..a5f9406 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d20bd061.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d214de53.woff b/cmd/web/static/fonts/glyphs/woff/d214de53.woff new file mode 100644 index 0000000..eb18862 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d214de53.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d219fd91.woff b/cmd/web/static/fonts/glyphs/woff/d219fd91.woff new file mode 100644 index 0000000..af606c7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d219fd91.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff b/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff new file mode 100644 index 0000000..f317d71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d228d1ac.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d269bf57.woff b/cmd/web/static/fonts/glyphs/woff/d269bf57.woff new file mode 100644 index 0000000..57d3379 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d269bf57.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff b/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff new file mode 100644 index 0000000..5865aba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d2800ad0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d289b887.woff b/cmd/web/static/fonts/glyphs/woff/d289b887.woff new file mode 100644 index 0000000..90f2f86 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d289b887.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff b/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff new file mode 100644 index 0000000..a969bc3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d2c72c19.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff b/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff new file mode 100644 index 0000000..ec8f3cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d2e8e796.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff b/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff new file mode 100644 index 0000000..3255747 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d2ebd46c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff b/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff new file mode 100644 index 0000000..47d1427 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d32f8a26.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d43f6100.woff b/cmd/web/static/fonts/glyphs/woff/d43f6100.woff new file mode 100644 index 0000000..9da6383 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d43f6100.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d4a96716.woff b/cmd/web/static/fonts/glyphs/woff/d4a96716.woff new file mode 100644 index 0000000..0df2131 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d4a96716.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff b/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff new file mode 100644 index 0000000..abb5e83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d4ae9299.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff b/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff new file mode 100644 index 0000000..74bf781 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d4fffa4b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff b/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff new file mode 100644 index 0000000..f3cbfc0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d57e51c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d5e77211.woff b/cmd/web/static/fonts/glyphs/woff/d5e77211.woff new file mode 100644 index 0000000..d3922cb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d5e77211.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d615451a.woff b/cmd/web/static/fonts/glyphs/woff/d615451a.woff new file mode 100644 index 0000000..20a0eac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d615451a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d662c711.woff b/cmd/web/static/fonts/glyphs/woff/d662c711.woff new file mode 100644 index 0000000..52a9278 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d662c711.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff b/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff new file mode 100644 index 0000000..ecf7319 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d68c6b5a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff b/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff new file mode 100644 index 0000000..408dd0b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d6f4d6c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff b/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff new file mode 100644 index 0000000..9f3d752 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d702d8e9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d72e5642.woff b/cmd/web/static/fonts/glyphs/woff/d72e5642.woff new file mode 100644 index 0000000..91b2214 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d72e5642.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff b/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff new file mode 100644 index 0000000..38ae4a9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d741c5dd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff b/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff new file mode 100644 index 0000000..0ebd1df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d7a69b7b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff b/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff new file mode 100644 index 0000000..4064a72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d7d56ff8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff b/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff new file mode 100644 index 0000000..17b4567 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d7ecae43.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff b/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff new file mode 100644 index 0000000..57334fa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d8f20bf0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff b/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff new file mode 100644 index 0000000..aa77765 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d8f26b1e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d9002330.woff b/cmd/web/static/fonts/glyphs/woff/d9002330.woff new file mode 100644 index 0000000..bd667cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d9002330.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d97e9886.woff b/cmd/web/static/fonts/glyphs/woff/d97e9886.woff new file mode 100644 index 0000000..f7ae72d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d97e9886.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d9b31097.woff b/cmd/web/static/fonts/glyphs/woff/d9b31097.woff new file mode 100644 index 0000000..8ae78c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d9b31097.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff b/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff new file mode 100644 index 0000000..bc55826 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/d9f1f706.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/da29dda0.woff b/cmd/web/static/fonts/glyphs/woff/da29dda0.woff new file mode 100644 index 0000000..2991d6c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/da29dda0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/da46da57.woff b/cmd/web/static/fonts/glyphs/woff/da46da57.woff new file mode 100644 index 0000000..ba401e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/da46da57.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff b/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff new file mode 100644 index 0000000..3bc1ea9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/da8ef2eb.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dad2106c.woff b/cmd/web/static/fonts/glyphs/woff/dad2106c.woff new file mode 100644 index 0000000..a529b63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dad2106c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff b/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff new file mode 100644 index 0000000..d4a879a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dafd1a87.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff b/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff new file mode 100644 index 0000000..d2f367c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/db17d1b4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff b/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff new file mode 100644 index 0000000..f453c9d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/db26cd0b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff b/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff new file mode 100644 index 0000000..7e49def --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/db8e73dd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/db92c609.woff b/cmd/web/static/fonts/glyphs/woff/db92c609.woff new file mode 100644 index 0000000..cffe52b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/db92c609.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff b/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff new file mode 100644 index 0000000..faeda38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dbdc4b76.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff b/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff new file mode 100644 index 0000000..a897dde --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dbf1f527.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff b/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff new file mode 100644 index 0000000..88e9fd5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dbfd39a7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff b/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff new file mode 100644 index 0000000..b0a56a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dc1b7673.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff b/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff new file mode 100644 index 0000000..d6a47ad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dc86c2f6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff b/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff new file mode 100644 index 0000000..478b3cb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dcd33a62.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff b/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff new file mode 100644 index 0000000..47838c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dcd7c346.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dce2e772.woff b/cmd/web/static/fonts/glyphs/woff/dce2e772.woff new file mode 100644 index 0000000..fcc08fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dce2e772.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dcf87866.woff b/cmd/web/static/fonts/glyphs/woff/dcf87866.woff new file mode 100644 index 0000000..a0f630a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dcf87866.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff b/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff new file mode 100644 index 0000000..bfbf63e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dcfebe0e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff b/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff new file mode 100644 index 0000000..ae3a494 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dd10b6f4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff b/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff new file mode 100644 index 0000000..928e787 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dda67aa8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff b/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff new file mode 100644 index 0000000..0488571 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ddff0b65.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/de01f078.woff b/cmd/web/static/fonts/glyphs/woff/de01f078.woff new file mode 100644 index 0000000..e65f820 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/de01f078.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/de978ae9.woff b/cmd/web/static/fonts/glyphs/woff/de978ae9.woff new file mode 100644 index 0000000..c0c9057 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/de978ae9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff b/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff new file mode 100644 index 0000000..3aaa6a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dee08cc0.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/df01c285.woff b/cmd/web/static/fonts/glyphs/woff/df01c285.woff new file mode 100644 index 0000000..97b1769 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/df01c285.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/df2fadba.woff b/cmd/web/static/fonts/glyphs/woff/df2fadba.woff new file mode 100644 index 0000000..75a4637 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/df2fadba.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff b/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff new file mode 100644 index 0000000..e3b778c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/df6bc6bf.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/df82f44f.woff b/cmd/web/static/fonts/glyphs/woff/df82f44f.woff new file mode 100644 index 0000000..3a71ebc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/df82f44f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/df860193.woff b/cmd/web/static/fonts/glyphs/woff/df860193.woff new file mode 100644 index 0000000..20c816d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/df860193.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff b/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff new file mode 100644 index 0000000..d781345 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/dfc642b4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e036f61e.woff b/cmd/web/static/fonts/glyphs/woff/e036f61e.woff new file mode 100644 index 0000000..7d0b079 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e036f61e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff b/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff new file mode 100644 index 0000000..6e94b2e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e0436cb5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e07866a3.woff b/cmd/web/static/fonts/glyphs/woff/e07866a3.woff new file mode 100644 index 0000000..733b5b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e07866a3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff b/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff new file mode 100644 index 0000000..922237e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e094cfe4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff b/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff new file mode 100644 index 0000000..d0c5183 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e0cf68e8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e18256ba.woff b/cmd/web/static/fonts/glyphs/woff/e18256ba.woff new file mode 100644 index 0000000..7600fb4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e18256ba.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e24b4971.woff b/cmd/web/static/fonts/glyphs/woff/e24b4971.woff new file mode 100644 index 0000000..0ade661 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e24b4971.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e264079a.woff b/cmd/web/static/fonts/glyphs/woff/e264079a.woff new file mode 100644 index 0000000..4f3c1d7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e264079a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e2920962.woff b/cmd/web/static/fonts/glyphs/woff/e2920962.woff new file mode 100644 index 0000000..2164671 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e2920962.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e29e8451.woff b/cmd/web/static/fonts/glyphs/woff/e29e8451.woff new file mode 100644 index 0000000..0eb279b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e29e8451.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff b/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff new file mode 100644 index 0000000..d1b648c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e2b7f2e8.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff b/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff new file mode 100644 index 0000000..f043a87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e2cd4ea9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff b/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff new file mode 100644 index 0000000..4ce458f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e2f6544b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff b/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff new file mode 100644 index 0000000..9afc430 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e2ffe70e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff b/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff new file mode 100644 index 0000000..a0da897 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e33b2c7f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff b/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff new file mode 100644 index 0000000..edc017d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e3ae4d2d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff b/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff new file mode 100644 index 0000000..4e33273 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e3d7c442.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e49824ce.woff b/cmd/web/static/fonts/glyphs/woff/e49824ce.woff new file mode 100644 index 0000000..db1d339 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e49824ce.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff b/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff new file mode 100644 index 0000000..02de60c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e4ec2dc2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff b/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff new file mode 100644 index 0000000..362ac1f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e4f0095c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff b/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff new file mode 100644 index 0000000..92b6f7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e516e4c5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e528cde1.woff b/cmd/web/static/fonts/glyphs/woff/e528cde1.woff new file mode 100644 index 0000000..4718507 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e528cde1.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e55176f2.woff b/cmd/web/static/fonts/glyphs/woff/e55176f2.woff new file mode 100644 index 0000000..caddf05 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e55176f2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff b/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff new file mode 100644 index 0000000..ed4a6f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e5e909f3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e67af557.woff b/cmd/web/static/fonts/glyphs/woff/e67af557.woff new file mode 100644 index 0000000..d8c6f1d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e67af557.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff b/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff new file mode 100644 index 0000000..04ade06 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e6b4aab7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e7803979.woff b/cmd/web/static/fonts/glyphs/woff/e7803979.woff new file mode 100644 index 0000000..1ec8086 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e7803979.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e7aad562.woff b/cmd/web/static/fonts/glyphs/woff/e7aad562.woff new file mode 100644 index 0000000..74f027e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e7aad562.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff b/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff new file mode 100644 index 0000000..c8e48aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e7c8de5d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff b/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff new file mode 100644 index 0000000..57ff473 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e7d3044b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e83034c6.woff b/cmd/web/static/fonts/glyphs/woff/e83034c6.woff new file mode 100644 index 0000000..4208182 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e83034c6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff b/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff new file mode 100644 index 0000000..11ab3d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e8777ffa.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e8acadad.woff b/cmd/web/static/fonts/glyphs/woff/e8acadad.woff new file mode 100644 index 0000000..1ee0331 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e8acadad.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff b/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff new file mode 100644 index 0000000..432cca2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e98b08c6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff b/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff new file mode 100644 index 0000000..1124cd5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/e9b1d552.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ea17073b.woff b/cmd/web/static/fonts/glyphs/woff/ea17073b.woff new file mode 100644 index 0000000..acbbf63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ea17073b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff b/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff new file mode 100644 index 0000000..b90acf8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ea26fef6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff b/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff new file mode 100644 index 0000000..2340611 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ea8e0a1a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff b/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff new file mode 100644 index 0000000..38790bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ea915e6c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eaca633e.woff b/cmd/web/static/fonts/glyphs/woff/eaca633e.woff new file mode 100644 index 0000000..9ea8903 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eaca633e.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff b/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff new file mode 100644 index 0000000..7785a03 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eb2a76c7.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eb67386f.woff b/cmd/web/static/fonts/glyphs/woff/eb67386f.woff new file mode 100644 index 0000000..202ed9a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eb67386f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff b/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff new file mode 100644 index 0000000..6462611 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eb7c1720.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff b/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff new file mode 100644 index 0000000..ed717cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ec5a8b64.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ec62219b.woff b/cmd/web/static/fonts/glyphs/woff/ec62219b.woff new file mode 100644 index 0000000..a1892bd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ec62219b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff b/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff new file mode 100644 index 0000000..9561dd4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ec9c031f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff b/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff new file mode 100644 index 0000000..e522616 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eca1fd47.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff b/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff new file mode 100644 index 0000000..4c27557 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/eccf06e9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff b/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff new file mode 100644 index 0000000..1a875e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ecd94f38.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff b/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff new file mode 100644 index 0000000..38907fe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ed4c2c15.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff b/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff new file mode 100644 index 0000000..f44455a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ed5cf55c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/edba7c75.woff b/cmd/web/static/fonts/glyphs/woff/edba7c75.woff new file mode 100644 index 0000000..0a47518 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/edba7c75.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff b/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff new file mode 100644 index 0000000..c6a4486 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/edcb62d5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ee154cca.woff b/cmd/web/static/fonts/glyphs/woff/ee154cca.woff new file mode 100644 index 0000000..7f365e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ee154cca.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ef00237d.woff b/cmd/web/static/fonts/glyphs/woff/ef00237d.woff new file mode 100644 index 0000000..a63b12f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ef00237d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/efc8654c.woff b/cmd/web/static/fonts/glyphs/woff/efc8654c.woff new file mode 100644 index 0000000..69bbe67 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/efc8654c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff b/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff new file mode 100644 index 0000000..24c08bc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f0239cc2.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff b/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff new file mode 100644 index 0000000..7aee54d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f03ffe17.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f076afbd.woff b/cmd/web/static/fonts/glyphs/woff/f076afbd.woff new file mode 100644 index 0000000..6096e78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f076afbd.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f20a956f.woff b/cmd/web/static/fonts/glyphs/woff/f20a956f.woff new file mode 100644 index 0000000..b7b7d27 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f20a956f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f21dea18.woff b/cmd/web/static/fonts/glyphs/woff/f21dea18.woff new file mode 100644 index 0000000..fe25aa8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f21dea18.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f265e93a.woff b/cmd/web/static/fonts/glyphs/woff/f265e93a.woff new file mode 100644 index 0000000..4bc96e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f265e93a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff b/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff new file mode 100644 index 0000000..49844fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f2a75c7f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f324b46a.woff b/cmd/web/static/fonts/glyphs/woff/f324b46a.woff new file mode 100644 index 0000000..03f4491 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f324b46a.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f352189b.woff b/cmd/web/static/fonts/glyphs/woff/f352189b.woff new file mode 100644 index 0000000..791fd38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f352189b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff b/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff new file mode 100644 index 0000000..0978ad7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f38f3a94.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff b/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff new file mode 100644 index 0000000..c5d145e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f3aa8be6.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff b/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff new file mode 100644 index 0000000..43097b8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f3b8c582.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f4964839.woff b/cmd/web/static/fonts/glyphs/woff/f4964839.woff new file mode 100644 index 0000000..a6b23df --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f4964839.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff b/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff new file mode 100644 index 0000000..382d5b5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f4c46d43.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff b/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff new file mode 100644 index 0000000..c6c1fe1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f51f8bf3.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f522c872.woff b/cmd/web/static/fonts/glyphs/woff/f522c872.woff new file mode 100644 index 0000000..6af6946 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f522c872.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f674659b.woff b/cmd/web/static/fonts/glyphs/woff/f674659b.woff new file mode 100644 index 0000000..7737a34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f674659b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f6a67776.woff b/cmd/web/static/fonts/glyphs/woff/f6a67776.woff new file mode 100644 index 0000000..4402a6a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f6a67776.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff b/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff new file mode 100644 index 0000000..dfef5d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f6b8b235.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff b/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff new file mode 100644 index 0000000..331c86b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f6bda42b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff b/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff new file mode 100644 index 0000000..821235d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f6e65e59.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f73fed81.woff b/cmd/web/static/fonts/glyphs/woff/f73fed81.woff new file mode 100644 index 0000000..6f13f39 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f73fed81.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f80829f5.woff b/cmd/web/static/fonts/glyphs/woff/f80829f5.woff new file mode 100644 index 0000000..366c364 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f80829f5.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff b/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff new file mode 100644 index 0000000..3320a66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f871e4e4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f874c31d.woff b/cmd/web/static/fonts/glyphs/woff/f874c31d.woff new file mode 100644 index 0000000..2967198 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f874c31d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff b/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff new file mode 100644 index 0000000..54ec412 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f8a8936b.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff b/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff new file mode 100644 index 0000000..661e24e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f8c78a1d.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f952c473.woff b/cmd/web/static/fonts/glyphs/woff/f952c473.woff new file mode 100644 index 0000000..477e325 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f952c473.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/f99464f4.woff b/cmd/web/static/fonts/glyphs/woff/f99464f4.woff new file mode 100644 index 0000000..e313091 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/f99464f4.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff b/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff new file mode 100644 index 0000000..11d22da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fa9edb37.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fbf90859.woff b/cmd/web/static/fonts/glyphs/woff/fbf90859.woff new file mode 100644 index 0000000..76a763b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fbf90859.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fc061854.woff b/cmd/web/static/fonts/glyphs/woff/fc061854.woff new file mode 100644 index 0000000..a6d8974 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fc061854.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fccd4567.woff b/cmd/web/static/fonts/glyphs/woff/fccd4567.woff new file mode 100644 index 0000000..9226b69 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fccd4567.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff b/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff new file mode 100644 index 0000000..b83e5be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fcf313ef.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff b/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff new file mode 100644 index 0000000..8b55b87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fd56eaf9.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff b/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff new file mode 100644 index 0000000..05624d1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fd5fe89c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fda7a318.woff b/cmd/web/static/fonts/glyphs/woff/fda7a318.woff new file mode 100644 index 0000000..e888609 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fda7a318.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff b/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff new file mode 100644 index 0000000..3fdea61 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fdc4299c.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff b/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff new file mode 100644 index 0000000..c804146 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fe1a9b49.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff b/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff new file mode 100644 index 0000000..d912727 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fe2af1dc.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/fef0478f.woff b/cmd/web/static/fonts/glyphs/woff/fef0478f.woff new file mode 100644 index 0000000..fe15c6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/fef0478f.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff b/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff new file mode 100644 index 0000000..26b51bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff/ffa0cc23.woff | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 b/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 new file mode 100644 index 0000000..6e205cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0067bba3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 b/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 new file mode 100644 index 0000000..158ac72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/00883b50.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 b/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 new file mode 100644 index 0000000..558d15f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/011ee55c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 b/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 new file mode 100644 index 0000000..b4fcb9d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/018f5952.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 new file mode 100644 index 0000000..32e296d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/01e07cf4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 b/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 new file mode 100644 index 0000000..1233f81 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/02255308.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 b/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 new file mode 100644 index 0000000..05b6b72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/023d4451.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 b/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 new file mode 100644 index 0000000..be3b4c6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/02d0c663.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 b/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 new file mode 100644 index 0000000..55cfecf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/048120ba.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 b/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 new file mode 100644 index 0000000..de97c15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/04c9aec2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 new file mode 100644 index 0000000..fee5ee2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/05b616e5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 b/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 new file mode 100644 index 0000000..7ed25dc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/05ed7e4e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 b/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 new file mode 100644 index 0000000..f7a23ba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/061e5117.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 b/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 new file mode 100644 index 0000000..0c0d61e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/064b9505.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 b/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 new file mode 100644 index 0000000..48f2fd4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/066eea7e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 b/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 new file mode 100644 index 0000000..23128a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/06fd396d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 b/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 new file mode 100644 index 0000000..9675b82 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/081f89e0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 b/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 new file mode 100644 index 0000000..e38c152 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/088eafe1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 b/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 new file mode 100644 index 0000000..639cb52 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/08e4c9db.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 b/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 new file mode 100644 index 0000000..7962ea3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/08e9330e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 b/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 new file mode 100644 index 0000000..87cc7e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/090f780c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 b/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 new file mode 100644 index 0000000..9cb053a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/09a35da5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 b/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 new file mode 100644 index 0000000..43a19a4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/09afd82a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 b/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 new file mode 100644 index 0000000..1756b3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/09b0664c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 new file mode 100644 index 0000000..3daa703 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0a01e6d0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 new file mode 100644 index 0000000..361a7af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0a32e2fb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 new file mode 100644 index 0000000..368682b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0a4097e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 new file mode 100644 index 0000000..301c3b7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0ac058dd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 b/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 new file mode 100644 index 0000000..b5f0b87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0b12d5a0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 b/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 new file mode 100644 index 0000000..d14b77d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0b4fc343.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 b/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 new file mode 100644 index 0000000..52813e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0bcc804b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 b/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 new file mode 100644 index 0000000..020a7f3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0c40016a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 new file mode 100644 index 0000000..bde2d08 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0ca412f2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 new file mode 100644 index 0000000..9afe4c5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0cbb9805.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 new file mode 100644 index 0000000..755880b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0cc88965.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 new file mode 100644 index 0000000..a031524 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0cf3a20b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 b/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 new file mode 100644 index 0000000..7b65713 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0cfc2998.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 new file mode 100644 index 0000000..639c6cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0d085f1c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 new file mode 100644 index 0000000..69ff446 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0d26bbc7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 new file mode 100644 index 0000000..2cc0231 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0d9537d2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 b/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 new file mode 100644 index 0000000..3f4c5a2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0e779307.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 new file mode 100644 index 0000000..1b93ab1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0ecabbc7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 b/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 new file mode 100644 index 0000000..d6d5e79 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0f971447.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 new file mode 100644 index 0000000..2302c83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/0ff7e3fd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 b/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 new file mode 100644 index 0000000..110c715 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/10350c93.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 b/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 new file mode 100644 index 0000000..5070e04 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1079bbd9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 new file mode 100644 index 0000000..5b0834e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1098551a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 new file mode 100644 index 0000000..bc2787f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/110df6cd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 b/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 new file mode 100644 index 0000000..96d29ca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/114520c4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 b/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 new file mode 100644 index 0000000..6132430 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1165e24b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 b/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 new file mode 100644 index 0000000..3d17d07 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/117dc215.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 new file mode 100644 index 0000000..8c7e385 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/11805c1a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 b/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 new file mode 100644 index 0000000..d651255 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/11c88fa3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 b/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 new file mode 100644 index 0000000..346e9d0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/11d82ab4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 new file mode 100644 index 0000000..bb5169d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/120564eb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 b/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 new file mode 100644 index 0000000..37a520a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/125fe922.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 b/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 new file mode 100644 index 0000000..311cf3a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/129ec899.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 new file mode 100644 index 0000000..6399044 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/12c373f3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 b/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 new file mode 100644 index 0000000..f7df407 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/12cd5e20.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 b/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 new file mode 100644 index 0000000..606b668 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/12d9f10f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 b/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 new file mode 100644 index 0000000..fb3ceae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/131b3834.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 b/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 new file mode 100644 index 0000000..6b7b8aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/131ebb37.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 b/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 new file mode 100644 index 0000000..4e8fa75 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/13753541.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 b/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 new file mode 100644 index 0000000..d2aaf62 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1394a474.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 b/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 new file mode 100644 index 0000000..9f3d523 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/13b487b1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 b/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 new file mode 100644 index 0000000..4c27bd4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/14880f85.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 b/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 new file mode 100644 index 0000000..a3702cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/15802da1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 b/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 new file mode 100644 index 0000000..55e01e5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/159ee498.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 b/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 new file mode 100644 index 0000000..116e727 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/167004d8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 b/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 new file mode 100644 index 0000000..3b49f02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/16ed590a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 b/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 new file mode 100644 index 0000000..ac1f994 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/172e6f01.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 b/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 new file mode 100644 index 0000000..9ded92a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1778d94c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 b/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 new file mode 100644 index 0000000..26e6ee6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/177d0611.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 b/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 new file mode 100644 index 0000000..3f64134 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/179f13d3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 b/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 new file mode 100644 index 0000000..91fd93e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/17a7a115.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 b/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 new file mode 100644 index 0000000..01ab6a2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1817efca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 b/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 new file mode 100644 index 0000000..fd86662 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1937cd98.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 b/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 new file mode 100644 index 0000000..5549974 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/199aab73.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 b/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 new file mode 100644 index 0000000..9d58b10 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/19f8d5af.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 new file mode 100644 index 0000000..dc94e67 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a54066a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 new file mode 100644 index 0000000..5136326 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a7920cb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 new file mode 100644 index 0000000..9cf6099 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a797de5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 new file mode 100644 index 0000000..31374a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a7bcf02.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 new file mode 100644 index 0000000..c1fc929 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a8afe19.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 new file mode 100644 index 0000000..cff7dc8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1a9e5d1a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 new file mode 100644 index 0000000..db9bd42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1b07c59f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 new file mode 100644 index 0000000..9384544 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1b180f14.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 b/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 new file mode 100644 index 0000000..e2c1bda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1b7ba367.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 b/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 new file mode 100644 index 0000000..494aa66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1ca00690.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 b/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 new file mode 100644 index 0000000..6b99e60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1cc31435.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 b/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 new file mode 100644 index 0000000..97242b0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1cd81072.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 new file mode 100644 index 0000000..3d80515 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1d31d67a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 new file mode 100644 index 0000000..124ac9b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1d3e9975.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 b/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 new file mode 100644 index 0000000..3877980 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1d45862b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 b/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 new file mode 100644 index 0000000..e54359b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1df9ac89.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 b/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 new file mode 100644 index 0000000..52e14fe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1e143288.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 b/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 new file mode 100644 index 0000000..6ba4df2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1e3a5f47.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 b/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 new file mode 100644 index 0000000..3ef50ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1ea52dfd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 b/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 new file mode 100644 index 0000000..bfa1b55 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1eb35b35.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 b/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 new file mode 100644 index 0000000..3e3145d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/1fd6b062.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 b/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 new file mode 100644 index 0000000..7eac9ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/208046b5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 b/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 new file mode 100644 index 0000000..c7e95b0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/20b835b7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 new file mode 100644 index 0000000..04fed6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/20f9b6e3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 b/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 new file mode 100644 index 0000000..a220c74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/21619e9c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 new file mode 100644 index 0000000..a33303d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2163c4cf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 b/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 new file mode 100644 index 0000000..02e4f72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/218e296f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 b/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 new file mode 100644 index 0000000..14e1b68 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/21a02826.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 b/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 new file mode 100644 index 0000000..8dc40d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2200df99.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 b/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 new file mode 100644 index 0000000..463eeeb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/22293ce5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 b/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 new file mode 100644 index 0000000..3cae26d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/22c6ed00.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 new file mode 100644 index 0000000..8f72741 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/23b476b4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 b/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 new file mode 100644 index 0000000..2034325 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2422dc89.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 new file mode 100644 index 0000000..cf95567 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/246660f5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 new file mode 100644 index 0000000..184e348 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2489d00d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 b/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 new file mode 100644 index 0000000..2929b83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/24a80660.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 b/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 new file mode 100644 index 0000000..82c5e5a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/24cd796b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 b/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 new file mode 100644 index 0000000..3db8fcc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/24d18e39.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 b/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 new file mode 100644 index 0000000..87b704e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/24e7e96e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 new file mode 100644 index 0000000..e53ce5a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/250eac5a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 b/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 new file mode 100644 index 0000000..f5c512d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/252bbda4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 b/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 new file mode 100644 index 0000000..48942b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/254c8943.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 b/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 new file mode 100644 index 0000000..7c69ad2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/25ba326c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 b/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 new file mode 100644 index 0000000..237da42 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/25ea7b82.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 b/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 new file mode 100644 index 0000000..1758226 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/25eb254d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 b/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 new file mode 100644 index 0000000..21b8d17 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/264d968f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 b/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 new file mode 100644 index 0000000..e7fe2ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/26fc4657.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 b/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 new file mode 100644 index 0000000..0e9fe72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/282e3874.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 b/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 new file mode 100644 index 0000000..1f7fe3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2849840b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 b/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 new file mode 100644 index 0000000..c84567e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/288dafa6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 b/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 new file mode 100644 index 0000000..c4cd53f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2928cfa1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 b/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 new file mode 100644 index 0000000..fd5d976 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/297959f6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 b/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 new file mode 100644 index 0000000..7d2a59d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/29ef8c3a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 new file mode 100644 index 0000000..b93dd90 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2a4ae11d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 new file mode 100644 index 0000000..e7323da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2a889c21.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 new file mode 100644 index 0000000..6c026ff --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2a96e401.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 b/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 new file mode 100644 index 0000000..c32e7a0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2a9dc20c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 new file mode 100644 index 0000000..6222d84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2ae6c3ff.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 b/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 new file mode 100644 index 0000000..7cf3515 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2b4b2b6f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 b/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 new file mode 100644 index 0000000..841edc4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2b52c387.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 b/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 new file mode 100644 index 0000000..d2adf1f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2bd2fc24.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 b/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 new file mode 100644 index 0000000..e4b592e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2be8c581.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 b/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 new file mode 100644 index 0000000..093163f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2c977e31.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 new file mode 100644 index 0000000..692b71d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2cee68c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 new file mode 100644 index 0000000..6f655ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2d027c9d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 new file mode 100644 index 0000000..6f24d66 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2d2cf221.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 new file mode 100644 index 0000000..42760b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2d5cb25e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 b/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 new file mode 100644 index 0000000..8de82e2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2d7aa05f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 b/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 new file mode 100644 index 0000000..917f687 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2db5fddf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 b/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 new file mode 100644 index 0000000..4ad6f6f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2dc572da.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 new file mode 100644 index 0000000..70a4a00 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2e27c6c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 new file mode 100644 index 0000000..5b64142 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2e5887ef.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 new file mode 100644 index 0000000..31c9a0f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2ed7bd06.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 b/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 new file mode 100644 index 0000000..2884874 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2ef4a942.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 new file mode 100644 index 0000000..e877098 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2f84e1d2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 b/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 new file mode 100644 index 0000000..d6b23b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/2fd2e914.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 b/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 new file mode 100644 index 0000000..97d9dfe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/30042e01.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 new file mode 100644 index 0000000..5a1f235 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/300b40cf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 new file mode 100644 index 0000000..b3cf94a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3069c5e2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 new file mode 100644 index 0000000..fc20852 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/30d929ef.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 b/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 new file mode 100644 index 0000000..4ecc808 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/311bcfdc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 b/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 new file mode 100644 index 0000000..3d317c5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/31234fc4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 b/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 new file mode 100644 index 0000000..ddaf20e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/315c66f8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 b/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 new file mode 100644 index 0000000..f561dc8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/31722822.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 b/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 new file mode 100644 index 0000000..f52b772 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/31782ddd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 new file mode 100644 index 0000000..bab057a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/322840cb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 b/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 new file mode 100644 index 0000000..8849477 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/323a4cec.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 b/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 new file mode 100644 index 0000000..4ccaabc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/325a5ac2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 b/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 new file mode 100644 index 0000000..bad5233 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/328fad59.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 b/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 new file mode 100644 index 0000000..5165f16 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/32c69208.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 b/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 new file mode 100644 index 0000000..c09a593 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/32cb1e15.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 b/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 new file mode 100644 index 0000000..74b2bd6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/34152b57.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 b/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 new file mode 100644 index 0000000..c2843da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/34833f66.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 b/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 new file mode 100644 index 0000000..54f3754 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/34a01d7d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 b/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 new file mode 100644 index 0000000..39a691e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/34d7ab4a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 b/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 new file mode 100644 index 0000000..5ad69fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3506ae92.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 b/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 new file mode 100644 index 0000000..accec41 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3547c23d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 b/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 new file mode 100644 index 0000000..b46a62b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/354ca571.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 b/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 new file mode 100644 index 0000000..bfac623 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/35e73fc6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 b/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 new file mode 100644 index 0000000..b0f4418 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36728431.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 b/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 new file mode 100644 index 0000000..dfef0d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36a3295a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 b/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 new file mode 100644 index 0000000..9155361 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36ac1140.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 b/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 new file mode 100644 index 0000000..31d3f0d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36bc1a9d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 b/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 new file mode 100644 index 0000000..b6d97e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36bf9ec5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 new file mode 100644 index 0000000..e61cca6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/36fb96fc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 b/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 new file mode 100644 index 0000000..f93aa8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/370da5ae.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 b/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 new file mode 100644 index 0000000..1ab72c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/37481bd1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 b/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 new file mode 100644 index 0000000..fa4bb51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/385855c8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 b/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 new file mode 100644 index 0000000..d709fa0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/38686314.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 b/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 new file mode 100644 index 0000000..a0fdede --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/389e0153.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 new file mode 100644 index 0000000..346b6c8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/38dcac7f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 b/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 new file mode 100644 index 0000000..27334a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/393bcee2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 b/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 new file mode 100644 index 0000000..fc1900a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/39b74aca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 b/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 new file mode 100644 index 0000000..3d9bc04 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3a52ed45.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 b/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 new file mode 100644 index 0000000..9efface --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3a530c59.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 b/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 new file mode 100644 index 0000000..b7f2b74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3abbb79a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 b/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 new file mode 100644 index 0000000..7a6f299 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3ac9bbf7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 new file mode 100644 index 0000000..6560691 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3b064daf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 new file mode 100644 index 0000000..e60411f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3b5ff71f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 new file mode 100644 index 0000000..c972379 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3b6b07e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 new file mode 100644 index 0000000..51a5358 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3b7180f4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 b/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 new file mode 100644 index 0000000..fcf7694 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3bd53fee.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 b/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 new file mode 100644 index 0000000..a116851 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3c678666.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 b/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 new file mode 100644 index 0000000..e82d826 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3d32bff5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 new file mode 100644 index 0000000..9fc0cea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3e131fc2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 b/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 new file mode 100644 index 0000000..57c471a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3e670521.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 b/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 new file mode 100644 index 0000000..c1e9cd9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3eed650c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 new file mode 100644 index 0000000..a138f57 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3f29fe8f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 new file mode 100644 index 0000000..db02133 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3f357a26.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 b/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 new file mode 100644 index 0000000..8175856 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3f3d19ae.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 b/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 new file mode 100644 index 0000000..0067a5c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/3fc14a91.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 b/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 new file mode 100644 index 0000000..88d1925 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4003be53.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 new file mode 100644 index 0000000..5156115 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4062bc3a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 b/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 new file mode 100644 index 0000000..6cb4051 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/41038137.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 new file mode 100644 index 0000000..dce47b8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4129e2ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 b/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 new file mode 100644 index 0000000..d3cc3fe --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/41692e5f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 b/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 new file mode 100644 index 0000000..61b7c8f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/41e7e67b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 b/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 new file mode 100644 index 0000000..a43458e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/42130fd7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 b/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 new file mode 100644 index 0000000..a4b17db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4259b075.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 new file mode 100644 index 0000000..3d731eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/430cca2f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 b/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 new file mode 100644 index 0000000..93f0ab7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4321166d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 b/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 new file mode 100644 index 0000000..acf5201 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/43664073.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 b/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 new file mode 100644 index 0000000..0c7bf0d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/439e5c3d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 b/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 new file mode 100644 index 0000000..ef728db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4477f406.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 new file mode 100644 index 0000000..ed994aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/455032d0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 new file mode 100644 index 0000000..d1c7957 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/45a8e7e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 new file mode 100644 index 0000000..4c2d006 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/462ea6a3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 b/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 new file mode 100644 index 0000000..381b133 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/463c644c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 new file mode 100644 index 0000000..1166e31 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/46a505fd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 b/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 new file mode 100644 index 0000000..8f00a77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/47413c16.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 new file mode 100644 index 0000000..e543009 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/478bc2f3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 b/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 new file mode 100644 index 0000000..3563386 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/47f8aa49.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 new file mode 100644 index 0000000..9d7793b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/496a7c2f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 new file mode 100644 index 0000000..e2a1f31 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/49c0e6d5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 new file mode 100644 index 0000000..a167c51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a1c35d5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 new file mode 100644 index 0000000..070cf60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a1c4041.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 new file mode 100644 index 0000000..822b49e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a280971.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 new file mode 100644 index 0000000..4bf5de9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a40a88a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 new file mode 100644 index 0000000..45d3809 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a54867e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 new file mode 100644 index 0000000..78b401d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a7c46ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 b/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 new file mode 100644 index 0000000..db8d22b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4a849376.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 new file mode 100644 index 0000000..6e1f474 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4ae1ce28.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 new file mode 100644 index 0000000..dfd9433 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4af4ef28.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 b/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 new file mode 100644 index 0000000..8dad514 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4b099001.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 new file mode 100644 index 0000000..b2f21aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4d040d05.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 new file mode 100644 index 0000000..e13ecec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4d59c24a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 b/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 new file mode 100644 index 0000000..8a637ca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4d6b8b33.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 b/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 new file mode 100644 index 0000000..70b8eac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4dc72635.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 new file mode 100644 index 0000000..5f6f710 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4e10ed5b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 new file mode 100644 index 0000000..4c13ca6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4e1ac177.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 b/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 new file mode 100644 index 0000000..5fb2a78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4e9dce28.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 b/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 new file mode 100644 index 0000000..6844097 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4eb499b8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 b/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 new file mode 100644 index 0000000..6f08929 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4ee23427.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 b/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 new file mode 100644 index 0000000..7d6c59b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/4fd52c87.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 b/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 new file mode 100644 index 0000000..cd37797 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/50b342a2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 b/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 new file mode 100644 index 0000000..3d97de6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/50f3c095.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 new file mode 100644 index 0000000..296d524 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/511209fe.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 b/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 new file mode 100644 index 0000000..54a1bc8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/516cf792.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 b/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 new file mode 100644 index 0000000..f6d3927 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/51792712.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 new file mode 100644 index 0000000..455b4ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/51a7c9cb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 b/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 new file mode 100644 index 0000000..f9dc94a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/51a9fa09.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 b/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 new file mode 100644 index 0000000..f9627bf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/520274a8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 new file mode 100644 index 0000000..e2087a5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/525958c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 b/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 new file mode 100644 index 0000000..de5077e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/52b1caf8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 b/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 new file mode 100644 index 0000000..2d51712 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/52d65af9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 b/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 new file mode 100644 index 0000000..80ad463 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5330b47e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 b/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 new file mode 100644 index 0000000..0254ff4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/53605668.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 b/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 new file mode 100644 index 0000000..4a57053 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/53e7de8b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 b/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 new file mode 100644 index 0000000..5cfc9b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5454be1e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 b/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 new file mode 100644 index 0000000..771391b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/54940801.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 b/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 new file mode 100644 index 0000000..fe79143 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5496b078.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 b/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 new file mode 100644 index 0000000..5fb0596 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/55048901.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 b/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 new file mode 100644 index 0000000..2938364 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/55092daa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 new file mode 100644 index 0000000..e7e396c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/565212e9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 b/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 new file mode 100644 index 0000000..1b8b7a3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/56521359.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 b/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 new file mode 100644 index 0000000..89440c1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/56652a37.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 b/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 new file mode 100644 index 0000000..e651782 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5685167b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 new file mode 100644 index 0000000..0ae7067 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/56c47c5a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 b/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 new file mode 100644 index 0000000..51e4567 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/56ed6f41.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 b/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 new file mode 100644 index 0000000..a2434fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/576582f8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 b/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 new file mode 100644 index 0000000..5bdf165 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/578f348a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 b/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 new file mode 100644 index 0000000..a83f428 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5798f31f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 b/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 new file mode 100644 index 0000000..88ed0cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/57c37525.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 b/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 new file mode 100644 index 0000000..e05c7f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/57dd141e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 new file mode 100644 index 0000000..e8ef9f5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/57eb30ea.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 b/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 new file mode 100644 index 0000000..6bc9312 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/580961bd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 b/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 new file mode 100644 index 0000000..3dcd3bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/58c58e95.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 b/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 new file mode 100644 index 0000000..f07fe60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5922a1ce.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 b/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 new file mode 100644 index 0000000..e58a676 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/59835a05.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 b/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 new file mode 100644 index 0000000..fb21df7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/59d1acbe.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 b/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 new file mode 100644 index 0000000..6f329d2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5b5bda30.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 new file mode 100644 index 0000000..77220e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5b78e2cb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 b/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 new file mode 100644 index 0000000..d70db4d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5ba710db.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 b/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 new file mode 100644 index 0000000..0e7af47 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5bdeb600.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 new file mode 100644 index 0000000..6153447 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5d77f6cd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 b/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 new file mode 100644 index 0000000..943110d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5d9d090a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 b/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 new file mode 100644 index 0000000..81ce32c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5e0938cb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 new file mode 100644 index 0000000..3679b9b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5f1cfaf4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 b/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 new file mode 100644 index 0000000..212a85a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/5f3272da.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 b/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 new file mode 100644 index 0000000..00f9e22 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/604eb358.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 b/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 new file mode 100644 index 0000000..c5d45a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6065bb77.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 new file mode 100644 index 0000000..5d3218c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6166611f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 new file mode 100644 index 0000000..acd944d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/616d19f1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 b/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 new file mode 100644 index 0000000..9365b32 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61965d02.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 b/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 new file mode 100644 index 0000000..22465b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/619e1843.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 b/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 new file mode 100644 index 0000000..05e7f6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61b21f65.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 b/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 new file mode 100644 index 0000000..5a22552 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61c4be74.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 b/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 new file mode 100644 index 0000000..327d70d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61d34932.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 b/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 new file mode 100644 index 0000000..5f45907 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61e075b5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 b/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 new file mode 100644 index 0000000..92c9005 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61e4ec60.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 b/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 new file mode 100644 index 0000000..07198eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/61fed715.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 b/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 new file mode 100644 index 0000000..6189c26 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6282768c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 new file mode 100644 index 0000000..95b1ced --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6302510b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 b/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 new file mode 100644 index 0000000..fff4494 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6338d88d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 new file mode 100644 index 0000000..a0132aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6353dd1b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 b/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 new file mode 100644 index 0000000..b722837 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/63d16b50.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 new file mode 100644 index 0000000..add89b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6435b8b4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 b/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 new file mode 100644 index 0000000..6e71f11 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/64bbaa0b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 b/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 new file mode 100644 index 0000000..e8e93c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6587b420.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 b/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 new file mode 100644 index 0000000..cc7fe78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/65bc5b9b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 b/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 new file mode 100644 index 0000000..bfc312b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/65ed8428.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 new file mode 100644 index 0000000..89fbcf7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/667938fd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 b/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 new file mode 100644 index 0000000..09fb002 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6690e503.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 b/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 new file mode 100644 index 0000000..4882c17 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/66a94b72.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 b/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 new file mode 100644 index 0000000..ae14614 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/66ef61bc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 b/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 new file mode 100644 index 0000000..f6be84d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/67036539.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 b/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 new file mode 100644 index 0000000..b39fada --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6748e774.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 new file mode 100644 index 0000000..5031693 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/676821e3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 b/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 new file mode 100644 index 0000000..6145a6b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6795017c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 b/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 new file mode 100644 index 0000000..f780a71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/67fdb825.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 b/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 new file mode 100644 index 0000000..c955be4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/68243e39.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 new file mode 100644 index 0000000..d6d87f9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6895132f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 new file mode 100644 index 0000000..57b8dc2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/68a429e1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 b/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 new file mode 100644 index 0000000..dddc355 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/68db64d0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 b/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 new file mode 100644 index 0000000..e1c036a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/692990c2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 new file mode 100644 index 0000000..9018230 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6961fbe3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 b/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 new file mode 100644 index 0000000..40a6715 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6994c18b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 b/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 new file mode 100644 index 0000000..1012c7a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/69dbef10.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 new file mode 100644 index 0000000..853d5f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6a4f89c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 new file mode 100644 index 0000000..40e3457 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6a54a1a9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 new file mode 100644 index 0000000..4a3c3f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6a5cf79e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 b/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 new file mode 100644 index 0000000..19b5553 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6a836616.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 b/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 new file mode 100644 index 0000000..130bd45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6aa52642.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 b/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 new file mode 100644 index 0000000..7cec257 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6b36c863.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 b/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 new file mode 100644 index 0000000..fca5301 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6bb79e9f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 b/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 new file mode 100644 index 0000000..d52021e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6c1508be.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 b/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 new file mode 100644 index 0000000..662903b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6c187b99.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 b/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 new file mode 100644 index 0000000..4a2e0f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6cf59e55.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 b/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 new file mode 100644 index 0000000..db60f36 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6cf5db04.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 b/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 new file mode 100644 index 0000000..0911006 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6d4a4c73.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 b/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 new file mode 100644 index 0000000..47c45ab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6da3182a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 b/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 new file mode 100644 index 0000000..3468e63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6db9cbfa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 new file mode 100644 index 0000000..04970f6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6dd1f0c3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 new file mode 100644 index 0000000..ac9223a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6e131b1a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 new file mode 100644 index 0000000..fceafb3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6e3568e1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 new file mode 100644 index 0000000..4f2672a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6e8af6a3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 new file mode 100644 index 0000000..ddff957 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6ec735fe.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 b/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 new file mode 100644 index 0000000..acc0a67 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/6ff07dde.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 b/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 new file mode 100644 index 0000000..2f922e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/700a244d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 b/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 new file mode 100644 index 0000000..40d194c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/700b8efe.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 b/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 new file mode 100644 index 0000000..053a03e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/70159625.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 b/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 new file mode 100644 index 0000000..992db51 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/703d038d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 b/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 new file mode 100644 index 0000000..d69a2cc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/70a458c9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 b/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 new file mode 100644 index 0000000..cd149d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/70ce9c46.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 new file mode 100644 index 0000000..2e102db --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/70d68f2f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 new file mode 100644 index 0000000..8ea5e84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7188a9c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 b/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 new file mode 100644 index 0000000..acdb061 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/72213980.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 new file mode 100644 index 0000000..54e5abc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7257f8e5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 b/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 new file mode 100644 index 0000000..a259ff2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/72751892.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 b/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 new file mode 100644 index 0000000..a22de83 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/72bccb9e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 b/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 new file mode 100644 index 0000000..ff52e4b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/73337a66.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 b/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 new file mode 100644 index 0000000..f3baf52 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/73363ff7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 b/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 new file mode 100644 index 0000000..5dba204 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7345156e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 b/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 new file mode 100644 index 0000000..6e335cd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/734be349.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 new file mode 100644 index 0000000..4ebde94 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/73db31ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 b/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 new file mode 100644 index 0000000..21e1eda --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/74da00d4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 b/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 new file mode 100644 index 0000000..1153dd7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/74da7207.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 b/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 new file mode 100644 index 0000000..f8218e9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/74dc98f9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 b/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 new file mode 100644 index 0000000..d7894d3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/75058b72.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 b/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 new file mode 100644 index 0000000..fd2d64d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/75577460.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 b/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 new file mode 100644 index 0000000..2a0c465 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7651ec5d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 b/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 new file mode 100644 index 0000000..2ee1ae4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/766bbd91.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 b/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 new file mode 100644 index 0000000..e7ea6d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7692acf2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 b/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 new file mode 100644 index 0000000..6e1280c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7708bdcb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 b/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 new file mode 100644 index 0000000..0773369 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/77d98a34.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 b/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 new file mode 100644 index 0000000..bc3953d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/781792ac.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 b/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 new file mode 100644 index 0000000..9f4e4e6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7824402e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 new file mode 100644 index 0000000..92155a9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/782774ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 b/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 new file mode 100644 index 0000000..168a2bd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7845e476.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 b/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 new file mode 100644 index 0000000..b9dcf77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/78600846.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 b/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 new file mode 100644 index 0000000..f8c1d23 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/78f17a21.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 b/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 new file mode 100644 index 0000000..83e9da4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7909aeb7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 b/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 new file mode 100644 index 0000000..f755bcc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/793b5687.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 b/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 new file mode 100644 index 0000000..27dd16d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/79fefc18.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 b/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 new file mode 100644 index 0000000..cd5a39c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7add0458.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 b/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 new file mode 100644 index 0000000..9570efa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7b978459.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 b/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 new file mode 100644 index 0000000..0503b1d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7bd1e500.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 new file mode 100644 index 0000000..f1aced7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7c28d0b9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 new file mode 100644 index 0000000..cea988f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7c37a4d6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 b/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 new file mode 100644 index 0000000..f5e24ef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7c77a98a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 b/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 new file mode 100644 index 0000000..092ea74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7ca46b25.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 new file mode 100644 index 0000000..ee57ca0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7d67a50f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 new file mode 100644 index 0000000..a23aec7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7d68324f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 b/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 new file mode 100644 index 0000000..2e29b34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7d8ef620.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 b/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 new file mode 100644 index 0000000..4c3d01e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7dd88093.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 new file mode 100644 index 0000000..cd933c9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7e2c66dd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 b/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 new file mode 100644 index 0000000..ffe5d33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7e86b04d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 b/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 new file mode 100644 index 0000000..d4833b4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7ee937ee.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 b/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 new file mode 100644 index 0000000..fa29bad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7f3c219c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 b/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 new file mode 100644 index 0000000..2d75d02 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7f4ff157.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 new file mode 100644 index 0000000..4c2fbca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7faba1e2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 b/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 new file mode 100644 index 0000000..ae544c5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/7fc2dce7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 b/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 new file mode 100644 index 0000000..7a9f92b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/80160b96.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 new file mode 100644 index 0000000..4ddbca2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8021a1fc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 b/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 new file mode 100644 index 0000000..fb1424f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/80629e16.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 b/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 new file mode 100644 index 0000000..ec12dd9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/808ad3a7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 b/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 new file mode 100644 index 0000000..d399f62 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8179876c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 b/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 new file mode 100644 index 0000000..0ebe68d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/817d2a0a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 b/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 new file mode 100644 index 0000000..98ead87 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/81c6c9c0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 b/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 new file mode 100644 index 0000000..a17656b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/81e03745.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 b/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 new file mode 100644 index 0000000..64bb40d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8216b752.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 b/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 new file mode 100644 index 0000000..917bce5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/825014e6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 b/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 new file mode 100644 index 0000000..2e60ae4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/836758e3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 b/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 new file mode 100644 index 0000000..3c678e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8377e39a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 b/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 new file mode 100644 index 0000000..baf68a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/839981ee.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 new file mode 100644 index 0000000..f096567 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/83bd70cd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 new file mode 100644 index 0000000..9ce8f9d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/83f03b1d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 b/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 new file mode 100644 index 0000000..18a1c36 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/840f090f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 b/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 new file mode 100644 index 0000000..9a7530a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/842ec06d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 b/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 new file mode 100644 index 0000000..2a83c7f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/84aca33c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 new file mode 100644 index 0000000..0ce41a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/854811f2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 b/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 new file mode 100644 index 0000000..026353f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/85a57a2a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 b/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 new file mode 100644 index 0000000..3cab2ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/85b9ab95.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 b/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 new file mode 100644 index 0000000..da263d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/860a7588.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 b/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 new file mode 100644 index 0000000..7dfe5be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/862543ec.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 new file mode 100644 index 0000000..0d6bd16 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8625f0eb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 b/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 new file mode 100644 index 0000000..6b83131 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/86d4d2fb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 b/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 new file mode 100644 index 0000000..b5c7fdf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/86e445ff.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 b/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 new file mode 100644 index 0000000..aa04849 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/871f2951.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 b/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 new file mode 100644 index 0000000..1bbe568 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/87626b68.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 b/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 new file mode 100644 index 0000000..3f2ff99 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8796b453.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 new file mode 100644 index 0000000..333c813 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/87dda7cc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 new file mode 100644 index 0000000..ee49866 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/882182c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 b/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 new file mode 100644 index 0000000..014d563 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8827eb24.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 b/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 new file mode 100644 index 0000000..07fa4c8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/888412e6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 b/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 new file mode 100644 index 0000000..438c92c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/894bfc80.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 b/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 new file mode 100644 index 0000000..967064e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/896bcc00.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 b/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 new file mode 100644 index 0000000..54ae047 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/899e83fa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 b/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 new file mode 100644 index 0000000..0b23477 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/89eb94d2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 b/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 new file mode 100644 index 0000000..e1f4772 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8a52dabb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 b/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 new file mode 100644 index 0000000..a473a27 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8aa66ff2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 b/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 new file mode 100644 index 0000000..de36e30 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8aacdf16.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 b/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 new file mode 100644 index 0000000..00609ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8b45a38b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 b/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 new file mode 100644 index 0000000..4ee4a77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8b604615.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 b/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 new file mode 100644 index 0000000..8b6f05a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8ba1a228.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 b/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 new file mode 100644 index 0000000..64a96d9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8beb9dac.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 new file mode 100644 index 0000000..0b79527 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8befb6ca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 new file mode 100644 index 0000000..7c70ba0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8c60c66a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 new file mode 100644 index 0000000..66de15f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8c610c58.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 b/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 new file mode 100644 index 0000000..7c50856 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8c7e5269.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 b/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 new file mode 100644 index 0000000..0f3cec7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8cd085fd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 b/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 new file mode 100644 index 0000000..6b3806f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8d40bc1f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 b/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 new file mode 100644 index 0000000..73c01eb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8d4d7cd2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 new file mode 100644 index 0000000..19c6cab --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8f3601cc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 b/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 new file mode 100644 index 0000000..03dd888 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/8f9646bf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 b/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 new file mode 100644 index 0000000..f28543d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/900affc9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 b/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 new file mode 100644 index 0000000..e27bda2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9046047a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 b/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 new file mode 100644 index 0000000..f6f304f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/907dea52.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 b/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 new file mode 100644 index 0000000..dbae37a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/91c7605d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 b/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 new file mode 100644 index 0000000..49ac327 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/91d96ddb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 b/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 new file mode 100644 index 0000000..9bb257a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/91e6882a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 b/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 new file mode 100644 index 0000000..18ec474 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/928b86d7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 b/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 new file mode 100644 index 0000000..f544db1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/92b634cd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 new file mode 100644 index 0000000..294efbc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/935170dd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 b/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 new file mode 100644 index 0000000..e5a44c3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9352bab8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 b/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 new file mode 100644 index 0000000..6d2cef5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9375b000.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 b/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 new file mode 100644 index 0000000..16de34e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9393e70c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 b/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 new file mode 100644 index 0000000..f82cf89 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/93b56efb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 new file mode 100644 index 0000000..df27c07 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/944650cf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 b/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 new file mode 100644 index 0000000..d32b577 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/94531f1b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 b/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 new file mode 100644 index 0000000..d185b07 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/948b9f9b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 b/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 new file mode 100644 index 0000000..f4dec60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/94bb9a0a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 b/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 new file mode 100644 index 0000000..557b8a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/94c87c19.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 b/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 new file mode 100644 index 0000000..65c9200 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/94ee3537.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 b/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 new file mode 100644 index 0000000..65e3528 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/95114a7a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 b/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 new file mode 100644 index 0000000..9fd1f6d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9518b144.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 b/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 new file mode 100644 index 0000000..ab93e65 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9554c428.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 b/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 new file mode 100644 index 0000000..8cc9231 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/957ea602.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 b/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 new file mode 100644 index 0000000..e1de70f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/95ce85b0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 b/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 new file mode 100644 index 0000000..fd135a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9605447e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 b/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 new file mode 100644 index 0000000..a636a2b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/971dbc94.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 b/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 new file mode 100644 index 0000000..13b736a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9730509c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 b/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 new file mode 100644 index 0000000..f266c09 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/97b82bce.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 new file mode 100644 index 0000000..0c4d477 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/97ba67f1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 b/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 new file mode 100644 index 0000000..af8270a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/97e6e2a1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 b/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 new file mode 100644 index 0000000..c893485 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/98117c28.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 b/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 new file mode 100644 index 0000000..93562de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/982f3edc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 b/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 new file mode 100644 index 0000000..24070f7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/98357202.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 b/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 new file mode 100644 index 0000000..0dbbb05 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9850be29.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 b/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 new file mode 100644 index 0000000..5ccaa53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9899cecb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 b/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 new file mode 100644 index 0000000..898b7dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/989ad0a9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 b/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 new file mode 100644 index 0000000..950d9f8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/98a0b6a0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 new file mode 100644 index 0000000..fcf825d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/993b5d5e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 b/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 new file mode 100644 index 0000000..7bf4036 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/99a3e60b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 b/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 new file mode 100644 index 0000000..6849a75 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/99b23887.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 new file mode 100644 index 0000000..d0f7f00 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9a7fb4ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 b/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 new file mode 100644 index 0000000..45eebe6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9a9a307d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 b/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 new file mode 100644 index 0000000..8a84948 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9b8448e1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 new file mode 100644 index 0000000..992dfc4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9b9375b4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 b/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 new file mode 100644 index 0000000..f937b3c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9bb36328.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 new file mode 100644 index 0000000..6287e81 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9be136c3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 b/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 new file mode 100644 index 0000000..ff9ac2d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9c739b13.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 b/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 new file mode 100644 index 0000000..3dff29d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9ccb9c44.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 b/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 new file mode 100644 index 0000000..3c0ba9b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9ced0dd7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 b/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 new file mode 100644 index 0000000..ee95394 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9d1ecd98.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 b/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 new file mode 100644 index 0000000..49c7a1b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9e0089cc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 b/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 new file mode 100644 index 0000000..10d553d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9e3addab.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 b/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 new file mode 100644 index 0000000..1ffdd11 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9eb86178.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 new file mode 100644 index 0000000..e32949f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9f00be36.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 new file mode 100644 index 0000000..1de1734 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9f205e65.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 b/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 new file mode 100644 index 0000000..67cc775 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/9f3909aa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 new file mode 100644 index 0000000..cca7322 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a0183c8e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 b/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 new file mode 100644 index 0000000..36d16d8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a04998d6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 new file mode 100644 index 0000000..e9c9b8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a0a347f1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 new file mode 100644 index 0000000..bd0f78f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a0e42042.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 b/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 new file mode 100644 index 0000000..f727339 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a0ecbb18.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 new file mode 100644 index 0000000..740021d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a1b08642.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 new file mode 100644 index 0000000..1443958 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a1f0f211.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 b/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 new file mode 100644 index 0000000..c8acd80 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a1fbcdf7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 new file mode 100644 index 0000000..4975af7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a22847ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 b/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 new file mode 100644 index 0000000..3b16964 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a36d6959.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 b/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 new file mode 100644 index 0000000..604f845 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a3805f14.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 new file mode 100644 index 0000000..2a968c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a45832ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 new file mode 100644 index 0000000..035c92e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a4900e86.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 new file mode 100644 index 0000000..242f121 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a4b9f2e5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 b/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 new file mode 100644 index 0000000..b677b28 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a4caee91.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 b/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 new file mode 100644 index 0000000..1ecef33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a52bb57c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 b/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 new file mode 100644 index 0000000..cea4984 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a54fe823.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 b/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 new file mode 100644 index 0000000..204965a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a564f20f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 b/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 new file mode 100644 index 0000000..c8b4f17 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a5ee2945.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 b/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 new file mode 100644 index 0000000..def3650 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a6af89bd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 b/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 new file mode 100644 index 0000000..314e72f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a73e53ed.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 b/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 new file mode 100644 index 0000000..1ead572 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a7644d09.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 b/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 new file mode 100644 index 0000000..85f4ab6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a851f472.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 b/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 new file mode 100644 index 0000000..94d7793 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a87ed935.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 b/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 new file mode 100644 index 0000000..ed34414 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a97d857e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 b/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 new file mode 100644 index 0000000..815ad5b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a9a9d798.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 b/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 new file mode 100644 index 0000000..f219f77 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/a9daf068.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 new file mode 100644 index 0000000..aeea8c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/aa0b1cf4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 new file mode 100644 index 0000000..c8e9687 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/aa227416.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 b/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 new file mode 100644 index 0000000..4f0a267 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/aa6c0f8a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 b/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 new file mode 100644 index 0000000..d20683b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/aae08744.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 new file mode 100644 index 0000000..deb07aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ab5759c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 new file mode 100644 index 0000000..358a585 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ab8056ea.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 new file mode 100644 index 0000000..21980b2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ac2048ca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 new file mode 100644 index 0000000..47506bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ac31ca34.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 new file mode 100644 index 0000000..9e619e6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ac9383e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 b/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 new file mode 100644 index 0000000..9374724 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/accd5a71.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 new file mode 100644 index 0000000..4617476 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ad2eb64b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 new file mode 100644 index 0000000..6b0efa8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ad451fc0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 new file mode 100644 index 0000000..5200801 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ad5bcd8d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 b/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 new file mode 100644 index 0000000..37d81e3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ad6d5849.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 new file mode 100644 index 0000000..63f1987 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ae3b63af.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 new file mode 100644 index 0000000..b8ca2c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ae453c2f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 b/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 new file mode 100644 index 0000000..926c71b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ae943640.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 b/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 new file mode 100644 index 0000000..ab10847 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/af60aa55.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 b/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 new file mode 100644 index 0000000..1b3b30d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/af7f0a6e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 b/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 new file mode 100644 index 0000000..b7154b1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/afb6634e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 b/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 new file mode 100644 index 0000000..aad8731 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b09f469a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 b/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 new file mode 100644 index 0000000..f9faa85 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b0ad53ea.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 new file mode 100644 index 0000000..adcfbed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b166a7c6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 b/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 new file mode 100644 index 0000000..7407709 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b1eba251.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 b/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 new file mode 100644 index 0000000..1c557c4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b25a5c47.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 b/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 new file mode 100644 index 0000000..ff7dc38 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b295da08.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 b/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 new file mode 100644 index 0000000..7c959ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b29ecf6c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 b/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 new file mode 100644 index 0000000..7b36b2f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b2e0a125.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 b/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 new file mode 100644 index 0000000..35e68be --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b2f15dff.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 b/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 new file mode 100644 index 0000000..483a47f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b3273cc3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 b/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 new file mode 100644 index 0000000..f742967 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b3df67d1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 b/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 new file mode 100644 index 0000000..a0b6d82 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b410b0fe.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 b/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 new file mode 100644 index 0000000..9b0e197 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b44b2013.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 b/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 new file mode 100644 index 0000000..b469ebc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b4fed649.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 new file mode 100644 index 0000000..a366b4d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b524a1f5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 b/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 new file mode 100644 index 0000000..302ef85 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b53f50d1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 b/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 new file mode 100644 index 0000000..a2dd439 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b5c50661.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 b/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 new file mode 100644 index 0000000..780fd94 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b5c60683.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 b/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 new file mode 100644 index 0000000..03216e5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b70c5e32.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 b/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 new file mode 100644 index 0000000..db0cc33 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b779fc78.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 b/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 new file mode 100644 index 0000000..d9248f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b78ccf45.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 new file mode 100644 index 0000000..79bb336 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b7a172a3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 b/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 new file mode 100644 index 0000000..20db025 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b7ecc4fc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 new file mode 100644 index 0000000..4a2b271 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b8276594.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 b/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 new file mode 100644 index 0000000..1f7baad --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b82f6a43.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 new file mode 100644 index 0000000..fb12050 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b84384c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 b/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 new file mode 100644 index 0000000..2b6933f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b853b110.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 b/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 new file mode 100644 index 0000000..0cccffa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b86d565c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 new file mode 100644 index 0000000..7cd0822 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b8a14959.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 b/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 new file mode 100644 index 0000000..f9faf8c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b8f899c8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 new file mode 100644 index 0000000..8e22923 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b9507f5e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 b/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 new file mode 100644 index 0000000..12faae4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b96007b9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 new file mode 100644 index 0000000..8a51871 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/b9a227e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 b/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 new file mode 100644 index 0000000..f603677 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ba711105.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 new file mode 100644 index 0000000..3bc7277 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ba8d699c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 b/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 new file mode 100644 index 0000000..3281444 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bae4bae8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 b/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 new file mode 100644 index 0000000..0a6745b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bae65807.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 new file mode 100644 index 0000000..09a6569 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bb074b56.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 new file mode 100644 index 0000000..7a32270 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bb12d8ab.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 new file mode 100644 index 0000000..848d44d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bb366587.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 new file mode 100644 index 0000000..c389424 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bb48d505.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 b/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 new file mode 100644 index 0000000..970e9d5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bb6c3f4f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 b/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 new file mode 100644 index 0000000..dfd9f91 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bc23c05b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 b/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 new file mode 100644 index 0000000..01bdce9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bcd60da4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 b/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 new file mode 100644 index 0000000..cf4c99f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bd81a851.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 b/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 new file mode 100644 index 0000000..bf47cba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/be09c3ad.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 new file mode 100644 index 0000000..318f6e1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/be0e8a5a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 b/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 new file mode 100644 index 0000000..6e3d78f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/be153f92.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 new file mode 100644 index 0000000..d5ddcf7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/be79d1c6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 b/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 new file mode 100644 index 0000000..9455c88 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/beaff0e5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 b/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 new file mode 100644 index 0000000..71d96af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bebd5dcc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 b/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 new file mode 100644 index 0000000..eb39fdd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bf5d7fd2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 b/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 new file mode 100644 index 0000000..969caf9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/bfff0e1f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 new file mode 100644 index 0000000..8f89e8a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c035acf1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 b/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 new file mode 100644 index 0000000..8aa0671 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c08b2fca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 new file mode 100644 index 0000000..dd76e3e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c0b59cd5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 new file mode 100644 index 0000000..1d3a0de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c0becad5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 new file mode 100644 index 0000000..5b47ca5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c0dc60c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 b/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 new file mode 100644 index 0000000..5b1e1ae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c0ef3e5e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 b/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 new file mode 100644 index 0000000..71028ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c1538030.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 b/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 new file mode 100644 index 0000000..c40fb45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c1581e36.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 b/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 new file mode 100644 index 0000000..dc3d6e0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c17f2a95.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 b/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 new file mode 100644 index 0000000..820309c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c206b69c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 new file mode 100644 index 0000000..f991159 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c21fd5eb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 b/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 new file mode 100644 index 0000000..52e63ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c290dee9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 new file mode 100644 index 0000000..18ff453 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c3ad2575.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 new file mode 100644 index 0000000..cc91872 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c3c3fe75.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 new file mode 100644 index 0000000..904554f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c3f23f1d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 b/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 new file mode 100644 index 0000000..a88cb60 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c407df2f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 b/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 new file mode 100644 index 0000000..5038559 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c42bbfd6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 new file mode 100644 index 0000000..95a1e53 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c48a78a5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 b/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 new file mode 100644 index 0000000..dae8ab4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c579a0a6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 b/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 new file mode 100644 index 0000000..305331a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c67c215e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 b/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 new file mode 100644 index 0000000..be5d643 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c67e4554.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 b/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 new file mode 100644 index 0000000..f480a9f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c71e8d9a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 new file mode 100644 index 0000000..4374026 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c7a8c9c1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 new file mode 100644 index 0000000..7da0e00 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c7e2b3d5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 new file mode 100644 index 0000000..46d00d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c7e82146.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 b/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 new file mode 100644 index 0000000..947caf0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c7e8635b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 b/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 new file mode 100644 index 0000000..d07c66c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c8e64019.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 b/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 new file mode 100644 index 0000000..91a8ad4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c931b176.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 new file mode 100644 index 0000000..1348eca --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9480f66.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 new file mode 100644 index 0000000..8eba6aa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9797180.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 new file mode 100644 index 0000000..0d71b9a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9a00be7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 new file mode 100644 index 0000000..0b42980 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9b3ada5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 new file mode 100644 index 0000000..fab4dbf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9b5076d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 b/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 new file mode 100644 index 0000000..2781990 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/c9ede1cf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 b/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 new file mode 100644 index 0000000..abaecf8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ca2be6c9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 new file mode 100644 index 0000000..57c3606 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cb2908e9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 b/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 new file mode 100644 index 0000000..a896d08 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cba0a9ca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 b/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 new file mode 100644 index 0000000..bd60a13 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cbac8aaa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 b/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 new file mode 100644 index 0000000..24a345f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ccba5701.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 b/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 new file mode 100644 index 0000000..911888f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ccc16298.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 b/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 new file mode 100644 index 0000000..3562117 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cce1425f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 b/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 new file mode 100644 index 0000000..077378a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cd3dc2c3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 b/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 new file mode 100644 index 0000000..b7ba155 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cd4d8f7a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 b/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 new file mode 100644 index 0000000..73f9cfd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cda1a566.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 new file mode 100644 index 0000000..3596dac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cdb6b693.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 new file mode 100644 index 0000000..2fdbc1e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cdc770af.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 new file mode 100644 index 0000000..e0a59fd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cdf1c3ef.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 b/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 new file mode 100644 index 0000000..2e47c96 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ce715050.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 b/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 new file mode 100644 index 0000000..7750926 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ce9eb004.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 b/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 new file mode 100644 index 0000000..346218e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cebaa24b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 new file mode 100644 index 0000000..76342f2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf02d8e2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 new file mode 100644 index 0000000..59eeb15 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf248e93.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 new file mode 100644 index 0000000..ab54a14 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf295f73.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 new file mode 100644 index 0000000..ec58312 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf2a0a85.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 new file mode 100644 index 0000000..1455316 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf6d6f30.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 b/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 new file mode 100644 index 0000000..9b6082f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cf9d5267.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 b/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 new file mode 100644 index 0000000..59aabdf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cfa9655f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 b/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 new file mode 100644 index 0000000..ae606bb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/cff6eea9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 new file mode 100644 index 0000000..fa20267 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0342038.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 b/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 new file mode 100644 index 0000000..3c90db3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d09b48b1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 new file mode 100644 index 0000000..3643fec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0a546a6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 new file mode 100644 index 0000000..224ccae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0cecf4f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 new file mode 100644 index 0000000..7e97045 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0e625c0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 new file mode 100644 index 0000000..7303846 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0f4fedd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 b/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 new file mode 100644 index 0000000..b8c5610 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d0f7d102.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 new file mode 100644 index 0000000..6cc5864 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d108850a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 new file mode 100644 index 0000000..5ad6291 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d129485b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 b/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 new file mode 100644 index 0000000..f55375e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d20bd061.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 b/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 new file mode 100644 index 0000000..14625e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d214de53.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 b/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 new file mode 100644 index 0000000..946e91e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d219fd91.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 b/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 new file mode 100644 index 0000000..a2d33ac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d228d1ac.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 b/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 new file mode 100644 index 0000000..6d6a4fa --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d269bf57.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 new file mode 100644 index 0000000..833ec82 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d2800ad0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 b/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 new file mode 100644 index 0000000..e562ef0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d289b887.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 new file mode 100644 index 0000000..372ff89 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d2c72c19.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 new file mode 100644 index 0000000..fea54ac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d2e8e796.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 b/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 new file mode 100644 index 0000000..132b5dd --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d2ebd46c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 b/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 new file mode 100644 index 0000000..ee7dd45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d32f8a26.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 b/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 new file mode 100644 index 0000000..eb0433e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d43f6100.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 new file mode 100644 index 0000000..912ff88 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d4a96716.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 new file mode 100644 index 0000000..6c98728 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d4ae9299.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 new file mode 100644 index 0000000..79a4794 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d4fffa4b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 new file mode 100644 index 0000000..724f4b6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d57e51c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 b/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 new file mode 100644 index 0000000..9f25695 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d5e77211.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 new file mode 100644 index 0000000..330fc03 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d615451a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 b/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 new file mode 100644 index 0000000..7cfb12e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d662c711.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 b/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 new file mode 100644 index 0000000..93f5ba6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d68c6b5a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 new file mode 100644 index 0000000..2e4301e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d6f4d6c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 new file mode 100644 index 0000000..80b7779 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d702d8e9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 b/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 new file mode 100644 index 0000000..d72d08b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d72e5642.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 new file mode 100644 index 0000000..2cac3e8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d741c5dd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 new file mode 100644 index 0000000..6bffb97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d7a69b7b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 new file mode 100644 index 0000000..828ef2a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d7d56ff8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 b/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 new file mode 100644 index 0000000..eb19b18 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d7ecae43.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 b/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 new file mode 100644 index 0000000..021fb5e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d8f20bf0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 b/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 new file mode 100644 index 0000000..211d00e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d8f26b1e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 new file mode 100644 index 0000000..ce1fe97 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d9002330.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 b/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 new file mode 100644 index 0000000..5f2101c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d97e9886.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 new file mode 100644 index 0000000..1e25a98 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d9b31097.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 b/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 new file mode 100644 index 0000000..3a1e394 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/d9f1f706.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 b/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 new file mode 100644 index 0000000..80ad757 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/da29dda0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 b/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 new file mode 100644 index 0000000..f8ba059 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/da46da57.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 b/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 new file mode 100644 index 0000000..78e6cb0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/da8ef2eb.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 b/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 new file mode 100644 index 0000000..ff9bbba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dad2106c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 b/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 new file mode 100644 index 0000000..0b5ffa6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dafd1a87.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 new file mode 100644 index 0000000..e86f666 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/db17d1b4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 b/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 new file mode 100644 index 0000000..f5df6a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/db26cd0b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 b/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 new file mode 100644 index 0000000..b8479ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/db8e73dd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 b/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 new file mode 100644 index 0000000..5416135 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/db92c609.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 new file mode 100644 index 0000000..b8e6507 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dbdc4b76.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 new file mode 100644 index 0000000..1b06c84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dbf1f527.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 b/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 new file mode 100644 index 0000000..adca78c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dbfd39a7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 b/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 new file mode 100644 index 0000000..1560b2c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dc1b7673.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 b/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 new file mode 100644 index 0000000..d17e13f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dc86c2f6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 new file mode 100644 index 0000000..6a09ffc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dcd33a62.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 new file mode 100644 index 0000000..ac56924 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dcd7c346.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 b/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 new file mode 100644 index 0000000..f24b354 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dce2e772.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 new file mode 100644 index 0000000..e5d8ff1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dcf87866.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 b/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 new file mode 100644 index 0000000..a211b64 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dcfebe0e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 new file mode 100644 index 0000000..6da38dc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dd10b6f4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 b/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 new file mode 100644 index 0000000..57b69ea --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dda67aa8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 b/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 new file mode 100644 index 0000000..463e013 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ddff0b65.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 b/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 new file mode 100644 index 0000000..6ccc324 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/de01f078.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 b/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 new file mode 100644 index 0000000..6fb43ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/de978ae9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 b/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 new file mode 100644 index 0000000..ff1de34 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dee08cc0.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 b/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 new file mode 100644 index 0000000..30420c2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/df01c285.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 b/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 new file mode 100644 index 0000000..f2c0784 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/df2fadba.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 b/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 new file mode 100644 index 0000000..ae89510 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/df6bc6bf.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 b/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 new file mode 100644 index 0000000..32470a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/df82f44f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 b/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 new file mode 100644 index 0000000..1ac0abf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/df860193.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 b/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 new file mode 100644 index 0000000..530f70d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/dfc642b4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 b/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 new file mode 100644 index 0000000..8fb2906 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e036f61e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 b/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 new file mode 100644 index 0000000..f13e11d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e0436cb5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 b/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 new file mode 100644 index 0000000..253146d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e07866a3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 b/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 new file mode 100644 index 0000000..909b632 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e094cfe4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 b/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 new file mode 100644 index 0000000..942098f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e0cf68e8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 b/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 new file mode 100644 index 0000000..8b757ec --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e18256ba.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 b/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 new file mode 100644 index 0000000..cdc4304 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e24b4971.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 b/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 new file mode 100644 index 0000000..23ddf41 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e264079a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 new file mode 100644 index 0000000..72e6e03 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e2920962.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 b/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 new file mode 100644 index 0000000..953abac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e29e8451.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 new file mode 100644 index 0000000..f282f18 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e2b7f2e8.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 new file mode 100644 index 0000000..6152679 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e2cd4ea9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 new file mode 100644 index 0000000..21c4b45 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e2f6544b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 b/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 new file mode 100644 index 0000000..cbf157b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e2ffe70e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 new file mode 100644 index 0000000..373b1d4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e33b2c7f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 b/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 new file mode 100644 index 0000000..d369801 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e3ae4d2d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 b/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 new file mode 100644 index 0000000..529e44c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e3d7c442.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 b/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 new file mode 100644 index 0000000..880cb2c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e49824ce.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 new file mode 100644 index 0000000..38def63 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e4ec2dc2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 b/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 new file mode 100644 index 0000000..6d1c52b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e4f0095c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 b/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 new file mode 100644 index 0000000..52e47ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e516e4c5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 b/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 new file mode 100644 index 0000000..2f8371f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e528cde1.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 b/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 new file mode 100644 index 0000000..6f7c8e7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e55176f2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 b/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 new file mode 100644 index 0000000..d4e23d6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e5e909f3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 b/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 new file mode 100644 index 0000000..5f50ecf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e67af557.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 b/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 new file mode 100644 index 0000000..9f77c9e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e6b4aab7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 new file mode 100644 index 0000000..f296b74 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e7803979.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 new file mode 100644 index 0000000..f8bf5da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e7aad562.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 new file mode 100644 index 0000000..a8d10fb --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e7c8de5d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 b/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 new file mode 100644 index 0000000..fd43038 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e7d3044b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 new file mode 100644 index 0000000..f66a214 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e83034c6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 b/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 new file mode 100644 index 0000000..4e64539 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e8777ffa.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 b/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 new file mode 100644 index 0000000..1e7f058 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e8acadad.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 b/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 new file mode 100644 index 0000000..e71534c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e98b08c6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 b/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 new file mode 100644 index 0000000..72e074d --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/e9b1d552.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 new file mode 100644 index 0000000..76f4c1f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ea17073b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 new file mode 100644 index 0000000..1c356de --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ea26fef6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 new file mode 100644 index 0000000..92014e4 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ea8e0a1a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 new file mode 100644 index 0000000..4e1aea3 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ea915e6c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 b/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 new file mode 100644 index 0000000..8ad2642 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eaca633e.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 new file mode 100644 index 0000000..8b08bc2 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eb2a76c7.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 new file mode 100644 index 0000000..95ef40b --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eb67386f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 b/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 new file mode 100644 index 0000000..f2139a7 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eb7c1720.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 new file mode 100644 index 0000000..64002ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ec5a8b64.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 new file mode 100644 index 0000000..f24916a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ec62219b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 b/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 new file mode 100644 index 0000000..2d62c78 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ec9c031f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 b/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 new file mode 100644 index 0000000..eed7549 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eca1fd47.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 b/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 new file mode 100644 index 0000000..d042304 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/eccf06e9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 b/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 new file mode 100644 index 0000000..d4d60ce --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ecd94f38.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 b/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 new file mode 100644 index 0000000..d885795 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ed4c2c15.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 b/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 new file mode 100644 index 0000000..406fa61 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ed5cf55c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 b/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 new file mode 100644 index 0000000..f145a08 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/edba7c75.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 b/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 new file mode 100644 index 0000000..1dcd0af --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/edcb62d5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 b/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 new file mode 100644 index 0000000..ce1a239 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ee154cca.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 b/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 new file mode 100644 index 0000000..6c12b2f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ef00237d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 b/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 new file mode 100644 index 0000000..a677f4a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/efc8654c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 b/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 new file mode 100644 index 0000000..1d2ddef --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f0239cc2.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 b/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 new file mode 100644 index 0000000..048ce46 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f03ffe17.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 b/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 new file mode 100644 index 0000000..e144521 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f076afbd.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 b/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 new file mode 100644 index 0000000..9f45fae --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f20a956f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 b/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 new file mode 100644 index 0000000..dc9f114 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f21dea18.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 b/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 new file mode 100644 index 0000000..1c403c0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f265e93a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 b/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 new file mode 100644 index 0000000..4c481f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f2a75c7f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 b/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 new file mode 100644 index 0000000..23f807c --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f324b46a.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 new file mode 100644 index 0000000..30108da --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f352189b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 b/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 new file mode 100644 index 0000000..847b6a1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f38f3a94.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 b/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 new file mode 100644 index 0000000..af8f7c9 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f3aa8be6.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 b/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 new file mode 100644 index 0000000..749a676 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f3b8c582.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 b/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 new file mode 100644 index 0000000..bdb3b8a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f4964839.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 b/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 new file mode 100644 index 0000000..55b01cf --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f4c46d43.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 b/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 new file mode 100644 index 0000000..78842f1 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f51f8bf3.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 b/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 new file mode 100644 index 0000000..027372a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f522c872.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 new file mode 100644 index 0000000..0f85845 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f674659b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 new file mode 100644 index 0000000..878cc72 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f6a67776.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 new file mode 100644 index 0000000..b0ac9ed --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f6b8b235.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 new file mode 100644 index 0000000..bd31804 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f6bda42b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 b/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 new file mode 100644 index 0000000..1cc722a --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f6e65e59.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 b/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 new file mode 100644 index 0000000..9e8839e --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f73fed81.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 b/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 new file mode 100644 index 0000000..9dbc9bc --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f80829f5.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 b/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 new file mode 100644 index 0000000..54ba1c8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f871e4e4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 b/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 new file mode 100644 index 0000000..5ee5bf5 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f874c31d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 b/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 new file mode 100644 index 0000000..cd12968 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f8a8936b.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 b/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 new file mode 100644 index 0000000..1d2cd3f --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f8c78a1d.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 b/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 new file mode 100644 index 0000000..1b6b6a6 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f952c473.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 b/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 new file mode 100644 index 0000000..6c964ba --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/f99464f4.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 b/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 new file mode 100644 index 0000000..28d3709 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fa9edb37.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 b/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 new file mode 100644 index 0000000..cd73c71 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fbf90859.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 b/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 new file mode 100644 index 0000000..eb15cd8 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fc061854.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 b/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 new file mode 100644 index 0000000..11df275 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fccd4567.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 b/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 new file mode 100644 index 0000000..1118161 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fcf313ef.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 b/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 new file mode 100644 index 0000000..d3e95d0 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fd56eaf9.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 b/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 new file mode 100644 index 0000000..03e7284 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fd5fe89c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 b/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 new file mode 100644 index 0000000..125d766 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fda7a318.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 b/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 new file mode 100644 index 0000000..6449194 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fdc4299c.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 b/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 new file mode 100644 index 0000000..7d41e84 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fe1a9b49.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 b/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 new file mode 100644 index 0000000..2189075 --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fe2af1dc.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 b/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 new file mode 100644 index 0000000..52339ee --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/fef0478f.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 b/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 new file mode 100644 index 0000000..df4eaac --- /dev/null +++ b/cmd/web/static/fonts/glyphs/woff2/ffa0cc23.woff2 | |||
Binary files differ | |||
diff --git a/cmd/web/static/index.html b/cmd/web/static/index.html index 73ffbe3..201225f 100644 --- a/cmd/web/static/index.html +++ b/cmd/web/static/index.html | |||
@@ -13,7 +13,7 @@ | |||
13 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> | 13 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous"> |
14 | <link rel="stylesheet" type="text/css" href="/public/style.css"/> | 14 | <link rel="stylesheet" type="text/css" href="/public/style.css"/> |
15 | <link rel="stylesheet" type="text/css" href="/public/fontello.css"/> | 15 | <link rel="stylesheet" type="text/css" href="/public/fontello.css"/> |
16 | <link rel="stylesheet" type="text/css" href="/public/fonts/cryptocoins.css"/> | 16 | <link rel="stylesheet" type="text/css" href="/public/fonts/bitonics.min.css"/> |
17 | <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | 17 | <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> |
18 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | 18 | <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> |
19 | <!--[if lt IE 9]> | 19 | <!--[if lt IE 9]> |
diff --git a/cmd/web/static/style.css b/cmd/web/static/style.css index 1ba682b..6725ca9 100644 --- a/cmd/web/static/style.css +++ b/cmd/web/static/style.css | |||
@@ -25,9 +25,6 @@ a:focus { | |||
25 | color: inherit; | 25 | color: inherit; |
26 | } | 26 | } |
27 | 27 | ||
28 | i.cc { | ||
29 | } | ||
30 | |||
31 | #logo { | 28 | #logo { |
32 | text-align: center; | 29 | text-align: center; |
33 | display: inline-block; | 30 | display: inline-block; |
@@ -39,6 +36,10 @@ i.cc { | |||
39 | vertical-align: middle; | 36 | vertical-align: middle; |
40 | } | 37 | } |
41 | 38 | ||
39 | .panel-title i { | ||
40 | font-size: 1.3em; | ||
41 | } | ||
42 | |||
42 | #header { | 43 | #header { |
43 | margin-top: 20px; | 44 | margin-top: 20px; |
44 | margin-bottom: 30px; | 45 | margin-bottom: 30px; |
@@ -54,6 +55,10 @@ h1 { | |||
54 | margin-top: 5px; | 55 | margin-top: 5px; |
55 | } | 56 | } |
56 | 57 | ||
58 | i { | ||
59 | font-size: 1.1em; | ||
60 | } | ||
61 | |||
57 | .performance-up { | 62 | .performance-up { |
58 | color: green; | 63 | color: green; |
59 | } | 64 | } |