.gitignore
... ...
@@ -1 +0,0 @@
1
-tasking/
Home.md
... ...
@@ -1,23 +1,33 @@
1 1
# grimoire
2 2
3
-## content
4
-1. [coding](coding/index)
5
-2. [documentation](documentation/index)
6
-3. [d&d](d_and_d/index)
7
-4. [learning](learning/index)
8
-5. [misc](misc/index)
9
-6. [projects](projects/index)
10
-7. [technology](technology/index)
11
- 1. [automation](technology/automation/index)
12
- 2. [authentication](technology/authentication/index)
13
- 3. [bsd](technology/bsd/index)
14
- 4. [cloud](technology/cloud/index)
15
- 5. [communication](technology/communication/index)
16
- 6. [containers](technology/containers/index)
17
- 7. [databases](technology/databases/index)
18
- 8. [encryption](technology/encryption/index)
19
- 9. [linux](technology/linux/index)
20
- 10. [monitoring](technology/monitoring/index)
21
- 11. [networking](technology/networking/index)
22
- 12. [virtualisation](technology/virtualisation/index)
23
- 13. [websites](technology/websites/index)
3
+## tech
4
+### operating systems
5
+* [linux](linux/index)
6
+* [openbsd](/unix/openbsd)
7
+* [freebsd](/unix/freebsd)
8
+
9
+### everyday tools
10
+* [vim](/edt/vim)
11
+* [git](/edt/git)
12
+* [tmux](/edt/tmux)
13
+* [more](/tech-index#everyday-tools)...
14
+
15
+### programming
16
+* [shell_scripts](/programming/shell_scripts)
17
+* [more](/tech-index#programming)...
18
+
19
+### other
20
+* [software](/tech-index#software)
21
+* [hardware](/tech-index#hardware)
22
+* [cloud_and_saas](/tech-index#cloud_and_saas)
23
+
24
+## course notes
25
+* [udmey](/udmey/index)
26
+
27
+## unsorted
28
+* [funding](/unsorted/funding)
29
+* [hackthebox](/unsorted/hackthebox)
30
+* [longbox](/unsorted/longbox)
31
+* [new_blog](/unsorted/new_blog)
32
+* [nmcli_create_bond](/unsorted/nmcli_create_bond)
33
+* [pinterest_ignore](/unsorted/pinterest_ignore)
cloud_saas/azure.md
... ...
@@ -0,0 +1,169 @@
1
+# azure
2
+
3
+## az cli
4
+[docs][]
5
+
6
+### useful cmds
7
+ - show list of resource groups
8
+ ```
9
+ az group list --output table
10
+ ```
11
+ - list resources in a resource group
12
+ ```
13
+ az resource list -g <group_name> --output table
14
+ ```
15
+
16
+create debian machine with no public ip and in prebuilt subnet, with tags
17
+```
18
+az vm create -g my-resource-group -n my-debian-vm --vnet-name my-vnet --nsg "" --image Debian --ssh-key-value .ssh/id_rsa.pub --admin-username pyratebeard --tags created-by=pyratebeard --public-ip-address "" --subnet my-subnet
19
+```
20
+
21
+install the azure cli command `az` by running the following
22
+```
23
+curl -L https://aka.ms/InstallAzureCLI | bash
24
+```
25
+
26
+once installed login in to your account with
27
+```
28
+az login
29
+```
30
+
31
+to switch to a different account run
32
+```
33
+az logout
34
+```
35
+
36
+then run the login command again.
37
+
38
+all the following steps _can_ be run from the portal cli as well as your local machine once you have installed `az`.
39
+
40
+### changing subscriptions
41
+
42
+check your subscriptions
43
+```
44
+az account list --output table
45
+```
46
+
47
+show which subscription you're currently using
48
+```
49
+az account show
50
+```
51
+
52
+then to change subscriptions run
53
+```
54
+az account set --subscription "My Other Subscription"
55
+```
56
+
57
+### show vm images
58
+```
59
+az image list
60
+```
61
+
62
+### getting started
63
+
64
+here is a quick run through of spinning up a [centos][] virtual machine
65
+
66
+ - create resource group
67
+ ```
68
+ az group create --name D-TST-RGRP --location northeurope
69
+ ```
70
+ - create Network Security Group
71
+ ```
72
+ az network nsg create --resource-group D-TST-RGRP --name D-TST-LAPP01
73
+ ```
74
+ - create a network rule in an existing security group
75
+ ```
76
+ az network nsg rule create --resource-group D-TST-RGRP --nsg-name D-TST-NSGP --name allow-access --description "Allow all traffic from my public range" --access Allow --protocol Tcp --direction Inbound --priority 102 --source-address-prefix "97.108.19.240/28" --source-port-range "*" --destination-address-prefix "*" --destination-port-range "*"
77
+ ```
78
+ - create a virtual machine
79
+ ```
80
+ az vm create -g D-TST-RGRP -n D-TST-LAPP01 --image CentOS --generate-ssh-keys
81
+ ```
82
+
83
+once the VM is successfully created it will output some json. make note of the "publicIpAddress" value, and use this to `ssh` to the server.
84
+
85
+## advanced tools
86
+
87
+the following are a collection of tools which have been played around with. some of these tools may require escalated privileges which your account may not have. if you are unable to action anything and really desperately need to then speak to one of the azure admins.
88
+
89
+you can check your current role with the cli. first you need to make a note of the username for the subscription you're using
90
+```
91
+az account show
92
+{
93
+ "environmentName": "AzureCloud",
94
+ "id": "",
95
+ "isDefault": true,
96
+ "name": "My Subscription",
97
+ "state": "Enabled",
98
+ "tenantId": "",
99
+ "user": {
100
+ "name": "dudley@onmicrosoft.com",
101
+ "type": "user"
102
+ }
103
+}
104
+```
105
+copy the value from `"user": "name":`, then run the following replacing `<value>` with the username (usually an email address)
106
+```
107
+az role assignment list --assignee <value>
108
+[
109
+ {
110
+ "id": "/subscriptions/providers/Microsoft.Authorization/roleAssignments/",
111
+ "name": "",
112
+ "properties": {
113
+ "principalId": "",
114
+ "principalName": "dudley@onmicrosoft.com",
115
+ "roleDefinitionId": "/subscriptions/providers/Microsoft.Authorization/roleDefinitions/",
116
+ "roleDefinitionName": "Contributor",
117
+ "scope": "/subscriptions/"
118
+ },
119
+ "type": "Microsoft.Authorization/roleAssignments"
120
+ }
121
+]
122
+```
123
+your current role is under `"properties": "roleDefinitionName":`
124
+
125
+## show all resources in your subscription
126
+```
127
+az group list --output table
128
+```
129
+
130
+## deploy a kubernetes cluster
131
+
132
+we add the `aks` option to manage azure kubernetes services. Currently aks is only available in west europe
133
+```
134
+az group create --name D-K8S-RGRP --location westeurope
135
+az aks create --name D-K8S-KCLU --resource-group D-K8S-RGRP --generate-ssh-keys
136
+az aks get-credentials --name D-K8S-KCLU --resource-group D-K8S-RGRP
137
+az aks browse --name D-K8S-KCLU --resource-group D-K8S-RGRP
138
+az aks show --resource-group pyratebeard-container-demo-rg --name pyratebeard-container-demo-clu --query "servicePrincipalProfile.clientId" --output tsv
139
+```
140
+
141
+## deploy webapp and enable for webhooks
142
+```
143
+az group create --name webapp-rg -l northeurope
144
+az appservice plan create -g webapp-rg -n webapp-srvplan --is-linux
145
+az webapp create -g webapp-rg -p webapp-srvplan -n webapp -i pyratebeard/container-webhook-demo
146
+az webapp deployment container config -n webapp -g webapp-rg --enable-cd true
147
+az webapp deployment container show-cd-url -n D-TST-APP-SRV -g D-TST-APP-RG
148
+```
149
+
150
+run script tool on VMs (under 'Operation')
151
+
152
+## create vpn - [fortinet_cookbook][]
153
+* virtual network
154
+* virtual network gateway
155
+* local network gateway
156
+* public ip
157
+* connection (under virtual network gateway)
158
+* vpn not coming up in fortigate
159
+ * running network watcher troubleshooting
160
+ * need to add address space to connection
161
+* connect through gateway to website (using peering?)
162
+
163
+
164
+[auto_tagging][]
165
+
166
+[centos]: https://www.centos.org/
167
+[fortinet_cookbook]: https://cookbook.fortinet.com/ipsec-vpn-microsoft-azure-54/
168
+[auto_tagging]: https://gallery.technet.microsoft.com/scriptcenter/Automatically-Azure-fc5f1443
169
+[docs]: https://docs.microsoft.com/en-gb/cli/azure/get-started-with-azure-cli?view=azure-cli-latest
cloud_saas/openshift.md
... ...
@@ -0,0 +1,2 @@
1
+# openshift
2
+
coding/adb.md
... ...
@@ -1,26 +0,0 @@
1
-# android debug bridge
2
-
3
-[archwiki][]
4
-
5
-- install `adb`
6
- ```
7
- pacman -S android-tools android-udev
8
- ```
9
-- on android phone
10
- - settings > system > about phone > tap 'build number' 7 times to become developer
11
- - settings > system > (advanced) developer options > enable usb debugging
12
-- plug in phone via usb and switch to 'ptp'
13
-- check device is listed
14
- ```
15
- adb devices
16
- ```
17
-
18
-## screencast
19
-```
20
-adb shell screenrecord --output-format=h264 - | ffplay -
21
-adb shell screenrecord --output-format=h264 - | mpv --no-correct-pts --fps=60 -
22
-```
23
-
24
-
25
-
26
-[archwiki]: https://wiki.archlinux.org/index.php/Android_Debug_Bridge
coding/android.md
... ...
@@ -1,3 +0,0 @@
1
-# android
2
-
3
-- [android debug bridge](adb)
coding/arduino.md
... ...
@@ -1,38 +0,0 @@
1
-# arduino
2
-
3
-## ide installation
4
-```
5
-pacman -S arduino arduino-avr-core
6
-usermod -aG uucp,lock pyratebeard
7
-modprobe cdc_acm
8
-```
9
-
10
-## ide configuration
11
-### maltronics
12
-* in preferences add the following url to 'Additional Boards Manager URLs'
13
-** https://raw.githubusercontent.com/jLynx/MalDuino_Boards/master/IDE_Board_Manager/package_malduino_index.json
14
-* in tools > Board: > select Boards Manager and install
15
-** Arduino AVR Boards
16
-** Maltronics Bad Board
17
-* in tools > Manager Libraries install
18
-** Mouse by Arduino
19
-* select Maltronics Lite in boards list
20
-* use [script converter][]
21
-* for UK keyboard download zip
22
-* open lite.ono
23
- ```
24
- arduino lite/lite.ono
25
- ```
26
-* select Sketch > Upload (Ctrl+U)
27
-
28
-[ducky script][]
29
-
30
-[maltronics: how to script][]
31
-
32
-[hak5 payloads][]
33
-
34
-
35
-[script converter]: https://malduino.com/converter/
36
-[ducky script]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Duckyscript
37
-[maltronics: how to script]: https://malduino.com/wiki/doku.php?id=scripting_howto
38
-[hak5 payloads]: https://github.com/hak5darren/USB-Rubber-Ducky/wiki/Payloads
coding/git.md
... ...
@@ -1,105 +0,0 @@
1
-# git
2
-
3
-undo merge that hasn't been pushed
4
-```zsh
5
-git reset --merge HEAD~1
6
-```
7
-
8
-roll back hard
9
-```
10
-git reset --hard <commit/tag>
11
-```
12
-
13
-force push of a previous commit
14
-```
15
-git push -f origin <commit_id>:<branch>
16
-```
17
-
18
-delete remote branch
19
-```
20
-git push --delete origin <branch>
21
-```
22
-
23
-reset local branch after a forced-update (above)
24
-```
25
-git fetch
26
-git reset origin/<branch> --hard
27
-```
28
-
29
-renaming branch and updating remote
30
-```
31
-git branch -m old-name new-name
32
-git push origin --set-upstream new-name
33
-git push origin :old-name
34
-```
35
-
36
-set username for [single repo][]
37
-```
38
-git config user.username 'name'
39
-```
40
-
41
-set signing key for local repo
42
-```
43
-git config user.signingkey <id>
44
-```
45
-
46
-[signing][] commits
47
-```
48
-git commit -S -m 'msg'
49
-```
50
-
51
-compare diff between two commits
52
-```
53
-git diff <commit>...<commit>
54
-```
55
-
56
-stash
57
-```
58
-git stash
59
-git stash show
60
-```
61
-
62
-unstash
63
-```
64
-git stash pop
65
-```
66
-
67
-add remote origin
68
-```
69
-git remote add origin git@gitserver/path/to/repo
70
-```
71
-
72
-add multiple push repos
73
-```
74
-git remote set-url --add --push origin git@gitserver/original/repo
75
-git remote set-url --add --push origin https://gitserver/another/repo
76
-```
77
-
78
-archive branch
79
-```
80
-git archive --format zip --outpu /path/to/output.zip <branch>
81
-```
82
-
83
-## using `hub`
84
-### pull requests
85
-```
86
-hub pr list
87
-hub pr checkout <num>
88
-```
89
-
90
-## helpful links
91
-
92
-[making a pull request][]
93
-
94
-[branching and rebasing][]
95
-
96
-[branching model][]
97
-
98
-[merging and rebasing][]
99
-
100
-[making a pull request]: https://www.atlassian.com/git/tutorials/making-a-pull-request
101
-[branching and rebasing]: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
102
-[branching model]: https://nvie.com/posts/a-successful-git-branching-model/
103
-[single repo]: https://help.github.com/articles/setting-your-username-in-git/
104
-[merging and rebasing]: https://www.atlassian.com/git/tutorials/merging-vs-rebasing
105
-[signing]: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work
coding/index.md
... ...
@@ -1,7 +0,0 @@
1
-# coding
2
-
3
-- [android](android)
4
-- [arduino](arduino)
5
-- [git](git)
6
-- [svn](svn)
7
-- [vim](vim)
coding/svn.md
... ...
@@ -1,23 +0,0 @@
1
-# svn
2
-
3
-[dave child cheatsheet][]
4
-
5
-[abbey workshop howto][]
6
-
7
-```
8
-svn checkout --username=pyratebeard http://example.com/svn/repo/trunk localrepo
9
-
10
-svn status
11
-
12
-svn update /path
13
-```
14
-
15
-only need add for new directories or files
16
-```
17
-svn add /path|file
18
-
19
-svn commit -m "message" /path|file
20
-```
21
-
22
-[dave child cheatsheet]: https://www.cheatography.com/davechild/cheat-sheets/subversion/
23
-[abbey workshop howto]: https://www.abbeyworkshop.com/howto/misc/svn01/
coding/vim.md
... ...
@@ -1,155 +0,0 @@
1
-# vim
2
-
3
-## copy contents to/from files
4
-to copy the contents into a file
5
- ```
6
- :r <filename>
7
- ```
8
-or
9
- ```
10
- :"qY # yank out of first file
11
- :"qP # put into second file
12
- ```
13
-or read range of lines
14
- ```
15
- :r! sed -n <n>,<m>p /path/to/file.md
16
- ```
17
-
18
-to copy the contents to a new file
19
- ```
20
- :<n>,<m> w <filename>
21
- ```
22
- where `<n>` and `<m>` are numbers or symbols that designate range of lines
23
-
24
-
25
-## text wrap
26
-(wrap to column)
27
-wrap current line
28
-```
29
-gqq
30
-```
31
-
32
-wrap entire file
33
-```
34
-gqG
35
-```
36
-
37
-wrap paragraph using visual selection
38
-```
39
-V}gq
40
-```
41
-
42
-also use visual or visual block with `gq`
43
-
44
-## spell
45
-[using_spellcheck][]
46
-check spelling
47
-```
48
-Spell
49
-```
50
-
51
-move to word
52
-```
53
-]s [s
54
-```
55
-
56
-and see results
57
-```
58
-z=
59
-```
60
-
61
-turn off highlighting
62
-```
63
-set nospell
64
-```
65
-
66
-## buffers
67
-- buffer [faq][]
68
-- using [vanilla vim][]
69
-- [buffers over tabs][]
70
-- open buffer
71
- ```
72
- :e <filename>
73
- :new
74
- ```
75
-- view buffers
76
- ```
77
- :ls
78
- ```
79
-- switch buffers
80
- ```
81
- :buffer <num>
82
- ```
83
-- unload buffer
84
- ```
85
- :bd <num>
86
- ```
87
-
88
-## incrementing numbers
89
-post on [reddit][]
90
-
91
-select several lines containing '0' and type `g<C-a>`
92
-
93
-## split
94
-- movement
95
- ```
96
- <Ctrl>-w [h,j,k,l]
97
- <Ctrl>-w w
98
- ```
99
-- rotate
100
- ```
101
- <Ctrl>-w r
102
- ```
103
-- orientate
104
- ```
105
- <Ctrl>-w J
106
- <Ctrl>-w L
107
- ```
108
-- sizing
109
- ```
110
- <Ctrl>-w - # decrease height by 1 line
111
- <Ctrl>-w + # increase height by 1 line
112
- <Ctrl>-w < # change width by 1 line to the left
113
- <Ctrl>-w > # change width by 1 line to the right
114
- <Ctrl>-w 10 - # decrease height by 10 lines, etc...
115
- ```
116
-
117
-## list recent doc
118
-```
119
-:ol[dfiles]
120
-```
121
-
122
-## replace
123
-- change inner word
124
- ```
125
- ciw
126
- ```
127
-
128
-## delete
129
-- until but not <char>
130
- ```
131
- dt <char>
132
- ```
133
-- until and <char>
134
- ```
135
- df <char>
136
- ```
137
-
138
-## using the shell
139
-[vim and the shell][]
140
-
141
-- in script, highlight line and switch to command mode by pressing `:`
142
-```bash
143
-:'<,'>w !bash -
144
-```
145
-
146
-```python
147
-:'<,'>w !python -
148
-```
149
-
150
-[using_spellcheck]: https://www.linux.com/learn/using-spell-checking-vim
151
-[faq]: http://vim.wikia.com/wiki/Vim_buffer_FAQ
152
-[vanilla vim]: https://stackoverflow.com/questions/16082991/vim-switching-between-files-rapidly-using-vanilla-vim-no-plugins
153
-[buffers over tabs]: https://stackoverflow.com/questions/26708822/why-do-vim-experts-prefer-buffers-over-tabs
154
-[reddit]: https://www.reddit.com/r/vim/comments/a1lvb1/til_gca_for_creating_a_column_of_incrementing/
155
-[vim and the shell]: https://vimways.org/2019/vim-and-the-shell/
custom.css
... ...
@@ -12,23 +12,6 @@
12 12
font-style: normal;
13 13
}
14 14
15
-@font-face {
16
- font-family: 'saxmono';
17
- src: url('/fonts/saxmono-webfont.woff') format('woff');
18
- font-weight: normal;
19
- font-style: normal;
20
-}
21
-@font-face {
22
- font-family: 'envy';
23
- src: url("/fonts/envy_code_r.eot");
24
- src: url("/fonts/envy_code_r.eot?#iefix") format('embedded-opentype'),
25
- url("/fonts/envy_code_r.woff2") format('woff2'),
26
- url("/fonts/envy_code_r.woff") format('woff'),
27
- url("/fonts/envy_code_r.ttf") format('truetype'),
28
- url("/fonts/envy_code_r.svg") format('svg');
29
- font-weight: normal;
30
- font-style: normal;
31
-}
32 15
body {
33 16
background: #171717;
34 17
color: #bbbbbb;
... ...
@@ -171,7 +154,7 @@ a:focus {
171 154
#head #searchbar div#searchbar-fauxtext input#search-query.ph {
172 155
background: #151515;
173 156
color: #bbbbbb;
174
- font-family: 'envy', mono;
157
+ font-family: 'bpmono', mono;
175 158
}
176 159
#head #searchbar div#searchbar-fauxtext a#search-submit {
177 160
background: #151515;
d_and_d/character_sheet-nixolaus.md
... ...
@@ -1,147 +0,0 @@
1
-## character
2
-##### nixolaus nixerum [2]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| wizard | human | sage (researcher) | chaotic neutral | |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| 14 | 1 | 30 |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| 11 | 2d8 | +2 |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| quarterstaff | +2 | bludgeoning |
21
-
22
-spellbook
23
-
24
-### ability scores
25
-| ability | score | mod | saving throw |
26
-| --- | --- | --- | --- |
27
-| str | 11 | 0 | 0 |
28
-| dex | 13 | +1 | +1 |
29
-| con | 15 | +2 | +2 |
30
-| int | 16 | +3 | +5 |
31
-| wis | 14 | +2 | +4 |
32
-| cha | 9 | -1 | -1 |
33
-
34
-### skills
35
-| skill | score | ability |
36
-| --- | --- | --- |
37
-| acrobatics | 1 | dex |
38
-| animal handling | 2 | wis |
39
-| arcana | 5 | int |
40
-| atheletics | 0 | str |
41
-| deception | -1 | cha |
42
-| history | 5 | int |
43
-| insight | 4 | wis |
44
-| intimidation | -1 | cha |
45
-| investigation | 5 | int |
46
-| medicine | 2 | wis |
47
-| nature | 3 | int |
48
-| perception | 2 | wis |
49
-| performance | -1 | cha |
50
-| persuasion | -1 | cha |
51
-| religion | 3 | int |
52
-| sleight of hand | 1 | dex |
53
-| stealth | 1 | dex |
54
-| survival | 2 | wis |
55
-
56
-### languages
57
-- common
58
-- elvish
59
-- goblin
60
-- orc
61
-
62
-### weapon proficiencies
63
-- dagger
64
-- dart
65
-- light crossbow
66
-- quarterstaff
67
-- sling
68
-
69
-### armour proficiencies
70
-
71
-### tool proficiencies
72
-
73
-### equipment
74
-- quarterstaff
75
-- arcane focus
76
-- scholar's pack
77
-- spellbook
78
-- bottle of black ink
79
-- quill
80
-- small knife
81
-- letter from a dead colleague
82
-- common clothes
83
-- belt pouch
84
-- backpack
85
-- book of lore
86
-- ink
87
-- ink pen
88
-- parchment x10
89
-- small knife
90
-- king in yellow
91
-- deed to trollskull manor
92
-- old spellbook from floon
93
-- potion of healing
94
-- potion of giant strength
95
-
96
-#### coin
97
-| pp | gp | ep | sp | cp |
98
-| --- | --- | --- | --- | --- |
99
-| | 20 | | | |
100
-
101
-### traits
102
-
103
-#### personality
104
-> there's nothing i like more than a good mystery
105
-
106
-#### ideals
107
-> knowledge. the path to power and self-improvement is through knowledge
108
-
109
-#### bonds
110
-> i have an ancient text that holds terrible secrets that must not fall into the wrong hands
111
-
112
-#### flaws
113
-> i am easily distracted by the promise of information
114
-
115
-#### features
116
-- ritual casting
117
-- arcane recovery
118
-- researcher
119
-
120
-### other notes
121
-
122
-### spells
123
-[spell list][]
124
-
125
-[spellbook][]
126
-
127
-#### cantrips
128
-- acid splash
129
-- fire bolt
130
-- green-flame blade
131
-- shocking grasp
132
-
133
-#### level 1
134
-- chromatic orb (1)
135
-- comprehend languages
136
-- disguise self (1)
137
-- longstrider (1)
138
-- magic missile (1)
139
-- shield (1)
140
-- thunderwave (1)
141
-- tasha's hideous laughter
142
-- witch bolt (1)
143
-
144
-#### level 2
145
-- acid arrow
146
-- magic weapon
147
-- scorching ray
d_and_d/character_sheet-snow.md
... ...
@@ -1,89 +0,0 @@
1
-## character
2
-##### snow of the mountain [5]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| rogue | tabaxi | anthropologist | chaotic neutral | 6500 |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| 43 | 3 | 40 |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| 14 | 5 | 3 |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| shortsword | +6 | 1d6+3 piercing |
21
-| shortbow | +6 | 1d6+3 piercing |
22
-| dagger | +6 | 1d4+3 piercing |
23
-| shortsword | +4 | 1d4+3 slashing |
24
-
25
-### ability scores
26
-| ability | score | mod | saving throw |
27
-| --- | --- | --- | --- |
28
-| str | 12 | 1 | 1 |
29
-| dex | 17 | 3 | 6 |
30
-| con | 14 | 2 | 2 |
31
-| int | 13 | 1 | 4 |
32
-| wis | 10 | 0 | 0 |
33
-| cha | 11 | 0 | 0 |
34
-
35
-### skills
36
-| skill | score | ability |
37
-| --- | --- | --- |
38
-| acrobatics | 6 | dex |
39
-| animal handling | 0 | wis |
40
-| arcana | 1 | int |
41
-| atheletics | 4 | str |
42
-| deception | 0 | cha |
43
-| history | 1 | int |
44
-| insight | 3 | wis |
45
-| intimidation | 0 | cha |
46
-| investigation | 7 | int |
47
-| medicine | 0 | wis |
48
-| nature | 1 | int |
49
-| perception | 3 | wis |
50
-| performance | 0 | cha |
51
-| persuasion | 0 | cha |
52
-| religion | 4 | int |
53
-| sleight of hand | 6 | dex |
54
-| stealth | 6 | dex |
55
-| survival | 0 | wis |
56
-
57
-### languages
58
-- common
59
-- elvish
60
-- infernal
61
-- thieves' cant
62
-- undercommon
63
-
64
-### weapon proficiencies
65
-
66
-### armour proficiencies
67
-
68
-### tool proficiencies
69
-
70
-### equipment
71
-
72
-#### coin
73
-| pp | gp | ep | sp | cp |
74
-| --- | --- | --- | --- | --- |
75
-| | | | | |
76
-
77
-### traits
78
-
79
-#### personality
80
-
81
-#### ideals
82
-
83
-#### bonds
84
-
85
-#### flaws
86
-
87
-#### features
88
-
89
-### other notes
d_and_d/character_sheet.md
... ...
@@ -1,82 +0,0 @@
1
-## character
2
-##### name [level]
3
-
4
-| class | race | background | alignment | exp points |
5
-| --- | --- | --- | --- | --- |
6
-| | | | | |
7
-
8
-### defence
9
-| hp | initiative | speed |
10
-| --- | --- | --- |
11
-| | | |
12
-
13
-| armour class | hit dice | proficiency |
14
-| --- | --- | --- |
15
-| | | |
16
-
17
-### attacks / spellcasting
18
-| name | atk | damage/type |
19
-| --- | --- | --- |
20
-| | | |
21
-
22
-### ability scores
23
-| ability | score | mod | saving throw |
24
-| --- | --- | --- | --- |
25
-| str | | | |
26
-| dex | | | |
27
-| con | | | |
28
-| int | | | |
29
-| wis | | | |
30
-| cha | | | |
31
-
32
-### skills
33
-| skill | score | ability |
34
-| --- | --- | --- |
35
-| acrobatics | | dex |
36
-| animal handling | | wis |
37
-| arcana | | int |
38
-| atheletics | | str |
39
-| deception | | cha |
40
-| history | | int |
41
-| insight | | wis |
42
-| intimidation | | cha |
43
-| investigation | | int |
44
-| medicine | | wis |
45
-| nature | | int |
46
-| perception | | wis |
47
-| performance | | cha |
48
-| persuasion | | cha |
49
-| religion | | int |
50
-| sleight of hand | | dex |
51
-| stealth | | dex |
52
-| survival | | wis |
53
-
54
-### languages
55
-- common
56
-
57
-### weapon proficiencies
58
-
59
-### armour proficiencies
60
-
61
-### tool proficiencies
62
-
63
-### equipment
64
-
65
-#### coin
66
-| pp | gp | ep | sp | cp |
67
-| --- | --- | --- | --- | --- |
68
-| | | | | |
69
-
70
-### traits
71
-
72
-#### personality
73
-
74
-#### ideals
75
-
76
-#### bonds
77
-
78
-#### flaws
79
-
80
-#### features
81
-
82
-### other notes
d_and_d/dark_sun.md
... ...
@@ -1,13 +0,0 @@
1
-# dark sun
2
-
3
-looting the caravan after being attacked by massive onyx
4
-
5
-- water skins (days travel)
6
-- meat/jerky
7
-- doomar has notched sphere
8
-- shuriken from mantis bloke
9
-- sheet of onyx cut off (her) head :/
10
-- in paliquin finds a box
11
- - beautiful red apples
12
- - long lengths of rope with various knots
13
-- cut 'grub' out of camel thing
d_and_d/dragon_heist.md
... ...
@@ -1,467 +0,0 @@
1
-# dragon heist
2
-
3
-## party
4
-| character | class | race | player |
5
-| --- | --- | --- | --- |
6
-| raiann daardendrian | fighter | dragonborn | maryam |
7
-| guldur despana | sorcerer | drow | steve |
8
-| nixolaus nixerum | wizard | human | dudley |
9
-| donaar norixius | barbarian | dragonborn | john |
10
-| rubick zeck | cleric | human | jp |
11
-
12
-dm - conor
13
-
14
-## party notes
15
-### session 1
16
-- yawning portal inn
17
-- ranar neverember
18
- - human friend of floon (rescued at warehouse)
19
- - son of a lord
20
- - floon kidnapped by mistake
21
- - took paintings we found
22
-- winged serpent - symbol of the zhentarim
23
-- stone of golorr
24
-- spider with 10 legs (circle with spikes) symbol in yellow (found in sewer)
25
- - followed signs into sewer
26
-- found floon in sewer
27
- - gave me a spell book
28
- - burning hands
29
- - disguise self
30
- - false life
31
- - shield
32
- - unseen servant
33
- - witch bolt
34
-- yellow circle with small indentation in middle carved into pillar
35
-- back at the yawning portal
36
- - floon and ranar reunite
37
- - volo presents us with a scroll tube
38
- - deed to property
39
-- trollskull manor, trollskull alley
40
- - tavern on ground floor
41
- - 1000gold to start business
42
-- meet mert the loanshark
43
- - offers to give us the 100gold for the tavern in exchange for going to
44
- blue alley and finding a statue
45
-
46
-### session 2
47
-- blue alley
48
- - found locked room
49
- - minatour fight
50
- - key around its neck
51
- - mimic fight
52
- - painted on wall
53
- - "this tool with"
54
- - treasure chest
55
- - dias with gem and floating sword
56
- - engarving on the dias
57
- - "power pulses within me and only living warmth may move me"
58
- - rubick picks up gem and sword turns around
59
- - fight with gem
60
- - big red gem with tiny gates within
61
- - small room behind hidden wall
62
- - a once comfortable looking study
63
- - walls of reinforced steel
64
- - table
65
- - wooden box
66
- - placed little bag of sand opened/closed while on the table
67
- - placed a trinket in and took off the table
68
- - glowing orb now flies out of box
69
- - bowl of good berries
70
- - table has faintly carved runes all the way around
71
- - look like they reverse the magic of anything in the space
72
- - inscribed on wall
73
- - "what might and"
74
-
75
-### session 3
76
-- hidden room behind wall
77
- - inscription: 'a soft touch'
78
-- retraced steps over sticky carpet
79
-- up to a room with hanging platforms over a 20foot drop
80
-- donaar gets to forth platform when a smoke imp appears and attacks
81
-- after three party members fall we decide to head back and go another route
82
-- found a statue with a button in it, pushed the button and a door opens
83
-- stairs down to a luxurious room which is no longer cared for
84
-- raiann hears a voice behind a door to the east
85
-- behind door is a bronze statue of a wizard (behind a wall of force)
86
- - inscription the wall: 'utter madness PURE RUBBISH'
87
- - on the base is the word 'keilier'
88
- - when the word keilier is spoken he moves
89
- - keilier asks for a riddle
90
- - he tells us the inscription 'utter madness..' is not part of the other inscriptions
91
-- open door to the north
92
-- long corridor with doors on either side and an open door at the end (leading to the room of platforms)
93
-- first door on the left has a large furnace
94
- - demons to act as garbage disposal
95
- - incinerator room
96
-- on the last platform donaar finds a glowing moon touched elvish scimitar
97
- - inscription (in elvish): 'mother moon keep us in the dark'
98
-- second door on the left is an arcane workshop
99
- - find two potions
100
- - potion of healing
101
- - potion of giant strength (strength: 15)
102
- - on the wall: 'strength cannot get'
103
-- room on the right has winding yellow path
104
- - murials of mages holding the holy symbol
105
- - on the west wall are the words: 'can do'
106
- - at the end of the path is a door
107
- - behind door is a room made of red brick
108
- - in the middle of the room is a 3ft tall statue of a rearing unicorn
109
- - 'everything you see is mine' magically written across base when donaar touches horn
110
- - when the unicorn is picked up all the walls turn to mirror
111
- - when rubick tries to take the unicorn through the door the unicorn transports back to the stand and all his clothes and equipment pile up in the room
112
- - rubick walks out the room with his eyes closed and managed to leave the room with his clothes and the unicorn
113
-- phrase above door of next room: 'take only what you can truly afford'
114
- - room is full of coin
115
- - coins arranged in flowing script 'ALL FAKE'
116
- - another room off it
117
- - featureless except for black iron gates at one end
118
- - when gates are touched a mouth appears and say 'though these gates lies paradise'
119
-- guldur and nix take unicorn statue back to tavern
120
-- raiann and donaar appear in a pub and get free drinks from ronar
121
-- rubick lands in a garbage pile
122
-
123
-### session 4
124
-- unicorn picked up by benfactor
125
-- about a week has passed since session 3
126
-- pair of halflings arrive at the tavern (potentially siblings)
127
- - kelso and dannicka
128
- - looking for a job
129
- - previously worked at red larch
130
- - bryn hilltopple is a good cook
131
-- heading to the opera in sea ward to meet mert
132
- - formal clothing required (need to shop for some)
133
- - donaar and rubick go to two shops (gowns, and formal wear)
134
-- private box c in the opera house
135
- - mert tells us there is a cart pulled by talking horse named maxine, find her to see if there are any zenterim operatives in the town
136
-- the next day go to southern ward to meet the talking cat raiann met
137
- - groundskeeper tells us to go and stop a menacing scarecrow from killing livestock
138
-- head out of the south gate and up the southcliff way
139
-- see a scarecrow in the corn fields
140
-- guldur and donaar head to a house after guldur hears some clattering
141
- - donaar kicks the door in
142
- - noise sounds like it's coming from under the stairs
143
- - guldur casts yellow dancing lights
144
- - scratching behind a door
145
- - donaar kicks down another door
146
- - they find an injured crow
147
- - donaar then sees a tall figure in the darkness behind guldur
148
- - donaar and guldur hear a thunderous boom from the field
149
- - they both run up to the figure in the dark and attack
150
- - in the figures straw head there is a light
151
- - guldur casts chromatic orb (fire) but scarecrow isn't affected
152
- - wild magic causes guldur to turn into a potted plant
153
- - donaar has no idea where guldur has gone, he goes into rage
154
- - donaar hits it with his maul but only feels the snapping of twigs, not the same feeling of hitting a real creature
155
- - scarecrow claw attacks donaar and causes damage
156
- - guldur is no longer a potted plant
157
- - guldur casts chromatic orb (fire)
158
- - the scarecrow explodes into flames and tries to embrace guldur (like a lover) but disintegrates
159
- - donaar remembers the thunder noise so sprints out of the house to find the others
160
- - guldur chases after donaar
161
- - donaar is no longer raging, he sprints and smashes the rotten pumpkin scarecrow with his maul, causing it to completely cave in. this releases rubick from the fright
162
-- raiann, nix, and rubick head for the scarecrow
163
- - trying not to get lost in the corn
164
- - rubick figures out we're walking in a circle
165
- - we stop and get our bearing
166
- - nix hears a shuffle of feet in the corn briefly then it stops
167
- - nix casts thunderwave to clear the area of corn and alert the others in the house
168
- - something grabs raiann
169
- - rubick casts sacred flame
170
- - the figure lets go of raiann (it's another scarecrow)
171
- - raiann attacks with whip
172
- - the scarecrow looks straight at raiann and causes fright and paralysed
173
- - it starts to move closer to raiann and brushes her face
174
- - nix hits it with witch bolt
175
- - nix notices the pole where we saw the other scarecrow is empty (uh oh!)
176
- - something ploughs into rubick, it's the other scarecrow with a rotten pumpkin head
177
- - rubick uses guiding bolt and destroys the pumpkin scarecrow's face
178
- - the scarecrow holding raiann rips against her abdomen
179
- - nix continues to cast witch bolt, the hood is starting to smoke and char
180
- - second scarecrow slashes at rubick
181
- - rubick fails a wisdom save so is paralysed and frightened
182
- - first scarecrow attacks raiann again but does no damage
183
- - nix continues with witch bolt, the scarecrow explodes into flames and falls into a heap, this releases raiann from the fright
184
-- after the fight we search the 'corpses'
185
-- donaar takes some of the straw to show the groundskeeper
186
-- we head to the house to investigate
187
-- the crow is dead
188
-- the house is completely empty, no belongings at all
189
-- the party heads back to the groundskeeper
190
-- donaar presents him with the straw from the dead scarecrow
191
-- it's "just straw"
192
-- from nix's studies he knows the scarecrow is an animated evil creature
193
-- groundskeeper is very pleased with our work, offers to 'repay the debts' in the coming weeks
194
-- we all head back to trollskull
195
-- the tavern is clean and tidy, there is no sign of the halflings but they may just be asleep
196
-- as we start pouring drinks and standing around the table nobody notices the seat next to guldur pulls itself out on it's own for guldur to sit down
197
-- donaar rolls '23' for the week of business in the tavern
198
- - we pay the full 60 and make 0
199
-
200
-### session 5
201
-all except donaar walking back to trollskull alley, there's a massive white flash explosion. people on fire, ears ringing from blast. the explosion seems to have started outside our tavern. the front of our inn has collapsed. we head inside the tavern, it seems to be a concussive blast so no fire. there are huge piles of rubble everywhere. nix sees that the cellar door is a jar, rubick hears a faint cough from one of the piles of rubble. donaar is under the rubble, underneath him is a small half-orc kid. donaar has no pulse, he appears to be dead. we start to interrogate the kid, guldur intimidations him and he starts crying.
202
-
203
-a number of guards have cordoned off the area and a few are heading to the inn to investigate. a griffin lands and the rider, in shiny armour, jumps off and talks to one of the guards. the crying kid is attracting attention from the guards. a tall guard appears, escorting a human towards the crime scene. the tall guard start directing others. rubick approaches the guard in charge, and informs him that we are the tavern owners, the short human (barnabus blastwind, a member of the watchful order of mage and protectors) greets us. some of the guards run into the tavern and drag donaar's body out.
204
-
205
-barnabus leads us to a line up of 12 bodies and asks if we recognise any of them. we notice a few things regarding the dead bodies
206
-- nix notices that the gnome with the burnt cloak and dagger looks like he has dried waste on his boots (sewer) and a bulging pouch
207
-- rubick notices that the human with the armour has a black winged snake tattoo on his forearm.
208
-
209
-guldur distracts the guards with a noise in the alley, except for barnabus who smirks at guldur. nix swipes though pouch which contain 5 gem stones, worth 100 gold each.
210
-
211
-seth ( the tall human) says they need to take donaar's body for the time being but will brought back to us.
212
-
213
-falaar, who runs the glasshouse potion place, pulls raiann aside and tells her she saw a cloaked man take something off the gnome body and head to the bent nail inn.
214
-
215
-rubick is near the tiger's eye pi agency. vincent introduces a woman who says she saw a man shaped like puppet without strings on the roof, threw something into the tavern which caused the explosion.
216
-
217
-guldur is approached by a halfling kid who points to a barrel in the corner, he hands him a necklace with two orange beads and a broken clasp, which he found in the barrel after the explosion. guldur and rubick think the necklace is magic but are too stupid to know any more. nix recognises it as a necklace of fireballs, each of the beads is a different fire spell.
218
-
219
-there is a flapping sounds and a little folded up bird hits rubick in the back. when unfolded it is note from raynar, saying "go to the north exit of troll skull, i have a friend waiting".
220
-
221
-a half orc is talking to the guards but gestures for us to follow him. he is wearing studded leather armour, a hood and mask, two swords, and one of his sleeves is dyed red. he is raynar's friend, stil ar'yn.
222
-
223
-the puppet without strings sounds like the automotron which march in the parade, the parade is sponsored by temple of gond. gond is a deity of craft/smithwork, the church is all about inventions and creating. his symbol is a big cog with four spokes.
224
-
225
-we head of towards the house of inspired hands, it looks like a cross between a temple and a workshop. on the roof we see a humanoid shape. a small flapping thing is released from his hand and dives towards guldur.
226
-
227
-- raiann: throws a handaxe at the flying thing, hits it and the bird is demolished.
228
-- the figure on the roof runs off
229
-
230
-we head inside the temple. we are met by a bronze dragonborn priest, valeta. we mention the suspicious figure on the roof, she says it sounds like a nimblewright, which was given to the temple by a wizard a few years back. we follow her up a spiral staircase to a trapped door. we knock on the door and ask nim if they had been near our tavern. stil intimidates to try and get the door open.
231
-
232
-valeta gets nim to open the door, she isn't impressed with the intimidation. she leads us inside and we see nim who is a clockwork automotron figure. nim says he hasn't left the room. he built another nimblewright to ease his lonliness but the second one ran off.
233
-
234
-valeta hands us a nimblewright detector to help find the second one. it can't tell us the direction, only how far we are from it. we determine that nim is the original nimblewright.
235
-
236
-we follow the detector to the east wall of north ward and find an old villa. there is no answer at the gates, which are locked. we wait until dark.
237
-
238
-donaar tries to parkour over the east wall... and fails. guldur manages to break down the door with mage hand. it enters into a pantry, there are two corpses, and older male human and a younger halfling. the have both been stabbed, fresh wounds. we go in through the next door. the room is full of bodies and two thugs with bloody maces are there, we can hear fighting coming from the stairs.
239
-
240
-- guldur: rolls his d100 and weird music is heard
241
-- rubick: swings at the closest thug with his warhammer but misses
242
-- nix: uses witch bolt against the fartherst thug and hits him straight in the chest
243
-- raiann: pieces a thug with her glaive
244
-- the first thug swings at raiann with his mace but misses
245
-- stil: attacks with both his swords twice and almost kills one of the thugs
246
-
247
-- guldur's weird music is still playing. he uses firebolt which hits one of the thugs. then he starts floating up in the air (damn d100)
248
-- rubick: hits the thug with his warhammer
249
-- nix: throws acid chromatic orc at one thug but doesn't quite kill him
250
-- raiann: uses her scimitar to finish him off, then swings her glaive at the other thug and decapitates him.
251
-
252
-we head towards the sounds of fighting coming from the stairs. we go upstairs to find a battle raging between the intruders and the house guards. there are some bodies on the floor.
253
-
254
-- stil: uses his shortswords against an intruder
255
-- house guard 1: attacks his intruder but misses
256
-- house guard 2: hits his intruder
257
-- house guard 3: misses his intruder
258
-- guldur: throws chromatic orb at one of the intruders, he is still floating and music is still playing
259
-- intruder 1: tries to attack stil but misses
260
-- intruder 2: also misses
261
-- intruder 3: misses
262
-- raiann: hits an intruder with her handaxe
263
-- rubick: hits the centre intruder with his two-hand warhammer and bludgeons him, but doesn't quite kill him
264
-- nix: uses scorching ray against all three intruders
265
-
266
-- stil: shortsword against first intruder and kills him
267
-- house guard 1: attacks his intruder and hits
268
-- house guard 2: hits his intruder
269
-- house guard 3: misses his intruder
270
-- guldur: firebolts the centre intruder to death, then casts magic missile (d100) at the third intruder
271
-- raiann: moves into the room to the south and introduces herself to the guy in the room, then glaives him
272
-- rubick: runs in behind raiann and uses two-hand warhammer against the guy
273
-- nix: run in as well and uses firebolt. hits but no damage
274
-- stil: follows us in and uses dual shortswords
275
-- the intruder tries to jump out the window. raiann whips him, then rubick cracks his leg with his warhammer
276
-
277
-the owner of the house comes in and asks who we are, and why we have broken into her house at night. she seems relieved though. some city watch guards enter the house. two children come out of the wardrobe. the woman is yala, a noble, she has a half-orc body guard. barnabus and two griffin riders enter the room.
278
-
279
-the guy (floxan) who jumped out the window was keeping them hostage until her husband attempted a revolt. the husband is behind the door that was being kicked in.
280
-
281
-yala asks again why we are there. nix explains they are tracking a nimblewright. at the mention of the nimblewright the lady tells us one was delivered to them but was a spy that stole her necklace of fireballs.
282
-
283
-the watch pulls us to one side and seth isn't impressed with us running off chasing leads. barnabus is a bit more chilled.
284
-
285
-we head back to trollskull. the people of alley have tidied up a bit. the upstairs, back of the tavern and the basement are good enough to stay in.
286
-
287
-### session 6
288
-when we wake up, the two blacksmiths from the alley would like to help fix the inn.
289
-
290
-the is a large reward waiting for us in the house of inspired hands.
291
-
292
-raiann has the nimblewright finder device.
293
-
294
-we found the nimblewright hiding under a pile of junk in an alley south of trollskull, just off brahiir's street. when we approach it, it throws off it's cloak and takes a fencing position with a rapier
295
-
296
-- nix: throws acid splash at the nimblewright and cause minor damage. makes one of stil's swords magic
297
-- stil: attacks with shortswords and does damage
298
-- rubick: attacks with two-handed warhammer and buckles the nimblewright
299
-- raiann: uses whip and yanks it off it's feet
300
-- guldur: casts chromatic orb but misses and then disappears from view, invisible to the party
301
-- nimblewright: takes the momentum from the whip attack and turns its blades on raiann, hits a second slash with the rapier and causes damage, then swipes with a daggar for more damage
302
-
303
-- nix: casts acid arrow but misses
304
-- stil: attacks with swords again and causes damage, but the nw is still alive
305
-- rubick: attacks with two-handed warhammer and causes damage
306
-- raiann: attacks with scimitar but the nimblewright somersaults over it
307
-- guldur: (still invisible) using breath weapon to cast scorching ray for damage but misses with chromatic orb. then becomes terrified of nix until his next time
308
-- the nimblwright is dead but stil hacks it's head off anyway
309
-
310
-in the cloak it threw aside there is a map of the city of the dead with an 'X' and the word 'Cassalanter' but nobody knows what it means.
311
-
312
-we head back to the temple of the inspired hands with the nimblewright's head. the priestess is hanging a huge statue. stil tosses the head at her feet. she sends a young helper to the coinmaster and he brings a large bag of coin back to us. we follow her to small room and gives us a pair of small (2ft) poles with a horseshoe on top, they are adjustable stilts. guldur tries them on, and with the keyword 'altitude' makes him 5 foot taller. she shows us a pipe that lights itself which nix takes. then she takes out a traveller's backpack which, when you're falling you can pull a cord and it will slow your fall. finally she shows us a small 6inch cube with a crank on top, which when wound will make a loud barking sound or yapping sound when somebody walks near it depending what it is switched to.
313
-
314
-we head to the city of the dead. stil knows that at night there are guards patrolling. he tells us the best time to go is during the day. we still go at night, because we're bad ass. there are 8 guards around the walls.
315
-
316
-guldur uses his 'friend' cantrip and persuasion to try and get past the guards. it only works on one of the two guards standing in front of us, the second guard isn't persuaded. gulder can then teleport up to twenty feet on each turn for the next minute. the first guard is startled when guldur teleports behind him. a bit of persuasion on the second guard convinces him and the first one leads us into the city.
317
-
318
-we manage to get him to tell us about 'cassalanter'. he points to a large, well-lit, mausoleum and says that he thinks that is 'casslanter'. then guldur's "friend" spell wears off and the guards realises we're hostiles and calls for back up.
319
-
320
-- nix: reaches out with shocking grasp but the guard knocks his hand away with his spell
321
-- guldur: casts mage armour and then casts seven magic missiles which completely obliterate the guard
322
-
323
-we quickly run towards the mausoleum, which has the word 'cassalanter' engraved on stone in front of it. there is a huge stone door with a family emblem emblazoned to the side. rubick attempts to pick the lock and succeeds. in the entrance the family emblem is on the floor, and there are four coffins which have names engraved in them. we see human footprints in the dust heading to the stairs.
324
-
325
-rubick heads down the stairs first, followed by raiann, stil, guldur, and nix at the back. we see more coffins, and keep following the corridor. rubick looks around the corner and sees two dead bodies on the floor. raiann notices that they are both male. the first has been gutted with a dagger (which is still in him), and guldur notices the second has been inflicted by 'inflict wounds' spell. we hear a coughing from a small alcove. stil heads towards the noise and finds a woman who has also been stabbed, not responding. rubick heals her with "cure wounds". we try to find out who she is and what happened, but she is reluctant to talk to use. guldur uses "friends" to find out that her b/f is one of the deads bodies. they were all members of a cult who were betrayed by two others. they were looking for a stone that apparently is a map to gold. the cult worships 'asmodiaus' (the deity of indulgence). the woman pulls out an amulet to show us the symbol. she tells us which way they went, towards a windmill at the south of waterdeep. she asks that we promise to avenge her bf's death.
326
-
327
-we decide to loot the dead and start opening the stone caskets. rubick attempts to open one but is too weak and the lid doesn't budge.
328
-
329
-we then head to the windmill, the door is not locked so we head inside and into the first room, which has six squatters in and they all hide when we walk in. the next room has five squatters in. the third room has one person in, who looks like he his high as fuck.
330
-
331
-we decide to head upstairs. we see an ancient millstone under some debris, a couple of unlocked doors, and one locked door. we can't hear anything on the other side. rubick checks one of the unlocked doors, the room is covered in bird droppings and half the ceiling has collapsed.
332
-
333
-rubick then picks the lock on the locked door. it is a nice looking apartment and there are two people in the room who looked panicked when we walk in.
334
-
335
-- stil: uses his hand crossbow and hits one of the people. she cries out "sofia..."
336
-- rubick: casts "inflict wounds" but misses
337
-- the enemy sofia: casts "inflict wounds" back at rubick
338
-- the other enemy: casts "inflict wounds" at raiann and causes her to fall unconscious
339
-- raiann: succeeds a death save
340
-- guldur: casts 'mirror image' then appears slightly younger to nix
341
-- nix: casts hideous laughter at sofia. she saves on wisdom but falls prone with laughter
342
-
343
-- stil: walks up to sofia, who is on the floor, and attacks with short swords and causes damage
344
-- rubick: casts "spare of the dying" on raiann to help her, and "cure wounds" to heal her slightly
345
-- sofia: reaches out to rubick and a flame appears but only does minor damage
346
-- the other enemy: pulls out a dagger and swipes at raiann with damage then swipes at stil but misses
347
-- raiann: fails a death save
348
-- guldur: casts chromatic orb at the other enemy then uses sorcery points to cast chromatic orb again. now for the next 10 rounds of combat guldur has to shout now for the next 10 rounds of combat guldur has to shout.
349
-- nix: casts "scorching ray" against sofia and does massive damage. she reaches into her robes and throws a stone to the other one who reaches out to catch it
350
-
351
-- stil: attacks sofia with shortsword and finishes her off. he releases the sword and brings his other sword up and swings at the outstretched hand of the other one and cuts it clean off
352
-
353
-we see a green stone on the floor. rubick attempts to heal raiann and manages to get her to stand up. we head back to trollskull, and rubick has the stone on his person.
354
-
355
-in the morning rubick hears a voice in his head,
356
- "congratulations..."
357
-he replies,
358
- "thank you"
359
-the voice replies,
360
- "it has been a long time since i was won fairly in battle. for years i have been stolen, dropped, and swapped."
361
- "who own you?"
362
- "nobody owns me, but for now i am yours"
363
- "where are you from?"
364
- "outside reality"
365
-
366
-nix tries to figure out what it is but is too stoned or something
367
-
368
-the stone says,
369
- "are you after the gold? there is a vault deep under waterdeep, and three keys are needed to open the vault. these keys are 'a drunken elf', an animated construct, and a beardless dwarf. finally the gold is guarded by a gold dragon called aurinax"
370
-
371
-we ask, "do dark elves count as elves?"
372
- "an elf is an elf"
373
-
374
-we ask, "does the 'animated construct' have to be alive?"
375
- "providing the construct has not been destroyed or rendered inoperable, however or an object with an animated objects spell will suffice"
376
-
377
-we decide to try and sneak nim the nimblewright out of the temple, and guldur will be our 'drunken elf'. we also want to know if a "disguise self" spell will work if nix pretends to be lord neverember, whose gold it is.
378
-
379
-### session 7
380
-we head to the house of inspired hands, they seem happy to see us. we are able to 'borrow' nim, as long as it isn't going to hurt/damage them, thanks to guldur's persuasion.
381
-
382
-rubick asks the talking stone if we can use a shaven dwarf or if it has to be a dwarf that never grew a beard. a female dwarf will work. one of the contractors fixing up the tavern is a female dwarf. we attempt to persuade her to come with us, but aren't very convincing but she begrudgingly follows us.
383
-
384
-guldur gets drunk, and we head to the vault. the door is huge, and has no handles. in dwarvish runes it says "the three keys, bring them forth". guldur, the dwarf, and nim step forward and the doors open.
385
-
386
-inside is a massive vast chamber with stone columns holding up bridges high up above. there are 12 doors around the room. none of the doors move apart from one set, which gently budges. nix pushes a bit more and the doors open up into another room. there are stairs going up. guldur moves into the room and is immediately fascinated by the fresco on the wall, and won't move for the next 24 hours. rubick walks up behind guldur to try and knock him out and also becomes fascinated with the wall.
387
-
388
-raiann attempts to fire breath the wall to destroy it.
389
-
390
-nix figures out that there is some magic on the wall, anyone within 10 feet becomes enthralled. if enough of it is destroyed the spell may be broken, but the two who are under it's spell try to defend the wall.
391
-
392
-stil: fires his crossbow at the wall which causes damage
393
-nix: launches a bubble of acid which splashes against the wall
394
-raiann: throws her handaxe, but the handle hits the wall and doesn't damage
395
-rubick: heals guldur from his smashed head
396
-guldur: casts a fire bolt at stil but misses
397
-
398
-stil: fires his crossbow at the wall but misses
399
-nix: casts a fire bolt at the wall for damage
400
-raiann: throws her handaxe again, but the handle hits the wall and doesn't damage
401
-rubick: casts sacred flame against raiann
402
-guldur: casts a fire bolt at stil but misses
403
-
404
-due to the damage to the wall rubick and guldur are no longer under the spell. we all decide to head up the stairs. along the wall there is a large mural of a dwarven god. there are also large warhammers along the path. there are a number of bridges which cross the first chamber we entered. we move to the final bridge and cross to find a large locked door. guldur, being drunk, attempts to fight the door with his backpack. rubick and stil push against the door and it starts to open. inside is a small room, the walls are covered in frescos of dwarven blacksmiths and an anvil in the centre of the room. stil notices a hammer on the wall can be removed. he pulls it out and it has dwarvish runes behind it on the wall, which reads "let hearts be lifted and battles won". stil bangs the hammer on the anvil, which causes us all to gain 10 temp hp. we notice the anvil has runes which read "let the hammer fall and the anvil ring".
405
-
406
-we hear a scraping metallic sound outside. the door at the end of next bridge along has now opened. this bridge is broken, so we need to jump. rubick jumps first, but falls. it is a 60 foot fall, so it does pretty bad damage to rubick, but he manages to make it back up to his in record time. stil jumps over the gap with ease. guldur throws one end of some hemp rope over to stil to make the jump easier. guldur jumps and falls, but stil manages to stop him from hitting the floor. guldur drops the last 10 feet. raiann also falls.
407
-
408
-nix shouts to stil and asks him to go and look inside the room, tells the rest of the group to stop jumping off the bridge. stil looks in the room but can't see much accept some more dwarven runes. as stil doesn't read dwarvish so rubick jumps a second time and makes it. the wall reads "a secret never before told will part dumathoin's lips". there is also some rusty armour covered in cobwebs. rubick tells us all that he has an extreme fear of centipedes, and a staircase appears behind the wall. raiann, nix, and guldur manage to jump across the gap to join the others.
409
-
410
-down the stairs we find a corridor which heads north and south. we all head north. there are alcoves all along the walls. in one of them is a heap of gold. in the next alcove, there is a pile of rubies and gems. out of the gloom steps a very old dwarf with a staff that looks like a dragon. he greets us and asks if we want to come back later when he has tidied up. his name is barok clanghammer. he seems like a nice, truthful dwarf, but something about his manner comes across as not dwarven. he asks what brings us down here, and rubick shows him the talking stone. he warns us against magic items like this. nix tells him we are looking for the dragon, and the treasure. the dwarf asks us if the treasure belongs to us, nix casts disguise self to appear as lord neverember to try and convince barok that he is lord neverember, but he isn't very convincing.
411
-
412
-rubick and guldur try to explain that neverember swindled this treasure so it belongs to the city. the dwarf flickers and vanishes, then a dragon appears behind the group. the dragon asks raiann in dragonic if we are telling the truth, to which she says yes.
413
-
414
-the dragon hands raiann a large gem and asks us to take this gem to the city lords as evidence. the dragon will wait until a city official comes back to take ownership of the treasure.
415
-
416
-we head out of the vault, and at the front gate we meet barnibus blastwind, and saeth cromley along with 10 other city watch. barnibus greets us and tells us he would like our help with something. we say we need to go to the city official, and barnibus suggests we all go together.
417
-
418
-we travel to castle waterdeep with the guards and explain everything to lady silverhand, who is very pleased to hear of our discovery of the treasure. when we ask for a reward barnibus reveals that he has had a tail on us and then saeth starts reading out a list of laws we have broken. after all of that barnibus agrees that he is willing to overlook all the penalties and give us 10 percent of the treasure if we stop going on adventures.
419
-
420
-the tavern has been rebuilt, and renamed 'the heroes rest', and the sign is a silhouette of donaar.
421
-
422
-
423
-## character notes
424
-[character_sheet](character_sheet-nixolaus)
425
-
426
-##### the tavern
427
-costs 60 gold every week in expenses
428
-- 50 for maintenance, wages
429
-- 10 for guild
430
-
431
-every week we roll 1d100 + 10 - that's the base roll for the week of business
432
-we can spend coin to promote business
433
-
434
-## treasury
435
-| amount | from | reason |
436
-|------------------------------------------|--------------------------|---------------------------------|
437
-| 50 dragons (10 each) | volothamp 'volo' geddarm | finding his friend floon |
438
-| 300 gold | 4 paintings | found in secret room |
439
-| 500 gold | bars of silver | found in secret room |
440
-| 2 potions healing | treasure chest | found in sewer |
441
-| 16 gold | treasure chest | found in sewer |
442
-| 82 silver | treasure chest | found in sewer |
443
-| 250 copper | treasure chest | found in sewer |
444
-| 1 origami paper bird messenger | treasure chest | found in sewer |
445
-| trollskull manor | volo | finding floon |
446
-| 24 gold | treasure chest | after fight with mimic |
447
-| 267 silver | treasure chest | after fight with mimic |
448
-| small bronze bell | treasure chest | after fight with mimic |
449
-| small silver key wrapped in velvet cloth | treasure chest | after fight with mimic |
450
-| red gem with tiny gates within (raiann) | magic dias in blue alley | after fight with floating sword |
451
-| moon touched elvish scimitar (raiann) | floating platform | |
452
-| | | |
453
-| 500 gold | temple of inspired hands | destroying nimblewright |
454
-| adjustable stilts (guldur) | temple of inspired hands | destroying nimblewright |
455
-| 50K gold | barnibus | finding the treasure |
456
-
457
-
458
-#### spent
459
-| amount | to | reason |
460
-| --- | --- | --- |
461
-| 50 gold | potion keeper | potion of healing |
462
-| 100 gold | formal wear shop | opera |
463
-| 400 gold | gowns shop | opera |
464
-
465
-
466
-[spell list]: http://dnd5e.wikidot.com/spells:wizard
467
-[spellbook]: https://colinmarc.com/dndspells/gen.html?4000010000000000000200000000000000000000020800000000000000000000004000000020000000000000020400000000000
d_and_d/index.md
... ...
@@ -1,6 +0,0 @@
1
-# d&d
2
-
3
-- [character_sheet](character_sheet)
4
-- [dragon_heist](dragon_heist)
5
-- [undermountain](undermountain)
6
-- [dark_sun](dark_sun)
d_and_d/undermountain.md
... ...
@@ -1,220 +0,0 @@
1
-# undermountain
2
-
3
-## party
4
-| character | class | race | player |
5
-| --- | --- | --- | --- |
6
-| tana timbers | druid | gnome | maryam |
7
-| guldur despana | sorcerer | drow | steve |
8
-| snow of the mountain | rogue | tabaxi | dudley |
9
-| stil ar'yn | bloodhunter | half-elf | john |
10
-| valentino cinderfoot | cleric | halfling | jp |
11
-
12
-dm - conor
13
-
14
-## party notes
15
-### session 1
16
-
17
-start at the yawning portal, we all pay 1 gold piece to go down the portal. we are introduced as obaya uday from port nyanzaru, on behalf of the wizard wakanga to find magic items.
18
-
19
-everyone cheers as we are lowered down the portal. people are putting bets on us. it is a 140foot drop, takes a long time to get down. we are lowered into a 40ft square room, with sand on the ground and dusty, graffiti covered shields on the walls.
20
-
21
-we follow a corridor to another room. the walls are lined with door shaped recesses with carvings of demons. at the end of the room are stairs downward. one of the carvings is pointing across the room to a bas relief. when val investigates a door opens up. behind the door is a tunnel. it leads to a room which is slightly flooded. there is a damaged statue to the side, which gives off a dim purple glow. the head appears to be hollow, and twisted around.
22
-
23
-when val gets close to the statue an oil slick from around the statue detaches and approaches val
24
-
25
-- val: casts sacred flame for damage
26
-- tana: turns into a bear, attacks with claws and bites the ooze to kill it
27
-
28
-now we are closer to the statue and see that the head has been screwed a little bit. snow climbs on top of it and unscrews the head to find it full of melted wax, like a jack-o-lantern. snow looks around the room but doesn't notice anything unusual. we go back up the tunnel and venture down the stairs. we enter a dipped area with large pillars, and a giant snake skeleton. on the SE wall, we see the words "certain death this way" and an arrow pointing to the southern exit.
29
-
30
-we follow the death arrow into another corridor. at the end of the long corridor, around the corner we see a dead goblin and a headless statue of a nude woman surrounded by rubble. val digs through rubble and finds the head of the statue, it looks like two snakes. snow and val think that it is from the yuan-ti people. near the goblin are some pickaxes and tools, it looks like they were digging into the wall.
31
-
32
-snow find a couple of copper and a handful of human teeth in the goblin's pockets.
33
-
34
-we crawl down the tunnel to find _another_ nude woman statue with no head, and the head is the snake. at the end of the room is a single door and a double door. snow opens the single door to find another corridor with another door at the end. the double doors opens up to a larger tunnel heading to the east and the south, with candles floating at intervals.
35
-
36
-we head east and eventually come to an alcove with a carving of a bas relief sculpture of a heavyset man playing a harp. on the ground is a broken pole. stil approaches the sculpture and sees an inscription "gaze upon me with bronzed visage and secrets shall I reveal."
37
-
38
-tana squeezes into the alcove to stare at the sculpture but nothing happens. we decide to keep moving and come to another door, which opens to another corridor. we head south and go through another door. we enter a large room with a 30ft wide floor to ceiling map carved into the wall, and a 10ft square pit with a figure deep in the shadows of the 30ft deep pit. val calls down to the figure who asks to be helped up. snow drops down some hempen rope, the figure climbs up and thanks us for the help. he introduces himself as hallaeth garke, he is a revenant. he explains that his _friends_ came down several days ago, they had an argument and he was stabbed and tossed down the pit. he lifts his head and looks undead. guldur thinks he is telling the truth. he asks if we can help us find his _friends_ and he will give us the map they stole.
39
-
40
-snow looks at the carving on the wall, which is a really detailed map of undermountain and the 23 dungeon levels. next to third level is a button/bas relief of a flaming skull, 16 has one that looks like a comet, 23 (the bottom floor) has one with a tower which has a rune above it. each of these can be pressed.
41
-
42
-hallaeth walks over to the wall and presses the flaming skull, we hear a loud magical voice saying "gate access to skullport disabled". he presses the comet and the voice says "gate access to stardock from level 16 only". then he presses the tower and the voice says "gate access to halaster's tower from level 12 only". he goes over to the south wall, knocks on four different bricks, and another secret door opens. snow goes over to the other door in the room to find another corridor.
43
-
44
-hallaeth leads the way through the secret door. we reach the end of the corridor and another door, which is covered in gears and locks. we open the door and enter a large room with another statue. the statue is a life-size dwarf king, but from the neck is a deformed growth and his hands clasp a stone warhammer.
45
-
46
-stil notices that the king's hammer is a separate piece of stone. he turns it and the pedestal rises another 3 feet to expose a hollow with a gold replica of the circlet around the king's head. val takes the circlet and puts it on top of his pot helmet. we decide to take a short rest.
47
-
48
-val comes to learn that the circlet is a 'circlet of blasting'.
49
-
50
-suddenly we hear a roar from the next room, and three bugbears approach us.
51
-
52
-- snow: leaps at the closest bugbear with his claws but misses, then he jumps around the corner as guldur shouts for him to get out the way
53
-- guldur: casts lightening bolt and hits two of the bugbears, destroying one of them.
54
-- bugbear1: stomps around the corner and swings it's morning star at snow but misses
55
-- bugbear2: attempts to hit stil with his morning star
56
-- tana: casts entangle in the area around the bugbears but only one of them gets caught up in vines, then she changes into a bear
57
-- val: casts spiritual weapon which looks like a trident and appears behind one of the bugbears and causes damage. then he casts sacred flame but only does half damage
58
-- stil: attacks with his one of his shortsword for damage, then the other shortsword for more damage. he swings the first shortsword again to finish the bugbear off. when the bugbear dies a tiny brain thing appears on the floor
59
-- hallaeth: runs to the brain thing, which is an intellect devourer, and swipes at it with his fists and pounds it into the ground
60
-
61
-- snow: swipes his shortsword with sneak attack and puts it straight through the bugbear's eye socket, killing it.
62
-- guldur: casts firebolt at the next enemy he sees
63
-- tana: decides to charge the next enemy she sees
64
-(we hear a dull scream from the north corridor and some goblins appear)
65
-- val: makes it through the vines and casts guiding bolt on the first goblin but misses. then he moves the spirit weapon closer to him
66
-- stil: approaches the first goblin and attacks with his shortswords but only hits once for minor damage
67
-- hallaeth: he swings his fist at the first goblin but misses, on the second swing he kills it
68
-
69
-- snow: dashes around the vines then fires a shortbow at the next goblin, killing it
70
-- guldur: casts firebolt and the third goblin and destroys it
71
-- tana: still as a bear and runs towards the goblins
72
-- goblin 3: runs up to tana for an attack but tana bites down and kills it
73
-- goblin 4: fires an arrow at tana and hits for minor damage
74
-- goblin 5: also fires an arrow at tana for more damage
75
-- goblin 6: fires an arrow at stil but misses
76
-- val: moves his spirit weapon towards the goblins then casts sacred flame and kills the forth goblin
77
-- stil: approaches the next goblin and attacks with his shortswords and kills it
78
-- hallaeth: attacks one of the goblins
79
-
80
-- snow: dashes along the corridor to the furthest goblin and attack with his shortsword but misses
81
-- guldur: casts firebolt at the goblin snow just attacked. then tana and val take hit points which guldur gains
82
-- tana: still as a bear approaches the two goblins by snow and tries to bite one but misses, but claws the second one to death
83
-- goblin 7: slashes at snow, who dodges to take minor damage
84
-- goblin 8: fires an arrow at tana for damage
85
-- goblin 9: attacks haellath
86
-- goblin 10: attacks haellath
87
-- goblin 11: fires an arrow at snow, who dodges for minor damage
88
-- val: casts sacred flame at a goblin and kills it
89
-- stil: approaches a goblin and attacks with his shortswords and kills it, then turns to another goblin and kills it aswell
90
-- hallaeth: attacks a goblin but misses then kills it on the second hit
91
-
92
-- snow: dashes up to a goblin and swings his shortsword with sneak attack to hit, killing it
93
-- guldur: joins the fight instead of minding the door
94
-- tana: turns back into a gnome and casts poison spray at a goblin and destroys it
95
-- goblin 12: fires an arrow at tana for minor damage
96
-- goblin 13: fires an arrow at snow for minor damage
97
-- goblin 14: fires an arrow at guldur but misses
98
-- goblin 15: fires an arrow at stil for minor damage
99
-- goblin 16: fires an arrow at val for minor damage
100
-- val: runs up closer to the goblins
101
-- stil: fires his crossbow at the closest goblin and kills it, then again at the next goblin to kill it
102
-- hallaeth: swings both fists at a goblin but misses completely
103
-
104
-- snow: dashes along the wall to the corner then fires an arrow at a goblin but misses
105
-- guldur: casts firebolt at a goblin and kills it
106
-(snow hears a roar and thumping steps then two huge two-headed ettin come looming out of the darkness)
107
-- ettin 1: approaches snow
108
-- tana: hides back then casts poison spray at the ettin in front of snow for minor damage
109
-- goblin 17: fires an arrow at snow but misses
110
-- goblin 18: fires an arrow at hallaeth but misses
111
-- val: approaches the corner the casts guiding bolt at the closest ettin which causes major radiant damage
112
-- stil: approaches the nearest ettin and attacks with his shortswords causing damage on two strikes, missing on the third
113
-- hallaeth: approaches a goblin and misses on the first swing but hits and kills on the second
114
-
115
-- snow: matrix style runs up the wall and swings a shortsword at the ettin, slashing open it's neck then claws across it's face to finish it off
116
-- guldur: casts chromatic orb at the second ettin for major fire damage, then a third eye appears on his forehead
117
-- ettin 2: roars at the revenant and swings it's morning star, smashing hallaeth across the room. then he stomps up to stil and slashes him for damage with his battleaxe
118
-- goblin 19: hits guldur with an arrow, then scampers off
119
-- tana: summons a giant snake and orders it to attack the ettin
120
-- snake: wraps around the ettin, tightening around it
121
-- val: runs over to hallaeth to see how he is... he is definitely dead. he then casts spiritual weapon again for damage on the ettin
122
-- stil: attacks the ettin with his shortswords causing damage on two strikes
123
-
124
-- snow: feeling pumped after destroying the first ettin, runs up the snake around the second ettin and chops both heads off at the same time
125
-- guldur: casts chromatic orb and the final, sneaky goblin and completely melts him with acid
126
-
127
-### session 2
128
-anvil, hearth. stone hammer. se corner 2 dead/rotting carrion crawlers on top of stone slab.
129
-
130
-open door to the south, three statues. 8ft tall elf warriors, the 3rd one has gold spear. guldur sees it is a granite statue.
131
-
132
-stil takes a look at the gold spear. when he touches it his hand gets stuck to it
133
-
134
-- stil: manages to pull his arm free and invokes crimson rite
135
-- guldur: casts mirror image and then casts fog cloud
136
-- tana: holds her action
137
-- mimic: leans over to stil and opens up, but misses due to the fog cloud
138
-- val: moves into the fog, closer to the mimic
139
-- snow: fires an arrow in the direction of the mimic but misses
140
-
141
-- stil: attacks with his shortswords. first sword with his crimson rite, hits but does no damage. second same. third misses
142
-- guldur: breaks concentration to clear the fog, casts fire bolt at the mimic which hits for damage. a rush of wind then a small ball falls to the ground and stands up
143
-- tana: casts poison spray for damage
144
-- mimic: tries to bite stil again but misses
145
-- val: swipes with his warhammer for damage
146
-- snow: fires an arrow with sneak attack for damage
147
-
148
-- stil: uses his shortswords, first with crim rite which kills mimic
149
-
150
-behind where the mimic was is a crumbled statue which looks like the others
151
-
152
-- snow: swipes with his claws at the nearest stirge but misses
153
-- tana: changes into a bear and bites the nearest stirge for damage, then kills another one with claws
154
-- stil: swings with his shortswords, first misses, second kills it. moves closer to another and kill it
155
-- guldur: casts lightning bolt across the room and destroys 6 stirge. while he casts butterflies and petals float around him
156
-- val: moves and thunderwave and kills some more
157
-- stirge 1: attacks stil attaches but does no damage
158
-- stirge 2: attacks val attaches and starts draining blood
159
-- stirge 3: attacks snow attaches but does no damage
160
-- stirge 4: attacks tana (bear)
161
-
162
-- snow: detaches from stirge
163
-- tana: kills a stirge
164
-- stil: detaches the stirge from tana
165
-- guldur: casts fire bolt but misses, then the floor in front of him becomes slippery
166
-- val: swings at a stirge with hammer but misses
167
-- stirge 2: misses val
168
-- stirge 3: hits snow for damage and attaches
169
-- stirge 4: misses tana
170
-
171
-- snow: runs up to val and kills the stirge near him
172
-- tana: misses the stirge
173
-- stil: attacks stirge and kills it then attacks and kills the stirge on snow
174
-
175
-halleath returns while we're resting and leads us to the stairs down
176
-
177
-attack unsuspecting goblins
178
-
179
-- val: casts spirit weapon into the middle of the goblins and attacks one of them but misses
180
-- snow: jumps on the closest with his sword and kills it
181
-- guldur: casts fire bolt, moves further away
182
-- stil: shortswords kills one
183
-- tana: runs up and casts poison spray, kills one
184
-
185
-- val: moves up and uses warhammer, then attacks with spirit weapon to kill the last one
186
-
187
-we head down the tunnel and attempt to stealth past a serpent thing
188
-
189
-- snow: sneaks into the room and fires an arrow at the large grick but misses
190
-- guldur: casts slow but has no effect
191
-- grick: whips tail at snow for damage, latches on to val with tentacles and attacks with beak for major damage
192
-- val: casts call lightning on the grick for damage
193
-- tana: turns into a wolf and bites the grick for damage
194
-- stil: crimson rite
195
-
196
-- snow: shortsword swipe with sneak attack causes decent damage
197
-- guldur: casts slow which does effect
198
-- grick: moves??
199
-- val: uses the call lightning again for decent damage
200
-- tana: as a wolf tries to bite for damage
201
-- stil: using two lightning weapons hits to slice it in half
202
-
203
-- snow: moves up to look at an upside down throne with minatour armour
204
-- small grick 1: sneaks up behind guldur in the tunnel
205
-- guldur: casts mirror image, tries to move out of the grick's way but gets hit
206
-- val:
207
-- tana:
208
-
209
-
210
-## character notes
211
-[character_sheet](character_sheet-snow)
212
-
213
-## treasury
214
-| amount | from | to | reason |
215
-| -------------------------- | ------------------- | --- | ---------- |
216
-| yellow gem worth 50 gold | statue on ceiling | stil | thieving |
217
-| blue gem worth 10 gold | statue on ceiling | val | thieving |
218
-| greataxe | statue on ceiling | val | thieving |
219
-| | | | |
220
-
documentation/gollum.md
... ...
@@ -1,98 +0,0 @@
1
-# gollum
2
-
3
-## install and enable
4
-```
5
-gem install gollum
6
-gem install github-markdown #required for tables
7
-```
8
-
9
-navigate to wiki dir and run gollum
10
-```
11
-gollum --css --h1-title
12
-```
13
-- using custom css file and setting first h1 header as page title
14
-- see [gollum config][] docs for options
15
-- look at [omnigollum][] for user auth
16
-- [gollum reverse proxy][]
17
-
18
-## running as a service
19
-enter the following in `/etc/systemd/system/gollum-personal.service`
20
-```
21
-[Unit]
22
-Description=Personal Gollum wiki server
23
-After=network.target
24
-
25
-[Service]
26
-Type=simple
27
-ExecStart=/home/pyratebeard/.gem/ruby/2.5.0/bin/gollum --show-all --live-preview --h1-title --port 4666 --css "/path/to/your/repo"
28
-Restart=on-abort
29
-
30
-[Install]
31
-WantedBy=multi-user.target
32
-```
33
-
34
-## installing gollum on jump-test
35
-https://github.com/gollum/gollum # use --bare
36
-
37
-- configure omnigollum https://github.com/arr2036/omnigollum
38
-- using azuread https://github.com/AzureAD/omniauth-azure-activedirectory
39
-
40
-### steps
41
-- to enable [git server][]
42
- - install git (duh!)
43
- - create 'git' user
44
- ```
45
- adduser git
46
- mkdir ~git/.ssh
47
- chmod 700 ~git/.ssh
48
- touch ~git/.ssh/authorized_keys
49
- chmod 600 ~git/.ssh/authorized_keys
50
- ```
51
-- mkdir 'wiki' dir
52
- ```
53
- mkdir /wiki
54
- chown git. /wiki
55
- ```
56
-- create git repo - [getting git on server][]
57
- ```
58
- su - git
59
- cd /wiki
60
- git init --bare --shared
61
- ```
62
-- clone repo and initial commit (on local machine)
63
- ```
64
- git clone git@gitserver:/wiki wiki
65
- cd wiki/
66
- echo "# wiki" > README.md
67
- git add README.md
68
- git commit -m "Initial commit"
69
- git push -u origin master
70
- ```
71
-- install gollum
72
- ```
73
- apt install ruby ruby-dev build-essential zlib1g-dev libicu-dev
74
- gem install gollum
75
- ```
76
-
77
- ```
78
- yum group install "Development Tools"
79
- yum install ruby ruby-devel libicu libicu-devel zlib zlib-devel
80
- gem install gollum
81
- ```
82
-- enable gollum as a service
83
- ```
84
- vi /etc/systemd/system/gollum.service
85
-
86
- [Service]
87
- ExecStart=/usr/local/bin/gollum --show-all "/wiki"
88
- ```
89
-- allow traffic
90
- ```
91
- iptables -I INPUT -p tcp --dport 4567 -j ACCEPT -m comment --comment "Allow access to wiki"
92
- ```
93
-
94
-[gollum config]: https://github.com/gollum/gollum#configuration
95
-[omnigollum]: https://github.com/arr2036/omnigollum/blob/master/config.rb.example
96
-[gollum reverse proxy]: https://gist.github.com/spinpx/c46ea0b24157ca5f731f
97
-[git server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Setting-Up-the-Server
98
-[getting git on server]: https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server
documentation/index.md
... ...
@@ -1,6 +0,0 @@
1
-# documentation
2
-
3
-- [gollum](gollum)
4
-- [pandoc](pandoc)
5
-- [vimwiki](vimwiki)
6
-- [latex](latex)
documentation/latex.md
... ...
@@ -1 +0,0 @@
1
-# latex
documentation/pandoc.md
... ...
@@ -1,8 +0,0 @@
1
-# pandoc
2
-
3
-## curl webpages to man ([xero's trick][])
4
-```
5
-curl http://webpage.com | pandoc -s -f html -t man | man -l -
6
-```
7
-
8
-[xero's trick]: https://nixers.net/showthread.php?tid=1679&pid=15789&highlight=pandoc#pid15789
documentation/vimwiki.md
... ...
@@ -1,31 +0,0 @@
1
-# vimwiki
2
-
3
-## commands
4
-| command | description |
5
-| --- | --- |
6
-| `=` | increase header |
7
-| `-` | decrease header |
8
-| `C-space` | check todo box |
9
-| `glh` | step down list |
10
-| `gll` | step up list |
11
-| `glr` | refresh numbered list |
12
-| `\w\t` | day diary in new tab |
13
-| `\w\i` | on diary index generate new links |
14
-| `\wt` | open wiki index in tab (only after mapping `nmap <Leader>wt <Plug>VimwikiTabnewLink`) |
15
-| `\wi` | open diary index |
16
-
17
-## syntax highlighting
18
-```bash
19
-echo hello friend
20
-```
21
-
22
-## convert to html
23
-pandoc -s -f markdown -t html -o uofu/azure_ad_requirements.html uofu/azure_ad_requirements.md && firefox uofu/azure_ad_requirements
24
-.html
25
-
26
-## anchors
27
- use [title] (#anchor#subanchor)
28
- i'm using :tags: under a #ref header to jump to links in page
29
- - switch to [pandoc markdown][]
30
-
31
-[pandoc markdown]: http://pandoc.org/MANUAL.html#pandocs-markdown
edt/git.md
... ...
@@ -0,0 +1,105 @@
1
+# git
2
+
3
+undo merge that hasn't been pushed
4
+```zsh
5
+git reset --merge HEAD~1
6
+```
7
+
8
+roll back hard
9
+```
10
+git reset --hard <commit/tag>
11
+```
12
+
13
+force push of a previous commit
14
+```
15
+git push -f origin <commit_id>:<branch>
16
+```
17
+
18
+delete remote branch
19
+```
20
+git push --delete origin <branch>
21
+```
22
+
23
+reset local branch after a forced-update (above)
24
+```
25
+git fetch
26
+git reset origin/<branch> --hard
27
+```
28
+
29
+renaming branch and updating remote
30
+```
31
+git branch -m old-name new-name
32
+git push origin --set-upstream new-name
33
+git push origin :old-name
34
+```
35
+
36
+set username for [single repo][]
37
+```
38
+git config user.username 'name'
39
+```
40
+
41
+set signing key for local repo
42
+```
43
+git config user.signingkey <id>
44
+```
45
+
46
+[signing][] commits
47
+```
48
+git commit -S -m 'msg'
49
+```
50
+
51
+compare diff between two commits
52
+```
53
+git diff <commit>...<commit>
54
+```
55
+
56
+stash
57
+```
58
+git stash
59
+git stash show
60
+```
61
+
62
+unstash
63
+```
64
+git stash pop
65
+```
66
+
67
+add remote origin
68
+```
69
+git remote add origin git@gitserver/path/to/repo
70
+```
71
+
72
+add multiple push repos
73
+```
74
+git remote set-url --add --push origin git@gitserver/original/repo
75
+git remote set-url --add --push origin https://gitserver/another/repo
76
+```
77
+
78
+archive branch
79
+```
80
+git archive --format zip --outpu /path/to/output.zip <branch>
81
+```
82
+
83
+## using `hub`
84
+### pull requests
85
+```
86
+hub pr list
87
+hub pr checkout <num>
88
+```
89
+
90
+## helpful links
91
+
92
+[making a pull request][]
93
+
94
+[branching and rebasing][]
95
+
96
+[branching model][]
97
+
98
+[merging and rebasing][]
99
+
100
+[making a pull request]: https://www.atlassian.com/git/tutorials/making-a-pull-request
101
+[branching and rebasing]: https://git-scm.com/book/en/v2/Git-Branching-Rebasing
102
+[branching model]: https://nvie.com/posts/a-successful-git-branching-model/
103
+[single repo]: https://help.github.com/articles/setting-your-username-in-git/
104
+[merging and rebasing]: https://www.atlassian.com/git/tutorials/merging-vs-rebasing
105
+[signing]: https://git-scm.com/book/en/v2/Git-Tools-Signing-Your-Work
edt/irc.md
... ...
@@ -0,0 +1,49 @@
1
+# irc
2
+
3
+[mode list][]
4
+
5
+## freenode
6
+use the following to search channels
7
+```
8
+/msg alis LIST *searchterm*
9
+```
10
+
11
+## irc.highway.net #ebooks
12
+```
13
+@search Author/Title
14
+/dcc get Search
15
+```
16
+
17
+locate correct file
18
+```
19
+!user filename
20
+/dcc get username
21
+```
22
+
23
+## ssl port
24
+```
25
+/connect -tls <irc_server> <port>
26
+```
27
+
28
+## irc.c
29
+* `j <chan>` - join channel
30
+* `l <chan>` - leave channel
31
+* `m <user>` - private message
32
+* `ctrl-n` - next window
33
+* `ctrl-p` - previous window
34
+* `r <cmd>` - send raw
35
+ * `r names`
36
+ * `r whois`
37
+
38
+### testing
39
+* miniircd (lxc container)
40
+ * get ip (10.0.3.133)
41
+* ircc (lxc container)
42
+ * `./irc -n guest -u guest -s 10.0.3.133`
43
+
44
+## irssi
45
+### colour table
46
+
47
+use 256 color tables 1-7 preceded with `x` (bg) or `X` foreground, and then a,b,c etc. i.e `%x7g`
48
+
49
+[mode list]: https://madirc.net/irc-channelmodes.html
edt/mail.md
... ...
@@ -0,0 +1,15 @@
1
+```
2
+mail
3
+```
4
+* `+` open next mail
5
+* `-` open prev mail
6
+* `d` delete mail
7
+ * `d 6 9` delete mail 6 & 9
8
+ * `d 4-40` delete mails 4 to 40
9
+ * `d*` delete all
10
+* `reply`
11
+* `h` print messages
12
+
13
+use csv list in ~/.forward to forward mails to external addr. or check /etc/aliases ([stackexchange][])
14
+
15
+[stackexchange]: https://unix.stackexchange.com/a/26670
edt/mutt.md
... ...
@@ -0,0 +1,47 @@
1
+# mutt
2
+
3
+search, limit and tagging [patterns][]
4
+* limit new (unread) messages using `~U`
5
+* limit messages either to: or cc: using ~C (useful for mailing lists)
6
+
7
+## index format
8
+default index format is (taken from [muttrc man][])
9
+```
10
+"%4C %Z %{%b %d} %-15.15L (%?l?%4l&%4c?) %s"
11
+```
12
+
13
+current format is
14
+```
15
+"%Z %-30.30L %M %s"
16
+```
17
+_message status, sender, hidden msgs (in thread), subject_
18
+
19
+## threads
20
+collapse threads using `Esc-v`
21
+
22
+[rebind collapse-thread][] to '-'
23
+```
24
+bind index - collapse-thread
25
+```
26
+
27
+configure threads to be collapsed when mailbox opened ([thread_ref][])
28
+```
29
+folder-hook . "push <collapse-all>\n"
30
+```
31
+
32
+## attachments
33
+download directory macro ([macro source][])
34
+```
35
+macro attach W "<save-entry><bol>~/tmp/<eol>"
36
+```
37
+
38
+pipe pdf
39
+```
40
+| zathura -
41
+```
42
+
43
+[patterns]: http://www.mutt.org/doc/manual/#patterns
44
+[muttrc man]: https://linux.die.net/man/5/muttrc
45
+[rebind collapse-thread]: https://heipei.net/2009/09/10/mutt-threading-like-a-pro/
46
+[thread_ref]: http://compgroups.net/comp.mail.mutt/collapsing-threads-by-default/2550437
47
+[macro source]: https://superuser.com/questions/695541/where-does-mutt-save-attachment
edt/tmux.md
... ...
@@ -0,0 +1,12 @@
1
+# tmux
2
+
3
+all commands used with `prefix`
4
+
5
+| command | description |
6
+| --- | --- |
7
+| `s` | switch tmux sessions |
8
+| `r` | reload config |
9
+| `$` | rename session |
10
+
11
+
12
+
edt/vim.md
... ...
@@ -0,0 +1,227 @@
1
+# vim
2
+
3
+## copy contents to/from files
4
+to copy the contents into a file
5
+ ```
6
+ :r <filename>
7
+ ```
8
+or
9
+ ```
10
+ :"qY # yank out of first file
11
+ :"qP # put into second file
12
+ ```
13
+or read range of lines
14
+ ```
15
+ :r! sed -n <n>,<m>p /path/to/file.md
16
+ ```
17
+
18
+to copy the contents to a new file
19
+ ```
20
+ :<n>,<m> w <filename>
21
+ ```
22
+ where `<n>` and `<m>` are numbers or symbols that designate range of lines
23
+
24
+
25
+## text wrap
26
+(wrap to column)
27
+wrap current line
28
+```
29
+gqq
30
+```
31
+
32
+wrap entire file
33
+```
34
+gqG
35
+```
36
+
37
+wrap paragraph using visual selection
38
+```
39
+V}gq
40
+```
41
+
42
+also use visual or visual block with `gq`
43
+
44
+## spell
45
+[using_spellcheck][]
46
+check spelling
47
+```
48
+Spell
49
+```
50
+
51
+move to word
52
+```
53
+]s [s
54
+```
55
+
56
+and see results
57
+```
58
+z=
59
+```
60
+
61
+turn off highlighting
62
+```
63
+set nospell
64
+```
65
+
66
+## buffers
67
+- buffer [faq][]
68
+- using [vanilla vim][]
69
+- [buffers over tabs][]
70
+- open buffer
71
+ ```
72
+ :e <filename>
73
+ :new
74
+ ```
75
+- view buffers
76
+ ```
77
+ :ls
78
+ ```
79
+- switch buffers
80
+ ```
81
+ :buffer <num>
82
+ ```
83
+- unload buffer
84
+ ```
85
+ :bd <num>
86
+ ```
87
+
88
+## incrementing numbers
89
+post on [reddit][]
90
+
91
+select several lines containing '0' and type `g<C-a>`
92
+
93
+## split
94
+- movement
95
+ ```
96
+ <Ctrl>-w [h,j,k,l]
97
+ <Ctrl>-w w
98
+ ```
99
+- rotate
100
+ ```
101
+ <Ctrl>-w r
102
+ ```
103
+- orientate
104
+ ```
105
+ <Ctrl>-w J
106
+ <Ctrl>-w L
107
+ ```
108
+- sizing
109
+ ```
110
+ <Ctrl>-w - # decrease height by 1 line
111
+ <Ctrl>-w + # increase height by 1 line
112
+ <Ctrl>-w < # change width by 1 line to the left
113
+ <Ctrl>-w > # change width by 1 line to the right
114
+ <Ctrl>-w 10 - # decrease height by 10 lines, etc...
115
+ ```
116
+
117
+## diff
118
+```
119
+:windo diffthis
120
+:windo diffoff
121
+```
122
+
123
+## list recent doc
124
+```
125
+:ol[dfiles]
126
+```
127
+
128
+## replace
129
+- change inner word
130
+ ```
131
+ ciw
132
+ ```
133
+
134
+## delete
135
+- until but not <char>
136
+ ```
137
+ dt <char>
138
+ ```
139
+- until and <char>
140
+ ```
141
+ df <char>
142
+ ```
143
+
144
+## visual
145
+- visual select to end of line excluding whitespace
146
+```
147
+vg_
148
+```
149
+
150
+## using the shell
151
+[vim and the shell][]
152
+
153
+- run current buffer as script
154
+```bash
155
+:!./%
156
+```
157
+
158
+- in script, highlight line and switch to command mode by pressing `:`
159
+```bash
160
+:'<,'>w !bash -
161
+```
162
+
163
+```python
164
+:'<,'>w !python -
165
+```
166
+
167
+## directory of current buffer
168
+open new file in dir of current buffer
169
+```
170
+:e %:h/filename
171
+```
172
+
173
+save file as new file in dir of current buffer
174
+```
175
+:sav %:h/filename
176
+```
177
+
178
+## substitute on multiple lines
179
+https://stackoverflow.com/a/19996145
180
+```
181
+:6,10s/<search_string>/<replace_string>/g | 14,18&&
182
+```
183
+
184
+## reverse substitute
185
+* adds a tab to the beginning of all lines that don't start with `Pattern`
186
+```
187
+:%v/^Pattern/s/^/\t/
188
+```
189
+
190
+## sort visual block
191
+https://vim.fandom.com/wiki/How_to_sort_using_visual_blocks
192
+```
193
+:'<,'>sort /\ze\%V/
194
+```
195
+
196
+## move current line (scroll-cursor)
197
+`z<enter>` or `zt` - move to top of buffer
198
+`z.` or `zz` - move to centre of buffer
199
+`z-` or `zb` - move to bottom of buffer
200
+
201
+(zEnter, z., and z- puts the cursor in the first non blank column. zt, zz, and zb leaves the cursor in the current column)
202
+
203
+```
204
+:help scroll-cursor
205
+```
206
+
207
+## yanking into a register
208
+`"qp` paste the contents of the register to the current cursor position
209
+`i` enter insert mode at the begging of the pasted line
210
+`^` add the missing motion to return to the front of the line
211
+`<escape>` return to visual mode
212
+`"qyy` yank this new modified macro back into the q register
213
+`dd` delete the pasted register from the file your editing
214
+
215
+## editing the register visually
216
+`:let @q='` open the q register
217
+`<cntl-r><cntl-r>q` paste the contents of the q register into the buffer
218
+`^` add the missing motion to return to the front of the line
219
+`'` add a closing quote
220
+`<enter>` finish editing the macro
221
+
222
+[using_spellcheck]: https://www.linux.com/learn/using-spell-checking-vim
223
+[faq]: http://vim.wikia.com/wiki/Vim_buffer_FAQ
224
+[vanilla vim]: https://stackoverflow.com/questions/16082991/vim-switching-between-files-rapidly-using-vanilla-vim-no-plugins
225
+[buffers over tabs]: https://stackoverflow.com/questions/26708822/why-do-vim-experts-prefer-buffers-over-tabs
226
+[reddit]: https://www.reddit.com/r/vim/comments/a1lvb1/til_gca_for_creating_a_column_of_incrementing/
227
+[vim and the shell]: https://vimways.org/2019/vim-and-the-shell/
edt/vimwiki.md
... ...
@@ -0,0 +1,31 @@
1
+# vimwiki
2
+
3
+## commands
4
+| command | description |
5
+| --- | --- |
6
+| `=` | increase header |
7
+| `-` | decrease header |
8
+| `C-space` | check todo box |
9
+| `glh` | step down list |
10
+| `gll` | step up list |
11
+| `glr` | refresh numbered list |
12
+| `\w\t` | day diary in new tab |
13
+| `\w\i` | on diary index generate new links |
14
+| `\wt` | open wiki index in tab (only after mapping `nmap <Leader>wt <Plug>VimwikiTabnewLink`) |
15
+| `\wi` | open diary index |
16
+
17
+## syntax highlighting
18
+```bash
19
+echo hello friend
20
+```
21
+
22
+## convert to html
23
+pandoc -s -f markdown -t html -o uofu/azure_ad_requirements.html uofu/azure_ad_requirements.md && firefox uofu/azure_ad_requirements
24
+.html
25
+
26
+## anchors
27
+ use [title] (#anchor#subanchor)
28
+ i'm using :tags: under a #ref header to jump to links in page
29
+ - switch to [pandoc markdown][]
30
+
31
+[pandoc markdown]: http://pandoc.org/MANUAL.html#pandocs-markdown
fonts/envy_code_r.eot
... ...
Binary files a/fonts/envy_code_r.eot and /dev/null differ
fonts/envy_code_r.otf
... ...
Binary files a/fonts/envy_code_r.otf and /dev/null differ
fonts/envy_code_r.svg
... ...
@@ -1,2432 +0,0 @@
1
-<?xml version="1.0" standalone="no"?>
2
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
-<svg>
4
-<metadata>
5
-Created by FontForge 20090914 at Thu Oct 13 00:15:04 2016
6
- By www-data
7
-Copyright (c) 2006-2008 by Envy Technologies Limited. All rights reserved.
8
-</metadata>
9
-<defs>
10
-<font id="EnvyCodeR" horiz-adv-x="1100" >
11
- <font-face
12
- font-family="Envy Code R"
13
- font-weight="400"
14
- font-stretch="normal"
15
- units-per-em="2048"
16
- panose-1="2 0 5 9 0 0 0 2 0 4"
17
- ascent="1638"
18
- descent="-410"
19
- x-height="1106"
20
- cap-height="1422"
21
- bbox="-4 -632.005 1106.35 2054"
22
- underline-thickness="102"
23
- underline-position="-154"
24
- unicode-range="U+0020-U+FB06"
25
- />
26
-<missing-glyph
27
- />
28
- <glyph glyph-name=".notdef"
29
- />
30
- <glyph glyph-name="space" unicode=" "
31
- />
32
- <glyph glyph-name="space" unicode="&#xa0;"
33
- />
34
- <glyph glyph-name="exclam" unicode="!"
35
-d="M474 1422h158v-948h-158v948zM474 316h158v-316h-158v316z" />
36
- <glyph glyph-name="quotedbl" unicode="&#x22;"
37
-d="M158 1422h158v-474h-158v474zM632 1422h158v-474h-158v474z" />
38
- <glyph glyph-name="numbersign" unicode="#"
39
-d="M474 790v-158h158v158h-158zM158 790v158h158v316h158v-316h158v316h158v-316h158v-158h-158v-158h158v-158h-158v-316h-158v316h-158v-316h-158v316h-158v158h158v158h-158z" />
40
- <glyph glyph-name="dollar" unicode="$"
41
-d="M474 158h-316v158h316v316c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116s9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27v158h158v-158h316v-158h-316v-316
42
-c39.333 0 78 -9.16699 116 -27.5s71.833 -42.333 101.5 -72s53.5 -63.5 71.5 -101.5s27 -76.333 27 -115c0 -40 -9 -79 -27 -117s-41.833 -71.667 -71.5 -101s-63.5 -53 -101.5 -71s-76.667 -27 -116 -27v-158h-158v158zM316 948c0 -20 4.5 -39.333 13.5 -58
43
-s21 -35.5 36 -50.5s31.833 -27 50.5 -36s38 -13.5 58 -13.5v316c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58zM790 474c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-31.833 27 -50.5 36s-38 13.5 -58 13.5v-316
44
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
45
- <glyph glyph-name="percent" unicode="%"
46
-d="M158 158h-158l790 1106h158zM474 395c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
47
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM0 1027
48
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
49
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM158 1027c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
50
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56zM632 395c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23
51
-s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
52
- <glyph glyph-name="ampersand" unicode="&#x26;"
53
-d="M695 107c-41.333 -34 -87.335 -60.333 -138.002 -79s-104.667 -28 -162 -28c-65.333 -0 -122.666 12.333 -171.999 37s-90.5 58.5 -123.5 101.5s-57.833 93.333 -74.5 151s-25 119.167 -25 184.5c0 44.667 5.83301 87.667 17.5 129s28.334 79.833 50.001 115.5
54
-s47.5 68 77.5 97s63.333 53.5 100 73.5c-25.333 30 -46.166 63.167 -62.499 99.5s-24.5 75.5 -24.5 117.5c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25s84.333 -7.16699 123 -21.5
55
-s72.5 -34.5 101.5 -60.5s51.667 -57.167 68 -93.5s24.166 -76.166 23.499 -119.499c-0.666992 -29.333 -7 -56.166 -19 -80.499s-27.667 -46.666 -47 -66.999s-40.666 -38.5 -63.999 -54.5s-46.333 -30.167 -69 -42.5s-44 -22.5 -64 -30.5l-48 -19l249 -448
56
-c6 15.333 12.5 33.666 19.5 54.999s13.5 43.166 19.5 65.499s11.167 44.666 15.5 66.999s6.83301 42.166 7.5 59.499h158c-8.66699 -59.333 -18 -110 -28 -152s-20.333 -78.167 -31 -108.5s-21.334 -56.166 -32.001 -77.499s-20.667 -40.333 -30 -57l121 -237h-182z
57
-M394.998 158c40.667 0 79.668 7.49902 117.001 22.499s75.666 38.5 114.999 70.5l-288 508c-25.333 -12 -49 -27.667 -71 -47s-41.167 -41.333 -57.5 -66s-29.166 -51.667 -38.499 -81s-14 -59.666 -14 -90.999c0 -43.333 4.16699 -84.166 12.5 -122.499
58
-s21.833 -71.833 40.5 -100.5s43.167 -51.334 73.5 -68.001s67.166 -25 110.499 -25zM315.999 1106c0 -20 5.5 -41.499 16.5 -64.499s30.167 -54.167 57.5 -93.5c22 2.66699 47.333 10.5 76 23.5s55.834 28.333 81.501 46s47.167 36.667 64.5 57s25.666 39.166 24.999 56.499
59
-c-0.666992 22 -5.33398 41.167 -14.001 57.5s-20.5 30.166 -35.5 41.499s-32.167 19.833 -51.5 25.5s-40 8.5 -62 8.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5z" />
60
- <glyph glyph-name="quotesingle" unicode="'"
61
-d="M474 1422h158v-474h-158v474z" />
62
- <glyph glyph-name="parenleft" unicode="("
63
-d="M790 -316c-39.333 0 -78.5 14.333 -117.5 43s-76 67 -111 115s-67.5 103.833 -97.5 167.5s-56 130.667 -78 201s-39.167 141.666 -51.5 213.999s-18.5 141.5 -18.5 207.5s6.16699 135.167 18.5 207.5s29.5 143.666 51.5 213.999s48 137.333 78 201s62.5 119.5 97.5 167.5
64
-s72 86.333 111 115s78.167 43 117.5 43v-158c-26.667 -13.333 -52.834 -34.666 -78.501 -63.999s-50.167 -64.5 -73.5 -105.5s-45 -86.5 -65 -136.5s-37.333 -102 -52 -156s-26.167 -109 -34.5 -165s-12.5 -110.333 -12.5 -163s4.16699 -107 12.5 -163
65
-s19.833 -111 34.5 -165s32 -106 52 -156s41.667 -95.5 65 -136.5s47.833 -76.167 73.5 -105.5s51.834 -50.666 78.501 -63.999v-158z" />
66
- <glyph glyph-name="parenright" unicode=")"
67
-d="M316 -158c26.667 13.333 52.834 34.666 78.501 63.999s50.167 64.5 73.5 105.5s45 86.5 65 136.5s37.333 102 52 156s26.167 109 34.5 165s12.5 110.333 12.5 163s-4.16699 107 -12.5 163s-19.833 111 -34.5 165s-32 106 -52 156s-41.667 95.5 -65 136.5
68
-s-47.833 76.167 -73.5 105.5s-51.834 50.666 -78.501 63.999v158c39.333 0 78.5 -14.333 117.5 -43s76 -67 111 -115s67.5 -103.833 97.5 -167.5s56 -130.667 78 -201s39.167 -141.666 51.5 -213.999s18.5 -141.5 18.5 -207.5s-6.16699 -135.167 -18.5 -207.5
69
-s-29.5 -143.666 -51.5 -213.999s-48 -137.333 -78 -201s-62.5 -119.5 -97.5 -167.5s-72 -86.333 -111 -115s-78.167 -43 -117.5 -43v158z" />
70
- <glyph glyph-name="asterisk" unicode="*"
71
-d="M237 1185l237 -79v316h158v-316l237 79l79 -158l-237 -79l158 -237l-158 -79l-158 237l-158 -237l-158 79l158 237l-237 79z" />
72
- <glyph glyph-name="plus" unicode="+"
73
-d="M474 632h-316v158h316v316h158v-316h316v-158h-316v-316h-158v316z" />
74
- <glyph glyph-name="comma" unicode=","
75
-d="M395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
76
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158
77
-c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
78
- <glyph glyph-name="hyphen" unicode="-"
79
-d="M158 790h790v-158h-790v158z" />
80
- <glyph glyph-name="period" unicode="."
81
-d="M316 158c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
82
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
83
- <glyph glyph-name="slash" unicode="/"
84
-d="M790 1422h158l-632 -1580h-158z" />
85
- <glyph glyph-name="zero" unicode="0"
86
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
87
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 158c32.667 0 63.3301 6.16699 91.9971 18.5s53.834 29.333 75.501 51
88
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v415l-474 -375v-40c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5zM552.996 1264c-32.667 0 -63.3301 -6.16699 -91.9971 -18.5
89
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-390l474 375v15c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
90
- <glyph glyph-name="one" unicode="1"
91
-d="M316 1264h39c16.667 0 32.167 3 46.5 9s26.833 14.333 37.5 25s19.167 23.167 25.5 37.5s9.5 29.833 9.5 46.5v40h158v-1264h158v-158h-474v158h158v948h-158v158z" />
92
- <glyph glyph-name="two" unicode="2"
93
-d="M632 1422c43.333 0 84.1641 -8.33496 122.497 -25.002s71.833 -39.334 100.5 -68.001s51.334 -62.167 68.001 -100.5s25 -79.166 25 -122.499v-158c0 -29.333 -9 -58.333 -27 -87s-41.833 -56.667 -71.5 -84s-63.5 -54.166 -101.5 -80.499l-116 -78.5l-116 -77
94
-c-38 -25.333 -71.833 -50.5 -101.5 -75.5s-53.5 -50 -71.5 -75s-27 -49.833 -27 -74.5v-158h632v-158h-790v356c0 29.333 9 58.666 27 87.999s41.833 58.333 71.5 87s63.5 56.834 101.5 84.501l116 81.5l116 78c38 25.333 71.833 49.833 101.5 73.5s53.5 46.334 71.5 68.001
95
-s27 42.5 27 62.5v127c0 22 -4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5h-158c-22 0 -42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5h-158
96
-c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h158z" />
97
- <glyph glyph-name="three" unicode="3"
98
-d="M158 158l395 -0.00585938c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158
99
-h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-395v158h395
100
-c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154
101
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158z" />
102
- <glyph glyph-name="four" unicode="4"
103
-d="M632 1422h158v-948h158v-158h-158v-316h-158v316h-474v158zM632 474v632l-316 -632h316z" />
104
- <glyph glyph-name="five" unicode="5"
105
-d="M158 158l395 -0.00195312c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-395v790
106
-h790v-158h-632v-474h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158z" />
107
- <glyph glyph-name="six" unicode="6"
108
-d="M553 0c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154c0 60.667 1.5 117.334 4.5 170.001s9.66699 103.834 20 153.501s25.833 99.5 46.5 149.5s48.5 102.833 83.5 158.5s78.5 115.667 130.5 180
109
-s115 136.166 189 215.499h158l-319.5 -408c-74.333 -96.667 -119.833 -193.667 -136.5 -291c32 21.333 66.333 37.833 103 49.5s75.334 17.5 116.001 17.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
110
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
111
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5
112
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
113
- <glyph glyph-name="seven" unicode="7"
114
-d="M948 1264l-474 -1264h-157l469 1264h-628v158h790v-158z" />
115
- <glyph glyph-name="eight" unicode="8"
116
-d="M158 395c0 32 4.16699 63.167 12.5 93.5s20 59 35 86s32.833 52 53.5 75s43 43.5 67 61.5c-24 18 -46.333 38.5 -67 61.5s-38.5 47.833 -53.5 74.5s-26.667 55.167 -35 85.5s-12.5 61.833 -12.5 94.5c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
117
-s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -32.667 -4.33301 -64.167 -13 -94.5s-20.5 -58.833 -35.5 -85.5s-32.833 -51.5 -53.5 -74.5s-43 -43.5 -67 -61.5
118
-c24 -18 46.333 -38.5 67 -61.5s38.5 -48 53.5 -75s26.833 -55.667 35.5 -86s13 -61.5 13 -93.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501
119
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154zM316 395c0 -32.667 6.16504 -63.334 18.498 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
120
-s18.5 59.334 18.5 92.001s-5 63.334 -15 92.001s-24.833 53.834 -44.5 75.501s-44.334 38.667 -74.001 51s-64.167 18.5 -103.5 18.5s-73.833 -6.16699 -103.5 -18.5s-54.334 -29.333 -74.001 -51s-34.5 -46.834 -44.5 -75.501s-15 -59.334 -15 -92.001zM315.998 1027
121
-c0 -32.667 5.00195 -63.334 15.002 -92.001s24.833 -53.834 44.5 -75.501s44.334 -38.667 74.001 -51s64.167 -18.5 103.5 -18.5s73.833 6.16699 103.5 18.5s54.334 29.333 74.001 51s34.5 46.834 44.5 75.501s15 59.334 15 92.001s-6.16699 63.334 -18.5 92.001
122
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
123
- <glyph glyph-name="nine" unicode="9"
124
-d="M553 1422c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -60.667 -1.5 -117.334 -4.5 -170.001s-9.66699 -103.834 -20 -153.501s-25.833 -99.5 -46.5 -149.5s-48.5 -102.833 -83.5 -158.5
125
-s-78.5 -115.667 -130.5 -180s-115 -136.166 -189 -215.499h-158l319.5 408c74.333 96.667 119.833 193.667 136.5 291c-32 -21.333 -66.333 -37.833 -103 -49.5s-75.334 -17.5 -116.001 -17.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
126
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31zM790 1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
127
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001s6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
128
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001z" />
129
- <glyph glyph-name="colon" unicode=":"
130
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
131
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM316 158c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5
132
-s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999
133
-s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
134
- <glyph glyph-name="semicolon" unicode=";"
135
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
136
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
137
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
138
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
139
- <glyph glyph-name="less" unicode="&#x3c;"
140
-d="M768 1264v-114l-439 -439l439 -439v-114h-114l-496 496v114l496 496h114z" />
141
- <glyph glyph-name="equal" unicode="="
142
-d="M0 474v158h948v-158h-948zM0 790v158h948v-158h-948z" />
143
- <glyph glyph-name="greater" unicode="&#x3e;"
144
-d="M272 1264l496 -496v-114l-496 -496h-114v114l439 439l-439 439v114h114z" />
145
- <glyph glyph-name="question" unicode="?"
146
-d="M158 1027c0 54.667 9.5 105.998 28.5 153.998s45.667 89.833 80 125.5s75.833 63.834 124.5 84.501s102.667 31 162 31s113.333 -9.5 162 -28.5s90.167 -45.667 124.5 -80s61 -75.833 80 -124.5s28.5 -102.667 28.5 -162c0 -52.667 -7.83301 -95.5 -23.5 -128.5
147
-s-35.167 -61.167 -58.5 -84.5s-48.666 -44.333 -75.999 -63s-52.666 -39.667 -75.999 -63s-42.833 -51.666 -58.5 -84.999s-23.5 -76.333 -23.5 -129h-158c0 66 7.83301 120 23.5 162s35.167 76.833 58.5 104.5s48.666 50.834 75.999 69.501s52.666 37.5 75.999 56.5
148
-s42.833 40.667 58.5 65s23.5 56.166 23.5 95.499c0 158 -79 237 -237 237s-237 -79 -237 -237v-79h-158v79zM474 315.998h158v-316h-158v316z" />
149
- <glyph glyph-name="at" unicode="@"
150
-d="M474 -316c-59.333 0 -117.333 13.499 -174 40.499s-107.334 62.833 -152.001 107.5s-80.5 95.334 -107.5 152.001s-40.5 114.667 -40.5 174v790c0 59.333 13.5 117.333 40.5 174s62.833 107.334 107.5 152.001s95.334 80.5 152.001 107.5s114.667 40.5 174 40.5
151
-s117.333 -13.5 174 -40.5s107.334 -62.833 152.001 -107.5s80.5 -95.334 107.5 -152.001s40.5 -114.667 40.5 -174v-790h-316c-56 0 -103.833 11.667 -143.5 35s-72.334 53.833 -98.001 91.5s-44.5 80 -56.5 127s-18 94.167 -18 141.5c0 50.667 6.5 99.667 19.5 147
152
-s32.5 89.333 58.5 126s58.833 66.167 98.5 88.5s86.167 33.5 139.5 33.5h158c0 39.333 -9 78 -27 116s-41.833 71.833 -71.5 101.5s-63.5 53.5 -101.5 71.5s-76.667 27 -116 27s-78 -9 -116 -27s-71.833 -41.833 -101.5 -71.5s-53.5 -63.5 -71.5 -101.5
153
-s-27 -76.667 -27 -116v-790c0 -39.333 9 -78 27 -116s41.833 -71.833 71.5 -101.5s63.5 -53.5 101.5 -71.5s76.667 -27 116 -27h316v-158h-316zM790 315.999v474.002h-158c-20 0 -39.333 -5 -58 -15s-35.5 -24.833 -50.5 -44.5s-27 -44.334 -36 -74.001
154
-s-13.5 -64.167 -13.5 -103.5s4.5 -73.833 13.5 -103.5s21 -54.334 36 -74.001s31.833 -34.5 50.5 -44.5s38 -15 58 -15h158z" />
155
- <glyph glyph-name="A" unicode="A"
156
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
157
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
158
-s-18.5 -59.334 -18.5 -92.001v-237h474z" />
159
- <glyph glyph-name="B" unicode="B"
160
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
161
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
162
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
163
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
164
- <glyph glyph-name="C" unicode="C"
165
-d="M556 1264c-34 0 -65.6689 -6.16309 -95.002 -18.4961s-54.666 -29.333 -75.999 -51s-38.166 -46.834 -50.499 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.166 -53.834 50.499 -75.501s46.666 -38.667 75.999 -51
166
-s61 -18.5 95 -18.5c28 0 54.333 3.83301 79 11.5s47.167 18.5 67.5 32.5s38 30.667 53 50s26.5 40.666 34.5 63.999h158c-9.33301 -45.333 -25.666 -87.333 -48.999 -126s-52.166 -72 -86.499 -100s-73.166 -50 -116.499 -66s-90 -24 -140 -24
167
-c-56 0 -108.167 10.333 -156.5 31s-90.5 48.834 -126.5 84.501s-64.167 77.5 -84.5 125.5s-30.5 99.333 -30.5 154v632c0 54.667 10.167 106 30.5 154s48.5 89.833 84.5 125.5s78.167 63.834 126.5 84.501s100.5 31 156.5 31c50 0 96.833 -8 140.5 -24
168
-s82.5 -38.167 116.5 -66.5s62.667 -61.833 86 -100.5s39.666 -80.334 48.999 -125.001h-158c-8 22.667 -19.5 43.667 -34.5 63s-32.5 36 -52.5 50s-42.5 25 -67.5 33s-51.5 12 -79.5 12z" />
169
- <glyph glyph-name="D" unicode="D"
170
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
171
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
172
-v-1106h237z" />
173
- <glyph glyph-name="E" unicode="E"
174
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422z" />
175
- <glyph glyph-name="F" unicode="F"
176
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-632h-158v1422z" />
177
- <glyph glyph-name="G" unicode="G"
178
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
179
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
180
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
181
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158z" />
182
- <glyph glyph-name="H" unicode="H"
183
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422z" />
184
- <glyph glyph-name="I" unicode="I"
185
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158z" />
186
- <glyph glyph-name="J" unicode="J"
187
-d="M158 474h157.998v-79c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158v-1027
188
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v79z" />
189
- <glyph glyph-name="K" unicode="K"
190
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661z" />
191
- <glyph glyph-name="L" unicode="L"
192
-d="M158 1422h158v-1264h632v-158h-790v1422z" />
193
- <glyph glyph-name="M" unicode="M"
194
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106z" />
195
- <glyph glyph-name="N" unicode="N"
196
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158z" />
197
- <glyph glyph-name="O" unicode="O"
198
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
199
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
200
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
201
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
202
- <glyph glyph-name="P" unicode="P"
203
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
204
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
205
- <glyph glyph-name="Q" unicode="Q"
206
-d="M692 25c-44.667 -16.667 -91 -25.001 -139 -25.001c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
207
-s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -57.333 -11.333 -111 -34 -161s-53.334 -93 -92.001 -129l132 -263h-170zM553 1264c-32.667 0 -63.333 -6.16406 -92 -18.4971
208
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c24.667 0 47.334 3.33301 68.001 10l-153 306h170
209
-l108 -217c13.333 19.333 24 40.666 32 63.999s12 48 12 74v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
210
- <glyph glyph-name="R" unicode="R"
211
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
212
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
213
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
214
- <glyph glyph-name="S" unicode="S"
215
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
216
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
217
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
218
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
219
- <glyph glyph-name="T" unicode="T"
220
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264z" />
221
- <glyph glyph-name="U" unicode="U"
222
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
223
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632z" />
224
- <glyph glyph-name="V" unicode="V"
225
-d="M316 1422l237 -1040l237 1040h158l-316 -1422h-158l-316 1422h158z" />
226
- <glyph glyph-name="W" unicode="W"
227
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106z" />
228
- <glyph glyph-name="X" unicode="X"
229
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166z" />
230
- <glyph glyph-name="Y" unicode="Y"
231
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472z" />
232
- <glyph glyph-name="Z" unicode="Z"
233
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158z" />
234
- <glyph glyph-name="bracketleft" unicode="["
235
-d="M316 1580h474v-158h-316v-1580h316v-158h-474v1896z" />
236
- <glyph glyph-name="backslash" unicode="\"
237
-d="M948 -158h-158l-632 1580h158z" />
238
- <glyph glyph-name="bracketright" unicode="]"
239
-d="M790 -316h-474v158h316v1580h-316v158h474v-1896z" />
240
- <glyph glyph-name="asciicircum" unicode="^"
241
-d="M458 1422h190l307 -632h-181l-221 442l-221 -442h-182z" />
242
- <glyph glyph-name="underscore" unicode="_"
243
-d="M0 -316h1106v-158h-1106v158z" />
244
- <glyph glyph-name="grave" unicode="`"
245
-d="M158 1422v158l474 -237v-158z" />
246
- <glyph glyph-name="a" unicode="a"
247
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
248
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
249
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316z" />
250
- <glyph glyph-name="b" unicode="b"
251
-d="M158 1422l158 0.000976562v-395c25.333 18.667 53 34.667 83 48c48 20.667 99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
252
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31c-30 12.667 -57.667 28.334 -83 47.001v-78h-158v1422zM316 720.001l0.000976562 -325.001c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
253
-s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
254
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.834 -46.834 -51.501 -75.501z" />
255
- <glyph glyph-name="c" unicode="c"
256
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
257
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
258
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
259
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316z" />
260
- <glyph glyph-name="d" unicode="d"
261
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
262
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
263
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
264
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325z" />
265
- <glyph glyph-name="e" unicode="e"
266
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
267
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
268
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z" />
269
- <glyph glyph-name="f" unicode="f"
270
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
271
-s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-790h-158v790h-158v158z" />
272
- <glyph glyph-name="g" unicode="g"
273
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
274
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
275
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
276
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
277
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
278
- <glyph glyph-name="h" unicode="h"
279
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
280
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711z" />
281
- <glyph glyph-name="i" unicode="i"
282
-d="M474 948h-158v158h316v-1106h-158v948zM474 1422h158v-158h-158v158z" />
283
- <glyph glyph-name="j" unicode="j"
284
-d="M158 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM632 1422h158v-158h-158v158z" />
285
- <glyph glyph-name="k" unicode="k"
286
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790z" />
287
- <glyph glyph-name="l" unicode="l"
288
-d="M474 1264h-158v158h316v-1422h-158v1264z" />
289
- <glyph glyph-name="m" unicode="m"
290
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
291
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869z" />
292
- <glyph glyph-name="n" unicode="n"
293
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
294
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
295
- <glyph glyph-name="o" unicode="o"
296
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
297
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
298
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
299
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
300
- <glyph glyph-name="p" unicode="p"
301
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
302
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
303
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
304
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
305
- <glyph glyph-name="q" unicode="q"
306
-d="M790 79c-33.333 -24.667 -70 -44.002 -110 -58.002s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
307
-s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1580h-158v553zM316 394.998c0 -32.667 6.16699 -63.332 18.5 -91.999s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
308
-c32 0 62.333 5 91 15s53.834 24.833 75.501 44.5s38.834 44.334 51.501 74.001s19 64.167 19 103.5v316c0 39.333 -6.33301 73.833 -19 103.5s-29.834 54.334 -51.501 74.001s-46.834 34.5 -75.501 44.5s-59 15 -91 15c-32.667 0 -63.334 -6.16699 -92.001 -18.5
309
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
310
- <glyph glyph-name="r" unicode="r"
311
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
312
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158z" />
313
- <glyph glyph-name="s" unicode="s"
314
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
315
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
316
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
317
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395z" />
318
- <glyph glyph-name="t" unicode="t"
319
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
320
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158z" />
321
- <glyph glyph-name="u" unicode="u"
322
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
323
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0z" />
324
- <glyph glyph-name="v" unicode="v"
325
-d="M948 1106l-316 -1106h-158l-316 1106h158l237 -869l237 869h158z" />
326
- <glyph glyph-name="w" unicode="w"
327
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
328
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
329
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395z" />
330
- <glyph glyph-name="x" unicode="x"
331
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173z" />
332
- <glyph glyph-name="y" unicode="y"
333
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
334
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
335
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0z" />
336
- <glyph glyph-name="z" unicode="z"
337
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158z" />
338
- <glyph glyph-name="braceleft" unicode="{"
339
-d="M516 732c0 -14 2.5 -26.999 7.5 -38.999s11.833 -22.5 20.5 -31.5s19 -16.167 31 -21.5s24.667 -8 38 -8c11.333 0 17.333 -11.167 18 -33.5s-2.66602 -51.5 -9.99902 -87.5s-17.166 -76.833 -29.499 -122.5s-25.666 -91.834 -39.999 -138.501l-42.5 -136
340
-c-14 -44 -25.667 -82 -35 -114c0 -20 8.66699 -39.333 26 -58s38.333 -35.5 63 -50.5s50.5 -27 77.5 -36s50.5 -13.5 70.5 -13.5h237v-158h-237c-59.333 0 -113.333 9 -162 27s-90.167 41.833 -124.5 71.5s-61 63.5 -80 101.5s-28.5 76.667 -28.5 116
341
-c13.333 78.667 28.166 149 44.499 211s31.833 116.5 46.5 163.5l37.5 119.5c10.333 32.667 16.166 59.167 17.499 79.5s-3 35.166 -13 44.499s-28 14 -54 14h-237v158h237c26 0 42.333 4.33301 49 13s7 21.834 1 39.501s-16 39.667 -30 66s-28.333 57 -43 92
342
-s-27.667 74.5 -39 118.5s-17 92.333 -17 145c0 39.333 9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h237v-158h-237c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58
343
-c3.33301 -15.333 9.66602 -36.5 18.999 -63.5l31 -88.5l34.5 -98l31.5 -90c9.33301 -26.667 16.333 -48.667 21 -66s5.33398 -26 2.00098 -26c-13.333 0 -26 -2.66699 -38 -8s-22.333 -12.5 -31 -21.5s-15.5 -19.5 -20.5 -31.5s-7.5 -25 -7.5 -39z" />
344
- <glyph glyph-name="bar" unicode="|"
345
-d="M474 1580h158v-1896h-158v1896z" />
346
- <glyph glyph-name="braceright" unicode="}"
347
-d="M590 732c0 14 -2.49805 26.999 -7.49805 38.999s-11.833 22.5 -20.5 31.5s-19 16.167 -31 21.5s-24.667 8 -38 8c-3.33301 0 -2.66602 8.66699 2.00098 26s11.667 39.333 21 66l31.5 90l34.5 98l31 88.5c9.33301 27 15.666 48.167 18.999 63.5c0 20 -5 39.333 -15 58
348
-s-24.833 35.5 -44.5 50.5s-44.334 27 -74.001 36s-64.167 13.5 -103.5 13.5h-237v158h237c59.333 0 113.333 -9 162 -27s90.167 -41.833 124.5 -71.5s61 -63.5 80 -101.5s28.5 -76.667 28.5 -116c0 -52.667 -5.66699 -101 -17 -145s-24.333 -83.5 -39 -118.5
349
-s-29 -65.667 -43 -92s-24 -48.333 -30 -66s-5.83301 -30.834 0.5 -39.501s22.833 -13 49.5 -13h237v-158h-237c-26.667 0 -44.834 -4.66699 -54.501 -14s-13.834 -24.166 -12.501 -44.499s7.16602 -46.833 17.499 -79.5l37.5 -119.5c14.667 -47 30.167 -101.5 46.5 -163.5
350
-s31.166 -132.333 44.499 -211c0 -39.333 -9.5 -78 -28.5 -116s-45.667 -71.833 -80 -101.5s-75.833 -53.5 -124.5 -71.5s-102.667 -27 -162 -27h-237v158h237c20 0 43.5 4.5 70.5 13.5s52.833 21 77.5 36s45.667 31.833 63 50.5s26 38 26 58l-35.5 114l-42 136
351
-c-14.333 46.667 -27.666 92.834 -39.999 138.501s-22.166 86.5 -29.499 122.5s-10.666 65.167 -9.99902 87.5s6.66699 33.5 18 33.5c13.333 0 26 2.66699 38 8s22.333 12.5 31 21.5s15.5 19.5 20.5 31.5s7.5 25 7.5 39z" />
352
- <glyph glyph-name="asciitilde" unicode="~"
353
-d="M948 948c0 -26.667 -0.333984 -56.6709 -1.00098 -90.0039s-3.16699 -67.666 -7.5 -102.999s-11.333 -69.833 -21 -103.5s-23.334 -63.667 -41.001 -90s-40 -47.5 -67 -63.5s-60.167 -24 -99.5 -24c-26.667 0 -51 6.83301 -73 20.5s-42.5 31.167 -61.5 52.5
354
-s-36.667 44.833 -53 70.5l-46.5 73.5c-14.667 23.333 -28.667 44 -42 62s-26.666 30.333 -39.999 37c-12 6 -22.167 4.16699 -30.5 -5.5s-15.5 -24 -21.5 -43s-10.667 -41.167 -14 -66.5s-6 -50.666 -8 -75.999s-3.33301 -49.166 -4 -71.499s-1 -40.166 -1 -53.499h-158
355
-c0 26 0.333008 55.833 1 89.5s3.16699 68.167 7.5 103.5s11.333 69.833 21 103.5s23.334 63.667 41.001 90s40 47.5 67 63.5s60.167 24 99.5 24c26 0 50.167 -7 72.5 -21s43 -31.833 62 -53.5s36.667 -45.5 53 -71.5l46.5 -74c14.667 -23.333 28.667 -43.833 42 -61.5
356
-s26.666 -29.167 39.999 -34.5c12 -5.33301 22.333 -2.83301 31 7.5s16 25 22 44s10.667 41 14 66s5.83301 50 7.5 75s2.83398 48.5 3.50098 70.5s1 39.667 1 53h158z" />
357
- <glyph glyph-name="exclamdown" unicode="&#xa1;"
358
-d="M474 948h158v-948h-158v948zM474 1422h158v-316h-158v316z" />
359
- <glyph glyph-name="cent" unicode="&#xa2;"
360
-d="M356 52c-29.333 16.667 -56.168 37.166 -80.501 61.499s-45.166 51.166 -62.499 80.499s-30.833 61 -40.5 95s-14.5 69.333 -14.5 106v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31
361
-c6 0 12.167 -0.166992 18.5 -0.5s12.5 -0.833008 18.5 -1.5l36 160h170l-47 -211c48 -28 89 -64.667 123 -110s56.667 -96.333 68 -153h-164c-6.66699 18.667 -15.5 36 -26.5 52s-23.5 30.667 -37.5 44l-162 -728h3c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5
362
-s36.333 30.667 51 50s26 40.666 34 63.999h164c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-6.66699 0 -13 0.166992 -19 0.5s-12.333 0.833008 -19 1.5l-35 -160h-170zM315.998 394.999
363
-c0 -36 7.00195 -68.8311 21.002 -98.498s32.667 -55.5 56 -77.5l162 729h-2c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
364
- <glyph glyph-name="sterling" unicode="&#xa3;"
365
-d="M632 1422c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116h-158c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-32 27 -51 36s-38.167 13.5 -57.5 13.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
366
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58v-316h316v-158h-316v-474h474v-158h-790v158h158v474h-158v158h158v316c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27z" />
367
- <glyph glyph-name="currency" unicode="&#xa4;"
368
-d="M1027 1066l-141 -141c19.333 -32 34.5 -65.5 45.5 -100.5s16.5 -72.5 16.5 -112.5s-5.5 -77.833 -16.5 -113.5s-26.167 -68.834 -45.5 -99.501l141 -141l-120 -120l-141 141c-32 -20 -65.5 -35.333 -100.5 -46s-72.5 -16 -112.5 -16s-77.833 5.33301 -113.5 16
369
-s-68.834 26 -99.501 46l-141 -141l-120 120l141 141c-20 30.667 -35.333 63.834 -46 99.501s-16 73.5 -16 113.5s5.33301 77.5 16 112.5s26 68.5 46 100.5l-141 141l120 120l141 -141c30.667 19.333 63.834 34.5 99.501 45.5s73.5 16.5 113.5 16.5s77.5 -5.5 112.5 -16.5
370
-s68.5 -26.167 100.5 -45.5l141 141zM316 712c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
371
-s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
372
- <glyph glyph-name="yen" unicode="&#xa5;"
373
-d="M158 316h318v158h-318v158h289l-289 790h176l219 -625l218 625h177l-290 -790h290v-158h-318v-158h318v-158h-318v-158h-154v158h-318v158z" />
374
- <glyph glyph-name="brokenbar" unicode="&#xa6;"
375
-d="M474 474h158v-790h-158v790zM474 1580h158v-790h-158v790z" />
376
- <glyph glyph-name="section" unicode="&#xa7;"
377
-d="M948 1422l-0.00195312 -157.999h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7
378
-s59.667 -12 89 -22s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -44 -11.167 -86.5 -33.5 -127.5s-54.166 -76.833 -95.499 -107.5c18.667 -12.667 35.834 -27 51.501 -43s29.167 -33.833 40.5 -53.5
379
-s20.333 -41.334 27 -65.001s10 -49.5 10 -77.5c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59
380
-c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5
381
-s-18.5 66.167 -18.5 105.5c0 43.333 11.167 85.5 33.5 126.5s53.833 76.5 94.5 106.5c-37.333 25.333 -68 57.5 -92 96.5s-36 87.167 -36 144.5c0 39.333 9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM315.998 632.001
382
-c0 -20 4.99805 -39.3359 14.998 -58.0029s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5s73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001
383
-s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5h-12c-37.333 -1.33301 -70.166 -6.66602 -98.499 -15.999s-51.833 -21.333 -70.5 -36s-32.667 -31.167 -42 -49.5s-14 -37.166 -14 -56.499z" />
384
- <glyph glyph-name="dieresis" unicode="&#xa8;"
385
-d="M316 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
386
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
387
- <glyph glyph-name="copyright" unicode="&#xa9;"
388
-d="M0 711c0 98 13.5 190.167 40.5 276.5s64.833 161.666 113.5 225.999s106.834 115.166 174.501 152.499s142.5 56 224.5 56s156.833 -18.667 224.5 -56s125.834 -88.166 174.501 -152.499s86.5 -139.666 113.5 -225.999s40.5 -178.5 40.5 -276.5
389
-s-13.5 -190.167 -40.5 -276.5s-64.833 -161.666 -113.5 -225.999s-106.834 -115.166 -174.501 -152.499s-142.5 -56 -224.5 -56s-156.833 18.667 -224.5 56s-125.834 88.166 -174.501 152.499s-86.5 139.666 -113.5 225.999s-40.5 178.5 -40.5 276.5zM158 711
390
-c0 -76 9.33301 -147.667 28 -215s45.167 -126 79.5 -176s75.833 -89.5 124.5 -118.5s103 -43.5 163 -43.5s114.333 14.5 163 43.5s90.167 68.5 124.5 118.5s60.833 108.667 79.5 176s28 139 28 215s-9.33301 147.667 -28 215s-45.167 126 -79.5 176
391
-s-75.833 89.5 -124.5 118.5s-103 43.5 -163 43.5s-114.333 -14.5 -163 -43.5s-90.167 -68.5 -124.5 -118.5s-60.833 -108.667 -79.5 -176s-28 -139 -28 -215zM474 711c0 -32.667 1 -63.332 3 -91.999s5.83301 -53.834 11.5 -75.501s13.667 -38.667 24 -51
392
-s23.833 -18.5 40.5 -18.5c12.667 0 22.834 3.83301 30.501 11.5s14 18.5 19 32.5s9 30.667 12 50s6.5 40.666 10.5 63.999h159c-6 -45.333 -15.167 -87.166 -27.5 -125.499s-28 -71.666 -47 -99.999s-41.5 -50.5 -67.5 -66.5s-55.667 -24 -89 -24
393
-c-38 0 -71.833 10.333 -101.5 31s-54.5 48.834 -74.5 84.501s-35.167 77.5 -45.5 125.5s-15.5 99.333 -15.5 154s5.16699 106 15.5 154s25.5 89.833 45.5 125.5s44.833 63.834 74.5 84.501s63.5 31 101.5 31c33.333 0 63 -8 89 -24s48.5 -38.167 67.5 -66.5
394
-s34.667 -61.833 47 -100.5s21.5 -80.334 27.5 -125.001h-159c-4 22.667 -7.5 43.667 -10.5 63s-7 36 -12 50s-11.333 25 -19 33s-17.834 12 -30.501 12c-16.667 0 -30.167 -6.16699 -40.5 -18.5s-18.333 -29.333 -24 -51s-9.5 -46.834 -11.5 -75.501s-3 -59.334 -3 -92.001z
395
-" />
396
- <glyph glyph-name="ordfeminine" unicode="&#xaa;"
397
-d="M237 1422l158.001 0.000976562c158 0 237 -79 237 -237v-553h-237c-158 0 -237 79 -237 237s79 237 237 237h79v79c0 10 -2.16699 19.667 -6.5 29s-10 17.666 -17 24.999s-15.333 13.333 -25 18s-19.834 7 -30.501 7h-158v158zM395.001 948.001
398
-c-25.333 0 -44.833 -7.50098 -58.5 -22.501s-20.5 -34.167 -20.5 -57.5s7.66699 -42.166 23 -56.499s34 -21.5 56 -21.5h79v158h-79z" />
399
- <glyph glyph-name="guillemotleft" unicode="&#xab;"
400
-d="M474 948l79 -79l-237 -316l237 -316l-80 -79l-315 395zM869 948l79 -79l-237 -316l237 -316l-80 -79l-315 395z" />
401
- <glyph glyph-name="logicalnot" unicode="&#xac;"
402
-d="M790 790h-632v158h790v-474h-158v316z" />
403
- <glyph glyph-name="uni00AD" unicode="&#xad;"
404
-d="M158 790h790v-158h-790v158z" />
405
- <glyph glyph-name="registered" unicode="&#xae;"
406
-d="M0 711c0 98 13.5 190.167 40.5 276.5s64.833 161.666 113.5 225.999s106.834 115.166 174.501 152.499s142.5 56 224.5 56s156.833 -18.667 224.5 -56s125.834 -88.166 174.501 -152.499s86.5 -139.666 113.5 -225.999s40.5 -178.5 40.5 -276.5
407
-s-13.5 -190.167 -40.5 -276.5s-64.833 -161.666 -113.5 -225.999s-106.834 -115.166 -174.501 -152.499s-142.5 -56 -224.5 -56s-156.833 18.667 -224.5 56s-125.834 88.166 -174.501 152.499s-86.5 139.666 -113.5 225.999s-40.5 178.5 -40.5 276.5zM158 711
408
-c0 -76 9.33301 -147.667 28 -215s45.167 -126 79.5 -176s75.833 -89.5 124.5 -118.5s103 -43.5 163 -43.5s114.333 14.5 163 43.5s90.167 68.5 124.5 118.5s60.833 108.667 79.5 176s28 139 28 215s-9.33301 147.667 -28 215s-45.167 126 -79.5 176
409
-s-75.833 89.5 -124.5 118.5s-103 43.5 -163 43.5s-114.333 -14.5 -163 -43.5s-90.167 -68.5 -124.5 -118.5s-60.833 -108.667 -79.5 -176s-28 -139 -28 -215zM474 632l-0.00195312 -315.998h-158v790h237c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51
410
-s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001c0 -30.667 -4.5 -60.167 -13.5 -88.5s-21 -53.5 -36 -75.5s-31.833 -39.667 -50.5 -53s-38 -20 -58 -20l158 -316h-158zM552.998 790.002c22 0 40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56
411
-s-34 23 -56 23h-79v-158h79z" />
412
- <glyph glyph-name="macron" unicode="&#xaf;"
413
-d="M158 1422v158h790v-158h-790z" />
414
- <glyph glyph-name="degree" unicode="&#xb0;"
415
-d="M158 1106c0 43.333 8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25s84.166 -8.33301 122.499 -25s71.833 -39.334 100.5 -68.001s51.334 -62.167 68.001 -100.5s25 -79.166 25 -122.499
416
-s-8.33301 -84.166 -25 -122.499s-39.334 -71.833 -68.001 -100.5s-62.167 -51.334 -100.5 -68.001s-79.166 -25 -122.499 -25s-84.166 8.33301 -122.499 25s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499zM316 1106
417
-c0 -22 4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5s42.5 4.16699 61.5 12.5s35.667 19.666 50 33.999s25.666 31 33.999 50s12.5 39.5 12.5 61.5s-4.16699 42.5 -12.5 61.5s-19.666 35.667 -33.999 50
418
-s-31 25.666 -50 33.999s-39.5 12.5 -61.5 12.5s-42.5 -4.16699 -61.5 -12.5s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5z" />
419
- <glyph glyph-name="plusminus" unicode="&#xb1;"
420
-d="M158 474h316v316h-316v158h316v316h158v-316h316v-158h-316v-316h316v-158h-790v158z" />
421
- <glyph glyph-name="twosuperior" unicode="&#xb2;"
422
-d="M158 948c0 13.333 7.83301 30.5 23.5 51.5s35.167 43.833 58.5 68.5l76 77.5l76 77.5c23.333 24.667 42.833 47.5 58.5 68.5s23.5 38.167 23.5 51.5c0 20 -4.5 35.333 -13.5 46s-21 18.5 -36 23.5s-32 7.83301 -51 8.5s-38.167 1 -57.5 1h-158v158h236
423
-c158.667 0 238 -79 238 -237c0 -20 -9 -44.5 -27 -73.5s-41.833 -60.667 -71.5 -95s-63.5 -70.833 -101.5 -109.5l-116 -117h316v-158h-474v158z" />
424
- <glyph glyph-name="threesuperior" unicode="&#xb3;"
425
-d="M158 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2s36 4.66602 51 9.99902
426
-s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5c28.667 -20 49.167 -41.5 61.5 -64.5
427
-s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158z" />
428
- <glyph glyph-name="acute" unicode="&#xb4;"
429
-d="M395 1264l-79 79l395 237l79 -79z" />
430
- <glyph glyph-name="mu" unicode="&#xb5;"
431
-d="M790 1106h157.997v-711c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.667 -110 59v-396h-158v1422h158v-711c0 -39.333 6.33301 -73.833 19 -103.5
432
-s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v711z" />
433
- <glyph glyph-name="paragraph" unicode="&#xb6;"
434
-d="M474 632c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v158c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-1737h-158v1579h-158v-1580h-158v948z" />
435
- <glyph glyph-name="periodcentered" unicode="&#xb7;"
436
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
437
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
438
- <glyph glyph-name="cedilla" unicode="&#xb8;"
439
-d="M632 0c0 -59.333 -9.83203 -112.832 -29.499 -160.499s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z
440
-" />
441
- <glyph glyph-name="onesuperior" unicode="&#xb9;"
442
-d="M316 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158z" />
443
- <glyph glyph-name="ordmasculine" unicode="&#xba;"
444
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154
445
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154zM316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
446
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
447
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM158 473h790v-157h-790v157z" />
448
- <glyph glyph-name="guillemotright" unicode="&#xbb;"
449
-d="M632.029 948l-78.9951 -79l236.985 -316l-236.985 -316l79.9951 -79l314.98 395zM237.053 948l-78.9951 -79l236.985 -316l-236.985 -316l79.9951 -79l314.981 395z" />
450
- <glyph glyph-name="onequarter" unicode="&#xbc;"
451
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM790 1580h158l-632 -1580h-158zM632 475l316 316h158v-790h-158v158h-316v316zM948 317v237l-158 -158v-79h158z" />
452
- <glyph glyph-name="onehalf" unicode="&#xbd;"
453
-d="M159 948v474l-158 -158v158l158 158h158v-632h158v-158h-474v158h158zM622.337 159c0 13.333 8 30.5 23.9971 51.5s35.9092 43.833 59.7354 68.5l77.6055 77.5l77.6045 77.5c23.8262 24.667 43.7383 47.5 59.7354 68.5s23.9961 38.167 23.9961 51.5
454
-c0 20 -4.59473 35.333 -13.7852 46s-21.4434 18.5 -36.7598 23.5c-15.3174 5 -32.6768 7.83301 -52.0781 8.5s-38.9727 1 -58.7139 1h-161.337v158h240.983c162.018 0 243.026 -79 243.026 -237c0 -20 -9.19043 -44.5 -27.5703 -73.5s-42.7168 -60.667 -73.0098 -95
455
-s-64.8408 -70.833 -103.644 -109.5l-118.449 -117h322.673v-158h-484.01v158zM790.001 1580h158l-632 -1580h-158z" />
456
- <glyph glyph-name="threequarters" unicode="&#xbe;"
457
-d="M790 1580h158l-632 -1580h-158zM632 475l316 316h158v-790h-158v158h-316v316zM948 317v237l-158 -158v-79h158zM1 948l158 0.00390625c20 0 39.333 0.666992 58 2s35.5 4.66602 50.5 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24
458
-s-31.833 8.66602 -50.5 9.99902s-38 2 -58 2v158c20 0 39.5 0.666992 58.5 2s36 4.66602 51 9.99902s27 13.333 36 24s13.5 25 13.5 43s-4.5 32.333 -13.5 43s-21 18.667 -36 24s-32 8.66602 -51 9.99902s-38.5 2 -58.5 2h-158v158h237c158 0 237 -79 237 -237
459
-c0 -39.333 -6.16699 -70.5 -18.5 -93.5s-32.833 -44.5 -61.5 -64.5c28.667 -20 49.167 -41.5 61.5 -64.5s18.5 -54.167 18.5 -93.5c0 -158 -79 -237 -237 -237h-237v158z" />
460
- <glyph glyph-name="questiondown" unicode="&#xbf;"
461
-d="M948 395c0 -54.667 -9.5 -105.999 -28.5 -153.999s-45.667 -89.833 -80 -125.5s-75.833 -63.834 -124.5 -84.501s-102.667 -31 -162 -31s-113.333 9.5 -162 28.5s-90.167 45.667 -124.5 80s-61 75.833 -80 124.5s-28.5 102.667 -28.5 162
462
-c0 52.667 7.83301 97.334 23.5 134.001s35.167 69 58.5 97s48.666 53 75.999 75s52.666 44.833 75.999 68.5s42.833 49.5 58.5 77.5s23.5 61.667 23.5 101h158c0 -52.667 -7.83301 -97.334 -23.5 -134.001s-35.167 -69 -58.5 -97s-48.666 -53 -75.999 -75
463
-s-52.666 -44.833 -75.999 -68.5s-42.833 -49.5 -58.5 -77.5s-23.5 -61.667 -23.5 -101c0 -158 79 -237 237 -237s237 79 237 237v79h158v-79zM632 1106h-158v316h158v-316z" />
464
- <glyph glyph-name="Agrave" unicode="&#xc0;"
465
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
466
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
467
-s-18.5 -59.334 -18.5 -92.001v-237h474zM316.002 1738v158l474 -237v-158z" />
468
- <glyph glyph-name="Aacute" unicode="&#xc1;"
469
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
470
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
471
-s-18.5 -59.334 -18.5 -92.001v-237h474zM395.002 1580l-79 79l395 237l79 -79z" />
472
- <glyph glyph-name="Acircumflex" unicode="&#xc2;"
473
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
474
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
475
-s-18.5 -59.334 -18.5 -92.001v-237h474zM551.002 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
476
- <glyph glyph-name="Atilde" unicode="&#xc3;"
477
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
478
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
479
-s-18.5 -59.334 -18.5 -92.001v-237h474zM948.002 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5
480
-c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
481
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
482
- <glyph glyph-name="Adieresis" unicode="&#xc4;"
483
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
484
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
485
-s-18.5 -59.334 -18.5 -92.001v-237h474zM316.002 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632.002 1659c0 22 7.66699 40.667 23 56
486
-s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
487
- <glyph glyph-name="Aring" unicode="&#xc5;"
488
-d="M158 1027c0 54.667 10.1719 105.835 30.5049 153.502s48.5 89.5 84.5 125.5c25.333 25.333 52.666 46.333 81.999 63c-16 26.667 -26.5 54.167 -31.5 82.5s-5.5 56.166 -1.5 83.499s12.5 53.333 25.5 78s29.5 46.167 49.5 64.5s43.167 33 69.5 44
489
-s55.166 16.5 86.499 16.5c30.667 0 59.334 -5.66699 86.001 -17s50.167 -26.5 70.5 -45.5s37.166 -41 50.499 -66s22.166 -51.167 26.499 -78.5s3.66602 -55 -2.00098 -83s-17.167 -54.333 -34.5 -79c29.333 -16.667 56.666 -37.667 81.999 -63
490
-c36 -36 64.333 -77.833 85 -125.5s31 -98.834 31 -153.501v-1027h-158v632h-474v-632h-158v1027zM790.005 790.001l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
491
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-237h474zM632.009 1501c0 22 -7.66699 40.666 -23 55.999s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56c0 -20.667 7 -38.667 21 -54
492
-s31 -23.666 51 -24.999h7c22 0 40.667 7.66699 56 23s23 34 23 56z" />
493
- <glyph glyph-name="AE" unicode="&#xc6;"
494
-d="M158 1106c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-158h-316v-474h158v-158h-158v-474h316v-158h-474v632h-158v-632h-158v1106zM474 790l-0.000976562 474c-30 0 -55 -6.16699 -75 -18.5s-36.167 -27 -48.5 -44
495
-s-21.166 -34.5 -26.499 -52.5s-8 -32.333 -8 -43v-316h158z" />
496
- <glyph glyph-name="Ccedilla" unicode="&#xc7;"
497
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
498
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
499
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
500
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
501
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
502
-c-25.2568 8 -52.0283 12 -80.3154 12zM630 0.00390625c0 -59.333 -9.83203 -112.832 -29.499 -160.499s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21
503
-s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z" />
504
- <glyph glyph-name="Egrave" unicode="&#xc8;"
505
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1738v158l474 -237v-158z" />
506
- <glyph glyph-name="Eacute" unicode="&#xc9;"
507
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM395 1580l-79 79l395 237l79 -79z" />
508
- <glyph glyph-name="Ecircumflex" unicode="&#xca;"
509
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
510
- <glyph glyph-name="Edieresis" unicode="&#xcb;"
511
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
512
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
513
- <glyph glyph-name="Igrave" unicode="&#xcc;"
514
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1738v158l474 -237v-158z" />
515
- <glyph glyph-name="Iacute" unicode="&#xcd;"
516
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM395 1580l-79 79l395 237l79 -79z" />
517
- <glyph glyph-name="Icircumflex" unicode="&#xce;"
518
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
519
- <glyph glyph-name="Idieresis" unicode="&#xcf;"
520
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
521
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
522
- <glyph glyph-name="Eth" unicode="&#xd0;"
523
-d="M0 790l158 0.00195312v632h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31
524
-h-395v632h-158v158zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
525
-s-59.334 18.5 -92.001 18.5h-237v-474h158v-158h-158v-474h237z" />
526
- <glyph glyph-name="Ntilde" unicode="&#xd1;"
527
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
528
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
529
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
530
- <glyph glyph-name="Ograve" unicode="&#xd2;"
531
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
532
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
533
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
534
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM316 1738v158l474 -237v-158z" />
535
- <glyph glyph-name="Oacute" unicode="&#xd3;"
536
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
537
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
538
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
539
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 1580l-79 79l395 237l79 -79z" />
540
- <glyph glyph-name="Ocircumflex" unicode="&#xd4;"
541
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
542
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
543
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
544
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
545
- <glyph glyph-name="Otilde" unicode="&#xd5;"
546
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
547
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
548
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
549
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237
550
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
551
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
552
-s13.5 38 13.5 58z" />
553
- <glyph glyph-name="Odieresis" unicode="&#xd6;"
554
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
555
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
556
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
557
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23
558
-s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
559
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
560
- <glyph glyph-name="multiply" unicode="&#xd7;"
561
-d="M929 809l-256 -256l256 -256l-120 -120l-256 256l-256 -256l-120 120l256 256l-256 256l120 120l256 -256l256 256z" />
562
- <glyph glyph-name="Oslash" unicode="&#xd8;"
563
-d="M323 0h-165l69 172c-22 32 -39 66.667 -51 104s-18 77 -18 119v632c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c38 0 74 -5 108 -15s66 -24 96 -42l33 57h158c0 -2.66699 -0.5 -6 -1.5 -10
564
-s-3.66699 -11.667 -8 -23s-11.166 -27.833 -20.499 -49.5l-39 -89.5c21.333 -32 38.166 -66.667 50.499 -104s18.5 -77 18.5 -119v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31
565
-c-38 0 -74.167 5 -108.5 15s-66.5 24 -96.5 42zM790 395c0 110.667 -0.168945 219.167 -0.501953 325.5s-0.5 215.166 -0.5 326.499l-376 -844c19.333 -14.667 41 -25.834 65 -33.501s49 -11.5 75 -11.5c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
566
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001zM552.998 1264c-32.667 0 -63.332 -6.16504 -91.999 -18.498s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-665l376 857c-19.333 14 -40.833 25 -64.5 33s-48.5 12 -74.5 12z
567
-" />
568
- <glyph glyph-name="Ugrave" unicode="&#xd9;"
569
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
570
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM315.998 1738v158l474 -237v-158
571
-z" />
572
- <glyph glyph-name="Uacute" unicode="&#xda;"
573
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
574
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM394.998 1580l-79 79l395 237
575
-l79 -79z" />
576
- <glyph glyph-name="Ucircumflex" unicode="&#xdb;"
577
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
578
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM550.998 1896l237 -237l-79 -79
579
-l-158 158l-158 -158l-79 79z" />
580
- <glyph glyph-name="Udieresis" unicode="&#xdc;"
581
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
582
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1659
583
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.998 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
584
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
585
- <glyph glyph-name="Yacute" unicode="&#xdd;"
586
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM395 1580l-79 79l395 237l79 -79z" />
587
- <glyph glyph-name="Thorn" unicode="&#xde;"
588
-d="M632 1106c39.333 0 78 -9 116 -27s71.833 -41.833 101.5 -71.5s53.5 -63.5 71.5 -101.5s27 -76.667 27 -116v-158c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v-316h-158v1422h158v-316h316zM790 790
589
-c0 20 -4.5 39.333 -13.5 58s-21 35.5 -36 50.5s-31.833 27 -50.5 36s-38 13.5 -58 13.5h-316v-474h316c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58v158z" />
590
- <glyph glyph-name="germandbls" unicode="&#xdf;"
591
-d="M158 1027c0 68 11.499 126.828 34.499 176.495s53.167 90.667 90.5 123s79.5 56.333 126.5 72s94.833 23.5 143.5 23.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180
592
-s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5
593
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
594
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-28.667 0 -57.167 -5 -85.5 -15s-53.666 -24.833 -75.999 -44.5s-40.5 -44.334 -54.5 -74.001
595
-s-21 -64.167 -21 -103.5v-1027h-158v1027z" />
596
- <glyph glyph-name="agrave" unicode="&#xe0;"
597
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
598
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
599
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM316.001 1422v158
600
-l474 -237v-158z" />
601
- <glyph glyph-name="aacute" unicode="&#xe1;"
602
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
603
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
604
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM395.001 1264
605
-l-79 79l395 237l79 -79z" />
606
- <glyph glyph-name="acircumflex" unicode="&#xe2;"
607
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
608
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
609
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM551.001 1580
610
-l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
611
- <glyph glyph-name="atilde" unicode="&#xe3;"
612
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
613
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
614
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM946.001 1501
615
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
616
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
617
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
618
- <glyph glyph-name="adieresis" unicode="&#xe4;"
619
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
620
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
621
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM314.001 1343
622
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
623
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
624
- <glyph glyph-name="aring" unicode="&#xe5;"
625
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
626
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
627
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM314.001 1501
628
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
629
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM472.001 1501c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
630
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
631
- <glyph glyph-name="ae" unicode="&#xe6;"
632
-d="M395 0c-39.333 0 -73.832 9.00098 -103.499 27.001s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116s5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27h79c0 78.667 -4.5 139.5 -13.5 182.5s-21 74.333 -36 94
633
-s-31.833 31.167 -50.5 34.5s-38 5 -58 5v158c10.667 0 24 -0.333008 40 -1s33.167 -2.5 51.5 -5.5s37.5 -8 57.5 -15s39 -16.833 57 -29.5c15.333 15.333 32.5 27.666 51.5 36.999s38.5 14 58.5 14h79c39.333 0 73.833 -9 103.5 -27s54.334 -41.833 74.001 -71.5
634
-s34.5 -63.5 44.5 -101.5s15 -76.667 15 -116s-5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27h-79c0 -52.667 1 -97 3 -133s4.83301 -65.667 8.5 -89s8 -41.5 13 -54.5s10.5 -22.333 16.5 -28s12.167 -9 18.5 -10
635
-s12.833 -1.5 19.5 -1.5c12 0 22.833 4.5 32.5 13.5s18 21 25 36s12.333 31.833 16 50.5s5.5 38 5.5 58h158c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001s-64.167 -16 -103.5 -16h-316zM395.001 474.001
636
-c-11.333 0 -21.833 -4.5 -31.5 -13.5s-18 -21 -25 -36s-12.5 -31.833 -16.5 -50.5s-6 -38 -6 -58s2 -39.333 6 -58s9.5 -35.5 16.5 -50.5s15.333 -27 25 -36s20.167 -13.5 31.5 -13.5h79v316h-79zM711.001 632.001c11.333 0 21.833 4.5 31.5 13.5s18 21 25 36
637
-s12.5 31.833 16.5 50.5s6 38 6 58s-2 39.333 -6 58s-9.5 35.5 -16.5 50.5s-15.333 27 -25 36s-20.167 13.5 -31.5 13.5h-79v-316h79z" />
638
- <glyph glyph-name="ccedilla" unicode="&#xe7;"
639
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
640
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
641
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
642
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM632 0.00195312c0 -59.333 -9.83203 -112.832 -29.499 -160.499
643
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158z" />
644
- <glyph glyph-name="egrave" unicode="&#xe8;"
645
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
646
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
647
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM316.001 1422v158
648
-l474 -237v-158z" />
649
- <glyph glyph-name="eacute" unicode="&#xe9;"
650
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
651
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
652
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM395.001 1264
653
-l-79 79l395 237l79 -79z" />
654
- <glyph glyph-name="ecircumflex" unicode="&#xea;"
655
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
656
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
657
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM551.001 1580
658
-l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
659
- <glyph glyph-name="edieresis" unicode="&#xeb;"
660
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
661
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
662
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM314.001 1343
663
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
664
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
665
- <glyph glyph-name="igrave" unicode="&#xec;"
666
-d="M474 948h-158v158h316v-1106h-158v948zM316 1501l79 79l237 -237l-79 -79z" />
667
- <glyph glyph-name="iacute" unicode="&#xed;"
668
-d="M474 948h-158v158h316v-1106h-158v948zM395 1264l-79 79l237 237l79 -79z" />
669
- <glyph glyph-name="icircumflex" unicode="&#xee;"
670
-d="M474 948h-158v158h316v-1106h-158v948zM550 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
671
- <glyph glyph-name="idieresis" unicode="&#xef;"
672
-d="M474 948h-158v158h316v-1106h-158v948zM316 1422h158v-158h-158v158zM632 1422h158v-158h-158v158z" />
673
- <glyph glyph-name="eth" unicode="&#xf0;"
674
-d="M711 1422l0.000976562 -158l-51 -51c48.667 -50 95.667 -112 141 -186l147 -237v-474c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-158c-39.333 0 -78 9 -116 27s-71.833 41.833 -101.5 71.5
675
-s-53.5 63.5 -71.5 101.5s-27 76.667 -27 116v158c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h316l-158 237c-22.667 33.333 -45.334 63.333 -68.001 90l-169 -169v158l90 90c-56.667 45.333 -113 68 -169 68v158l169 -79
676
-c31.333 -14 62 -32.333 92 -55zM553.001 158c158 0 237 79 237 237v237h-237c-158 0 -237 -79 -237 -237s79 -237 237 -237z" />
677
- <glyph glyph-name="ntilde" unicode="&#xf1;"
678
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
679
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM946 1501c-79.333 -158 -158.334 -237 -237.001 -237
680
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
681
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
682
-s13.5 38 13.5 58z" />
683
- <glyph glyph-name="ograve" unicode="&#xf2;"
684
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
685
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
686
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
687
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM316 1422v158l474 -237v-158z" />
688
- <glyph glyph-name="oacute" unicode="&#xf3;"
689
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
690
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
691
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
692
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM394.844 1264l-79.1689 79l395.844 237l79.1689 -79z" />
693
- <glyph glyph-name="ocircumflex" unicode="&#xf4;"
694
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
695
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
696
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
697
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
698
- <glyph glyph-name="otilde" unicode="&#xf5;"
699
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
700
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
701
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
702
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM946 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5
703
-s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237
704
-c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
705
- <glyph glyph-name="odieresis" unicode="&#xf6;"
706
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
707
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
708
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
709
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM314 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
710
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
711
- <glyph glyph-name="divide" unicode="&#xf7;"
712
-d="M0 790h948v-158h-948v158zM316 1106c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5
713
-s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM316 316c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
714
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5
715
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
716
- <glyph glyph-name="oslash" unicode="&#xf8;"
717
-d="M335 0h-185.001c0 3.33301 0.666992 7.33301 2 12s4.66602 12.5 9.99902 23.5s13.5 26.667 24.5 47s26.5 47.5 46.5 81.5c-23.333 32.667 -41.666 68.5 -54.999 107.5s-20 80.167 -20 123.5v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
718
-s77.5 63.834 125.5 84.501s99.333 31 154 31c34.667 0 67.834 -4.33301 99.501 -13s61.834 -20.667 90.501 -36l28 49h185c0 -3.33301 -0.666992 -7.5 -2 -12.5s-4.83301 -13 -10.5 -24l-25 -46.5l-45.5 -81c23.333 -32.667 41.666 -68.5 54.999 -107.5
719
-s20 -80.167 20 -123.5v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-34.667 -0 -68 4.33301 -100 13s-62 20.667 -90 36zM789.999 711c0 11.333 -0.834961 22.665 -2.50195 33.998
720
-s-4.16699 22.333 -7.5 33l-339 -592c34 -18.667 71.333 -28 112 -28c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316zM315.997 394.999c0 -25.333 3.33594 -47.998 10.0029 -67.998l338 593
721
-c-16.667 8.66699 -34.334 15.5 -53.001 20.5s-38 7.5 -58 7.5c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
722
- <glyph glyph-name="ugrave" unicode="&#xf9;"
723
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
724
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM315.997 1422v158l474 -237v-158z" />
725
- <glyph glyph-name="uacute" unicode="&#xfa;"
726
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
727
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM394.997 1264l-79 79l395 237l79 -79z" />
728
- <glyph glyph-name="ucircumflex" unicode="&#xfb;"
729
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
730
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.997 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
731
- <glyph glyph-name="udieresis" unicode="&#xfc;"
732
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
733
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
734
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.997 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
735
-s-23 34 -23 56z" />
736
- <glyph glyph-name="yacute" unicode="&#xfd;"
737
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
738
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
739
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM394.998 1264l-79 79l395 237l79 -79z" />
740
- <glyph glyph-name="thorn" unicode="&#xfe;"
741
-d="M948 474c0 -79.333 -14 -148.498 -42 -207.498s-66.667 -108.333 -116 -148s-107.833 -69.334 -175.5 -89.001s-140.834 -29.5 -219.501 -29.5h-80v-473h-157v1895h158v-474h79c78.667 0 151.834 -9.83301 219.501 -29.5s126.167 -49.334 175.5 -89.001
742
-s88 -89.167 116 -148.5s42 -128.333 42 -207zM315 158.002l159 0.00390625c13.333 0 30.333 2.33301 51 7s42.667 12.167 66 22.5s46.833 23.666 70.5 39.999s45 36.166 64 59.499s34.5 50.5 46.5 81.5s18 66.167 18 105.5s-6 74.5 -18 105.5s-27.5 58.167 -46.5 81.5
743
-s-40.333 43.166 -64 59.499s-47.167 29.666 -70.5 39.999s-45.333 17.833 -66 22.5s-37.667 7 -51 7h-158z" />
744
- <glyph glyph-name="ydieresis" unicode="&#xff;"
745
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
746
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
747
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
748
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM629.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
749
-s-23 34 -23 56z" />
750
- <glyph glyph-name="Amacron" unicode="&#x100;"
751
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
752
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
753
-s-18.5 -59.334 -18.5 -92.001v-237h474zM158.002 1580v158h790v-158h-790z" />
754
- <glyph glyph-name="amacron" unicode="&#x101;"
755
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
756
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
757
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM158.001 1265v158
758
-h790v-158h-790z" />
759
- <glyph glyph-name="Abreve" unicode="&#x102;"
760
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
761
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
762
-s-18.5 -59.334 -18.5 -92.001v-237h474zM551.002 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5
763
-s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
764
- <glyph glyph-name="abreve" unicode="&#x103;"
765
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
766
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
767
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM551.001 1264
768
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
769
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
770
- <glyph glyph-name="Aogonek" unicode="&#x104;"
771
-d="M1 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027zM632.998 790
772
-l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-237
773
-h474zM788.998 0c0 -39.333 5.35547 -73.501 16.0674 -102.501s28.4531 -50.833 53.2236 -65.5s57.4072 -21.667 97.9102 -21s90.5459 11 150.129 31v-158c-78.998 -20 -148.289 -25.833 -207.872 -17.5s-109.291 27.333 -149.124 57
774
-c-39.834 29.667 -69.626 68.334 -89.375 116.001s-29.624 101.167 -29.624 160.5h158.665z" />
775
- <glyph glyph-name="aogonek" unicode="&#x105;"
776
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
777
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
778
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316z
779
-M632.001 -0.00292969c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001
780
-s-29.5 101.167 -29.5 160.5h158z" />
781
- <glyph glyph-name="Cacute" unicode="&#x106;"
782
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
783
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
784
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
785
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
786
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
787
-c-25.2568 8 -52.0283 12 -80.3154 12zM395 1580l-79 79l395 237l79 -79z" />
788
- <glyph glyph-name="cacute" unicode="&#x107;"
789
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
790
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
791
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
792
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM395 1264l-79 79l395 237l79 -79z" />
793
- <glyph glyph-name="Ccircumflex" unicode="&#x108;"
794
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
795
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
796
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
797
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
798
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
799
-c-25.2568 8 -52.0283 12 -80.3154 12zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
800
- <glyph glyph-name="ccircumflex" unicode="&#x109;"
801
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
802
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
803
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
804
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
805
- <glyph glyph-name="Cdotaccent" unicode="&#x10a;"
806
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
807
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
808
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
809
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
810
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
811
-c-25.2568 8 -52.0283 12 -80.3154 12zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
812
- <glyph glyph-name="cdotaccent" unicode="&#x10b;"
813
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
814
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
815
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
816
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
817
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
818
- <glyph glyph-name="Ccaron" unicode="&#x10c;"
819
-d="M560.701 1264c-34.3486 0 -66.3398 -6.16309 -95.9736 -18.4961s-55.2266 -29.333 -76.7783 -51s-38.5576 -46.834 -51.0176 -75.501s-18.6895 -59.334 -18.6895 -92.001v-632c0 -32.667 6.22949 -63.334 18.6895 -92.001s29.4658 -53.834 51.0176 -75.501
820
-s47.1445 -38.667 76.7783 -51s61.625 -18.5 95.9736 -18.5c28.2871 0 54.8906 3.83301 79.8105 11.5c24.9189 7.66699 47.6494 18.5 68.1914 32.5s38.3896 30.667 53.5439 50c15.1533 19.333 26.7715 40.666 34.8535 63.999h159.62
821
-c-9.42871 -45.333 -25.9297 -87.333 -49.502 -126c-23.5732 -38.667 -52.7021 -72 -87.3877 -100s-73.917 -50 -117.694 -66s-90.9229 -24 -141.436 -24c-56.5742 0 -109.275 10.333 -158.104 31s-91.4287 48.834 -127.799 84.501
822
-c-36.3682 35.667 -64.8232 77.5 -85.3652 125.5s-30.8125 99.333 -30.8125 154v632c0 54.667 10.2705 106 30.8125 154s48.9971 89.833 85.3652 125.5c36.3701 35.667 78.9697 63.834 127.799 84.501s101.53 31 158.104 31c50.5127 0 97.8262 -8 141.94 -24
823
-s83.3457 -38.167 117.694 -66.5s63.3096 -61.833 86.8828 -100.5c23.5723 -38.667 40.0732 -80.334 49.502 -125.001h-159.62c-8.08203 22.667 -19.7002 43.667 -34.8535 63c-15.1543 19.333 -32.834 36 -53.0381 50c-20.2061 14 -42.9365 25 -68.1924 33
824
-c-25.2568 8 -52.0283 12 -80.3154 12zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
825
- <glyph glyph-name="ccaron" unicode="&#x10d;"
826
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
827
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
828
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
829
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
830
- <glyph glyph-name="Dcaron" unicode="&#x10e;"
831
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
832
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
833
-v-1106h237zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
834
- <glyph glyph-name="dcaron" unicode="&#x10f;"
835
-d="M791 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
836
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM615 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
837
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
838
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM474.001 1659l79 79l158 -158l158 158l79 -79l-237 -237z" />
839
- <glyph glyph-name="Dcroat" unicode="&#x110;"
840
-d="M0 948h474v-158h-474v158zM158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501
841
-s-99.333 -31 -154 -31h-395v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
842
-s-59.334 18.5 -92.001 18.5h-237v-1106h237z" />
843
- <glyph glyph-name="dcroat" unicode="&#x111;"
844
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
845
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
846
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
847
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM631.797 1264h473.981v-158h-473.981v158z" />
848
- <glyph glyph-name="Emacron" unicode="&#x112;"
849
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM158 1580v158h790v-158h-790z" />
850
- <glyph glyph-name="emacron" unicode="&#x113;"
851
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
852
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
853
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM158.001 1265v158
854
-h790v-158h-790z" />
855
- <glyph glyph-name="Ebreve" unicode="&#x114;"
856
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM553 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5
857
-s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
858
- <glyph glyph-name="ebreve" unicode="&#x115;"
859
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
860
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
861
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM551.001 1264
862
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
863
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
864
- <glyph glyph-name="Edotaccent" unicode="&#x116;"
865
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
866
- <glyph glyph-name="edotaccent" unicode="&#x117;"
867
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
868
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
869
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM471.001 1343
870
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
871
- <glyph glyph-name="Eogonek" unicode="&#x118;"
872
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM632 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
873
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
874
- <glyph glyph-name="eogonek" unicode="&#x119;"
875
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
876
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
877
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79z
878
-M632.001 0.000976562c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001
879
-s-29.5 101.167 -29.5 160.5h158z" />
880
- <glyph glyph-name="Ecaron" unicode="&#x11a;"
881
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
882
- <glyph glyph-name="ecaron" unicode="&#x11b;"
883
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
884
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
885
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM314.001 1501
886
-l79 79l158 -158l158 158l79 -79l-237 -237z" />
887
- <glyph glyph-name="Gcircumflex" unicode="&#x11c;"
888
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
889
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
890
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
891
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM552.997 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
892
- <glyph glyph-name="gcircumflex" unicode="&#x11d;"
893
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
894
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
895
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
896
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
897
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM550.999 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
898
- <glyph glyph-name="Gbreve" unicode="&#x11e;"
899
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
900
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
901
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
902
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM550.997 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5
903
-s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116
904
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
905
- <glyph glyph-name="gbreve" unicode="&#x11f;"
906
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
907
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
908
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
909
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
910
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM550.999 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58
911
-s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
912
- <glyph glyph-name="Gdotaccent" unicode="&#x120;"
913
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
914
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
915
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
916
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM470.997 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
917
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
918
- <glyph glyph-name="gdotaccent" unicode="&#x121;"
919
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
920
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
921
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
922
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
923
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM470.999 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
924
-s-23 34 -23 56z" />
925
- <glyph glyph-name="Gcommaaccent" unicode="&#x122;"
926
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
927
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
928
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
929
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM394.997 -630.997c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
930
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
931
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
932
-s-64.167 -27 -103.5 -27z" />
933
- <glyph glyph-name="gcommaaccent" unicode="&#x123;"
934
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
935
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
936
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
937
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
938
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM628.999 1896c22 0 40.665 -7.66797 55.998 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5s-18.5 -17.167 -23.5 -30.5
939
-s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5
940
-s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5v158c0 39.333 5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27z" />
941
- <glyph glyph-name="Hcircumflex" unicode="&#x124;"
942
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM553 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
943
- <glyph glyph-name="hcircumflex" unicode="&#x125;"
944
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
945
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
946
- <glyph glyph-name="Hbar" unicode="&#x126;"
947
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM158 969.967v136.996h790v-136.996h-790z" />
948
- <glyph glyph-name="hbar" unicode="&#x127;"
949
-d="M0 1264l158 -0.000976562v158h158v-158h158v-158h-158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711
950
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h-158v158z" />
951
- <glyph glyph-name="Itilde" unicode="&#x128;"
952
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM948 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
953
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
954
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
955
- <glyph glyph-name="itilde" unicode="&#x129;"
956
-d="M946 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
957
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
958
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58zM473.999 948h-158v158h316v-1106h-158v948z" />
959
- <glyph glyph-name="Imacron" unicode="&#x12a;"
960
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM158 1580v158h790v-158h-790z" />
961
- <glyph glyph-name="imacron" unicode="&#x12b;"
962
-d="M158.798 1265v158h788.987v-158h-788.987zM474 948h-158v158h316v-1106h-158v948z" />
963
- <glyph glyph-name="Ibreve" unicode="&#x12c;"
964
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM553 1580c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36
965
-s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
966
- <glyph glyph-name="ibreve" unicode="&#x12d;"
967
-d="M551 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36
968
-s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27zM474.002 948h-158v158h316v-1106h-158v948z" />
969
- <glyph glyph-name="Iogonek" unicode="&#x12e;"
970
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM632 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
971
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
972
- <glyph glyph-name="iogonek" unicode="&#x12f;"
973
-d="M474 948h-158v158h316v-1106h-158v948zM474 1422h158v-158h-158v158zM631 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5
974
-s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5h158z" />
975
- <glyph glyph-name="Idotaccent" unicode="&#x130;"
976
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
977
- <glyph glyph-name="dotlessi" unicode="&#x131;"
978
-d="M474 948h-158v158h316v-1106h-158v948z" />
979
- <glyph glyph-name="IJ" unicode="&#x132;"
980
-d="M0 158h158v1106h-158v158h474v-158h-158v-1106h158v-158h-474v158zM711 0c-39.333 0 -73.8301 5.33301 -103.497 16s-54.334 28.334 -74.001 53.001s-34.5 57.167 -44.5 97.5s-15 90.166 -15 149.499h163c-1.33301 -20 -1.83301 -39.333 -1.5 -58
981
-s2.66602 -35.5 6.99902 -50.5s11.833 -27 22.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58v1106h158v-1106c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001
982
-s-64.167 -16 -103.5 -16z" />
983
- <glyph glyph-name="ij" unicode="&#x133;"
984
-d="M317 948h-158v158h316v-1106h-158v948zM317 1422h158v-158h-158v158zM316 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM790 1422h158v-158
985
-h-158v158z" />
986
- <glyph glyph-name="Jcircumflex" unicode="&#x134;"
987
-d="M158 474h157.998v-79c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158v-1027
988
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v79zM552.998 1896l237 -237l-79 -79l-158 158
989
-l-158 -158l-79 79z" />
990
- <glyph glyph-name="jcircumflex" unicode="&#x135;"
991
-d="M158 -158h237c158 0 237 79 237 237v869h-158v158h316v-1106c0 -39.333 -9 -78 -27 -116s-41.833 -71.833 -71.5 -101.5s-63.5 -53.5 -101.5 -71.5s-76.667 -27 -116 -27h-316v158zM550 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
992
- <glyph glyph-name="Kcommaaccent" unicode="&#x136;"
993
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5
994
-s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
995
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
996
- <glyph glyph-name="kcommaaccent" unicode="&#x137;"
997
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5
998
-s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
999
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1000
- <glyph glyph-name="kgreenlandic" unicode="&#x138;"
1001
-d="M316 600l439 506h193l-474 -553l474 -553h-195l-437 509v-509h-158v1106h158v-506z" />
1002
- <glyph glyph-name="Lacute" unicode="&#x139;"
1003
-d="M158 1422h158v-1264h632v-158h-790v1422zM395 1580l-79 79l395 237l79 -79z" />
1004
- <glyph glyph-name="lacute" unicode="&#x13a;"
1005
-d="M474 1264h-158v158h316v-1422h-158v1264zM395 1580l-79 79l395 237l79 -79z" />
1006
- <glyph glyph-name="Lcommaaccent" unicode="&#x13b;"
1007
-d="M158 1422h158v-1264h632v-158h-790v1422zM394.746 -627.496c-21.9297 0 -40.5391 7.62695 -55.8242 22.8877c-15.2842 15.2607 -22.9268 33.8389 -22.9268 55.7344s7.64258 40.4736 22.9268 55.7344c15.2852 15.2607 33.8926 22.8906 55.8223 22.8906
1008
-c19.9365 0 35.2217 3.4834 45.8545 10.4502s18.4414 17.085 23.4248 30.3545c4.98438 13.2705 7.80859 29.6924 8.47363 49.2656s0.99707 41.9658 0.99707 67.1787c-21.9307 0 -42.3662 4.14648 -61.3066 12.4404c-18.9395 8.29395 -35.5527 19.5732 -49.8408 33.8379
1009
-s-25.5859 30.8525 -33.8936 49.7627c-8.30664 18.9092 -12.46 39.3115 -12.46 61.207s4.15332 42.2979 12.46 61.207c8.30762 18.9092 19.6055 35.4961 33.8936 49.7607s30.9014 25.5439 49.8408 33.8379c18.9404 8.29395 39.376 12.4414 61.3066 12.4414
1010
-c21.9297 0 42.3643 -4.14746 61.3047 -12.4414c18.9395 -8.29395 35.5527 -19.5732 49.8408 -33.8379s25.5859 -30.8516 33.8936 -49.7607c8.30664 -18.9092 12.46 -39.3115 12.46 -61.207v-157.248c0 -39.1455 -4.98438 -77.6279 -14.9521 -115.447
1011
-s-24.7539 -71.4922 -44.3584 -101.018s-44.1924 -53.2451 -73.7646 -71.1592c-29.5732 -17.915 -63.9639 -26.8721 -103.172 -26.8721z" />
1012
- <glyph glyph-name="lcommaaccent" unicode="&#x13c;"
1013
-d="M474 1264h-158v158h316v-1422h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1014
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1015
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1016
- <glyph glyph-name="Lcaron" unicode="&#x13d;"
1017
-d="M158 1422h158v-1264h632v-158h-790v1422zM471 1262c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1018
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1019
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1020
- <glyph glyph-name="lcaron" unicode="&#x13e;"
1021
-d="M316 1264h-158v158h316v-1422h-158v1264zM711 1264c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5
1022
-s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1023
-v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1024
- <glyph glyph-name="Ldot" unicode="&#x13f;"
1025
-d="M158 1422h158v-1264h632v-158h-790v1422zM632 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1026
-s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
1027
- <glyph glyph-name="ldot" unicode="&#x140;"
1028
-d="M316 1264h-158v158h316v-1422h-158v1264zM632 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5
1029
-s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5z" />
1030
- <glyph glyph-name="Lslash" unicode="&#x141;"
1031
-d="M19 455l553 553l120 -120l-553 -553zM158 1422h158v-1264h632v-158h-790v1422z" />
1032
- <glyph glyph-name="lslash" unicode="&#x142;"
1033
-d="M269 466l205 136v662h-158v158h316v-714l111 74l94 -142l-205 -137v-503h-158v398l-111 -74z" />
1034
- <glyph glyph-name="Nacute" unicode="&#x143;"
1035
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM395 1580l-79 79l395 237l79 -79z" />
1036
- <glyph glyph-name="nacute" unicode="&#x144;"
1037
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1038
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 1265.02l-79 79.502l395 238.504l79 -79.502z" />
1039
- <glyph glyph-name="Ncommaaccent" unicode="&#x145;"
1040
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1041
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1042
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1043
- <glyph glyph-name="ncommaaccent" unicode="&#x146;"
1044
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1045
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM395 -631.001c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
1046
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
1047
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
1048
-s-64.167 -27 -103.5 -27z" />
1049
- <glyph glyph-name="Ncaron" unicode="&#x147;"
1050
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1051
- <glyph glyph-name="ncaron" unicode="&#x148;"
1052
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1053
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1054
- <glyph glyph-name="napostrophe" unicode="&#x149;"
1055
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1056
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM553 1027c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56
1057
-s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5
1058
-s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5
1059
-s-64.167 -27 -103.5 -27z" />
1060
- <glyph glyph-name="Eng" unicode="&#x14a;"
1061
-d="M549 -474c-48 0 -93.832 8 -137.499 24s-82.667 38.167 -117 66.5s-63.5 61.666 -87.5 99.999s-40.333 80.166 -49 125.499h164c8.66699 -23.333 20.5 -44.666 35.5 -63.999s32.333 -36 52 -50s41.334 -24.833 65.001 -32.5s48.5 -11.5 74.5 -11.5
1062
-c32.667 0 63.667 6.16699 93 18.5s54.666 29.333 75.999 51s38.333 46.834 51 75.501s19 59.334 19 92.001v79h-5l-465 1050v-1050h-158v1422h165l465 -1047v1047h158v-1501c0 -54.667 -10.5 -106 -31.5 -154s-49.5 -89.833 -85.5 -125.5s-78.333 -63.834 -127 -84.501
1063
-s-100.334 -31 -155.001 -31z" />
1064
- <glyph glyph-name="eng" unicode="&#x14b;"
1065
-d="M316 -158v-157.999h316c39.333 0 78 9 116 27c28 13.333 54.167 30.333 78.5 51s45.5 43.667 63.5 69s32.167 52.333 42.5 81s15.5 58 15.5 88v711c0 54.667 -10.333 106 -31 154s-48.834 89.833 -84.501 125.5s-77.5 63.834 -125.5 84.501s-99.333 31 -154 31
1066
-c-44.667 0 -87 -7 -127 -21s-76.667 -33.667 -110 -59v80h-158v-1106h158v721c1.33301 31.333 8.33301 60.833 21 88.5s29.667 51.667 51 72s46.166 36.5 74.499 48.5s58.5 18 90.5 18c32.667 0 63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51
1067
-s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001v-632c0 -158 -79 -237 -237 -237h-237z" />
1068
- <glyph glyph-name="Omacron" unicode="&#x14c;"
1069
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1070
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1071
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1072
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM158 1580v158h790v-158h-790z" />
1073
- <glyph glyph-name="omacron" unicode="&#x14d;"
1074
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1075
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1076
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1077
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM158 1265v158h790v-158h-790z" />
1078
- <glyph glyph-name="Obreve" unicode="&#x14e;"
1079
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1080
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1081
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1082
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM552.51 1580c-39.583 0 -74.3027 9 -104.157 27
1083
-c-29.8555 18 -54.6787 41.833 -74.4697 71.5c-19.792 29.667 -34.7197 63.5 -44.7832 101.5s-15.0957 76.667 -15.0957 116h159.003c0 -20 0.335938 -39.333 1.00684 -58s3.52246 -35.5 8.55469 -50.5s12.915 -27 23.6494 -36s26.165 -13.5 46.291 -13.5
1084
-c20.1279 0 35.5586 4.5 46.293 13.5s18.6172 21 23.6484 36c5.03223 15 7.88379 31.833 8.55469 50.5s1.00586 38 1.00586 58h159.003c0 -39.333 -5.03125 -78 -15.0947 -116s-24.9912 -71.833 -44.7832 -101.5s-44.6152 -53.5 -74.4697 -71.5s-64.5732 -27 -104.156 -27z
1085
-" />
1086
- <glyph glyph-name="obreve" unicode="&#x14f;"
1087
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1088
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1089
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1090
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM551 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5
1091
-s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5
1092
-s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1093
- <glyph glyph-name="Ohungarumlaut" unicode="&#x150;"
1094
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1095
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1096
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1097
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM225.158 1580l-65.8311 79l329.158 237l65.832 -79z
1098
-M619.158 1580l-65.8311 79l329.158 237l65.832 -79z" />
1099
- <glyph glyph-name="ohungarumlaut" unicode="&#x151;"
1100
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1101
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1102
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1103
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM225.158 1264l-65.8311 79l329.158 237l65.832 -79zM618.339 1265.02l-65.668 79.502l328.339 238.504
1104
-l65.668 -79.502z" />
1105
- <glyph glyph-name="OE" unicode="&#x152;"
1106
-d="M632 790h158.001v-158h-158v-474h316v-158h-474v15c-24 -10 -50.333 -15 -79 -15c-39.333 0 -73.833 9.5 -103.5 28.5s-54.334 45.667 -74.001 80s-34.5 75.833 -44.5 124.5s-15 102.667 -15 162v632c0 59.333 5 113.333 15 162s24.833 90.167 44.5 124.5
1107
-s44.334 61 74.001 80s64.167 28.5 103.5 28.5c27.333 0 53.666 -5.33301 78.999 -16v16h474v-158h-316v-474zM395.001 1264c-20 0 -35.333 -5 -46 -15s-18.5 -24.833 -23.5 -44.5s-7.83301 -44.334 -8.5 -74.001s-1 -64.167 -1 -103.5v-632
1108
-c0 -39.333 0.333008 -73.833 1 -103.5s3.5 -54.334 8.5 -74.001s12.833 -34.5 23.5 -44.5s26 -15 46 -15c17.333 0 31.166 5 41.499 15s18.333 24.833 24 44.5s9.33398 44.334 11.001 74.001s2.5 64.167 2.5 103.5v632c0 39.333 -0.333008 73.833 -1 103.5
1109
-s-3.5 54.334 -8.5 74.001s-12.833 34.5 -23.5 44.5s-26 15 -46 15z" />
1110
- <glyph glyph-name="oe" unicode="&#x153;"
1111
-d="M158 711c0 59.333 4.99902 113.333 14.999 162s24.833 90.167 44.5 124.5s44.334 61 74.001 80s64.167 28.5 103.5 28.5s73.666 -9.66699 102.999 -29c20.667 -12.667 39 -29.334 55 -50.001c16 20.667 34 37.334 54 50.001c30 19.333 64.667 29 104 29
1112
-s73.833 -9.5 103.5 -28.5s54.334 -45.667 74.001 -80s34.5 -75.833 44.5 -124.5s15 -102.667 15 -162v-237h-316v-79v-22c0 -30.667 0.333008 -58 1 -82c0.666992 -29.333 3.5 -53.833 8.5 -73.5s12.833 -34.5 23.5 -44.5s26 -15 46 -15h237v-158h-237
1113
-c-39.333 -0 -74 9.33301 -104 28c-20 13.333 -38 30.333 -54 51c-16 -20.667 -34.333 -37.667 -55 -51c-29.333 -18.667 -63.666 -28 -102.999 -28s-73.833 9.5 -103.5 28.5s-54.334 45.667 -74.001 80s-34.5 75.833 -44.5 124.5s-15 102.667 -15 162v316zM315.999 395
1114
-c0 -39.333 0.333008 -73.8311 1 -103.498s3.5 -54.334 8.5 -74.001s12.833 -34.5 23.5 -44.5s26 -15 46 -15c19.333 0 34.333 5 45 15s18.5 24.833 23.5 44.5s7.83301 44.167 8.5 73.5c0.666992 24 1.33398 51.333 2.00098 82v22v316v22
1115
-c-0.666992 30.667 -1.33398 57.667 -2.00098 81c-0.666992 30 -3.5 54.833 -8.5 74.5s-12.833 34.5 -23.5 44.5s-25.667 15 -45 15c-20 0 -35.333 -5 -46 -15s-18.5 -24.833 -23.5 -44.5s-7.83301 -44.334 -8.5 -74.001s-1 -64.167 -1 -103.5v-316zM631.999 632.002
1116
-l158 -0.000976562v79c0 32.667 -0.5 63.334 -1.5 92.001s-4 53.834 -9 75.501s-12.833 38.667 -23.5 51s-25.667 18.5 -45 18.5c-20 0 -35.333 -6.16699 -46 -18.5s-18.5 -29.333 -23.5 -51s-7.83301 -46.834 -8.5 -75.501c-0.666992 -22 -1 -45.333 -1 -70v-22v-79z" />
1117
- <glyph glyph-name="Racute" unicode="&#x154;"
1118
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1119
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1120
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM394.996 1580l-79 79l395 237l79 -79z" />
1121
- <glyph glyph-name="racute" unicode="&#x155;"
1122
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1123
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM395.001 1264
1124
-l-79 79l395 237l79 -79z" />
1125
- <glyph glyph-name="Rcommaaccent" unicode="&#x156;"
1126
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1127
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1128
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM394.996 -631.003c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5
1129
-s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5
1130
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1131
- <glyph glyph-name="rcommaaccent" unicode="&#x157;"
1132
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1133
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM238.001 -631
1134
-c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50
1135
-s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116
1136
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1137
- <glyph glyph-name="Rcaron" unicode="&#x158;"
1138
-d="M643 642c208 -426 311.996 -639.999 311.996 -641.999h-181c-205.333 419.333 -308 630 -308 632h-150v-632h-158v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -46.667 -7.66699 -91 -23 -133
1139
-s-36.666 -80 -63.999 -114s-59.666 -63 -96.999 -87s-77.666 -41 -120.999 -51zM552.996 790.001c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1140
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM313.996 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1141
- <glyph glyph-name="rcaron" unicode="&#x159;"
1142
-d="M158 0l0.000976562 1106h158v-160c11.333 20.667 30 40.5 56 59.5s54.5 36 85.5 51s62.333 27 94 36s58.5 13.5 80.5 13.5c48 0 89.167 -8 123.5 -24s63.666 -38.167 87.999 -66.5s44.166 -61.833 59.499 -100.5s27.666 -80.334 36.999 -125.001h-164l-21.5 63
1143
-c-6.33301 19.333 -14.333 36 -24 50s-22 25 -37 33s-35.5 12 -61.5 12c-21.333 0 -44 -4.16699 -68 -12.5s-47.667 -20 -71 -35s-45.666 -32.667 -66.999 -53s-40.166 -42.166 -56.499 -65.499s-29.333 -47.833 -39 -73.5s-14.5 -51.5 -14.5 -77.5v-631h-158zM314.001 1501
1144
-l79 79l158 -158l158 158l79 -79l-237 -237z" />
1145
- <glyph glyph-name="Sacute" unicode="&#x15a;"
1146
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1147
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1148
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1149
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM395 1580l-79 79l395 237l79 -79z" />
1150
- <glyph glyph-name="sacute" unicode="&#x15b;"
1151
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1152
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1153
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1154
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM395 1264l-79 79l395 237l79 -79z" />
1155
- <glyph glyph-name="Scircumflex" unicode="&#x15c;"
1156
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1157
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1158
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1159
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1160
- <glyph glyph-name="scircumflex" unicode="&#x15d;"
1161
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1162
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1163
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1164
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM551 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1165
- <glyph glyph-name="Scedilla" unicode="&#x15e;"
1166
-d="M316 1027c0 -32.667 6.16602 -63.334 18.499 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1167
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501c-24 -10.667 -49 -18.667 -75 -24l-5 -49c-3.33301 -42.667 -12.666 -82 -27.999 -118c-19.333 -48 -48.833 -86.833 -88.5 -116.5s-89.167 -48.667 -148.5 -57
1168
-s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h-313v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1169
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154
1170
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001z" />
1171
- <glyph glyph-name="scedilla" unicode="&#x15f;"
1172
-d="M632 0c0 -59.333 -9.83301 -112.832 -29.5 -160.499s-49.5 -86.334 -89.5 -116.001s-89.833 -48.667 -149.5 -57s-129.167 -2.5 -208.5 17.5v158c60 -20 110.167 -30.333 150.5 -31s73 6.33301 98 21s42.833 36.5 53.5 65.5s16 63.167 16 102.5h-315v158h395
1173
-c39.333 0 73.833 4.5 103.5 13.5s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5
1174
-s-57.333 23.666 -84 39.999s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5
1175
-s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499
1176
-s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72c-26 -10 -53.667 -17 -83 -21v-6z" />
1177
- <glyph glyph-name="Scaron" unicode="&#x160;"
1178
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1179
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1180
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1181
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM316 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1182
- <glyph glyph-name="scaron" unicode="&#x161;"
1183
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1184
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1185
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1186
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM316 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1187
- <glyph glyph-name="Tcommaaccent" unicode="&#x162;"
1188
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1189
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1190
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1191
- <glyph glyph-name="tcommaaccent" unicode="&#x163;"
1192
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1193
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM551.507 -630.999c-22.1396 0 -40.9238 7.66797 -56.3545 23.001s-23.1465 34 -23.1465 56s7.71582 40.667 23.1465 56s34.2158 23 56.3555 23c20.126 0 35.5566 3.5 46.291 10.5s18.6172 17.167 23.6494 30.5
1194
-s7.88379 29.833 8.55469 49.5s1.00684 42.167 1.00684 67.5c-22.1396 0 -42.7695 4.16699 -61.8896 12.5s-35.8926 19.666 -50.3174 33.999s-25.8301 31 -34.2158 50s-12.5791 39.5 -12.5791 61.5s4.19336 42.5 12.5791 61.5s19.791 35.667 34.2158 50
1195
-s31.1973 25.666 50.3174 33.999s39.75 12.5 61.8896 12.5s42.7695 -4.16699 61.8896 -12.5s35.8926 -19.666 50.3174 -33.999s25.8301 -31 34.2158 -50s12.5791 -39.5 12.5791 -61.5v-158c0 -39.333 -5.03223 -78 -15.0957 -116s-24.9912 -71.833 -44.7832 -101.5
1196
-c-19.791 -29.667 -44.6143 -53.5 -74.4697 -71.5c-29.8545 -18 -64.5732 -27 -104.156 -27z" />
1197
- <glyph glyph-name="Tcaron" unicode="&#x164;"
1198
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1199
- <glyph glyph-name="tcaron" unicode="&#x165;"
1200
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1201
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM710.999 1264c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1202
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1203
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1204
- <glyph glyph-name="Tbar" unicode="&#x166;"
1205
-d="M158 790v158h316v316h-316v158h790v-158h-316v-316h316v-158h-316v-790h-158v790h-316z" />
1206
- <glyph glyph-name="tbar" unicode="&#x167;"
1207
-d="M158 790l157.999 0.000976562v158h-158v158h158v316h158v-316h316v-158h-316v-158h316v-158h-316v-237c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237
1208
-c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v237h-158v158z" />
1209
- <glyph glyph-name="Utilde" unicode="&#x168;"
1210
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1211
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM945.998 1817
1212
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1213
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1214
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1215
- <glyph glyph-name="utilde" unicode="&#x169;"
1216
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1217
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM945.997 1501c-79.333 -158 -158.334 -237 -237.001 -237
1218
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
1219
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
1220
-s13.5 38 13.5 58z" />
1221
- <glyph glyph-name="Umacron" unicode="&#x16a;"
1222
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1223
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM157.998 1579.98v163.998h790
1224
-v-163.998h-790z" />
1225
- <glyph glyph-name="umacron" unicode="&#x16b;"
1226
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1227
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM157.997 1265v158h790v-158h-790z" />
1228
- <glyph glyph-name="Ubreve" unicode="&#x16c;"
1229
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1230
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM550.998 1580
1231
-c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5
1232
-s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1233
- <glyph glyph-name="ubreve" unicode="&#x16d;"
1234
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1235
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.997 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5
1236
-s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116
1237
-s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1238
- <glyph glyph-name="Uring" unicode="&#x16e;"
1239
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1240
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1817
1241
-c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001
1242
-s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM471.998 1817c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23
1243
-s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1244
- <glyph glyph-name="uring" unicode="&#x16f;"
1245
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1246
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1501c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501
1247
-s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51
1248
-s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM471.997 1501c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56
1249
-s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1250
- <glyph glyph-name="Uhungarumlaut" unicode="&#x170;"
1251
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1252
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM225.156 1580l-65.8311 79
1253
-l329.158 237l65.832 -79zM619.156 1580l-65.8311 79l329.158 237l65.832 -79z" />
1254
- <glyph glyph-name="uhungarumlaut" unicode="&#x171;"
1255
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1256
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM225.155 1264l-65.8311 79l329.158 237l65.832 -79zM619.155 1264l-65.8311 79
1257
-l329.158 237l65.832 -79z" />
1258
- <glyph glyph-name="Uogonek" unicode="&#x172;"
1259
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1260
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM474.037 0
1261
-c0 -59.333 9.83301 -112.832 29.498 -160.499s49.3301 -86.334 88.9941 -116.001s89.1611 -48.667 148.491 -57c59.3291 -8.33301 128.325 -2.5 206.987 17.5v158c-59.3301 -20 -109.16 -30.333 -149.491 -31s-72.8291 6.33301 -97.4941 21s-42.3301 36.5 -52.9961 65.5
1262
-s-15.999 63.167 -15.999 102.5h-157.99z" />
1263
- <glyph glyph-name="uogonek" unicode="&#x173;"
1264
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1265
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM474.036 -0.000976562c0 -59.333 9.83301 -112.832 29.498 -160.499
1266
-s49.3301 -86.334 88.9941 -116.001s89.1611 -48.667 148.491 -57c59.3291 -8.33301 128.325 -2.5 206.987 17.5v158c-59.3301 -20 -109.16 -30.333 -149.491 -31s-72.8291 6.33301 -97.4941 21s-42.3301 36.5 -52.9961 65.5s-15.999 63.167 -15.999 102.5h-157.99z" />
1267
- <glyph glyph-name="Wcircumflex" unicode="&#x174;"
1268
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1269
- <glyph glyph-name="wcircumflex" unicode="&#x175;"
1270
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1271
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1272
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM551.001 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1273
- <glyph glyph-name="Ycircumflex" unicode="&#x176;"
1274
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM551 1896l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1275
- <glyph glyph-name="ycircumflex" unicode="&#x177;"
1276
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1277
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1278
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM550.998 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1279
- <glyph glyph-name="Ydieresis" unicode="&#x178;"
1280
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659
1281
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1282
- <glyph glyph-name="Zacute" unicode="&#x179;"
1283
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM395 1580l-79 79l395 237l79 -79z" />
1284
- <glyph glyph-name="zacute" unicode="&#x17a;"
1285
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM395 1264l-79 79l395 237l79 -79z" />
1286
- <glyph glyph-name="Zdotaccent" unicode="&#x17b;"
1287
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1288
- <glyph glyph-name="zdotaccent" unicode="&#x17c;"
1289
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1290
- <glyph glyph-name="Zcaron" unicode="&#x17d;"
1291
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1292
- <glyph glyph-name="zcaron" unicode="&#x17e;"
1293
-d="M760 948h-602v158h790v-158l-603 -790h603v-158h-790v158zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1294
- <glyph glyph-name="longs" unicode="&#x17f;"
1295
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1296
-s-18.5 -59.334 -18.5 -92.001v-1027h-158v790h-158v158z" />
1297
- <glyph glyph-name="uni0191" unicode="&#x191;"
1298
-d="M316 1422l789.999 -0.000976562v-158h-632v-474h474v-158h-474v-711c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51
1299
-s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1501z" />
1300
- <glyph glyph-name="florin" unicode="&#x192;"
1301
-d="M869 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-869c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501
1302
-s-99.333 -31 -154 -31h-79v158h79c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v869h-158v158h158v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1303
-s99.333 31 154 31h79v-158h-79v0z" />
1304
- <glyph glyph-name="uni01CF" unicode="&#x1cf;"
1305
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1306
- <glyph glyph-name="uni01D0" unicode="&#x1d0;"
1307
-d="M314 1501l79 79l158 -158l158 158l79 -79l-237 -237zM474 948h-158v158h316v-1106h-158v948z" />
1308
- <glyph glyph-name="uni01D1" unicode="&#x1d1;"
1309
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1310
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1311
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1312
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1313
- <glyph glyph-name="uni01D2" unicode="&#x1d2;"
1314
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1315
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1316
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1317
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1318
- <glyph glyph-name="uni01D3" unicode="&#x1d3;"
1319
-d="M158 1422h157.998v-1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v1027h158
1320
-v-1027c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v395v632zM313.998 1817l79 79l158 -158
1321
-l158 158l79 -79l-237 -237z" />
1322
- <glyph glyph-name="uni01D4" unicode="&#x1d4;"
1323
-d="M316 395c0 -32.667 6.16406 -63.335 18.4971 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 6.33301 91 19s53.834 29.834 75.501 51.501s38.834 46.834 51.501 75.501s19 59 19 91v711h158v-1106h-158v79
1324
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM313.997 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1325
- <glyph glyph-name="Gcaron" unicode="&#x1e6;"
1326
-d="M790 158c0 -20 -8.16992 -39.3301 -24.5029 -57.9971s-36.5 -35.5 -60.5 -50.5s-49.833 -27 -77.5 -36s-52.5 -13.5 -74.5 -13.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632
1327
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-164c-8 22.667 -19.333 43.667 -34 63s-31.667 36 -51 50
1328
-s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1329
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62.333 8.66699 91 26s53.834 38.333 75.501 63s38.834 50.5 51.501 77.5s19 50.5 19 70.5v237h-158v158h316v-790h-158v158zM315.997 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1330
- <glyph glyph-name="gcaron" unicode="&#x1e7;"
1331
-d="M316 -316l236.999 -0.00292969c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31
1332
-s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c44.667 0 87 -7 127 -21s76.667 -33.667 110 -59v80h158v-1185
1333
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158zM315.999 394.997c0 -32.667 6.16699 -63.3311 18.5 -91.998s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
1334
-s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 57 21.5 89v336c-1.33301 31.333 -8.5 60.833 -21.5 88.5s-30.167 51.667 -51.5 72s-46 36.5 -74 48.5s-58 18 -90 18c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1335
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM315.999 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1336
- <glyph glyph-name="uni01E8" unicode="&#x1e8;"
1337
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM314 1817l79 79l158 -158l158 158l79 -79l-237 -237z" />
1338
- <glyph glyph-name="uni01E9" unicode="&#x1e9;"
1339
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM314 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1340
- <glyph glyph-name="uni01F8" unicode="&#x1f8;"
1341
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM313 1738v158l474 -237v-158z" />
1342
- <glyph glyph-name="uni01F9" unicode="&#x1f9;"
1343
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1344
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM313 1422v158l474 -237v-158z" />
1345
- <glyph glyph-name="AEacute" unicode="&#x1fc;"
1346
-d="M158 1106c0 39.333 9 78 27 116s41.833 71.833 71.5 101.5s63.5 53.5 101.5 71.5s76.667 27 116 27h474v-158h-316v-474h158v-158h-158v-474h316v-158h-474v632h-158v-632h-158v1106zM474 790l-0.000976562 474c-30 0 -55 -6.16699 -75 -18.5s-36.167 -27 -48.5 -44
1347
-s-21.166 -34.5 -26.499 -52.5s-8 -32.333 -8 -43v-316h158zM394.999 1580l-79 79l395 237l79 -79z" />
1348
- <glyph glyph-name="aeacute" unicode="&#x1fd;"
1349
-d="M395 0c-39.333 0 -73.832 9.00098 -103.499 27.001s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116s5 78 15 116s24.833 71.833 44.5 101.5s44.334 53.5 74.001 71.5s64.167 27 103.5 27h79c0 78.667 -4.5 139.5 -13.5 182.5s-21 74.333 -36 94
1350
-s-31.833 31.167 -50.5 34.5s-38 5 -58 5v158c10.667 0 24 -0.333008 40 -1s33.167 -2.5 51.5 -5.5s37.5 -8 57.5 -15s39 -16.833 57 -29.5c15.333 15.333 32.5 27.666 51.5 36.999s38.5 14 58.5 14h79c39.333 0 73.833 -9 103.5 -27s54.334 -41.833 74.001 -71.5
1351
-s34.5 -63.5 44.5 -101.5s15 -76.667 15 -116s-5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27h-79c0 -52.667 1 -97 3 -133s4.83301 -65.667 8.5 -89s8 -41.5 13 -54.5s10.5 -22.333 16.5 -28s12.167 -9 18.5 -10
1352
-s12.833 -1.5 19.5 -1.5c12 0 22.833 4.5 32.5 13.5s18 21 25 36s12.333 31.833 16 50.5s5.5 38 5.5 58h158c0 -59.333 -5 -109.166 -15 -149.499s-24.833 -72.833 -44.5 -97.5s-44.334 -42.334 -74.001 -53.001s-64.167 -16 -103.5 -16h-316zM395.001 474.001
1353
-c-11.333 0 -21.833 -4.5 -31.5 -13.5s-18 -21 -25 -36s-12.5 -31.833 -16.5 -50.5s-6 -38 -6 -58s2 -39.333 6 -58s9.5 -35.5 16.5 -50.5s15.333 -27 25 -36s20.167 -13.5 31.5 -13.5h79v316h-79zM711.001 632.001c11.333 0 21.833 4.5 31.5 13.5s18 21 25 36
1354
-s12.5 31.833 16.5 50.5s6 38 6 58s-2 39.333 -6 58s-9.5 35.5 -16.5 50.5s-15.333 27 -25 36s-20.167 13.5 -31.5 13.5h-79v-316h79zM395.001 1263.98l-79 78.498l395 235.496l79 -78.498z" />
1355
- <glyph glyph-name="Oslashacute" unicode="&#x1fe;"
1356
-d="M395 1580l-79 79l395 237l79 -79zM339.354 0h-181.331c0 4.28613 0.65332 9.42871 1.95996 15.4287c1.30762 6 4.5752 16.0713 9.80273 30.2139s13.2324 34.2852 24.0146 60.4277c10.7822 26.1436 25.9746 61.0723 45.5771 104.786
1357
-c-22.8701 42 -40.8398 88.0713 -53.9092 138.214c-13.0684 50.1426 -19.6025 103.07 -19.6025 158.784v406.283c0 70.2852 10.1279 136.284 30.3848 197.998s47.8652 115.499 82.8252 161.355c34.959 45.8564 75.9619 82.0703 123.01 108.642
1358
-s97.3633 39.8564 150.945 39.8564c33.9795 0 66.4883 -5.57129 97.5264 -16.7139s60.6064 -26.5713 88.7051 -46.2861l27.4443 63h181.33c0 -4.28613 -0.65332 -9.64355 -1.95996 -16.0723c-1.30762 -6.42871 -4.73828 -16.7139 -10.292 -30.8564l-24.5039 -59.7852
1359
-l-44.5977 -104.143c22.8701 -42 40.8398 -88.0713 53.9092 -138.214s19.6035 -103.07 19.6035 -158.784v-406.283c0 -70.2852 -10.1289 -136.284 -30.3857 -197.998s-47.8643 -115.499 -82.8232 -161.355s-75.9629 -82.0703 -123.011 -108.642
1360
-s-97.3633 -39.8564 -150.946 -39.8564c-33.9795 0 -66.6514 5.57129 -98.0166 16.7139c-31.3652 11.1436 -60.7695 26.5723 -88.2139 46.2861zM785.328 914.137c0 14.5713 -0.818359 29.1445 -2.45215 43.7158s-4.08398 28.7139 -7.35156 42.4277l-332.275 -761.138
1361
-c33.3252 -24 69.918 -36 109.778 -36c32.0186 0 62.0771 7.92871 90.1748 23.7852c28.0986 15.8574 52.7666 37.7148 74.0039 65.5713s37.9004 60.2129 49.9893 97.0693c12.0889 36.8574 18.1328 76.2861 18.1328 118.285v406.283zM320.729 507.855
1362
-c0 -32.5713 3.26758 -61.7148 9.80176 -87.4287l331.295 762.424c-16.3359 11.1426 -33.6523 19.9277 -51.9482 26.3564s-37.2461 9.64258 -56.8496 9.64258c-32.0186 0 -62.0771 -7.92871 -90.1748 -23.7852c-28.0986 -15.8574 -52.7656 -37.7148 -74.002 -65.5713
1363
-c-21.2373 -27.8564 -37.9004 -60.2129 -49.9893 -97.0693s-18.1328 -76.2852 -18.1328 -118.285v-406.283z" />
1364
- <glyph glyph-name="oslashacute" unicode="&#x1ff;"
1365
-d="M395 1263.99l-79 78.749l395 236.248l79 -78.749zM335 0h-185.001c0 3.33301 0.666992 7.33301 2 12s4.66602 12.5 9.99902 23.5s13.5 26.667 24.5 47s26.5 47.5 46.5 81.5c-23.333 32.667 -41.666 68.5 -54.999 107.5s-20 80.167 -20 123.5v316
1366
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31c34.667 0 67.834 -4.33301 99.501 -13s61.834 -20.667 90.501 -36l28 49h185c0 -3.33301 -0.666992 -7.5 -2 -12.5s-4.83301 -13 -10.5 -24l-25 -46.5l-45.5 -81
1367
-c23.333 -32.667 41.666 -68.5 54.999 -107.5s20 -80.167 20 -123.5v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-34.667 -0 -68 4.33301 -100 13s-62 20.667 -90 36zM789.999 711
1368
-c0 11.333 -0.834961 22.665 -2.50195 33.998s-4.16699 22.333 -7.5 33l-339 -592c34 -18.667 71.333 -28 112 -28c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316zM315.997 394.999
1369
-c0 -25.333 3.33594 -47.998 10.0029 -67.998l338 593c-16.667 8.66699 -34.334 15.5 -53.001 20.5s-38 7.5 -58 7.5c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1370
- <glyph glyph-name="Scommaaccent" unicode="&#x218;"
1371
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1372
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1373
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1374
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
1375
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
1376
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1377
- <glyph glyph-name="scommaaccent" unicode="&#x219;"
1378
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1379
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1380
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1381
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM395.746 -631c-21.9297 0 -40.5391 7.66797 -55.8242 23.001
1382
-c-15.2842 15.333 -22.9268 34 -22.9268 56s7.64258 40.667 22.9268 56c15.2852 15.333 33.8926 23 55.8223 23c19.9365 0 35.2217 3.5 45.8545 10.5s18.4414 17.167 23.4248 30.5c4.98438 13.333 7.80859 29.833 8.47363 49.5s0.99707 42.167 0.99707 67.5
1383
-c-21.9307 0 -42.3662 4.16699 -61.3066 12.5c-18.9395 8.33301 -35.5527 19.666 -49.8408 33.999s-25.5859 31 -33.8936 50c-8.30664 19 -12.46 39.5 -12.46 61.5s4.15332 42.5 12.46 61.5c8.30762 19 19.6055 35.667 33.8936 50s30.9014 25.666 49.8408 33.999
1384
-c18.9404 8.33301 39.376 12.5 61.3066 12.5c21.9297 0 42.3643 -4.16699 61.3047 -12.5c18.9395 -8.33301 35.5527 -19.666 49.8408 -33.999s25.5859 -31 33.8936 -50c8.30664 -19 12.46 -39.5 12.46 -61.5v-158c0 -39.333 -4.98438 -78 -14.9521 -116
1385
-s-24.7539 -71.833 -44.3584 -101.5s-44.1924 -53.5 -73.7646 -71.5c-29.5732 -18 -63.9639 -27 -103.172 -27z" />
1386
- <glyph glyph-name="uni021A" unicode="&#x21a;"
1387
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM395 -631c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1388
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1389
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1390
- <glyph glyph-name="uni021B" unicode="&#x21b;"
1391
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1392
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM552.999 -630.999c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5
1393
-c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999
1394
-s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1395
- <glyph glyph-name="uni0226" unicode="&#x226;"
1396
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
1397
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1398
-s-18.5 -59.334 -18.5 -92.001v-237h474zM471.002 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1399
- <glyph glyph-name="uni0227" unicode="&#x227;"
1400
-d="M474 0c-43.333 0 -84.165 8.33203 -122.498 24.999s-71.833 39.334 -100.5 68.001s-51.334 62.167 -68.001 100.5s-25 79.166 -25 122.499s8.33301 84.166 25 122.499s39.334 71.833 68.001 100.5s62.167 51.334 100.5 68.001s79.166 25 122.499 25h316v79
1401
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v158h237c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-474z
1402
-M474.001 473.999c-22 0 -42.5 -4.16895 -61.5 -12.502s-35.667 -19.666 -50 -33.999s-25.666 -31 -33.999 -50s-12.5 -39.5 -12.5 -61.5s4.16699 -42.5 12.5 -61.5s19.666 -35.667 33.999 -50s31 -25.666 50 -33.999s39.5 -12.5 61.5 -12.5h316v316h-316zM471.001 1343
1403
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1404
- <glyph glyph-name="uni0232" unicode="&#x232;"
1405
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM156 1738v158h790v-158h-790z" />
1406
- <glyph glyph-name="uni0233" unicode="&#x233;"
1407
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1408
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1409
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM155.998 1422v158h790v-158h-790z" />
1410
- <glyph glyph-name="circumflex" unicode="&#x2c6;"
1411
-d="M553 1580l237 -237l-79 -79l-158 158l-158 -158l-79 79z" />
1412
- <glyph glyph-name="caron" unicode="&#x2c7;"
1413
-d="M316 1501l79 79l158 -158l158 158l79 -79l-237 -237z" />
1414
- <glyph glyph-name="breve" unicode="&#x2d8;"
1415
-d="M553 1264c-39.333 0 -73.8311 9 -103.498 27s-54.334 41.833 -74.001 71.5s-34.5 63.5 -44.5 101.5s-15 76.667 -15 116h158c0 -20 0.333008 -39.333 1 -58s3.5 -35.5 8.5 -50.5s12.833 -27 23.5 -36s26 -13.5 46 -13.5s35.333 4.5 46 13.5s18.5 21 23.5 36
1416
-s7.83301 31.833 8.5 50.5s1 38 1 58h158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1417
- <glyph glyph-name="dotaccent" unicode="&#x2d9;"
1418
-d="M316 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1419
- <glyph glyph-name="ring" unicode="&#x2da;"
1420
-d="M316 1501c0 32.667 6.16699 63.334 18.5 92.001s29.333 53.834 51 75.501s46.834 38.667 75.501 51s59.334 18.5 92.001 18.5s63.334 -6.16699 92.001 -18.5s53.834 -29.333 75.501 -51s38.667 -46.834 51 -75.501s18.5 -59.334 18.5 -92.001
1421
-s-6.16699 -63.334 -18.5 -92.001s-29.333 -53.834 -51 -75.501s-46.834 -38.667 -75.501 -51s-59.334 -18.5 -92.001 -18.5s-63.334 6.16699 -92.001 18.5s-53.834 29.333 -75.501 51s-38.667 46.834 -51 75.501s-18.5 59.334 -18.5 92.001zM474 1501
1422
-c0 -22 7.66699 -40.667 23 -56s34 -23 56 -23s40.667 7.66699 56 23s23 34 23 56s-7.66699 40.667 -23 56s-34 23 -56 23s-40.667 -7.66699 -56 -23s-23 -34 -23 -56z" />
1423
- <glyph glyph-name="ogonek" unicode="&#x2db;"
1424
-d="M474 0c0 -39.333 5.33398 -73.501 16.001 -102.501s28.334 -50.833 53.001 -65.5s57.167 -21.667 97.5 -21s90.166 11 149.499 31v-158c-78.667 -20 -147.667 -25.833 -207 -17.5s-108.833 27.333 -148.5 57s-69.334 68.334 -89.001 116.001s-29.5 101.167 -29.5 160.5
1425
-h158z" />
1426
- <glyph glyph-name="tilde" unicode="&#x2dc;"
1427
-d="M948 1501c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1428
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1429
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1430
- <glyph glyph-name="hungarumlaut" unicode="&#x2dd;"
1431
-d="M619.158 1264l-65.8311 79l329.158 237l65.832 -79zM225.158 1264l-65.8311 79l329.158 237l65.832 -79z" />
1432
- <glyph glyph-name="uni037E" unicode="&#x37e;"
1433
-d="M316 790c0 22 4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999 -50
1434
-s-31 -25.666 -50 -33.999s-39.5 -12.5 -61.5 -12.5s-42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5zM395 -316c-22 0 -40.665 7.66797 -55.998 23.001s-23 34 -23 56s7.66699 40.667 23 56s34 23 56 23
1435
-c20 0 35.333 3.5 46 10.5s18.5 17.167 23.5 30.5s7.83301 29.833 8.5 49.5s1 42.167 1 67.5c-22 0 -42.5 4.16699 -61.5 12.5s-35.667 19.666 -50 33.999s-25.666 31 -33.999 50s-12.5 39.5 -12.5 61.5s4.16699 42.5 12.5 61.5s19.666 35.667 33.999 50s31 25.666 50 33.999
1436
-s39.5 12.5 61.5 12.5s42.5 -4.16699 61.5 -12.5s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5v-158c0 -39.333 -5 -78 -15 -116s-24.833 -71.833 -44.5 -101.5s-44.334 -53.5 -74.001 -71.5s-64.167 -27 -103.5 -27z" />
1437
- <glyph glyph-name="Alpha" unicode="&#x391;"
1438
-d="M158 1027c0 54.667 10.3311 106 30.998 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v632h-474v-632h-158v1027z
1439
-M789.998 790l0.00390625 237c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1440
-s-18.5 -59.334 -18.5 -92.001v-237h474z" />
1441
- <glyph glyph-name="Beta" unicode="&#x392;"
1442
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
1443
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1444
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1445
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
1446
- <glyph glyph-name="Gamma" unicode="&#x393;"
1447
-d="M158 1422h790v-158h-632v-1264h-158v1422z" />
1448
- <glyph glyph-name="glyph623" unicode="&#x394;"
1449
-d="M948 0h-790v158l316 1264h158l316 -1264v-158zM277 158h486l-234 995z" />
1450
- <glyph glyph-name="Epsilon" unicode="&#x395;"
1451
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422z" />
1452
- <glyph glyph-name="Zeta" unicode="&#x396;"
1453
-d="M158 158l609 1106h-609v158h790v-158l-597 -1106h597v-158h-790v158z" />
1454
- <glyph glyph-name="Eta" unicode="&#x397;"
1455
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422z" />
1456
- <glyph glyph-name="Theta" unicode="&#x398;"
1457
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1458
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1459
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1460
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM474 790h158v-158h-158v158z" />
1461
- <glyph glyph-name="Iota" unicode="&#x399;"
1462
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158z" />
1463
- <glyph glyph-name="Kappa" unicode="&#x39a;"
1464
-d="M314.837 761l449.456 661h176.218l-469.255 -711l469.255 -711h-178.198l-447.476 666v-666h-156.419v1422h156.419v-661z" />
1465
- <glyph glyph-name="Lambda" unicode="&#x39b;"
1466
-d="M319.274 0.0869141l233.456 1039.94l233.456 -1039.94h155.638l-311.275 1421.91h-155.637l-311.274 -1421.91h155.637z" />
1467
- <glyph glyph-name="Mu" unicode="&#x39c;"
1468
-d="M789.987 1106l-236.696 -414l-236.696 414v-1106h-157.797v1422h157.797l236.696 -474l236.696 474h157.798v-1422h-157.798v1106z" />
1469
- <glyph glyph-name="Nu" unicode="&#x39d;"
1470
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158z" />
1471
- <glyph glyph-name="Xi" unicode="&#x39e;"
1472
-d="M158 1422h790v-158h-790v158zM158 158h790v-158h-790v158zM316 790h474v-158h-474v158z" />
1473
- <glyph glyph-name="Omicron" unicode="&#x39f;"
1474
-d="M158 1027c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154
1475
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v632zM553 1264c-32.667 0 -63.334 -6.16699 -92.001 -18.5
1476
-s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5
1477
-s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
1478
- <glyph glyph-name="Pi" unicode="&#x3a0;"
1479
-d="M158 1422h790v-1422h-158v1264h-474v-1264h-158v1422z" />
1480
- <glyph glyph-name="Rho" unicode="&#x3a1;"
1481
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1482
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237z" />
1483
- <glyph glyph-name="Sigma" unicode="&#x3a3;"
1484
-d="M948 1264h-632l316 -553l-316 -553h632v-158h-790v158l316 553l-316 553v158h790v-158z" />
1485
- <glyph glyph-name="Tau" unicode="&#x3a4;"
1486
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264z" />
1487
- <glyph glyph-name="Upsilon" unicode="&#x3a5;"
1488
-d="M475.598 472l-309.731 950h154.865l232.299 -711l232.299 711h154.866l-309.732 -948v-474h-154.865v472z" />
1489
- <glyph glyph-name="Phi" unicode="&#x3a6;"
1490
-d="M474 316h-79c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h79v316h158v-316h79
1491
-c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-79v-316h-158v316zM632 948v-474.004h79
1492
-c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79zM158 710.996
1493
-c0 -32.667 6.16699 -63.3301 18.5 -91.9971s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h79v474h-79c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1494
-s-18.5 -59.334 -18.5 -92.001z" />
1495
- <glyph glyph-name="Chi" unicode="&#x3a7;"
1496
-d="M552.616 904l229.425 518h165.584l-309.224 -711l309.224 -711h-165.584l-229.425 517l-229.425 -517h-164.587l308.227 711l-309.224 711h165.584z" />
1497
- <glyph glyph-name="uni03A9" unicode="&#x3a9;"
1498
-d="M632 169c45.333 12.667 87.333 35.5 126 68.5s72 73.333 100 121s50 101.5 66 161.5s24 123.667 24 191c0 76 -10.333 147.667 -31 215s-48.834 126 -84.501 176s-77.5 89.5 -125.5 118.5s-99.333 43.5 -154 43.5s-106 -14.5 -154 -43.5s-89.833 -68.5 -125.5 -118.5
1499
-s-63.834 -108.667 -84.501 -176s-31 -139 -31 -215c0 -67.333 8 -131 24 -191s38 -113.833 66 -161.5s61.333 -88 100 -121s80.667 -55.833 126 -68.5v-169h-474v158h206c-31.333 32.667 -59.666 69.334 -84.999 110.001s-47 84.5 -65 131.5s-31.833 96.667 -41.5 149
1500
-s-14.5 106.5 -14.5 162.5c0 98 14.5 190.167 43.5 276.5s68.5 161.666 118.5 225.999s108.667 115.166 176 152.499s139 56 215 56s147.667 -18.667 215 -56s126 -88.166 176 -152.499s89.5 -139.666 118.5 -225.999s43.5 -178.5 43.5 -276.5
1501
-c0 -56 -4.83301 -110.167 -14.5 -162.5s-23.5 -102 -41.5 -149s-39.667 -90.833 -65 -131.5s-53.666 -77.334 -84.999 -110.001h206v-158h-474v169z" />
1502
- <glyph glyph-name="Iotadieresis" unicode="&#x3aa;"
1503
-d="M158 158h316v1106h-316v158h790v-158h-316v-1106h316v-158h-790v158zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
1504
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1505
- <glyph glyph-name="Upsilondieresis" unicode="&#x3ab;"
1506
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM632 1659
1507
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1508
- <glyph glyph-name="alphatonos" unicode="&#x3ac;"
1509
-d="M711 237c-40 -79.333 -87.5 -138.669 -142.5 -178.002s-112.833 -59 -173.5 -59c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
1510
-s77.5 63.834 125.5 84.501s99.333 31 154 31c62.667 0 121 -19.667 175 -59s101 -98.666 141 -177.999l79 237h158c-168.667 -368.667 -168.667 -737.334 0 -1106h-158zM158 394.997c0 -32.667 6.16699 -63.3281 18.5 -91.9951s29.333 -53.834 51 -75.501
1511
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c44 0 82.5 11.333 115.5 34s60.333 52.5 82 89.5s38 79.167 49 126.5s16.5 95.666 16.5 144.999s-5.5 97.666 -16.5 144.999s-27.333 89.5 -49 126.5s-49 66.833 -82 89.5s-71.5 34 -115.5 34
1512
-c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316zM393 1264l-79 79l395 237l79 -79z" />
1513
- <glyph glyph-name="epsilontonos" unicode="&#x3ad;"
1514
-d="M935 237c-11.333 -34 -28.8301 -65.5 -52.4971 -94.5s-52.334 -54 -86.001 -75s-71.167 -37.5 -112.5 -49.5s-85 -18 -131 -18c-54.667 -0 -106 8.33301 -154 25s-89.833 39.334 -125.5 68.001s-63.834 62.167 -84.501 100.5s-31 79.166 -31 122.499
1515
-c0 23.333 4.33301 46.166 13 68.499s20.334 43.5 35.001 63.5s31.5 38.833 50.5 56.5s38.833 33.834 59.5 48.501c-20.667 14.667 -40.5 30.834 -59.5 48.501s-35.833 36.5 -50.5 56.5s-26.334 41.167 -35.001 63.5s-13 45.166 -13 68.499
1516
-c0 43.333 10.333 84.166 31 122.499s48.834 71.833 84.501 100.5s77.5 51.334 125.5 68.001s99.333 25 154 25c46 0 89.667 -6 131 -18s78.833 -28.5 112.5 -49.5s62.334 -46 86.001 -75s41.167 -60.5 52.5 -94.5l-145 -79c0 22 -6.16699 42.5 -18.5 61.5
1517
-s-29.333 35.667 -51 50s-46.834 25.666 -75.501 33.999s-59.334 12.5 -92.001 12.5s-63.334 -4.16699 -92.001 -12.5s-53.834 -19.666 -75.501 -33.999s-38.667 -31 -51 -50s-18.5 -39.5 -18.5 -61.5s5.33301 -42.5 16 -61.5s28.334 -35.667 53.001 -50
1518
-s57.167 -25.666 97.5 -33.999s90.166 -12.5 149.499 -12.5v-158c-59.333 0 -109.166 -3.66699 -149.499 -11s-72.833 -17.833 -97.5 -31.5s-42.334 -30.167 -53.001 -49.5s-16 -41.333 -16 -66s6.16699 -46.667 18.5 -66s29.333 -35.833 51 -49.5
1519
-s46.834 -24.167 75.501 -31.5s59.334 -11 92.001 -11c30.667 0 59.5 4 86.5 12s51 19.167 72 33.5s38.167 31.166 51.5 50.499s21.666 40 24.999 62zM393.003 1264l-79 79l395 237l79 -79z" />
1520
- <glyph glyph-name="etatonos" unicode="&#x3ae;"
1521
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1522
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM393 1264l-79 79l395 237l79 -79z" />
1523
- <glyph glyph-name="alpha" unicode="&#x3b1;"
1524
-d="M711 237c-40 -79.333 -87.5 -138.669 -142.5 -178.002s-112.833 -59 -173.5 -59c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5
1525
-s77.5 63.834 125.5 84.501s99.333 31 154 31c62.667 0 121 -19.667 175 -59s101 -98.666 141 -177.999l79 237h158c-168.667 -368.667 -168.667 -737.334 0 -1106h-158zM158 394.997c0 -32.667 6.16699 -63.3281 18.5 -91.9951s29.333 -53.834 51 -75.501
1526
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c44 0 82.5 11.333 115.5 34s60.333 52.5 82 89.5s38 79.167 49 126.5s16.5 95.666 16.5 144.999s-5.5 97.666 -16.5 144.999s-27.333 89.5 -49 126.5s-49 66.833 -82 89.5s-71.5 34 -115.5 34
1527
-c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1528
- <glyph glyph-name="beta" unicode="&#x3b2;"
1529
-d="M158 1027c0 68 11.5 126.835 34.5 176.502s53.167 90.667 90.5 123s79.5 56.333 126.5 72s94.833 23.5 143.5 23.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180
1530
-s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-237h-158
1531
-v1185zM553 158.002c32.667 0 63.3311 6.16016 91.998 18.4932s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-79v158h79
1532
-c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-28.667 0 -57.167 -5 -85.5 -15
1533
-s-53.666 -24.833 -75.999 -44.5s-40.5 -44.334 -54.5 -74.001s-21 -64.167 -21 -103.5v-642c0 -37.333 6.33301 -70 19 -98s29.834 -51.667 51.501 -71s46.834 -33.833 75.501 -43.5s59 -14.5 91 -14.5z" />
1534
- <glyph glyph-name="delta" unicode="&#x3b4;"
1535
-d="M158 1580l632.001 -0.00195312v-158h-395l435 -430c38 -37.333 67.667 -81.666 89 -132.999c11.333 -34 19 -62 23 -84s6 -43.333 6 -64v-316c0 -54.667 -13.5 -106 -40.5 -154s-62.833 -89.833 -107.5 -125.5s-95.334 -63.834 -152.001 -84.501s-114.667 -31 -174 -31
1536
-s-117.333 10.333 -174 31s-107.334 48.834 -152.001 84.501s-80.5 77.5 -107.5 125.5s-40.5 99.333 -40.5 154v316c0 54.667 13.5 106 40.5 154s62.833 89.833 107.5 125.5s95.334 63.834 152.001 84.501s114.667 31 174 31c1.33301 0 2.83301 -0.166992 4.5 -0.5
1537
-s3.16699 -0.5 4.5 -0.5l-325 317v158zM158.001 394.998c0 -32.667 8.99902 -63.333 26.999 -92s41.833 -53.834 71.5 -75.501s63.5 -38.667 101.5 -51s76.667 -18.5 116 -18.5s78 6.16699 116 18.5s71.833 29.333 101.5 51s53.5 46.834 71.5 75.501s27 59.334 27 92.001v316
1538
-c-13.333 47.333 -30.166 86.333 -50.499 117s-43.666 54.834 -69.999 72.501s-55.833 30 -88.5 37s-68.334 10.5 -107.001 10.5c-39.333 0 -78 -6.16699 -116 -18.5s-71.833 -29.333 -101.5 -51s-53.5 -46.834 -71.5 -75.501s-27 -59.334 -27 -92.001v-316z" />
1539
- <glyph glyph-name="epsilon" unicode="&#x3b5;"
1540
-d="M935 237c-11.333 -34 -28.8301 -65.5 -52.4971 -94.5s-52.334 -54 -86.001 -75s-71.167 -37.5 -112.5 -49.5s-85 -18 -131 -18c-54.667 -0 -106 8.33301 -154 25s-89.833 39.334 -125.5 68.001s-63.834 62.167 -84.501 100.5s-31 79.166 -31 122.499
1541
-c0 23.333 4.33301 46.166 13 68.499s20.334 43.5 35.001 63.5s31.5 38.833 50.5 56.5s38.833 33.834 59.5 48.501c-20.667 14.667 -40.5 30.834 -59.5 48.501s-35.833 36.5 -50.5 56.5s-26.334 41.167 -35.001 63.5s-13 45.166 -13 68.499
1542
-c0 43.333 10.333 84.166 31 122.499s48.834 71.833 84.501 100.5s77.5 51.334 125.5 68.001s99.333 25 154 25c46 0 89.667 -6 131 -18s78.833 -28.5 112.5 -49.5s62.334 -46 86.001 -75s41.167 -60.5 52.5 -94.5l-145 -79c0 22 -6.16699 42.5 -18.5 61.5
1543
-s-29.333 35.667 -51 50s-46.834 25.666 -75.501 33.999s-59.334 12.5 -92.001 12.5s-63.334 -4.16699 -92.001 -12.5s-53.834 -19.666 -75.501 -33.999s-38.667 -31 -51 -50s-18.5 -39.5 -18.5 -61.5s5.33301 -42.5 16 -61.5s28.334 -35.667 53.001 -50
1544
-s57.167 -25.666 97.5 -33.999s90.166 -12.5 149.499 -12.5v-158c-59.333 0 -109.166 -3.66699 -149.499 -11s-72.833 -17.833 -97.5 -31.5s-42.334 -30.167 -53.001 -49.5s-16 -41.333 -16 -66s6.16699 -46.667 18.5 -66s29.333 -35.833 51 -49.5
1545
-s46.834 -24.167 75.501 -31.5s59.334 -11 92.001 -11c30.667 0 59.5 4 86.5 12s51 19.167 72 33.5s38.167 31.166 51.5 50.499s21.666 40 24.999 62z" />
1546
- <glyph glyph-name="eta" unicode="&#x3b7;"
1547
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1548
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-1027h-158v1027c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5z" />
1549
- <glyph glyph-name="omicron" unicode="&#x3bf;"
1550
-d="M158 711c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154
1551
-s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316zM316 395c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501
1552
-s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51
1553
-s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316z" />
1554
- <glyph glyph-name="pi" unicode="&#x3c0;"
1555
-d="M632 948l-316 -0.000976562v-948h-158v948h-158v158h948v-158h-158v-632c0 -39.333 4.5 -69.666 13.5 -90.999s21 -37 36 -47s31.833 -15.833 50.5 -17.5s38 -2.5 58 -2.5v-158c-59.333 0 -109.166 8.66699 -149.499 26s-72.833 38.333 -97.5 63
1556
-s-42.334 50.5 -53.001 77.5s-16 50.5 -16 70.5v711z" />
1557
- <glyph glyph-name="sigma" unicode="&#x3c3;"
1558
-d="M710 948c25.333 -33.333 45.001 -70.001 59.001 -110.001s21 -82.333 21 -127v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1559
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h553v-158h-238zM395.001 947.999c-32.667 0 -63.3359 -6.16504 -92.0029 -18.498s-53.834 -29.333 -75.501 -51
1560
-s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501
1561
-s18.5 59.334 18.5 92.001v316c0 32 -6 62 -18 90s-28.167 52.667 -48.5 74s-44.333 38.5 -72 51.5s-57.167 20.167 -88.5 21.5h-10z" />
1562
- <glyph glyph-name="tau" unicode="&#x3c4;"
1563
-d="M790 0c-79.333 0 -148.499 9 -207.499 27s-108.333 41.833 -148 71.5s-69.334 63.5 -89.001 101.5s-29.5 76.667 -29.5 116v632h-316v158h948v-158h-474v-632c0 -20 5.33301 -39.333 16 -58s28.334 -35.5 53.001 -50.5s57.167 -27 97.5 -36s90.166 -13.5 149.499 -13.5
1564
-v-158z" />
1565
- <glyph glyph-name="phi" unicode="&#x3c6;"
1566
-d="M474 869c-0.666992 51.333 10.501 94.333 33.501 129s52 60.667 87 78s73.167 26 114.5 26s79.666 -8.66699 114.999 -26s64.833 -43.166 88.5 -77.499s35.5 -77.5 35.5 -129.5v-474c0 -48 -8 -93.333 -24 -136s-38.167 -81.167 -66.5 -115.5s-61.833 -63.333 -100.5 -87
1567
-s-80.334 -39.834 -125.001 -48.501v-324h-158v324c-45.333 8.66699 -87.166 24.834 -125.499 48.501s-71.666 52.667 -99.999 87s-50.5 72.833 -66.5 115.5s-24 88 -24 136v711h158v-711c0 -26 3.83301 -50.667 11.5 -74s18.5 -44.833 32.5 -64.5s30.667 -36.834 50 -51.501
1568
-s40.666 -26 63.999 -34v698zM790.001 763c0 59.333 -8.16699 103.832 -24.5 133.499s-34.5 44.5 -54.5 44.5s-38.167 -14.833 -54.5 -44.5s-24.5 -74.167 -24.5 -133.5v-592c22.667 8 43.667 19.333 63 34s36 31.834 50 51.501s25 41.167 33 64.5s12 48 12 74v368z" />
1569
- <glyph glyph-name="uni1E02" unicode="&#x1e02;"
1570
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154c0 -65.333 -14.5 -125.333 -43.5 -180s-67.5 -100 -115.5 -136c48 -36 86.5 -81.5 115.5 -136.5s43.5 -114.833 43.5 -179.5
1571
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v1422zM553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1572
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM553 157.998c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001
1573
-s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM474 1658.99c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1574
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1575
- <glyph glyph-name="uni1E03" unicode="&#x1e03;"
1576
-d="M158 1422l158 0.000976562v-395c25.333 18.667 53 34.667 83 48c48 20.667 99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1577
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31s-106 10.333 -154 31c-30 12.667 -57.667 28.334 -83 47.001v-78h-158v1422zM316 720.001l0.000976562 -325.001c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51
1578
-s59.334 -18.5 92.001 -18.5s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
1579
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.834 -46.834 -51.501 -75.501zM471.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1580
-s-23 34 -23 56z" />
1581
- <glyph glyph-name="uni1E08" unicode="&#x1e08;"
1582
-d="M555 1264c-34 0 -65.6689 -6.16309 -95.002 -18.4961s-54.666 -29.333 -75.999 -51s-38.166 -46.834 -50.499 -75.501s-18.5 -59.334 -18.5 -92.001v-632c0 -32.667 6.16699 -63.334 18.5 -92.001s29.166 -53.834 50.499 -75.501s46.666 -38.667 75.999 -51
1583
-s61 -18.5 95 -18.5c28 0 54.333 3.83301 79 11.5s47.167 18.5 67.5 32.5s38 30.667 53 50s26.5 40.666 34.5 63.999h158c-9.33301 -45.333 -25.666 -87.333 -48.999 -126s-52.166 -72 -86.499 -100s-73.166 -50 -116.499 -66s-90 -24 -140 -24
1584
-c-56 0 -108.167 10.333 -156.5 31s-90.5 48.834 -126.5 84.501s-64.167 77.5 -84.5 125.5s-30.5 99.333 -30.5 154v632c0 54.667 10.167 106 30.5 154s48.5 89.833 84.5 125.5s78.167 63.834 126.5 84.501s100.5 31 156.5 31c50 0 96.833 -8 140.5 -24
1585
-s82.5 -38.167 116.5 -66.5s62.667 -61.833 86 -100.5s39.666 -80.334 48.999 -125.001h-158c-8 22.667 -19.5 43.667 -34.5 63s-32.5 36 -52.5 50s-42.5 25 -67.5 33s-51.5 12 -79.5 12zM629.998 0.00390625c0 -59.333 -9.83203 -112.832 -29.499 -160.499
1586
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158zM392.999 1580l-79 79l395 237l79 -79z" />
1587
- <glyph glyph-name="uni1E09" unicode="&#x1e09;"
1588
-d="M316 395c0 -32.667 7 -63.332 21 -91.999s32.5 -53.834 55.5 -75.501s49.667 -38.667 80 -51s61.833 -18.5 94.5 -18.5c26 0 50.667 3.83301 74 11.5s44.666 18.5 63.999 32.5s36.333 30.667 51 50s26 40.666 34 63.999h158
1589
-c-9.33301 -45.333 -25.833 -87.166 -49.5 -125.499s-52.5 -71.666 -86.5 -99.999s-72.333 -50.5 -115 -66.5s-88 -24 -136 -24c-54.667 0 -106.334 10.333 -155.001 31s-91.334 48.834 -128.001 84.501s-65.834 77.5 -87.501 125.5s-32.5 99.333 -32.5 154v316
1590
-c0 54.667 10.833 106 32.5 154s50.834 89.833 87.501 125.5s79.334 63.834 128.001 84.501s100.334 31 155.001 31c48 0 93.333 -8 136 -24s81 -38.167 115 -66.5s62.833 -61.833 86.5 -100.5s40.167 -80.334 49.5 -125.001h-158c-8 22.667 -19.333 43.667 -34 63
1591
-s-31.667 36 -51 50s-40.666 25 -63.999 33s-48 12 -74 12c-32.667 0 -64.167 -6.16699 -94.5 -18.5s-57 -29.333 -80 -51s-41.5 -46.834 -55.5 -75.501s-21 -59.334 -21 -92.001v-316zM632 0.00195312c0 -59.333 -9.83203 -112.832 -29.499 -160.499
1592
-s-49.334 -86.334 -89.001 -116.001s-89.167 -48.667 -148.5 -57s-128.333 -2.5 -207 17.5v158c59.333 -20 109.166 -30.333 149.499 -31s72.833 6.33301 97.5 21s42.334 36.5 53.001 65.5s16 63.167 16 102.5h158zM393.001 1264l-79 79l395 237l79 -79z" />
1593
- <glyph glyph-name="uni1E0A" unicode="&#x1e0a;"
1594
-d="M158 1422l395 0.00195312c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-632c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395
1595
-v1422zM553 158.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v632c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237
1596
-v-1106h237zM316 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1597
- <glyph glyph-name="uni1E0B" unicode="&#x1e0b;"
1598
-d="M948 0l-158 -0.000976562v78c-25.333 -18.667 -53 -34.334 -83 -47.001c-48 -20.667 -99.333 -31 -154 -31s-106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316c0 54.667 10.333 106 31 154
1599
-s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31c30 -13.333 57.667 -29.333 83 -48v395h158v-1422zM772 802.999c-12.667 28.667 -29.833 53.835 -51.5 75.502s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5
1600
-s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-316c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5
1601
-s63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v325zM474.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1602
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1603
- <glyph glyph-name="uni1E1E" unicode="&#x1e1e;"
1604
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-632h-158v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1605
- <glyph glyph-name="uni1E1F" unicode="&#x1e1f;"
1606
-d="M158 948l158.001 0.000976562v79c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31h237v-158h-237c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501
1607
-s-18.5 -59.334 -18.5 -92.001v-79h316v-158h-316v-790h-158v790h-158v158zM474.001 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1608
- <glyph glyph-name="uni1E22" unicode="&#x1e22;"
1609
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1610
- <glyph glyph-name="uni1E23" unicode="&#x1e23;"
1611
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
1612
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1613
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1614
- <glyph glyph-name="uni1E26" unicode="&#x1e26;"
1615
-d="M158 1422h158v-632h474v632h158v-1422h-158v632h-474v-632h-158v1422zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630 1659
1616
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1617
- <glyph glyph-name="uni1E27" unicode="&#x1e27;"
1618
-d="M790 711c0 32.667 -6.16699 63.333 -18.5 92s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-32 0 -62.167 -6 -90.5 -18s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1422h158v-396
1619
-c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711zM474 1501c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1620
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM790 1501c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1621
- <glyph glyph-name="uni1E30" unicode="&#x1e30;"
1622
-d="M316 761l454 661h178l-474 -711l474 -711h-180l-452 666v-666h-158v1422h158v-661zM393 1580l-79 79l395 237l79 -79z" />
1623
- <glyph glyph-name="uni1E31" unicode="&#x1e31;"
1624
-d="M316 632h38l400 474h194l-453 -553l453 -553h-194l-400 474h-38v-474h-158v1422h158v-790zM393 1264l-79 79l395 237l79 -79z" />
1625
- <glyph glyph-name="uni1E3E" unicode="&#x1e3e;"
1626
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106zM393 1580l-79 79l395 237l79 -79z" />
1627
- <glyph glyph-name="uni1E3F" unicode="&#x1e3f;"
1628
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
1629
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869zM392.999 1264l-79 79l395 237l79 -79z" />
1630
- <glyph glyph-name="uni1E40" unicode="&#x1e40;"
1631
-d="M790 1106l-237 -414l-237 414v-1106h-158v1422h158l237 -474l237 474h158v-1422h-158v1106zM474 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1632
-" />
1633
- <glyph glyph-name="uni1E41" unicode="&#x1e41;"
1634
-d="M474 869h-1.00098c0.666992 52.667 -25.333 79 -78 79s-78.667 -26.333 -78 -79h-1v-869h-158v1106h197c24 0 46.667 -4 68 -12s40.5 -19 57.5 -33s31.5 -30.667 43.5 -50s20.333 -40.333 25 -63h7c4.66699 22.667 12.834 43.667 24.501 63s26 36 43 50s36.333 25 58 33
1635
-s44.5 12 68.5 12c27.333 0 53 -5.16699 77 -15.5s45 -24.333 63 -42s32.167 -38.5 42.5 -62.5s15.5 -49.667 15.5 -77v-909h-158v869c0 52.667 -26.333 79 -79 79s-79 -26.333 -79 -79v-869h-158v869zM473.999 1343c0 22 7.66699 40.667 23 56s34 23 56 23
1636
-s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1637
- <glyph glyph-name="uni1E44" unicode="&#x1e44;"
1638
-d="M158 0v1422h158l474 -1052v1052h158v-1422h-158l-474 1052v-1052h-158zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1639
- <glyph glyph-name="uni1E45" unicode="&#x1e45;"
1640
-d="M553 948c-32 0 -62.167 -6.00098 -90.5 -18.001s-53.166 -28.167 -74.499 -48.5s-38.333 -44.333 -51 -72s-19.667 -57.167 -21 -88.5v-721h-158v1106h158v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501
1641
-s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-711h-158v711c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
1642
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1643
- <glyph glyph-name="uni1E54" unicode="&#x1e54;"
1644
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1645
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM393 1580
1646
-l-79 79l395 237l79 -79z" />
1647
- <glyph glyph-name="uni1E55" unicode="&#x1e55;"
1648
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1649
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
1650
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
1651
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM393 1264l-79 79l395 237l79 -79z" />
1652
- <glyph glyph-name="uni1E56" unicode="&#x1e56;"
1653
-d="M316 0l-158 0.00195312v1422h395c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v-632z
1654
-M553 790.002c32.667 0 63.334 6.16309 92.001 18.4961s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5h-237v-474h237zM474 1659
1655
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1656
- <glyph glyph-name="uni1E57" unicode="&#x1e57;"
1657
-d="M158 1106l158 0.00195312v-80c33.333 25.333 70 45 110 59s82.333 21 127 21c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-316c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5
1658
-s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31c-44.667 0 -87 7 -127 21s-76.667 33.333 -110 58v-553h-158v1580zM553 948.002c-32 0 -62.333 -5.00195 -91 -15.002s-53.834 -24.833 -75.501 -44.5s-38.834 -44.334 -51.501 -74.001s-19 -64.167 -19 -103.5v-316
1659
-c0 -39.333 6.33301 -73.833 19 -103.5s29.834 -54.334 51.501 -74.001s46.834 -34.5 75.501 -44.5s59 -15 91 -15c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v316
1660
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5zM474 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23
1661
-s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1662
- <glyph glyph-name="uni1E60" unicode="&#x1e60;"
1663
-d="M316 1027c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c54.667 0 106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154
1664
-s-10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-395v158h395c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001s-6.16699 63.334 -18.5 92.001
1665
-s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154s10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501
1666
-s99.333 31 154 31h395v-158h-395c-32.667 0 -63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001zM470.998 1659c0 22 7.8125 40.667 23.4365 56s34.6455 23 57.0635 23
1667
-c22.417 0 41.4375 -7.66699 57.0615 -23s23.4365 -34 23.4365 -56s-7.8125 -40.667 -23.4365 -56s-34.6445 -23 -57.0615 -23c-22.418 0 -41.4395 7.66699 -57.0635 23s-23.4365 34 -23.4365 56z" />
1668
- <glyph glyph-name="uni1E61" unicode="&#x1e61;"
1669
-d="M948 1106v-158h-395c-39.333 0 -73.833 -4.5 -103.5 -13.5s-54.334 -21 -74.001 -36s-34.5 -31.833 -44.5 -50.5s-15 -38 -15 -58s5 -39.333 15 -58s24.833 -35.5 44.5 -50.5s44.334 -27 74.001 -36s64.167 -13.5 103.5 -13.5c26 0 54 -2.33301 84 -7s59.667 -12 89 -22
1670
-s57.333 -23.167 84 -39.5s50.167 -36.166 70.5 -59.499s36.666 -50.333 48.999 -81s18.5 -65.667 18.5 -105c0 -40 -9.5 -79 -28.5 -117s-45.667 -72 -80 -102s-75.833 -54 -124.5 -72s-102.667 -27 -162 -27h-395v158h395c39.333 0 73.833 4.5 103.5 13.5
1671
-s54.334 21 74.001 36s34.5 32.167 44.5 51.5s15 39 15 59c0 19.333 -5 38.333 -15 57s-24.833 35.334 -44.5 50.001s-44.334 26.5 -74.001 35.5s-64.167 13.5 -103.5 13.5c-26 0 -54 2.33301 -84 7s-59.667 12.167 -89 22.5s-57.333 23.666 -84 39.999
1672
-s-50.167 36.166 -70.5 59.499s-36.666 50.5 -48.999 81.5s-18.5 66.167 -18.5 105.5s9.5 78 28.5 116s45.667 71.833 80 101.5s75.833 53.5 124.5 71.5s102.667 27 162 27h395zM474 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56
1673
-s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1674
- <glyph glyph-name="uni1E6A" unicode="&#x1e6a;"
1675
-d="M474 1264h-316v158h790v-158h-316v-1264h-158v1264zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1676
- <glyph glyph-name="uni1E6B" unicode="&#x1e6b;"
1677
-d="M158 1106l157.999 0.000976562v316h158v-316h316v-158h-316v-553c0 -32.667 6.16699 -63.334 18.5 -92.001s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h237v-158h-237c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501
1678
-s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v553h-158v158zM315.999 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1679
- <glyph glyph-name="Wgrave" unicode="&#x1e80;"
1680
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM316 1738v158l474 -237v-158z" />
1681
- <glyph glyph-name="wgrave" unicode="&#x1e81;"
1682
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1683
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1684
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM234.001 1422v158l474 -237v-158z" />
1685
- <glyph glyph-name="Wacute" unicode="&#x1e82;"
1686
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM395 1580l-79 79l395 237l79 -79z" />
1687
- <glyph glyph-name="wacute" unicode="&#x1e83;"
1688
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1689
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1690
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM395.001 1264l-79 79l395 237l79 -79z" />
1691
- <glyph glyph-name="Wdieresis" unicode="&#x1e84;"
1692
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1693
-M630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1694
- <glyph glyph-name="wdieresis" unicode="&#x1e85;"
1695
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1696
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1697
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM314.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56zM630.001 1343
1698
-c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1699
- <glyph glyph-name="uni1E86" unicode="&#x1e86;"
1700
-d="M790 1422h158v-1422h-158l-237 474l-237 -474h-158v1422h158v-1106l237 414l237 -414v1106zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z
1701
-" />
1702
- <glyph glyph-name="uni1E87" unicode="&#x1e87;"
1703
-d="M632 237c0 -52.667 26.334 -79 79.001 -79s79 26.333 79 79v869h158v-909c0 -27.333 -5.16699 -53 -15.5 -77s-24.5 -44.833 -42.5 -62.5s-39 -31.667 -63 -42s-49.667 -15.5 -77 -15.5c-24 0 -46.833 4 -68.5 12s-41 19 -58 33s-31.333 30.667 -43 50
1704
-s-19.834 40.333 -24.501 63h-7c-4.66699 -22.667 -13 -43.667 -25 -63s-26.5 -36 -43.5 -50s-36.167 -25 -57.5 -33s-44 -12 -68 -12c-27.333 0 -53 5.16699 -77 15.5s-44.833 24.333 -62.5 42s-31.667 38.5 -42 62.5s-15.5 49.667 -15.5 77v909h158v-869h1
1705
-c-0.666992 -52.667 25.333 -79 78 -79s78.667 26.333 78 79h1v395h158v-395zM471.001 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1706
- <glyph glyph-name="uni1E8A" unicode="&#x1e8a;"
1707
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1708
-s-23 34 -23 56z" />
1709
- <glyph glyph-name="uni1E8B" unicode="&#x1e8b;"
1710
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173zM471 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1711
-s-23 34 -23 56z" />
1712
- <glyph glyph-name="uni1E8C" unicode="&#x1e8c;"
1713
-d="M553 904l230 518h166l-310 -711l310 -711h-166l-230 517l-230 -517h-165l309 711l-310 711h166zM314 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1714
-s-23 34 -23 56zM630 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1715
- <glyph glyph-name="uni1E8D" unicode="&#x1e8d;"
1716
-d="M553 706l224 400h173l-311 -553l311 -553h-173l-224 398l-225 -398h-173l311 553l-311 553h173zM314 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23
1717
-s-23 34 -23 56zM630 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1718
- <glyph glyph-name="uni1E8E" unicode="&#x1e8e;"
1719
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM471 1659c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1720
- <glyph glyph-name="uni1E8F" unicode="&#x1e8f;"
1721
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1722
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1723
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM470.998 1343c0 22 7.66699 40.667 23 56s34 23 56 23s40.667 -7.66699 56 -23
1724
-s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23s-40.667 7.66699 -56 23s-23 34 -23 56z" />
1725
- <glyph glyph-name="uni1EBC" unicode="&#x1ebc;"
1726
-d="M158 1422h790v-158h-632v-474h474v-158h-474v-474h632v-158h-790v1422zM946 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
1727
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
1728
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1729
- <glyph glyph-name="uni1EBD" unicode="&#x1ebd;"
1730
-d="M316 395c0 -32.667 6.16406 -63.333 18.4971 -92s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5h395v-158h-395c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v316
1731
-c0 54.667 10.333 106 31 154s48.834 89.833 84.501 125.5s77.5 63.834 125.5 84.501s99.333 31 154 31s106 -10.333 154 -31s89.833 -48.834 125.5 -84.501s63.834 -77.5 84.501 -125.5s31 -99.333 31 -154v-237h-632v-79zM315.997 632.001h474.004v79
1732
-c0 32.667 -6.16699 63.334 -18.5 92.001s-29.333 53.834 -51 75.501s-46.834 38.667 -75.501 51s-59.334 18.5 -92.001 18.5s-63.334 -6.16699 -92.001 -18.5s-53.834 -29.333 -75.501 -51s-38.667 -46.834 -51 -75.501s-18.5 -59.334 -18.5 -92.001v-79zM946.001 1501
1733
-c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36
1734
-s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5
1735
-c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1736
- <glyph glyph-name="Ygrave" unicode="&#x1ef2;"
1737
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM315.662 1738v158l472.988 -237v-158z" />
1738
- <glyph glyph-name="ygrave" unicode="&#x1ef3;"
1739
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1740
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1741
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM315.998 1422v158l474 -237v-158z" />
1742
- <glyph glyph-name="uni1EF8" unicode="&#x1ef8;"
1743
-d="M474 472l-316 950h158l237 -711l237 711h158l-316 -948v-474h-158v472zM946 1817c-79.333 -158 -158.334 -237 -237.001 -237c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5
1744
-s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38
1745
-s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5s13.5 38 13.5 58z" />
1746
- <glyph glyph-name="uni1EF9" unicode="&#x1ef9;"
1747
-d="M316 395c0 -32.667 6.16504 -63.335 18.498 -92.002s29.333 -53.834 51 -75.501s46.834 -38.667 75.501 -51s59.334 -18.5 92.001 -18.5c32 0 62 5.83301 90 17.5s52.667 27.834 74 48.501s38.5 44.667 51.5 72s20.167 60.333 21.5 99v711h158v-1185
1748
-c0 -54.667 -10.333 -106 -31 -154s-48.834 -89.833 -84.501 -125.5s-77.5 -63.834 -125.5 -84.501s-99.333 -31 -154 -31h-237v158h237c32.667 0 63.334 6.16699 92.001 18.5s53.834 29.333 75.501 51s38.667 46.834 51 75.501s18.5 59.334 18.5 92.001v158
1749
-c-33.333 -24.667 -70 -44 -110 -58s-82.333 -21 -127 -21c-54.667 0 -106 10.333 -154 31s-89.833 48.834 -125.5 84.501s-63.834 77.5 -84.501 125.5s-31 99.333 -31 154v711h158v-711v0zM945.998 1501c-79.333 -158 -158.334 -237 -237.001 -237
1750
-c-39.333 0 -70.833 3.83301 -94.5 11.5s-42.834 17.5 -57.501 29.5s-26.5 24.667 -35.5 38s-18.667 26 -29 38s-23 21.833 -38 29.5s-35.5 11.5 -61.5 11.5c-20 0 -39.333 -4.5 -58 -13.5s-35.5 -21 -50.5 -36s-27 -31.833 -36 -50.5s-13.5 -38 -13.5 -58l-79 79
1751
-c78.667 158 157.667 237 237 237c39.333 0 70.833 -3.83301 94.5 -11.5s42.834 -17.5 57.501 -29.5s26.5 -24.667 35.5 -38s18.667 -26 29 -38s22.833 -21.833 37.5 -29.5s35.334 -11.5 62.001 -11.5c20 0 39.333 4.5 58 13.5s35.5 21 50.5 36s27 31.833 36 50.5
1752
-s13.5 38 13.5 58z" />
1753
- <glyph glyph-name="endash" unicode="&#x2013;"
1754
-d="M158 473v157h788v-157h-788z" />
1755
- <glyph glyph-name="emdash" unicode="&#x2014;"
1756
-d="M0 475v156h1106v-156h-315h-791z" />
1757
- <glyph glyph-name="afii00208" unicode="&#x2015;"
1758
-d="M0 475v156h1106v-156h-315h-791z" />
1759
- <glyph glyph-name="uni2016" unicode="&#x2016;"
1760
-d="M316 1422h158v-1422h-158v1422zM632 1422h158v-1422h-158v1422z" />
1761
- <glyph glyph-name="underscoredbl" unicode="&#x2017;"
1762
-d="M0 0h1106v-158h-1106v158zM0 -316h1106v-158h-1106v158z" />
1763
- <glyph glyph-name="quoteleft" unicode="&#x2018;"
1764
-d="M553 1580c22 0 40.665 -7.66797 55.998 -23.001s23 -34 23 -56s-7.66699 -40.667 -23 -56s-34 -23 -56 -23c-20 0 -35.333 -3.5 -46 -10.5s-18.5 -17.167 -23.5 -30.5s-7.83301 -29.833 -8.5 -49.5s-1 -42.167 -1 -67.5c22 0 42.5 -4.16699 61.5 -12.5
1765
-s35.667 -19.666 50 -33.999s25.666 -31 33.999 -50s12.5 -39.5 12.5 -61.5s-4.16699 -42.5 -12.5 -61.5s-19.666 -35.667 -33.999