pageflow 0.9.2 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pageflow might be problematic. Click here for more details.

Files changed (263) hide show
  1. checksums.yaml +5 -13
  2. data/CHANGELOG.md +193 -11
  3. data/README.md +9 -1
  4. data/Rakefile +5 -0
  5. data/admins/pageflow/accounts.rb +2 -1
  6. data/admins/pageflow/entry.rb +21 -1
  7. data/admins/pageflow/revisions.rb +1 -1
  8. data/app/assets/fonts/pageflow/entypo-license.txt +358 -0
  9. data/app/assets/fonts/pageflow/fontawesome-license.txt +1 -0
  10. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
  11. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +1236 -194
  12. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
  13. data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
  14. data/app/assets/fonts/pageflow/sourcesanspro-license.txt +93 -0
  15. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
  16. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +1153 -839
  17. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
  18. data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
  19. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
  20. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +1252 -199
  21. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
  22. data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
  23. data/app/assets/javascripts/pageflow/base.js +2 -0
  24. data/app/assets/javascripts/pageflow/browser/agent.js +25 -0
  25. data/app/assets/javascripts/pageflow/browser/css_animations.js +18 -0
  26. data/app/assets/javascripts/pageflow/browser/mobile_platform.js +1 -4
  27. data/app/assets/javascripts/pageflow/browser/video.js +8 -1
  28. data/app/assets/javascripts/pageflow/chapter_filter.js +6 -16
  29. data/app/assets/javascripts/pageflow/editor/api.js +6 -2
  30. data/app/assets/javascripts/pageflow/editor/api/page_type.js +12 -0
  31. data/app/assets/javascripts/pageflow/editor/base.js +4 -0
  32. data/app/assets/javascripts/pageflow/editor/collections/chapter_pages_collection.js +4 -1
  33. data/app/assets/javascripts/pageflow/editor/collections/chapters_collection.js +1 -5
  34. data/app/assets/javascripts/pageflow/editor/collections/mixins/add_and_return_model.js +11 -0
  35. data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +6 -4
  36. data/app/assets/javascripts/pageflow/editor/collections/ordered_page_links_collection.js +9 -0
  37. data/app/assets/javascripts/pageflow/editor/collections/page_links_collection.js +78 -0
  38. data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +9 -3
  39. data/app/assets/javascripts/pageflow/editor/collections/storyline_chapters_collection.js +35 -0
  40. data/app/assets/javascripts/pageflow/editor/collections/storylines_collection.js +33 -0
  41. data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +19 -2
  42. data/app/assets/javascripts/pageflow/editor/initializers/edit_lock.js +1 -1
  43. data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +11 -0
  44. data/app/assets/javascripts/pageflow/editor/initializers/setup_common_seed.js +3 -0
  45. data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +11 -0
  46. data/app/assets/javascripts/pageflow/editor/models/chapter.js +14 -7
  47. data/app/assets/javascripts/pageflow/editor/models/chapter_scaffold.js +13 -0
  48. data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +4 -4
  49. data/app/assets/javascripts/pageflow/editor/models/entry.js +33 -4
  50. data/app/assets/javascripts/pageflow/editor/models/mixins/persited_promise.js +18 -0
  51. data/app/assets/javascripts/pageflow/editor/models/page.js +4 -0
  52. data/app/assets/javascripts/pageflow/editor/models/page_link.js +37 -0
  53. data/app/assets/javascripts/pageflow/editor/models/page_link_file_selection_handler.js +14 -0
  54. data/app/assets/javascripts/pageflow/editor/models/preview_entry_data.js +15 -0
  55. data/app/assets/javascripts/pageflow/editor/models/scaffold.js +26 -0
  56. data/app/assets/javascripts/pageflow/editor/models/storyline.js +99 -0
  57. data/app/assets/javascripts/pageflow/editor/models/storyline_configuration.js +15 -0
  58. data/app/assets/javascripts/pageflow/editor/models/storyline_ordering.js +117 -0
  59. data/app/assets/javascripts/pageflow/editor/models/storyline_scaffold.js +23 -0
  60. data/app/assets/javascripts/pageflow/editor/models/storyline_transitive_child_pages.js +33 -0
  61. data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +3 -0
  62. data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +1 -6
  63. data/app/assets/javascripts/pageflow/editor/templates/edit_page_link.jst.ejs +3 -0
  64. data/app/assets/javascripts/pageflow/editor/templates/edit_storyline.jst.ejs +12 -0
  65. data/app/assets/javascripts/pageflow/editor/templates/page_link_item.jst.ejs +1 -0
  66. data/app/assets/javascripts/pageflow/editor/templates/page_selection.jst.ejs +2 -2
  67. data/app/assets/javascripts/pageflow/editor/templates/storyline_outline.jst.ejs +4 -0
  68. data/app/assets/javascripts/pageflow/editor/templates/storyline_picker.jst.ejs +7 -0
  69. data/app/assets/javascripts/pageflow/editor/utils/reload_stylesheet.js +9 -0
  70. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +2 -2
  71. data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/page_link.js +10 -0
  72. data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +0 -4
  73. data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +9 -15
  74. data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +14 -6
  75. data/app/assets/javascripts/pageflow/editor/views/edit_page_link_view.js +47 -0
  76. data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +97 -0
  77. data/app/assets/javascripts/pageflow/editor/views/editor_view.js +6 -3
  78. data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +13 -7
  79. data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +1 -1
  80. data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +3 -1
  81. data/app/assets/javascripts/pageflow/editor/views/locked_view.js +3 -3
  82. data/app/assets/javascripts/pageflow/editor/views/mixins/loadable.js +1 -1
  83. data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +2 -0
  84. data/app/assets/javascripts/pageflow/editor/views/page_link_configuration_editor_view.js +7 -0
  85. data/app/assets/javascripts/pageflow/editor/views/page_link_item_view.js +8 -1
  86. data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +1 -1
  87. data/app/assets/javascripts/pageflow/editor/views/page_selection_view.js +13 -12
  88. data/app/assets/javascripts/pageflow/editor/views/storyline_outline_view.js +33 -0
  89. data/app/assets/javascripts/pageflow/editor/views/storyline_picker_view.js +114 -0
  90. data/app/assets/javascripts/pageflow/entry_data.js +38 -4
  91. data/app/assets/javascripts/pageflow/highlighted_page.js +5 -5
  92. data/app/assets/javascripts/pageflow/history.js +1 -1
  93. data/app/assets/javascripts/pageflow/native_scrolling.js +14 -0
  94. data/app/assets/javascripts/pageflow/page_transitions.js +3 -1
  95. data/app/assets/javascripts/pageflow/page_type.js +2 -0
  96. data/app/assets/javascripts/pageflow/ready.js +4 -1
  97. data/app/assets/javascripts/pageflow/seed_entry_data.js +28 -1
  98. data/app/assets/javascripts/pageflow/slideshow.js +11 -8
  99. data/app/assets/javascripts/pageflow/slideshow/dom_order_scroll_navigator.js +93 -8
  100. data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +5 -3
  101. data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +4 -0
  102. data/app/assets/javascripts/pageflow/slideshow/page_widget.js +15 -6
  103. data/app/assets/javascripts/pageflow/ui/templates/tooltip.jst.ejs +2 -0
  104. data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -4
  105. data/app/assets/javascripts/pageflow/ui/views/mixins/tooltip_container.js +42 -0
  106. data/app/assets/javascripts/pageflow/ui/views/tooltip_view.js +49 -0
  107. data/app/assets/javascripts/pageflow/video_player.js +2 -2
  108. data/app/assets/javascripts/pageflow/video_player/{filter_for_silk.js → filter_sources.js} +2 -2
  109. data/app/assets/javascripts/pageflow/widgets/navigation.js +17 -14
  110. data/app/assets/javascripts/pageflow/widgets/navigation_mobile.js +7 -2
  111. data/app/assets/javascripts/pageflow/widgets/overview.js +9 -6
  112. data/app/assets/javascripts/pageflow/widgets/page_navigation_list.js +51 -13
  113. data/app/assets/javascripts/pageflow/widgets/page_navigation_list_animation.js +48 -0
  114. data/app/assets/javascripts/pageflow/widgets/parent_page_button.js +9 -2
  115. data/app/assets/stylesheets/pageflow/admin.css.scss +2 -15
  116. data/app/assets/stylesheets/pageflow/admin/features.scss +5 -0
  117. data/app/assets/stylesheets/pageflow/admin/forms.scss +18 -0
  118. data/app/assets/stylesheets/pageflow/animations.css.scss +1 -0
  119. data/app/assets/stylesheets/pageflow/animations/navigation_bar.scss +89 -0
  120. data/app/assets/stylesheets/pageflow/delayed_text_fade_in.css.scss +1 -1
  121. data/app/assets/stylesheets/pageflow/editor/base.css.scss +5 -0
  122. data/app/assets/stylesheets/pageflow/editor/menu.css.scss +1 -0
  123. data/app/assets/stylesheets/pageflow/editor/outline.css.scss +5 -0
  124. data/app/assets/stylesheets/pageflow/editor/page_links.css.scss +9 -1
  125. data/app/assets/stylesheets/pageflow/editor/page_selection.css.scss +7 -1
  126. data/app/assets/stylesheets/pageflow/editor/storyline_picker.css.scss +32 -0
  127. data/app/assets/stylesheets/pageflow/extendables.scss +26 -0
  128. data/app/assets/stylesheets/pageflow/mixins/pageflow.css.scss +25 -0
  129. data/app/assets/stylesheets/pageflow/navigation_bar.css.scss +64 -4
  130. data/app/assets/stylesheets/pageflow/navigation_mobile.css.scss +56 -0
  131. data/app/assets/stylesheets/pageflow/page_transitions.css.scss +4 -1
  132. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_left.scss +12 -0
  133. data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_right.scss +12 -0
  134. data/app/assets/stylesheets/pageflow/page_types/video.css.scss +5 -1
  135. data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +180 -42
  136. data/app/assets/stylesheets/pageflow/ui.css.scss +1 -0
  137. data/app/assets/stylesheets/pageflow/ui/forms.css.scss +11 -2
  138. data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +1 -0
  139. data/app/assets/stylesheets/pageflow/ui/tabs_view.css.scss +0 -3
  140. data/app/assets/stylesheets/pageflow/ui/tooltip.scss +57 -0
  141. data/app/controllers/concerns/pageflow/entry_password_protection.rb +13 -0
  142. data/app/controllers/pageflow/chapters_controller.rb +24 -9
  143. data/app/controllers/pageflow/edit_locks_controller.rb +2 -2
  144. data/app/controllers/pageflow/editor/files_controller.rb +0 -2
  145. data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
  146. data/app/controllers/pageflow/entries_controller.rb +5 -9
  147. data/app/controllers/pageflow/files_controller.rb +3 -0
  148. data/app/controllers/pageflow/storylines_controller.rb +69 -0
  149. data/app/helpers/pageflow/admin/features_helper.rb +17 -6
  150. data/app/helpers/pageflow/admin/widgets_helper.rb +18 -0
  151. data/app/helpers/pageflow/audio_files_helper.rb +2 -2
  152. data/app/helpers/pageflow/common_entry_seed_helper.rb +52 -0
  153. data/app/helpers/pageflow/entries_helper.rb +7 -1
  154. data/app/helpers/pageflow/entry_json_seed_helper.rb +27 -10
  155. data/app/helpers/pageflow/meta_tags_helper.rb +11 -0
  156. data/app/helpers/pageflow/page_types_helper.rb +9 -5
  157. data/app/helpers/pageflow/pages_helper.rb +9 -96
  158. data/app/helpers/pageflow/public_i18n_helper.rb +13 -0
  159. data/app/helpers/pageflow/social_share_helper.rb +1 -1
  160. data/app/helpers/pageflow/video_files_helper.rb +133 -0
  161. data/app/helpers/pageflow/widgets_helper.rb +3 -9
  162. data/app/models/concerns/pageflow/feature_target.rb +21 -3
  163. data/app/models/concerns/pageflow/hosted_file.rb +4 -0
  164. data/app/models/pageflow/account.rb +2 -2
  165. data/app/models/pageflow/chapter.rb +4 -4
  166. data/app/models/pageflow/chapter_scaffold.rb +33 -0
  167. data/app/models/pageflow/cname_theming_request_scope.rb +7 -1
  168. data/app/models/pageflow/draft_entry.rb +13 -2
  169. data/app/models/pageflow/edit_lock.rb +2 -2
  170. data/app/models/pageflow/entry.rb +3 -2
  171. data/app/models/pageflow/image_file.rb +6 -0
  172. data/app/models/pageflow/published_entry.rb +13 -2
  173. data/app/models/pageflow/revision.rb +17 -4
  174. data/app/models/pageflow/storyline.rb +23 -0
  175. data/app/models/pageflow/storyline_scaffold.rb +27 -0
  176. data/app/models/pageflow/theming.rb +4 -0
  177. data/app/models/pageflow/widget.rb +16 -12
  178. data/app/views/admin/accounts/_form.html.erb +8 -12
  179. data/app/views/admin/accounts/_widgets_inline_help.html.erb +5 -0
  180. data/app/views/layouts/pageflow/application.html.erb +4 -1
  181. data/app/views/pageflow/admin/widgets/_fields.html.erb +9 -0
  182. data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
  183. data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -2
  184. data/app/views/pageflow/editor/entries/_other_entry.json.jbuilder +1 -0
  185. data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
  186. data/app/views/pageflow/editor/entries/seed.json.erb +4 -1
  187. data/app/views/pageflow/editor/files/_file.json.jbuilder +4 -0
  188. data/app/views/pageflow/editor/themings/_theming.json.jbuilder +1 -0
  189. data/app/views/pageflow/entries/_entry.html.erb +2 -2
  190. data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -2
  191. data/app/views/pageflow/entries/_indicators.html.erb +3 -3
  192. data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -5
  193. data/app/views/pageflow/entries/_multimedia_alert.html.erb +6 -6
  194. data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
  195. data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
  196. data/app/views/pageflow/entries/edit.html.erb +4 -2
  197. data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +6 -5
  198. data/app/views/pageflow/entries/navigation/_bar_top.html.erb +13 -13
  199. data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
  200. data/app/views/pageflow/entries/navigation/_page.html.erb +1 -1
  201. data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
  202. data/app/views/pageflow/entries/overview/_entry.html.erb +7 -6
  203. data/app/views/pageflow/entries/share_menu/_facebook_link.html.erb +1 -1
  204. data/app/views/pageflow/entries/share_menu/_google_link.html.erb +1 -1
  205. data/app/views/pageflow/entries/share_menu/_twitter_link.html.erb +1 -1
  206. data/app/views/pageflow/entries/show.html.erb +4 -1
  207. data/app/views/pageflow/file_types/_thumbnails.css.erb +2 -0
  208. data/app/views/pageflow/meta_tags/_entry.html.erb +4 -0
  209. data/app/views/pageflow/pages/_page.html.erb +2 -2
  210. data/app/views/pageflow/pages/templates/_audio.html.erb +2 -2
  211. data/app/views/pageflow/pages/templates/_audio_loop.html.erb +1 -1
  212. data/app/views/pageflow/pages/templates/_background_video.html.erb +8 -3
  213. data/app/views/pageflow/pages/templates/_video.html.erb +9 -4
  214. data/app/views/pageflow/public_i18n/_javascript_tag.html.erb +5 -0
  215. data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
  216. data/app/views/pageflow/video_files/_script_tag.html.erb +3 -0
  217. data/app/views/pageflow/video_files/_video_file.html.erb +4 -1
  218. data/app/views/pageflow/video_files/_video_tag.html.erb +7 -0
  219. data/config/initializers/admin_resource_tabs.rb +1 -0
  220. data/config/initializers/features.rb +3 -1
  221. data/config/initializers/paperclip.rb +5 -0
  222. data/config/locales/de.yml +205 -601
  223. data/config/locales/en.yml +198 -405
  224. data/config/routes.rb +10 -2
  225. data/db/migrate/20150826125417_create_pageflow_storylines.rb +12 -0
  226. data/db/migrate/20150826125744_add_storyline_id_to_chapters.rb +6 -0
  227. data/db/migrate/20150826125745_insert_main_storylines.rb +28 -0
  228. data/db/migrate/20150830105831_remove_revision_id_from_chapters.rb +5 -0
  229. data/db/migrate/20150830110006_remove_entry_id_from_chapters.rb +5 -0
  230. data/db/migrate/20160201130118_add_additional_cnames_to_themings.rb +5 -0
  231. data/db/migrate/20160216130336_add_meta_fields_to_revision.rb +7 -0
  232. data/lib/generators/pageflow/initializer/templates/pageflow.rb +7 -0
  233. data/lib/pageflow/ability_mixin.rb +7 -1
  234. data/lib/pageflow/configuration.rb +27 -2
  235. data/lib/pageflow/engine.rb +4 -1
  236. data/lib/pageflow/features.rb +24 -0
  237. data/lib/pageflow/global_config_api.rb +1 -0
  238. data/lib/pageflow/seeds.rb +4 -2
  239. data/lib/pageflow/theme.rb +4 -0
  240. data/lib/pageflow/version.rb +1 -1
  241. data/spec/factories/chapters.rb +6 -3
  242. data/spec/factories/storylines.rb +13 -0
  243. metadata +1021 -928
  244. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.eot +0 -0
  245. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.svg +0 -768
  246. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.ttf +0 -0
  247. data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.woff +0 -0
  248. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.eot +0 -0
  249. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.svg +0 -968
  250. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.ttf +0 -0
  251. data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.woff +0 -0
  252. data/app/assets/fonts/pageflow/thesansboldplain.eot +0 -0
  253. data/app/assets/fonts/pageflow/thesansboldplain.svg +0 -228
  254. data/app/assets/fonts/pageflow/thesansboldplain.ttf +0 -0
  255. data/app/assets/fonts/pageflow/thesansboldplain.woff +0 -0
  256. data/app/assets/fonts/pageflow/thesanssemiboldplain.eot +0 -0
  257. data/app/assets/fonts/pageflow/thesanssemiboldplain.svg +0 -228
  258. data/app/assets/fonts/pageflow/thesanssemiboldplain.ttf +0 -0
  259. data/app/assets/fonts/pageflow/thesanssemiboldplain.woff +0 -0
  260. data/app/assets/javascripts/pageflow/browser/hashchange_support.js +0 -8
  261. data/app/assets/javascripts/pageflow/widgets/button.js +0 -22
  262. data/app/views/layouts/pageflow/_meta_tags.html.erb +0 -5
  263. data/app/views/pageflow/pages/_video_tag.html.erb +0 -13
@@ -5,241 +5,1294 @@
5
5
  <defs>
6
6
  <font id="source_sans_proregular" horiz-adv-x="1017" >
7
7
  <font-face units-per-em="2048" ascent="1536" descent="-512" />
8
- <missing-glyph horiz-adv-x="413" />
8
+ <missing-glyph horiz-adv-x="409" />
9
9
  <glyph horiz-adv-x="0" />
10
10
  <glyph horiz-adv-x="682" />
11
- <glyph horiz-adv-x="0" />
12
- <glyph horiz-adv-x="0" />
13
- <glyph unicode="&#xd;" horiz-adv-x="413" />
14
- <glyph unicode=" " horiz-adv-x="413" />
15
- <glyph unicode="&#x09;" horiz-adv-x="413" />
16
- <glyph unicode="&#xa0;" horiz-adv-x="413" />
17
- <glyph unicode="!" horiz-adv-x="591" d="M174 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91zM211 1372h170l-4 -192l-23 -774h-116l-23 774z" />
18
- <glyph unicode="&#x22;" horiz-adv-x="870" d="M164 1413h180l-6 -188l-33 -342h-102l-33 342zM524 1413h180l-6 -188l-33 -342h-102l-33 342z" />
11
+ <glyph unicode=" " horiz-adv-x="409" />
12
+ <glyph unicode="&#x09;" horiz-adv-x="409" />
13
+ <glyph unicode="&#xa0;" horiz-adv-x="409" />
14
+ <glyph unicode="!" horiz-adv-x="591" d="M174 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91zM211 1372h170l-4 -192l-23 -774h-116l-23 774z" />
15
+ <glyph unicode="&#x22;" horiz-adv-x="872" d="M164 1413h180l-6 -188l-33 -342h-102l-33 342zM526 1413h181l-7 -188l-32 -342h-103l-33 342z" />
19
16
  <glyph unicode="#" d="M72 418v117h178l37 303h-174v118h188l47 375h109l-47 -375h272l49 375h109l-49 -375h165v-118h-178l-37 -303h174v-117h-188l-51 -418h-109l49 418h-270l-51 -418h-111l52 418h-164zM360 535h271l37 303h-271z" />
20
- <glyph unicode="$" d="M106 135l78 117q66 -57 145 -97t173 -40q115 0 171 57t56 154q0 82 -42 136t-105.5 94t-138 75t-138 80t-105.5 109.5t-42 164.5q0 137 80.5 228.5t216.5 113.5v205h123v-203q98 -10 166.5 -53t123.5 -102l-90 -101q-57 55 -111.5 86t-138.5 31q-94 0 -149 -53.5 t-55 -143.5q0 -74 42 -121t105.5 -82.5t138 -69.5t138 -82t105.5 -118.5t42 -181.5q0 -147 -85 -241.5t-232 -114.5v-207h-123v202q-98 10 -190.5 54.5t-158.5 103.5z" />
21
- <glyph unicode="%" horiz-adv-x="1687" d="M72 946q0 203 83 312.5t222 109.5q137 0 221 -109.5t84 -312.5q0 -205 -84 -315.5t-221 -110.5q-139 0 -222 111t-83 315zM199 946q0 -160 49 -240.5t129 -80.5q78 0 127 81t49 240q0 160 -49 239t-127 79q-80 0 -129 -79t-49 -239zM414 -25l741 1393h115l-741 -1393 h-115zM1008 401q0 203 83 312.5t222 109.5q137 0 221 -109.5t84 -312.5q0 -205 -84 -315.5t-221 -110.5q-139 0 -222 111t-83 315zM1135 401q0 -160 49 -240.5t129 -80.5q78 0 127 81t49 240q0 160 -49 239t-127 79q-80 0 -129 -79t-49 -239z" />
22
- <glyph unicode="&#x26;" horiz-adv-x="1247" d="M66 348q0 68 21.5 123t58 102.5t85 87t99.5 74.5q-41 84 -64.5 163t-23.5 153q0 68 22.5 125t63.5 100t98 67.5t127 24.5q125 0 194.5 -73.5t69.5 -192.5q0 -66 -26.5 -121t-69.5 -103.5t-97.5 -90.5t-109.5 -82q66 -104 155 -200.5t185 -176.5q61 84 109.5 182t78.5 215 h158q-41 -133 -98.5 -254t-136.5 -227q70 -47 133 -80t119 -49l-46 -140q-72 20 -149.5 58.5t-159.5 95.5q-78 -70 -173 -112t-214 -42q-92 0 -167 28t-129 77t-83.5 117.5t-29.5 150.5zM229 358q0 -55 20.5 -101t56.5 -79t84 -50t104 -17q70 0 133 28.5t123 79.5 q-98 86 -189.5 188.5t-163.5 210.5q-72 -57 -120 -119.5t-48 -140.5zM387 1053q0 -55 17.5 -114.5t46.5 -121.5q45 31 87 62.5t73.5 65.5t50 72t18.5 83q0 59 -29.5 103t-97.5 44q-76 0 -121 -55t-45 -139z" />
17
+ <glyph unicode="$" d="M106 135l78 117q159 -137 318 -137q111 0 169 56.5t58 154.5q0 67 -31.5 119.5t-82 87t-111 66t-121.5 65t-111.5 74t-82 103.5t-31.5 144q0 136 81.5 228t215.5 112v207h123v-203q91 -10 159 -49.5t131 -105.5l-90 -101q-63 61 -117.5 89t-132.5 28q-93 0 -148.5 -53.5 t-55.5 -143.5q0 -60 31.5 -106t82 -77t111.5 -60t121.5 -63.5t111 -77.5t82 -112.5t31.5 -158.5q0 -146 -85 -241t-232 -115v-207h-123v202q-95 9 -188.5 52.5t-160.5 105.5z" />
18
+ <glyph unicode="%" horiz-adv-x="1687" d="M72 946q0 199 82.5 310.5t222.5 111.5q139 0 222 -112t83 -310q0 -201 -83 -313.5t-222 -112.5q-140 0 -222.5 112.5t-82.5 313.5zM199 946q0 -156 48 -238.5t130 -82.5q80 0 128 82.5t48 238.5q0 155 -47.5 236.5t-128.5 81.5q-82 0 -130 -81t-48 -237zM416 -25 l741 1393h115l-742 -1393h-114zM1008 401q0 199 82.5 310.5t222.5 111.5q139 0 222 -112t83 -310q0 -201 -83 -313.5t-222 -112.5q-140 0 -222.5 112.5t-82.5 313.5zM1135 401q0 -156 48 -238.5t130 -82.5q80 0 128 82.5t48 238.5q0 155 -47.5 236.5t-128.5 81.5 q-82 0 -130 -81t-48 -237z" />
19
+ <glyph unicode="&#x26;" horiz-adv-x="1247" d="M66 348q0 65 21 122t61 105t82 84t100 76q-88 178 -88 316q0 136 86.5 226.5t224.5 90.5q123 0 193.5 -73t70.5 -193q0 -43 -11 -82t-35.5 -76t-47.5 -65t-65 -63t-68.5 -55t-75.5 -56q129 -201 340 -377q129 174 188 397h158q-85 -281 -235 -481q147 -101 252 -129 l-46 -140q-150 43 -309 154q-171 -154 -387 -154q-182 0 -295.5 104.5t-113.5 268.5zM229 358q0 -110 76 -178.5t189 -68.5q132 0 256 108q-219 192 -353 399q-81 -65 -124.5 -126.5t-43.5 -133.5zM387 1053q0 -101 64 -236q54 36 89 63.5t70.5 63t52.5 74.5t17 82 q0 64 -31.5 105.5t-95.5 41.5q-74 0 -120 -55t-46 -139z" />
23
20
  <glyph unicode="'" horiz-adv-x="509" d="M164 1413h180l-6 -188l-33 -342h-102l-33 342z" />
24
- <glyph unicode="(" horiz-adv-x="620" d="M168 569q0 270 71.5 496.5t198.5 433.5l105 -49q-119 -197 -177.5 -421t-58.5 -460t58.5 -460t177.5 -420l-105 -49q-127 205 -198.5 432t-71.5 497z" />
25
- <glyph unicode=")" horiz-adv-x="620" d="M78 -311q119 197 177 421t58 459q0 236 -58 460t-177 421l104 49q127 -207 199 -433t72 -497q0 -270 -72 -497.5t-199 -431.5z" />
21
+ <glyph unicode="(" horiz-adv-x="620" d="M168 569q0 495 270 930l105 -49q-117 -192 -176.5 -418t-59.5 -463t59.5 -462.5t176.5 -417.5l-105 -49q-270 435 -270 929z" />
22
+ <glyph unicode=")" horiz-adv-x="620" d="M78 -311q235 387 235 880q0 237 -59 463t-176 418l104 49q271 -437 271 -930q0 -261 -69 -488t-202 -441z" />
26
23
  <glyph unicode="*" horiz-adv-x="856" d="M119 1194l31 94l208 -51l19 221h100l19 -219l211 49l30 -94l-198 -82l114 -192l-80 -60l-145 176l-145 -176l-82 60l116 192z" />
27
24
  <glyph unicode="+" d="M70 612v127h372v400h133v-400h373v-127h-373v-399h-133v399h-372z" />
28
- <glyph unicode="," horiz-adv-x="509" d="M96 -250q86 39 135.5 102.5t49.5 147.5q-6 -2 -21 -2q-49 0 -85 29.5t-36 87.5q0 55 37 86.5t88 31.5q66 0 104 -53t38 -145q0 -133 -72 -231.5t-197 -151.5z" />
25
+ <glyph unicode="," horiz-adv-x="509" d="M96 -250q89 39 137.5 104t47.5 146q-6 -2 -21 -2q-52 0 -86.5 31t-34.5 86q0 54 36 86t89 32q66 0 104 -53t38 -145q0 -130 -71.5 -230t-197.5 -153z" />
29
26
  <glyph unicode="-" horiz-adv-x="636" d="M84 449v129h471v-129h-471z" />
30
- <glyph unicode="." horiz-adv-x="509" d="M133 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91z" />
27
+ <glyph unicode="." horiz-adv-x="509" d="M133 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91z" />
31
28
  <glyph unicode="/" horiz-adv-x="716" d="M20 -328l547 1782h123l-547 -1782h-123z" />
32
- <glyph unicode="0" d="M90 657q0 330 110.5 502t309.5 172q197 0 307.5 -172t110.5 -502t-110.5 -506t-307.5 -176q-199 0 -309.5 176.5t-110.5 505.5zM254 657q0 -287 70.5 -416.5t185.5 -129.5q57 0 103 31.5t80 98t52.5 170t18.5 246.5t-18.5 246t-52.5 167.5t-80 95t-103 30.5t-104.5 -30.5 t-81 -95t-52 -167t-18.5 -246.5z" />
33
- <glyph unicode="1" d="M162 0v139h299v963h-238v108q90 16 156.5 40t120.5 57h129v-1168h270v-139h-737z" />
34
- <glyph unicode="2" d="M74 1133q82 90 174 144t221 54q182 0 286.5 -105.5t104.5 -279.5q0 -92 -40 -185t-110.5 -192.5t-168 -207t-213.5 -228.5q53 4 110.5 8t108.5 4h379v-145h-844v100q147 147 262 266t192.5 220.5t118.5 186.5t41 165q0 113 -61.5 184.5t-185.5 71.5q-82 0 -152 -46 t-127 -112z" />
35
- <glyph unicode="3" d="M53 160l86 110q59 -61 138 -108t196 -47q119 0 194.5 64.5t75.5 174.5q0 57 -21.5 105.5t-70.5 83.5t-129 53t-196 18v129q104 0 174.5 18.5t114.5 51.5t62.5 78t18.5 96q0 96 -60.5 151.5t-164.5 55.5q-82 0 -150.5 -37t-127.5 -96l-91 106q76 72 167 118t208 46 q86 0 158 -22.5t124 -64.5t80.5 -103.5t28.5 -141.5q0 -119 -65.5 -194.5t-171.5 -116.5v-8q59 -14 110.5 -42t90 -70t60 -97t21.5 -123q0 -86 -33.5 -155.5t-92 -117.5t-136.5 -74t-168 -26q-78 0 -142.5 15.5t-117.5 41t-95 58.5t-75 70z" />
36
- <glyph unicode="4" d="M35 360v111l559 836h188v-811h179v-136h-179v-360h-159v360h-588zM213 496h410v378q0 53 3 126t7 126h-8q-25 -47 -51.5 -92t-55.5 -92z" />
37
- <glyph unicode="5" d="M51 154l82 110q57 -59 136 -104t194 -45q59 0 111.5 21.5t91.5 60.5t61.5 94t22.5 123q0 135 -76 210.5t-203 75.5q-68 0 -116 -20.5t-107 -58.5l-90 57l43 629h653v-146h-506l-35 -387q47 25 94.5 39t106.5 14q84 0 157.5 -24.5t129 -74.5t87.5 -127t32 -183t-37 -188.5 t-98.5 -138.5t-140.5 -86t-165 -30q-78 0 -142.5 15.5t-116.5 40t-94 56.5t-75 67z" />
38
- <glyph unicode="6" d="M98 604q0 197 41 335t110.5 225t159 127t187.5 40q106 0 183 -40t132 -99l-94 -105q-41 47 -97 75t-118 28q-68 0 -129 -28.5t-108.5 -94.5t-76 -171t-30.5 -261q61 76 143 120t162 44q170 0 271.5 -100.5t101.5 -303.5q0 -94 -31 -171t-84 -132t-122.5 -86t-149.5 -31 q-96 0 -178 39t-142.5 118t-95.5 196.5t-35 275.5zM262 500q16 -193 89 -292t198 -99q49 0 90 20.5t71.5 58t48 90t17.5 117.5q0 129 -59.5 203t-181.5 74q-61 0 -134 -40t-139 -132z" />
39
- <glyph unicode="7" d="M90 1161v146h842v-105q-117 -147 -189.5 -282.5t-115.5 -275.5t-62.5 -297t-27.5 -347h-175q8 184 33 338t69 292t112.5 267t164.5 264h-651z" />
40
- <glyph unicode="8" d="M84 334q0 63 21.5 117.5t55.5 98.5t78 78t91 58v8q-72 51 -127.5 124t-55.5 177q0 76 29 137.5t78 105.5t116.5 68.5t147.5 24.5q86 0 153.5 -25.5t116 -71.5t74 -110.5t25.5 -140.5q0 -51 -17.5 -98t-43 -88t-57.5 -74t-62 -55v-9q43 -25 83.5 -56.5t72.5 -71t51.5 -91 t19.5 -116.5q0 -74 -31 -137.5t-86 -110.5t-133 -74t-172 -27q-92 0 -171 27t-135 75t-89 113.5t-33 143.5zM236 350q0 -55 21.5 -100t59 -79t89 -52.5t110.5 -18.5q115 0 185.5 63.5t70.5 166.5q0 63 -28.5 108t-78 79t-114 61.5t-133.5 56.5q-78 -53 -130 -124t-52 -161z M303 995q0 -59 24.5 -101t66.5 -75t96.5 -58t113.5 -48q66 59 101.5 124.5t35.5 137.5q0 98 -59 164.5t-168 66.5q-92 0 -151.5 -57t-59.5 -154z" />
41
- <glyph unicode="9" d="M82 911q0 94 30.5 171t83 132.5t123 86t148.5 30.5q96 0 179 -39t143.5 -117.5t94.5 -196.5t34 -276q0 -197 -41 -335t-111 -225t-159 -127t-187 -40q-104 0 -183 39t-133 99l95 106q41 -47 97 -75.5t118 -28.5q70 0 131 28.5t108 95t76 173t31 264.5q-61 -78 -143 -123 t-164 -45q-170 0 -270.5 100.5t-100.5 302.5zM240 911q0 -129 59 -202.5t182 -73.5q63 0 136 40t139 134q-16 193 -90 291t-199 98q-47 0 -89 -20.5t-73 -58.5t-48 -91t-17 -117z" />
42
- <glyph unicode=":" horiz-adv-x="509" d="M133 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91zM133 841q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91z" />
43
- <glyph unicode=";" horiz-adv-x="509" d="M96 -250q86 39 135.5 102.5t49.5 147.5q-6 -2 -21 -2q-49 0 -85 29.5t-36 87.5q0 55 37 86.5t88 31.5q66 0 104 -53t38 -145q0 -133 -72 -231.5t-197 -151.5zM133 841q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91z" />
29
+ <glyph unicode="0" d="M90 657q0 325 110.5 499.5t309.5 174.5q197 0 307.5 -174.5t110.5 -499.5q0 -326 -110.5 -504t-307.5 -178q-198 0 -309 178t-111 504zM254 657q0 -277 68 -411.5t188 -134.5q119 0 186.5 134.5t67.5 411.5q0 276 -67 407.5t-187 131.5q-121 0 -188.5 -131t-67.5 -408z " />
30
+ <glyph unicode="1" d="M162 0v139h299v963h-238v108q159 27 277 97h129v-1168h270v-139h-737z" />
31
+ <glyph unicode="2" d="M74 1133q89 97 182 147.5t213 50.5q180 0 285.5 -105t105.5 -280q0 -52 -14.5 -106.5t-36 -104.5t-62.5 -111.5t-78.5 -111t-101 -121t-112 -123.5t-127.5 -135q144 12 219 12h379v-145h-844v100q135 134 217 219t167 182t129.5 165.5t72.5 139t28 132.5q0 117 -63 186.5 t-184 69.5q-143 0 -279 -158z" />
32
+ <glyph unicode="3" d="M53 160l86 110q147 -155 334 -155q120 0 195 65.5t75 173.5q0 125 -97.5 192.5t-319.5 67.5v129q370 0 370 244q0 95 -60.5 151t-164.5 56q-145 0 -278 -133l-91 106q174 164 375 164q174 0 282.5 -88.5t108.5 -243.5q0 -114 -63 -191.5t-174 -119.5v-8 q125 -29 203.5 -115.5t78.5 -216.5q0 -169 -122.5 -271t-307.5 -102q-260 0 -430 185z" />
33
+ <glyph unicode="4" d="M35 360v111l559 836h188v-811h179v-136h-179v-360h-159v360h-588zM213 496h410v378q0 77 10 252h-8q-9 -17 -107 -184z" />
34
+ <glyph unicode="5" d="M51 154l82 110q69 -69 147 -109t183 -40q123 0 205 82.5t82 216.5t-76 210t-203 76q-63 0 -110.5 -18.5t-112.5 -60.5l-90 57l43 629h653v-146h-506l-35 -387q98 53 201 53q178 0 292 -103.5t114 -305.5q0 -103 -37 -188t-98.5 -140t-140.5 -85t-165 -30q-249 0 -428 179 z" />
35
+ <glyph unicode="6" d="M98 604q0 153 27 276.5t73.5 206.5t110.5 138.5t135.5 80.5t151.5 25q186 0 315 -139l-94 -105q-40 48 -97 75.5t-118 27.5q-71 0 -130 -29.5t-107 -92t-76 -173t-31 -260.5q62 75 144 119.5t161 44.5q173 0 273 -103.5t100 -300.5q0 -184 -112.5 -302t-274.5 -118 q-200 0 -325.5 162.5t-125.5 466.5zM262 500q15 -190 88.5 -290.5t198.5 -100.5q98 0 162.5 79.5t64.5 206.5q0 131 -61 204t-180 73q-68 0 -141.5 -43t-131.5 -129z" />
36
+ <glyph unicode="7" d="M90 1161v146h842v-105q-115 -147 -188.5 -280t-116.5 -280.5t-62 -291.5t-28 -350h-175q17 372 102 633t277 528h-651z" />
37
+ <glyph unicode="8" d="M84 334q0 118 70 206.5t176 145.5v8q-183 130 -183 301q0 149 105.5 242.5t265.5 93.5q168 0 268.5 -97t100.5 -251q0 -93 -54 -176.5t-126 -138.5v-9q49 -29 85.5 -57.5t71 -68.5t52.5 -93t18 -116q0 -149 -117.5 -249t-304.5 -100q-185 0 -306.5 102t-121.5 257z M236 350q0 -108 80 -179t200 -71q114 0 185 64t71 166q0 47 -20.5 87.5t-42.5 65.5t-79.5 56.5t-85 43.5t-107.5 44q-13 5 -19 8q-182 -123 -182 -285zM303 995q0 -38 10.5 -70.5t33 -59t47 -47t63 -40.5t70 -33.5t77.5 -31.5q137 121 137 262q0 100 -61.5 165.5 t-165.5 65.5q-92 0 -151.5 -58.5t-59.5 -152.5z" />
38
+ <glyph unicode="9" d="M82 911q0 184 112.5 302t272.5 118q202 0 326.5 -162.5t124.5 -466.5q0 -153 -27 -276.5t-73.5 -206.5t-110.5 -138.5t-135.5 -80.5t-151.5 -25q-189 0 -316 138l95 106q40 -48 97 -76t118 -28q72 0 131.5 29.5t108 93t76.5 175t30 263.5q-62 -78 -143.5 -123t-163.5 -45 q-173 0 -272 103t-99 300zM240 911q0 -130 61 -203t180 -73q69 0 142 43t133 131q-17 191 -91 290t-198 99q-97 0 -162 -80t-65 -207z" />
39
+ <glyph unicode=":" horiz-adv-x="509" d="M133 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91zM133 842q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91z" />
40
+ <glyph unicode=";" horiz-adv-x="509" d="M96 -250q89 39 137.5 104t47.5 146q-6 -2 -21 -2q-52 0 -86.5 31t-34.5 86q0 54 36 86t89 32q66 0 104 -53t38 -145q0 -130 -71.5 -230t-197.5 -153zM133 842q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91z" />
44
41
  <glyph unicode="&#x3c;" d="M70 612v136l878 344v-146l-432 -160l-274 -102v-8l274 -103l432 -159v-146z" />
45
- <glyph unicode="=" d="M70 395v127h878v-127h-878zM70 831v127h878v-127h-878z" />
42
+ <glyph unicode="=" d="M70 393v127h878v-127h-878zM70 831v127h878v-127h-878z" />
46
43
  <glyph unicode="&#x3e;" d="M70 268v146l432 159l274 103v8l-274 102l-432 160v146l878 -344v-136z" />
47
- <glyph unicode="?" horiz-adv-x="870" d="M78 1227q66 74 149.5 122t194.5 48q160 0 255 -87t95 -241q0 -68 -24.5 -123t-60.5 -104t-76 -97.5t-73.5 -99.5t-52 -109.5t-10.5 -129.5h-147q-12 80 5 144t48 118.5t71 101.5t74.5 93t58 93.5t23.5 102.5q0 82 -50 140t-148 58q-68 0 -128.5 -31.5t-107.5 -86.5z M285 102q0 59 34.5 95t86.5 36q51 0 86.5 -35.5t35.5 -95.5q0 -55 -35.5 -91t-86.5 -36t-86 36t-35 91z" />
48
- <glyph unicode="@" horiz-adv-x="1734" d="M104 416q0 205 69 372.5t186.5 286.5t272 183.5t326.5 64.5q156 0 280 -49t211 -138t134 -214t47 -277q0 -135 -38 -236.5t-97 -170t-132 -103.5t-142 -35q-84 0 -142.5 39t-68.5 117h-4q-51 -59 -117 -99t-133 -40q-104 0 -175 73.5t-71 215.5q0 82 27.5 166.5t79 153.5 t124 112t162.5 43q53 0 94 -23.5t70 -75.5h4l23 82h112l-80 -409q-61 -240 111 -240q49 0 97 28.5t88 83t64.5 133.5t24.5 179q0 123 -35.5 228.5t-107.5 181t-178.5 118.5t-245.5 43q-137 0 -266 -56t-229.5 -158.5t-161 -248t-60.5 -325.5q0 -150 46 -266.5t128 -196.5 t194 -122t243 -42q94 0 178 25.5t153 66.5l45 -100q-174 -104 -389 -104q-152 0 -282.5 47t-228 140t-154 230.5t-56.5 315.5zM645 416q0 -98 41 -141.5t102 -43.5q43 0 89.5 29t99.5 92l59 326q-29 47 -59.5 66.5t-71.5 19.5q-61 0 -109 -33t-82 -84t-51.5 -112.5 t-17.5 -118.5z" />
49
- <glyph unicode="A" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5z" />
50
- <glyph unicode="B" horiz-adv-x="1204" d="M184 0v1343h400q102 0 187 -18t145.5 -57t94 -101.5t33.5 -150.5q0 -100 -57 -181t-176 -112v-8q147 -23 229 -103t82 -219q0 -98 -36.5 -172t-104.5 -123t-162 -73.5t-207 -24.5h-428zM354 135h234q174 0 270 64.5t96 201.5q0 125 -94 183.5t-272 58.5h-234v-508z M354 770h199q174 0 249 59.5t75 171.5q0 111 -79 159t-237 48h-207v-438z" />
51
- <glyph unicode="C" horiz-adv-x="1169" d="M106 672q0 162 45.5 291t125 219t189 138t239.5 48q123 0 215 -50t151 -116l-96 -108q-53 57 -117.5 91t-150.5 34q-96 0 -174 -38t-133.5 -109t-86 -171t-30.5 -225q0 -127 29.5 -228.5t83 -173t130 -110.5t172.5 -39q98 0 171 39t139 110l96 -104 q-80 -92 -180.5 -143.5t-229.5 -51.5q-127 0 -234.5 47.5t-186 136.5t-123 219t-44.5 294z" />
52
- <glyph unicode="D" horiz-adv-x="1259" d="M184 0v1343h336q311 0 473 -172t162 -493q0 -160 -41 -286t-121 -213t-196.5 -133t-268.5 -46h-344zM354 139h154q236 0 353.5 141.5t117.5 397.5t-118 391t-353 135h-154v-1065z" />
44
+ <glyph unicode="?" horiz-adv-x="870" d="M78 1227q149 170 352 170q156 0 249 -88.5t93 -239.5q0 -73 -34 -142.5t-80.5 -125.5t-92 -113.5t-72.5 -130t-18 -151.5h-147q-9 65 1.5 125t34.5 106.5t55.5 90.5t64.5 84t60.5 78t45.5 81.5t18 87.5q0 86 -52 142t-146 56q-136 0 -236 -118zM285 102q0 58 34.5 94.5 t86.5 36.5t87 -36.5t35 -94.5q0 -55 -35 -91t-87 -36q-51 0 -86 36t-35 91z" />
45
+ <glyph unicode="@" horiz-adv-x="1734" d="M104 416q0 201 69 372.5t186 287.5t272 181.5t327 65.5q308 0 490 -186.5t182 -491.5q0 -129 -37.5 -235.5t-97.5 -172t-131 -101.5t-143 -36q-86 0 -143.5 40.5t-67.5 115.5h-4q-53 -63 -119 -101t-131 -38q-108 0 -177 76.5t-69 212.5q0 83 28 167t77.5 152.5t125 112 t162.5 43.5q110 0 164 -99h4l23 82h112l-80 -409q-61 -240 111 -240q49 0 97.5 29.5t88 82t64 134.5t24.5 178q0 167 -63 294.5t-192.5 202t-311.5 74.5q-137 0 -266 -56.5t-229.5 -157t-161 -250.5t-60.5 -324q0 -195 80.5 -338.5t218 -216t312.5 -72.5q171 0 331 92 l45 -100q-172 -104 -389 -104q-121 0 -229 30t-198 91t-155.5 147.5t-102 205.5t-36.5 259zM645 416q0 -94 39 -139.5t104 -45.5q88 0 189 121l59 326q-29 47 -59 66.5t-72 19.5q-58 0 -108.5 -32.5t-82.5 -84t-50.5 -112t-18.5 -119.5z" />
46
+ <glyph unicode="A" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
47
+ <glyph unicode="B" horiz-adv-x="1204" d="M184 0v1343h400q216 0 338 -79t122 -248q0 -103 -51.5 -183t-144.5 -110v-8q126 -24 200 -106t74 -216q0 -192 -138 -292.5t-372 -100.5h-428zM354 135h234q177 0 271.5 65.5t94.5 198.5q0 242 -366 242h-234v-506zM354 772h199q324 0 324 221q0 114 -77.5 164.5 t-238.5 50.5h-207v-436z" />
48
+ <glyph unicode="C" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-168 -195 -412 -195q-126 0 -233.5 48t-185.5 136t-122.5 220t-44.5 293z" />
49
+ <glyph unicode="D" horiz-adv-x="1259" d="M184 0v1343h336q309 0 472 -172t163 -493q0 -323 -162 -500.5t-465 -177.5h-344zM354 139h154q232 0 351.5 140.5t119.5 398.5q0 256 -119 391t-352 135h-154v-1065z" />
53
50
  <glyph unicode="E" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795z" />
54
51
  <glyph unicode="F" horiz-adv-x="1011" d="M184 0v1343h774v-143h-604v-455h512v-143h-512v-602h-170z" />
55
- <glyph unicode="G" horiz-adv-x="1263" d="M106 672q0 162 46.5 291t129.5 219t195.5 138t247.5 48q139 0 232.5 -52t152.5 -114l-96 -108q-51 53 -118 89t-169 36t-184 -38t-139.5 -109t-89 -171t-31.5 -225q0 -127 29.5 -228.5t86 -173t139.5 -110.5t191 -39q72 0 136.5 21.5t105.5 58.5v350h-285v141h440v-565 q-66 -68 -173 -112t-242 -44q-133 0 -244 47.5t-190.5 136.5t-125 219t-45.5 294z" />
52
+ <glyph unicode="G" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293z" />
56
53
  <glyph unicode="H" horiz-adv-x="1335" d="M184 0v1343h170v-563h625v563h172v-1343h-172v633h-625v-633h-170z" />
57
54
  <glyph unicode="I" horiz-adv-x="538" d="M184 0v1343h170v-1343h-170z" />
58
- <glyph unicode="J" horiz-adv-x="983" d="M63 190l123 86q45 -80 102.5 -115.5t129.5 -35.5q109 0 162 66.5t53 220.5v931h172v-948q0 -86 -21.5 -162.5t-65.5 -134t-115 -90.5t-169 -33q-252 0 -371 215z" />
55
+ <glyph unicode="J" horiz-adv-x="983" d="M63 190l123 86q84 -151 232 -151q109 0 162 68t53 219v931h172v-948q0 -71 -13 -132.5t-42 -115t-72 -91.5t-105 -59.5t-139 -21.5q-252 0 -371 215z" />
59
56
  <glyph unicode="K" horiz-adv-x="1185" d="M184 0v1343h170v-673h6l560 673h192l-420 -512l486 -831h-191l-401 698l-232 -272v-426h-170z" />
60
57
  <glyph unicode="L" horiz-adv-x="995" d="M184 0v1343h170v-1198h588v-145h-758z" />
61
- <glyph unicode="M" horiz-adv-x="1488" d="M184 0v1343h201l260 -720l98 -275h9l94 275l258 720h201v-1343h-162v739q0 90 7 199t15 199h-8l-108 -299l-258 -703h-97l-260 703l-106 299h-9q6 -90 14.5 -199t8.5 -199v-739h-158z" />
62
- <glyph unicode="N" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-6 102 -13 212t-7 216v694h162v-1343h-176l-488 846l-145 276h-8q8 -102 15 -207.5t7 -212.5v-702h-162z" />
63
- <glyph unicode="O" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5z" />
64
- <glyph unicode="P" horiz-adv-x="1179" d="M184 0v1343h412q111 0 203 -20t156.5 -66.5t100.5 -122t36 -186.5q0 -106 -36 -184t-101.5 -129t-156.5 -77t-202 -26h-242v-532h-170zM354 672h221q176 0 261.5 66.5t85.5 209.5q0 145 -86 201.5t-261 56.5h-221v-534z" />
65
- <glyph unicode="Q" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -145 -33.5 -265t-96 -209t-150.5 -145.5t-195 -74.5q47 -90 133 -133.5t197 -43.5q45 0 79 6.5t62 14.5l33 -133q-31 -10 -82 -20.5t-110 -10.5q-186 0 -311.5 89t-184.5 229 q-111 14 -201 69t-154.5 145.5t-99.5 212t-35 269.5zM283 678q0 -129 28.5 -232.5t80.5 -177t125 -112.5t163 -39t162.5 39t125 112.5t81 177t28.5 232.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5z" />
66
- <glyph unicode="R" horiz-adv-x="1189" d="M184 0v1343h420q102 0 189.5 -19t150 -64.5t97 -117t34.5 -175.5q0 -158 -82 -252t-219 -129l340 -586h-192l-324 567h-244v-567h-170zM354 707h226q158 0 241.5 64.5t83.5 195.5q0 133 -84 186t-241 53h-226v-499z" />
67
- <glyph unicode="S" horiz-adv-x="1093" d="M86 174l102 119q72 -76 169.5 -122t201.5 -46q133 0 207 60.5t74 158.5q0 51 -17.5 87t-47.5 61.5t-70.5 46t-88.5 43.5l-192 84q-47 20 -96 48.5t-88 69.5t-63.5 97.5t-24.5 130.5q0 76 31.5 141.5t88 113.5t133 74.5t168.5 26.5q121 0 223.5 -46t174.5 -120l-92 -110 q-61 59 -136 93t-170 34q-113 0 -181 -52.5t-68 -144.5q0 -49 19 -83t52 -59.5t72 -45t80 -35.5l190 -82q57 -25 108.5 -56.5t88.5 -73.5t58.5 -98.5t21.5 -130.5q0 -80 -32 -149.5t-91.5 -121.5t-143 -82t-190.5 -30q-141 0 -262 53.5t-209 145.5z" />
58
+ <glyph unicode="M" horiz-adv-x="1488" d="M184 0v1343h205l258 -716q16 -46 48 -140.5t48 -140.5h9q16 46 46 140.5t46 140.5l254 716h207v-1343h-160v739q0 71 22 398h-8l-106 -306l-254 -696h-113l-254 696l-106 306h-9q21 -312 21 -398v-739h-154z" />
59
+ <glyph unicode="N" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162z" />
60
+ <glyph unicode="O" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395z" />
61
+ <glyph unicode="P" horiz-adv-x="1159" d="M184 0v1343h383q117 0 206.5 -20.5t158 -66t104 -123t35.5 -185.5q0 -206 -133.5 -311t-362.5 -105h-221v-532h-170zM354 672h201q176 0 261 67t85 209t-85.5 200t-268.5 58h-193v-534z" />
62
+ <glyph unicode="Q" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -287 -129 -472t-346 -222q45 -87 132 -133t198 -46q71 0 141 19l33 -131q-79 -31 -192 -31q-179 0 -307 87.5t-189 232.5q-223 31 -356.5 217t-133.5 479zM283 678q0 -257 108 -409t289 -152t289 152 t108 409q0 249 -108 395t-289 146t-289 -146t-108 -395z" />
63
+ <glyph unicode="R" horiz-adv-x="1165" d="M184 0v1343h420q471 0 471 -376q0 -153 -80.5 -249.5t-222.5 -131.5l342 -586h-192l-324 567h-244v-567h-170zM354 707h226q158 0 241.5 65.5t83.5 194.5q0 128 -81 183.5t-244 55.5h-226v-499z" />
64
+ <glyph unicode="S" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -164 -125 -273.5t-332 -109.5q-138 0 -259.5 53t-211.5 146z" />
68
65
  <glyph unicode="T" horiz-adv-x="1097" d="M57 1200v143h983v-143h-405v-1200h-172v1200h-406z" />
69
- <glyph unicode="U" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -121 24.5 -203t66.5 -131t99.5 -70.5t123.5 -21.5q68 0 125 21.5t100 70.5t67.5 131t24.5 203v792h164v-788q0 -162 -37 -272.5t-101.5 -179t-152.5 -98.5t-190 -30t-191.5 30t-154 98.5t-101.5 179t-37 272.5z" />
70
- <glyph unicode="V" horiz-adv-x="1054" d="M0 1343h182l215 -725q37 -121 64.5 -223t66.5 -221h9q37 119 65.5 221.5t63.5 222.5l215 725h174l-426 -1343h-199z" />
71
- <glyph unicode="W" horiz-adv-x="1609" d="M47 1343h176l142 -731q18 -111 38.5 -217t38.5 -217h9q23 111 47 218.5t47 215.5l186 731h156l186 -731q25 -106 49.5 -214.5t48.5 -219.5h9q18 111 36.5 218.5t38.5 215.5l142 731h164l-279 -1343h-205l-203 809q-18 78 -33.5 152.5t-31.5 152.5h-8 q-16 -78 -33.5 -152.5t-34.5 -152.5l-198 -809h-203z" />
72
- <glyph unicode="X" horiz-adv-x="1050" d="M31 0l391 694l-365 649h189l182 -344q27 -47 50.5 -91t53.5 -103h9q29 59 50 103t46 91l178 344h180l-366 -657l391 -686h-189l-196 362q-27 49 -54.5 101.5t-60.5 114.5h-8q-29 -61 -55.5 -113.5t-50.5 -102.5l-195 -362h-180z" />
73
- <glyph unicode="Y" horiz-adv-x="974" d="M-2 1343h182l174 -378q33 -74 64 -145.5t65 -147.5h9q35 76 69.5 147.5t65.5 145.5l172 378h178l-404 -823v-520h-172v520z" />
66
+ <glyph unicode="U" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272z" />
67
+ <glyph unicode="V" horiz-adv-x="1054" d="M0 1343h182l215 -725q20 -65 61.5 -211t69.5 -233h9q28 91 71.5 244.5t57.5 199.5l215 725h174l-426 -1343h-199z" />
68
+ <glyph unicode="W" horiz-adv-x="1609" d="M47 1343h176l142 -731q12 -72 38 -217t39 -217h9q6 28 94 434l186 731h156l186 -731q19 -81 53.5 -234.5t44.5 -199.5h9q73 423 75 434l142 731h164l-279 -1343h-205l-203 809q-32 132 -65 305h-8q-12 -62 -38.5 -176t-29.5 -129l-198 -809h-203z" />
69
+ <glyph unicode="X" horiz-adv-x="1050" d="M31 0l391 694l-365 649h189l182 -344q24 -42 104 -194h9q64 134 96 194l178 344h180l-366 -657l391 -686h-189l-196 362q-10 19 -50 93.5t-65 122.5h-8q-39 -82 -106 -216l-195 -362h-180z" />
70
+ <glyph unicode="Y" horiz-adv-x="974" d="M-2 1343h182l174 -378q111 -254 129 -293h9q113 241 135 293l172 378h178l-404 -823v-520h-172v520z" />
74
71
  <glyph unicode="Z" horiz-adv-x="1103" d="M92 0v102l707 1098h-643v143h856v-100l-709 -1098h715v-145h-926z" />
75
72
  <glyph unicode="[" horiz-adv-x="620" d="M193 -311v1761h366v-96h-240v-1569h240v-96h-366z" />
76
73
  <glyph unicode="\" horiz-adv-x="716" d="M29 1454h121l546 -1782h-121z" />
77
74
  <glyph unicode="]" horiz-adv-x="620" d="M63 -215h238v1569h-238v96h365v-1761h-365v96z" />
78
75
  <glyph unicode="^" d="M123 582l311 790h150l311 -790h-147l-134 360l-100 272h-8l-103 -272l-133 -360h-147z" />
79
76
  <glyph unicode="_" horiz-adv-x="1024" d="M25 -145h974v-113h-974v113z" />
80
- <glyph unicode="`" horiz-adv-x="1110" d="M328 1462h176l184 -288h-129z" />
81
- <glyph unicode="a" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM285 270 q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87z" />
82
- <glyph unicode="b" horiz-adv-x="1136" d="M168 0v1458h168v-397l-4 -180q68 59 147.5 99t163.5 40q96 0 170 -36t124 -102.5t75.5 -159.5t25.5 -208q0 -127 -34.5 -227.5t-94 -170t-137.5 -105.5t-164 -36q-70 0 -144.5 32t-139.5 91h-7l-14 -98h-135zM336 221q66 -57 130 -80.5t114 -23.5q61 0 113 27.5t90 77.5 t59.5 124t21.5 166q0 82 -14 149.5t-46 115.5t-82 75t-120 27q-121 0 -266 -136v-522z" />
83
- <glyph unicode="c" horiz-adv-x="933" d="M94 496q0 125 39 222t104.5 164.5t152.5 102.5t183 35q98 0 169 -36t122 -83l-84 -108q-45 39 -93 63.5t-107 24.5q-68 0 -125.5 -28t-98.5 -79t-64.5 -121.5t-23.5 -156.5t22.5 -156t62.5 -120t97.5 -77.5t124.5 -27.5q72 0 130.5 29.5t103.5 70.5l76 -111 q-68 -59 -151 -94t-173 -35q-98 0 -184 35t-148.5 101.5t-98.5 164t-36 220.5z" />
84
- <glyph unicode="d" horiz-adv-x="1136" d="M96 496q0 121 36 218t95.5 164.5t137 104.5t163.5 37t149.5 -31t129.5 -84l-8 170v383h170v-1458h-140l-14 117h-6q-59 -57 -136 -99.5t-165 -42.5q-188 0 -300 135.5t-112 385.5zM270 498q0 -180 72 -280.5t203 -100.5q70 0 131 33.5t123 103.5v520q-63 57 -122 81 t-120 24q-59 0 -111.5 -28t-91.5 -78t-61.5 -119.5t-22.5 -155.5z" />
85
- <glyph unicode="e" horiz-adv-x="1015" d="M94 496q0 123 38 220t100.5 164.5t142.5 103.5t166 36q94 0 168.5 -33t125 -94.5t77 -147.5t26.5 -192q0 -55 -6 -92h-672q10 -162 99.5 -256t232.5 -94q72 0 132 21.5t116 55.5l59 -110q-66 -41 -145.5 -72t-182.5 -31q-100 0 -187 36t-151.5 102.5t-101.5 163 t-37 219.5zM258 571h533q0 154 -64.5 235t-181.5 81q-53 0 -101.5 -21.5t-87.5 -61.5t-64.5 -98.5t-33.5 -134.5z" />
86
- <glyph unicode="f" horiz-adv-x="598" d="M61 858v127l136 10v158q0 154 70.5 242t219.5 88q47 0 89 -9.5t77 -23.5l-37 -129q-55 25 -112 25q-139 0 -139 -193v-158h210v-137h-210v-858h-168v858h-136z" />
87
- <glyph unicode="g" horiz-adv-x="1032" d="M92 -190q0 63 39 120.5t107 104.5v8q-37 23 -62.5 62.5t-25.5 99.5q0 63 34.5 110t73.5 74v8q-49 41 -89 109.5t-40 159.5q0 82 29.5 147.5t81 111.5t120 70.5t144.5 24.5q41 0 76.5 -7t64.5 -18h346v-129h-205q35 -35 58.5 -88t23.5 -116q0 -80 -28.5 -144.5 t-77.5 -108.5t-115.5 -69t-142.5 -25q-37 0 -76 9.5t-74 25.5q-27 -23 -45 -50.5t-18 -68.5q0 -47 37 -77.5t139 -30.5h192q174 0 261.5 -56.5t87.5 -181.5q0 -70 -35 -132t-100.5 -109t-158.5 -75t-210 -28q-92 0 -168 17.5t-130 52.5t-84 84t-30 115zM240 -168 q0 -80 76.5 -127t211.5 -47q72 0 130.5 17.5t99.5 45t63.5 64.5t22.5 76q0 70 -51.5 96.5t-149.5 26.5h-172q-29 0 -62.5 3t-66.5 13q-53 -39 -77.5 -82t-24.5 -86zM293 666q0 -55 16.5 -99.5t46 -75t67.5 -47t81 -16.5t81 16.5t67.5 47t46 74.5t16.5 100q0 111 -61.5 171 t-149.5 60t-149.5 -60.5t-61.5 -170.5z" />
88
- <glyph unicode="h" horiz-adv-x="1114" d="M168 0v1458h168v-397l-6 -205q72 68 149.5 116t182.5 48q158 0 230.5 -98.5t72.5 -290.5v-631h-168v608q0 141 -45 203.5t-144 62.5q-78 0 -137 -38.5t-135 -114.5v-721h-168z" />
89
- <glyph unicode="i" horiz-adv-x="503" d="M137 1309q0 49 34 78.5t83 29.5t83 -29.5t34 -78.5q0 -47 -34 -78t-83 -31t-83 31t-34 78zM168 0v995h168v-995h-168z" />
90
- <glyph unicode="j" horiz-adv-x="505" d="M-82 -418l35 127q18 -6 42.5 -11t51.5 -5q74 0 98.5 51t24.5 143v1108h168v-1108q0 -152 -61.5 -241.5t-210.5 -89.5q-47 0 -84 8t-64 18zM139 1309q0 49 34 78.5t83 29.5q47 0 81 -29.5t34 -78.5q0 -47 -34 -78t-81 -31q-49 0 -83 31t-34 78z" />
77
+ <glyph unicode="`" horiz-adv-x="1110" d="M262 1487l119 112l289 -342l-86 -83z" />
78
+ <glyph unicode="a" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276 q-241 -30 -344 -90.5t-103 -159.5z" />
79
+ <glyph unicode="b" horiz-adv-x="1132" d="M168 0v1458h168v-397l-4 -180q156 139 311 139q190 0 292.5 -135.5t102.5 -370.5q0 -124 -35 -227t-95 -170.5t-137 -104.5t-163 -37q-69 0 -143.5 33.5t-140.5 93.5h-7l-14 -102h-135zM336 221q120 -104 244 -104q125 0 204.5 107t79.5 288q0 173 -63.5 270t-198.5 97 q-121 0 -266 -136v-522z" />
80
+ <glyph unicode="c" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-143 -127 -322 -127q-204 0 -335.5 140t-131.5 381z" />
81
+ <glyph unicode="d" horiz-adv-x="1136" d="M96 496q0 118 35.5 218t95.5 166t138 103t163 37q81 0 144 -28t135 -87l-8 170v383h170v-1458h-140l-14 117h-6q-146 -142 -301 -142q-190 0 -301 137.5t-111 383.5zM270 498q0 -179 72.5 -280t202.5 -101q132 0 254 137v520q-116 105 -242 105q-122 0 -204.5 -106.5 t-82.5 -274.5z" />
82
+ <glyph unicode="e" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM258 578h533q0 150 -64 229.5t-182 79.5 q-109 0 -191 -83t-96 -226z" />
83
+ <glyph unicode="f" horiz-adv-x="598" d="M61 858v127l136 10v158q0 157 72 243.5t218 86.5q83 0 166 -33l-37 -129q-58 25 -112 25q-139 0 -139 -193v-158h210v-137h-210v-858h-168v858h-136z" />
84
+ <glyph unicode="g" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172 t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5z" />
85
+ <glyph unicode="h" horiz-adv-x="1114" d="M168 0v1458h168v-397l-6 -205q82 78 160 121t172 43q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168z" />
86
+ <glyph unicode="i" horiz-adv-x="503" d="M137 1309q0 49 33.5 78.5t83.5 29.5t83.5 -29.5t33.5 -78.5q0 -47 -33.5 -78t-83.5 -31t-83.5 31t-33.5 78zM168 0v995h168v-995h-168z" />
87
+ <glyph unicode="j" horiz-adv-x="505" d="M-82 -418l35 127q50 -16 94 -16q70 0 96.5 48t26.5 146v1108h168v-1108q0 -160 -64.5 -245.5t-207.5 -85.5q-83 0 -148 26zM139 1309q0 49 33.5 78.5t83.5 29.5q49 0 82 -30t33 -78q0 -47 -33.5 -78t-81.5 -31q-50 0 -83.5 31t-33.5 78z" />
91
88
  <glyph unicode="k" horiz-adv-x="1013" d="M168 0v1458h166v-987h6l424 524h186l-334 -399l379 -596h-184l-291 479l-186 -217v-262h-166z" />
92
- <glyph unicode="l" horiz-adv-x="522" d="M168 201v1257h168v-1270q0 -41 14.5 -57t32.5 -16h15.5t21.5 4l22 -127q-16 -8 -38.5 -12.5t-57.5 -4.5q-96 0 -137 57.5t-41 168.5z" />
93
- <glyph unicode="m" horiz-adv-x="1697" d="M168 0v995h139l15 -143h6q66 72 142.5 120t166.5 48q115 0 179.5 -50t94.5 -141q78 86 157 138.5t171 52.5q154 0 228.5 -98.5t74.5 -290.5v-631h-168v608q0 141 -45 203.5t-139 62.5q-113 0 -250 -153v-721h-168v608q0 141 -45 203.5t-141 62.5q-113 0 -250 -153v-721 h-168z" />
94
- <glyph unicode="n" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q72 72 150.5 120t183.5 48q158 0 230.5 -98.5t72.5 -290.5v-631h-168v608q0 141 -45 203.5t-144 62.5q-78 0 -137 -38.5t-135 -114.5v-721h-168z" />
95
- <glyph unicode="o" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5z" />
96
- <glyph unicode="p" horiz-adv-x="1136" d="M168 -420v1415h139l15 -114h6q68 57 148.5 98t168.5 41q96 0 170 -36t123 -102.5t74.5 -159.5t25.5 -210q0 -127 -34.5 -226.5t-94 -169t-137.5 -105.5t-164 -36q-70 0 -138.5 31t-137.5 84l4 -174v-336h-168zM336 221q68 -57 131 -80.5t113 -23.5q61 0 113 27.5t90 77.5 t59.5 124t21.5 166q0 82 -14 149.5t-46 115.5t-82 75t-120 27q-63 0 -127.5 -35t-138.5 -101v-522z" />
97
- <glyph unicode="q" horiz-adv-x="1126" d="M96 496q0 121 36 218t95.5 164.5t137 104.5t163.5 37t151.5 -29.5t133.5 -89.5h4l17 94h135v-1415h-170v354l8 177q-59 -55 -136 -95.5t-163 -40.5q-188 0 -300 135.5t-112 385.5zM270 498q0 -180 72 -280.5t203 -100.5q70 0 131 33.5t123 103.5v520q-63 57 -122 81 t-120 24q-59 0 -111.5 -28t-91.5 -78t-61.5 -119.5t-22.5 -155.5z" />
98
- <glyph unicode="r" horiz-adv-x="710" d="M168 0v995h139l15 -180h6q51 94 123.5 149.5t158.5 55.5q59 0 107 -21l-33 -147q-25 8 -45.5 12t-50.5 4q-63 0 -132 -51t-120 -178v-639h-168z" />
99
- <glyph unicode="s" horiz-adv-x="858" d="M57 113l84 112q66 -53 134.5 -86t158.5 -33q98 0 147.5 45.5t49.5 110.5q0 39 -20.5 67.5t-52.5 50t-73 38t-82 33.5q-53 18 -106 41.5t-95 57.5t-69 79t-27 108q0 59 24 111.5t68 90.5t107.5 59.5t143.5 21.5q94 0 172.5 -33t136.5 -80l-80 -106q-51 39 -106.5 63.5 t-120.5 24.5q-94 0 -138.5 -43t-44.5 -101q0 -35 18.5 -60.5t49.5 -44.5t70.5 -34.5t82.5 -32.5q53 -20 107.5 -42.5t97.5 -56.5t71 -83t28 -119q0 -61 -24 -114.5t-70 -94t-114.5 -64.5t-156.5 -24q-106 0 -202.5 39t-168.5 99z" />
100
- <glyph unicode="t" horiz-adv-x="692" d="M49 858v127l156 10l20 279h142v-279h268v-137h-268v-553q0 -92 33.5 -142t119.5 -50q27 0 57.5 8t55.5 18l33 -127q-41 -14 -89.5 -25.5t-95.5 -11.5q-80 0 -134 25t-88 68t-48 104t-14 135v551h-148z" />
101
- <glyph unicode="u" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -141 44 -203.5t142 -62.5q78 0 137.5 40t130.5 128v706h168v-995h-139l-14 156h-7q-70 -82 -146.5 -131.5t-180.5 -49.5q-160 0 -232.5 98.5t-72.5 291.5z" />
102
- <glyph unicode="v" horiz-adv-x="956" d="M25 995h174l188 -565q23 -74 46.5 -147.5t45.5 -145.5h8q23 72 45.5 145.5t45.5 147.5l188 565h166l-352 -995h-197z" />
103
- <glyph unicode="w" horiz-adv-x="1470" d="M49 995h172l148 -575q16 -72 30.5 -139.5t28.5 -137.5h8q16 70 32.5 138.5t35.5 138.5l153 575h164l156 -575q18 -72 35.5 -139.5t34.5 -137.5h8q16 70 30.5 137.5t30.5 139.5l146 575h159l-266 -995h-205l-143 535q-18 72 -33.5 141t-34.5 145h-8q-16 -76 -32.5 -146.5 t-36.5 -142.5l-140 -532h-196z" />
104
- <glyph unicode="x" horiz-adv-x="913" d="M29 0l325 520l-301 475h183l133 -219q23 -41 47 -83t51 -83h8q23 41 45.5 83t44.5 83l121 219h176l-301 -493l324 -502h-183l-145 231q-27 45 -53.5 90.5t-54.5 88.5h-9q-27 -43 -51 -87t-49 -92l-135 -231h-176z" />
105
- <glyph unicode="y" horiz-adv-x="956" d="M25 995h174l202 -551q23 -66 48.5 -138.5t48.5 -141.5h8q23 68 43 141.5t41 138.5l178 551h164l-375 -1077q-27 -74 -59.5 -137.5t-77.5 -109.5t-102.5 -72.5t-133.5 -26.5q-35 0 -63.5 5t-52.5 15l32 134q16 -4 37 -9.5t39 -5.5q86 0 140.5 60.5t84.5 152.5l23 74z" />
89
+ <glyph unicode="l" horiz-adv-x="522" d="M168 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l22 -127q-39 -17 -96 -17q-93 0 -135.5 57t-42.5 169z" />
90
+ <glyph unicode="m" horiz-adv-x="1697" d="M168 0v995h139l15 -143h6q154 168 309 168q208 0 274 -191q85 93 164 142t164 49q303 0 303 -389v-631h-168v608q0 138 -45 202t-139 64q-112 0 -250 -153v-721h-168v608q0 139 -45 202.5t-141 63.5q-112 0 -250 -153v-721h-168z" />
91
+ <glyph unicode="n" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168z" />
92
+ <glyph unicode="o" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM268 496q0 -170 79.5 -275.5t207.5 -105.5 q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
93
+ <glyph unicode="p" horiz-adv-x="1136" d="M168 -420v1415h139l15 -114h6q165 139 317 139q189 0 291 -136t102 -372q0 -123 -35 -226t-94.5 -170t-137 -104t-163.5 -37q-129 0 -276 115l4 -174v-336h-168zM336 221q123 -104 244 -104q125 0 204.5 107t79.5 288q0 173 -63.5 270t-198.5 97q-115 0 -266 -136v-522z " />
94
+ <glyph unicode="q" horiz-adv-x="1136" d="M96 496q0 118 35.5 218t95.5 166t138 103t163 37q83 0 148.5 -28.5t136.5 -90.5h4l17 94h135v-1415h-170v354l8 181q-144 -140 -299 -140q-190 0 -301 137.5t-111 383.5zM270 498q0 -179 72.5 -280t202.5 -101q132 0 254 137v520q-116 105 -242 105q-122 0 -204.5 -106.5 t-82.5 -274.5z" />
95
+ <glyph unicode="r" horiz-adv-x="710" d="M168 0v995h139l15 -180h6q52 96 125.5 150.5t156.5 54.5q58 0 107 -21l-33 -147q-53 16 -96 16q-69 0 -136.5 -55.5t-115.5 -173.5v-639h-168z" />
96
+ <glyph unicode="s" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -127 -97 -212t-268 -85q-101 0 -199 38t-172 100z" />
97
+ <glyph unicode="t" horiz-adv-x="692" d="M49 858v127l156 10l20 279h142v-279h268v-137h-268v-553q0 -97 35 -144.5t118 -47.5q42 0 113 26l33 -127q-113 -37 -185 -37q-152 0 -218 87t-66 245v551h-148z" />
98
+ <glyph unicode="u" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390z" />
99
+ <glyph unicode="v" horiz-adv-x="956" d="M25 995h174l188 -565q40 -137 92 -293h8q7 22 40.5 129t50.5 164l188 565h166l-352 -995h-197z" />
100
+ <glyph unicode="w" horiz-adv-x="1470" d="M49 995h172l148 -575q24 -98 59 -277h8q6 25 29.5 124.5t38.5 152.5l153 575h164l156 -575q12 -47 70 -277h8q14 55 61 277l146 575h159l-266 -995h-205l-143 535q-14 51 -35.5 147.5t-32.5 138.5h-8q-56 -245 -69 -289l-140 -532h-196z" />
101
+ <glyph unicode="x" horiz-adv-x="913" d="M29 0l325 520l-301 475h183l133 -219q87 -148 98 -166h8q65 123 90 166l121 219h176l-301 -493l324 -502h-183l-145 231q-87 147 -108 179h-9q-27 -43 -100 -179l-135 -231h-176z" />
102
+ <glyph unicode="y" horiz-adv-x="956" d="M25 995h174l202 -551q41 -113 97 -280h8q16 51 45 150t39 130l178 551h164l-375 -1077q-28 -79 -60 -138t-76.5 -108t-104 -74.5t-132.5 -25.5q-61 0 -116 20l32 134q50 -15 76 -15q154 0 225 213l23 74z" />
106
103
  <glyph unicode="z" horiz-adv-x="870" d="M63 0v90l525 768h-467v137h680v-90l-525 -768h541v-137h-754z" />
107
- <glyph unicode="{" horiz-adv-x="620" d="M70 516v107q51 0 85.5 14t54 35.5t28 50.5t8.5 57q0 104 -9.5 194.5t-9.5 203.5q0 158 59.5 215t180.5 57h92v-96h-55q-84 0 -111.5 -43t-27.5 -144q0 -94 6 -180t6 -190q0 -100 -29 -152.5t-94 -71.5v-8q66 -18 94.5 -71.5t28.5 -151.5q0 -104 -6 -190t-6 -181 q0 -100 27.5 -143t111.5 -43h55v-96h-92q-121 0 -180.5 57t-59.5 215q0 55 3 105.5t6.5 97.5t6.5 94t3 98q0 31 -8.5 58.5t-28 50t-54 37t-85.5 14.5z" />
104
+ <glyph unicode="{" horiz-adv-x="620" d="M70 516v107q50 1 86 14t54.5 36t27 49.5t8.5 57.5q0 68 -9.5 195t-9.5 203q0 153 57 212.5t183 59.5h92v-96h-55q-81 0 -110 -42t-29 -145q0 -61 6 -180t6 -190q0 -100 -28.5 -152.5t-94.5 -71.5v-8q66 -19 94.5 -71.5t28.5 -151.5q0 -71 -6 -190.5t-6 -180.5 q0 -103 29 -144.5t110 -41.5h55v-96h-92q-126 0 -183 59.5t-57 212.5q0 77 9.5 202.5t9.5 192.5q0 157 -176 160z" />
108
105
  <glyph unicode="|" horiz-adv-x="493" d="M188 -512v2048h119v-2048h-119z" />
109
- <glyph unicode="}" horiz-adv-x="620" d="M63 -215h54q84 0 111.5 43t27.5 143q0 94 -5 180.5t-5 190.5q0 98 27.5 151.5t93.5 71.5v8q-66 18 -93.5 70.5t-27.5 153.5q0 104 5 190t5 180q0 100 -27.5 143.5t-111.5 43.5h-54v96h91q61 0 106 -13.5t75 -44t44 -83t14 -131.5q0 -113 -9 -203t-9 -195q0 -59 37 -107 t139 -50v-107q-51 0 -85 -14.5t-54.5 -37t-28.5 -50t-8 -58.5q0 -51 3 -98l6 -94t6 -97.5t3 -105.5q0 -80 -14 -132t-44 -83t-75 -44t-106 -13h-91v96z" />
110
- <glyph unicode="~" d="M74 641q55 98 122.5 141t133.5 43q61 0 109 -26.5t90 -59t81 -59.5t82 -27q45 0 84 30t74 95l94 -69q-55 -98 -122.5 -140.5t-133.5 -42.5q-61 0 -109.5 27t-90.5 59.5t-80.5 59t-81.5 26.5q-45 0 -84 -29.5t-74 -95.5z" />
111
- <glyph unicode="&#xa1;" horiz-adv-x="591" d="M174 893q0 55 36 91t87 36q49 0 85 -36t36 -91q0 -59 -36 -95t-85 -36q-51 0 -87 36t-36 95zM211 -377l4 193l23 774h116l23 -774l4 -193h-170z" />
112
- <glyph unicode="&#xa2;" d="M125 635q0 106 31.5 190t87 145.5t131.5 99.5t162 50v217h106v-211q90 -4 155.5 -38.5t112.5 -79.5l-82 -107q-41 37 -87 59.5t-99 26.5v-704q66 4 119 31.5t94 64.5l74 -107q-59 -53 -133 -87.5t-154 -41.5v-211h-106v213q-92 10 -168 48t-130.5 99.5t-84 147.5 t-29.5 195zM293 635q0 -137 63.5 -227.5t180.5 -116.5v686q-113 -27 -178.5 -117t-65.5 -225z" />
113
- <glyph unicode="&#xa3;" d="M109 584v106l137 8h37q-20 66 -38 128.5t-18 127.5q0 86 28 156t78 119t119.5 75.5t155.5 26.5q111 0 187.5 -44t130.5 -109l-99 -97q-39 47 -88 78t-118 31q-111 0 -169.5 -66.5t-58.5 -173.5q0 -66 15.5 -126t33.5 -126h326v-114h-299q4 -29 7 -56.5t3 -58.5 q0 -109 -32.5 -180.5t-94.5 -134.5v-9h576v-145h-817v102q104 57 160.5 154.5t56.5 214.5q0 29 -4.5 56.5t-10.5 56.5h-204z" />
114
- <glyph unicode="&#xa4;" d="M53 303l131 133q-35 47 -54 106.5t-19 131.5t19.5 132t53.5 107l-131 136l90 92l140 -144q98 76 227 76q59 0 118.5 -19.5t106.5 -56.5l139 144l91 -92l-134 -136q35 -47 55.5 -107.5t20.5 -131.5q0 -72 -20.5 -131.5t-55.5 -106.5l134 -133l-91 -92l-139 141 q-47 -39 -106.5 -58.5t-118.5 -19.5q-131 0 -227 78l-140 -141zM266 674q0 -61 19.5 -111.5t52.5 -87.5t78 -56.5t94 -19.5t93 19.5t77 56.5t52.5 87t19.5 112q0 61 -19.5 111.5t-52.5 87t-77 56t-93 19.5t-94 -19.5t-78 -56t-52.5 -87t-19.5 -111.5z" />
115
- <glyph unicode="&#xa5;" d="M47 1307h176l160 -351q31 -68 60.5 -136t62.5 -140h8q35 72 64.5 140.5t60.5 135.5l160 351h172l-336 -656h291v-96h-334v-133h334v-98h-334v-324h-168v324h-332v98h332v133h-332v96h289z" />
106
+ <glyph unicode="}" horiz-adv-x="620" d="M63 -215h54q81 0 110 41.5t29 144.5q0 61 -5 180.5t-5 190.5q0 99 28 151.5t93 71.5v8q-65 19 -93 71t-28 153q0 71 5 190t5 180q0 103 -29 145t-110 42h-54v96h91q127 0 183 -59t56 -213q0 -76 -9 -203t-9 -195q0 -67 40.5 -111.5t135.5 -45.5v-107q-65 -1 -106 -25 t-55.5 -57.5t-14.5 -77.5q0 -67 9 -192.5t9 -202.5q0 -154 -56 -213t-183 -59h-91v96z" />
107
+ <glyph unicode="~" d="M74 641q53 94 119.5 139t136.5 45q45 0 88 -17.5t77 -43t66 -51t66 -43t65 -17.5q91 0 158 125l94 -69q-53 -93 -119.5 -138t-136.5 -45q-45 0 -88 17.5t-77 43t-66 51t-66 43t-65 17.5q-91 0 -158 -125z" />
108
+ <glyph unicode="&#xa1;" horiz-adv-x="591" d="M174 893q0 55 35.5 91t87.5 36q50 0 85.5 -36t35.5 -91q0 -57 -35 -94t-86 -37q-52 0 -87.5 36.5t-35.5 94.5zM211 -377l4 193l23 774h116l23 -774l4 -193h-170z" />
109
+ <glyph unicode="&#xa2;" d="M125 635q0 205 115.5 332t296.5 153v217h106v-211q150 -8 268 -118l-82 -107q-91 81 -186 86v-704q114 8 213 96l74 -107q-130 -117 -287 -129v-211h-106v213q-188 22 -300 150t-112 340zM293 635q0 -137 64.5 -227.5t179.5 -116.5v686q-113 -26 -178.5 -117t-65.5 -225z " />
110
+ <glyph unicode="&#xa3;" d="M109 584v106l137 8h37q-1 4 -8.5 28t-9.5 30t-8.5 27t-8.5 29.5t-6.5 27t-6 29.5t-4 27t-3.5 30t-1 28q0 172 105 274.5t276 102.5q193 0 318 -153l-99 -97q-88 109 -206 109q-108 0 -168 -66t-60 -174q0 -40 8 -88t16 -76.5t25 -87.5h326v-114h-299q10 -62 10 -115 q0 -103 -31 -176t-96 -139v-9h576v-145h-817v102q103 56 160 154t57 215q0 44 -15 113h-204z" />
111
+ <glyph unicode="&#xa4;" d="M53 303l131 133q-73 98 -73 238q0 141 73 239l-131 136l90 92l140 -144q98 76 227 76q127 0 225 -76l139 144l91 -92l-134 -136q76 -102 76 -239q0 -136 -76 -238l134 -133l-91 -92l-139 141q-96 -78 -225 -78q-131 0 -227 78l-140 -141zM266 674q0 -121 71 -198t173 -77 q101 0 171.5 77.5t70.5 197.5t-70.5 197t-171.5 77q-102 0 -173 -77t-71 -197z" />
112
+ <glyph unicode="&#xa5;" d="M47 1307h176l160 -351q23 -51 65.5 -147t57.5 -129h8q26 56 70.5 154.5t54.5 121.5l160 351h172l-336 -656h291v-96h-334v-133h334v-98h-334v-324h-168v324h-332v98h332v133h-332v96h289z" />
116
113
  <glyph unicode="&#xa6;" horiz-adv-x="493" d="M188 438h119v-950h-119v950zM188 596v940h119v-940h-119z" />
117
- <glyph unicode="&#xa7;" d="M92 702q0 90 49 156t127 109q-31 33 -48 73.5t-17 94.5q0 53 19.5 101t59.5 85t97 58.5t135 21.5q98 0 177 -35t138 -82l-81 -108q-49 41 -104.5 67.5t-123.5 26.5q-86 0 -124 -38t-38 -91q0 -55 42 -92t105.5 -68t136.5 -61.5t136.5 -74.5t105.5 -106.5t42 -156.5 q0 -98 -48.5 -159t-125.5 -106q29 -35 45 -74.5t16 -92.5q0 -61 -24.5 -112.5t-68.5 -88.5t-104.5 -58.5t-132.5 -21.5q-111 0 -200.5 39t-153.5 106l102 92q51 -49 110.5 -77.5t141.5 -28.5t128 41t46 100q0 57 -42 96t-104 70t-136 60.5t-136.5 72.5t-104.5 105.5 t-42 156.5zM240 713q0 -68 41 -112t103 -76.5t135 -62.5t136 -67q59 29 91 68t32 106q0 70 -41 115t-102.5 79t-134 62.5t-135.5 65.5q-59 -33 -92 -74t-33 -104z" />
118
- <glyph unicode="&#xa8;" horiz-adv-x="1110" d="M279 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM631 1305q0 43 28.5 71.5t71.5 28.5q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
119
- <glyph unicode="&#xa9;" horiz-adv-x="1523" d="M100 662q0 156 53.5 280.5t143.5 212.5t211 135t254 47t253 -47t211 -135t144 -213t53 -280q0 -158 -53 -284t-144 -215t-211 -137.5t-253 -48.5t-254 48.5t-211 137.5t-143.5 215t-53.5 284zM197 662q0 -135 45 -245t121.5 -188.5t179 -122t219.5 -43.5t219 43.5 t179 122t122 188t45 245.5q0 133 -45 242.5t-122 187t-179 119.5t-219 42t-219.5 -42t-179 -119.5t-121.5 -187t-45 -242.5zM406 662q0 88 31.5 159.5t83.5 122.5t121 78t142 27q86 0 146.5 -34t109.5 -83l-71 -80q-41 41 -83 62.5t-95 21.5q-113 0 -181.5 -77t-68.5 -197 q0 -135 66.5 -214t176.5 -79q66 0 115 25.5t94 64.5l62 -86q-57 -49 -121 -83t-156 -34q-78 0 -145.5 27.5t-118.5 80t-79.5 127.5t-28.5 171z" />
120
- <glyph unicode="&#xaa;" horiz-adv-x="706" d="M76 723q0 109 97 165t310 77q-2 66 -28.5 108.5t-98.5 42.5q-53 0 -109.5 -21.5t-96.5 -47.5l-48 86q51 33 122 60.5t151 27.5q123 0 179 -72t56 -203v-401h-102l-14 76h-9q-41 -37 -92 -65t-114 -28q-92 0 -147.5 53.5t-55.5 141.5zM201 733q0 -53 30.5 -77.5 t83.5 -24.5q80 0 168 82v174q-158 -18 -220 -57t-62 -97z" />
121
- <glyph unicode="&#xab;" horiz-adv-x="878" d="M92 453v127l279 317l73 -61l-241 -320l241 -323l-73 -58zM416 453v127l279 317l73 -61l-241 -320l241 -323l-73 -58z" />
114
+ <glyph unicode="&#xa7;" d="M92 702q0 85 47.5 152.5t128.5 112.5q-65 68 -65 168q0 112 82 189t229 77q170 0 315 -117l-81 -108q-117 94 -228 94q-82 0 -122 -36t-40 -93q0 -44 31.5 -80t81.5 -62t110.5 -51.5t121 -57t110.5 -70.5t81.5 -100t31.5 -138q0 -91 -45 -154t-129 -111q61 -70 61 -167 q0 -122 -93 -201.5t-237 -79.5q-107 0 -198.5 38t-155.5 107l102 92q109 -106 252 -106q80 0 127 40.5t47 100.5q0 47 -31 84t-81 63.5t-110.5 51.5t-120.5 56t-110 69.5t-81 99t-31 137.5zM240 713q0 -51 25.5 -91.5t73 -70.5t95.5 -52t114 -51t107 -53q63 29 93 69t30 105 q0 44 -19.5 81t-49 62t-74.5 50t-86.5 42.5t-94.5 41.5t-89 45q-62 -34 -93.5 -76t-31.5 -102z" />
115
+ <glyph unicode="&#xa8;" horiz-adv-x="1110" d="M256 1305q0 43 29 72.5t73 29.5q43 0 72 -29.5t29 -72.5t-29 -73t-72 -30q-44 0 -73 30t-29 73zM651 1305q0 43 29 72.5t72 29.5q44 0 73 -29.5t29 -72.5t-29 -73t-73 -30q-43 0 -72 30t-29 73z" />
116
+ <glyph unicode="&#xa9;" horiz-adv-x="1523" d="M100 662q0 152 53.5 280.5t144 214t211 133t253.5 47.5t253 -47.5t211 -133t144 -214t53 -280.5q0 -153 -53.5 -283t-143.5 -217t-210.5 -136t-253.5 -49t-253.5 49t-211 136t-144 217t-53.5 283zM197 662q0 -131 45 -244t121.5 -190t180 -121t218.5 -44t218.5 44 t180 121t121.5 190t45 244q0 130 -45 242t-121.5 187.5t-180 118.5t-218.5 43t-218.5 -43t-180 -118.5t-121.5 -187.5t-45 -242zM406 662q0 173 111.5 280t266.5 107q80 0 140 -30.5t116 -86.5l-71 -80q-87 84 -178 84q-112 0 -181 -76.5t-69 -197.5q0 -135 66 -214t177 -79 q105 0 209 90l62 -86q-66 -57 -129 -87t-148 -30q-160 0 -266 110t-106 296z" />
117
+ <glyph unicode="&#xaa;" horiz-adv-x="706" d="M76 985q0 107 97 164.5t310 79.5q-3 149 -127 149q-98 0 -206 -69l-48 88q143 86 273 86q235 0 235 -273v-401h-102l-14 76h-9q-103 -92 -206 -92q-91 0 -147 52.5t-56 139.5zM201 995q0 -102 114 -102q80 0 168 82v174q-152 -17 -217 -55.5t-65 -98.5z" />
118
+ <glyph unicode="&#xab;" horiz-adv-x="878" d="M92 453v127l279 317l73 -61l-241 -320l241 -323l-73 -58zM416 453v127l278 317l74 -61l-242 -320l242 -323l-74 -58z" />
122
119
  <glyph unicode="&#xac;" d="M70 612v127h878v-526h-135v399h-743z" />
123
120
  <glyph unicode="&#xad;" horiz-adv-x="636" d="M84 449v129h471v-129h-471z" />
124
- <glyph unicode="&#xae;" horiz-adv-x="866" d="M47 1057q0 90 31 163.5t83 127t121.5 83t149.5 29.5t150.5 -29.5t123 -83t83 -127t30.5 -163.5t-30.5 -164t-83 -127t-123 -83t-150.5 -30t-149.5 30t-121.5 83t-83 127t-31 164zM129 1057q0 -74 23.5 -134.5t63.5 -103.5t95 -66.5t121 -23.5q63 0 119.5 23.5t97.5 66.5 t64.5 103.5t23.5 134.5q0 72 -23.5 132t-64.5 104t-97 68.5t-120 24.5q-66 0 -121 -24.5t-95 -68.5t-63.5 -104.5t-23.5 -131.5zM285 854v416h155q66 0 113 -30t47 -103q0 -37 -20.5 -69t-55.5 -44l94 -170h-94l-71 143h-84v-143h-84zM369 1063h53q88 0 88 70q0 31 -18.5 49 t-65.5 18h-57v-137z" />
125
- <glyph unicode="&#xaf;" horiz-adv-x="1110" d="M303 1231v117h504v-117h-504z" />
126
- <glyph unicode="&#xb0;" horiz-adv-x="677" d="M84 1139q0 61 20.5 109t56.5 83t82 53.5t97 18.5t97 -18.5t82 -53.5t56.5 -83t20.5 -109q0 -59 -20.5 -107.5t-56.5 -82.5t-82 -52t-97 -18t-97 18t-82 52t-56.5 82t-20.5 108zM186 1139q0 -72 43 -119t111 -47t111 47t43 119q0 76 -43 123t-111 47t-111 -47.5 t-43 -122.5z" />
121
+ <glyph unicode="&#xae;" horiz-adv-x="866" d="M47 1057q0 177 111.5 290t273.5 113q163 0 275 -113t112 -290t-112 -290.5t-275 -113.5q-161 0 -273 113.5t-112 290.5zM129 1057q0 -145 86.5 -236.5t216.5 -91.5q131 0 218 91.5t87 236.5q0 143 -87.5 236t-217.5 93t-216.5 -92.5t-86.5 -236.5zM285 854v416h155 q71 0 115.5 -32t44.5 -101q0 -37 -21.5 -69t-54.5 -44l94 -170h-94l-71 143h-84v-143h-84zM369 1063h53q42 0 65 18t23 52q0 67 -84 67h-57v-137z" />
122
+ <glyph unicode="&#xaf;" horiz-adv-x="1110" d="M283 1231v117h544v-117h-544z" />
123
+ <glyph unicode="&#xb0;" horiz-adv-x="677" d="M84 1139q0 118 75 191t181 73t181 -73t75 -191q0 -115 -75 -187.5t-181 -72.5t-181 72.5t-75 187.5zM186 1139q0 -72 43.5 -119t110.5 -47t110.5 47t43.5 119q0 75 -43 122.5t-111 47.5t-111 -47.5t-43 -122.5z" />
127
124
  <glyph unicode="&#xb1;" d="M70 0v127h878v-127h-878zM70 623v127h372v389h133v-389h373v-127h-373v-363h-133v363h-372z" />
128
- <glyph unicode="&#xb2;" horiz-adv-x="751" d="M82 1569q47 70 115.5 112.5t150.5 42.5q121 0 193.5 -65.5t72.5 -192.5q0 -57 -22.5 -110.5t-62.5 -107.5t-94 -111.5t-118 -122.5h338v-113h-549v76q92 84 164 150.5t119 121.5t71.5 103.5t24.5 93.5q0 78 -41 123t-112 45q-51 0 -94 -34t-78 -83z" />
129
- <glyph unicode="&#xb3;" horiz-adv-x="751" d="M72 1032l88 68q37 -55 88 -87t114 -32q66 0 113 37t47 106q0 70 -65.5 106t-182.5 36v84q104 0 161 40.5t57 102.5q0 57 -40 92t-106 35q-45 0 -86 -27.5t-76 -68.5l-80 69q53 59 116 95t147 36q51 0 97 -14t81 -42t55.5 -68t20.5 -91q0 -72 -39 -120t-101 -76 q68 -16 120 -66.5t52 -130.5q0 -55 -22.5 -99t-61.5 -76t-91 -48.5t-109 -16.5q-98 0 -174 44t-123 112z" />
130
- <glyph unicode="&#xb4;" horiz-adv-x="1110" d="M422 1174l184 288h176l-231 -288h-129z" />
131
- <glyph unicode="&#xb5;" horiz-adv-x="1126" d="M168 -410v1405h168v-608q0 -141 45 -203.5t143 -62.5q78 0 136.5 40t130.5 128v706h167v-995h-139l-14 156h-4q-59 -80 -130 -126t-157 -46q-59 0 -106.5 17t-81.5 71l10 -185v-297h-168z" />
132
- <glyph unicode="&#xb6;" horiz-adv-x="1146" d="M84 907q0 121 37 204t103.5 135t156.5 74.5t197 22.5h90v-880h-68q-111 0 -206 25.5t-163.5 80t-107.5 138.5t-39 200zM778 -164v1507h172v-1507h-172z" />
133
- <glyph unicode="&#xb7;" horiz-adv-x="509" d="M133 657q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91z" />
134
- <glyph unicode="&#xb8;" horiz-adv-x="1110" d="M393 -352q82 10 132 33.5t50 64.5t-33.5 62.5t-95.5 37.5l82 160h109l-52 -108q49 -16 85 -49t36 -97q0 -45 -24.5 -77.5t-65.5 -55t-95 -36t-112 -19.5z" />
135
- <glyph unicode="&#xb9;" horiz-adv-x="751" d="M178 1532v86q68 12 113 31.5t86 50.5h106v-799h-131v631h-174z" />
136
- <glyph unicode="&#xba;" horiz-adv-x="747" d="M61 874q0 82 25 146.5t68 109t99 68t120 23.5q63 0 119.5 -23.5t99.5 -68t67.5 -109t24.5 -146.5t-24.5 -146t-67.5 -108.5t-99.5 -68t-119.5 -23.5t-119.5 23.5t-99.5 68t-68 109t-25 145.5zM190 874q0 -109 48.5 -175t134.5 -66t133 66.5t47 174.5q0 111 -47 176.5 t-133 65.5t-134.5 -65.5t-48.5 -176.5z" />
137
- <glyph unicode="&#xbb;" horiz-adv-x="878" d="M111 193l241 323l-241 320l71 61l281 -317v-127l-281 -318zM435 193l241 323l-241 320l71 61l281 -317v-127l-281 -318z" />
138
- <glyph unicode="&#xbc;" horiz-adv-x="1599" d="M131 1176v86q68 12 113 31.5t86 50.5h106v-799h-131v631h-174zM369 -25l741 1393h115l-741 -1393h-115zM932 213v68l336 518h147v-492h119v-94h-119v-213h-118v213h-365zM1069 307h228v144l8 223h-8l-103 -166z" />
139
- <glyph unicode="&#xbd;" horiz-adv-x="1654" d="M131 1176v86q68 12 113 31.5t86 50.5h106v-799h-131v631h-174zM326 -25l741 1393h115l-741 -1393h-115zM985 668q47 70 115.5 112.5t150.5 42.5q121 0 193.5 -65.5t72.5 -192.5q0 -57 -22.5 -110.5t-62.5 -107.5t-94 -111.5t-118 -122.5h338v-113h-549v76 q92 84 164 150.5t119 121.5t71.5 103.5t24.5 93.5q0 78 -41 123t-112 45q-51 0 -94 -34t-78 -83z" />
140
- <glyph unicode="&#xbe;" horiz-adv-x="1630" d="M72 676l88 68q37 -55 88 -87t114 -32q66 0 113 37t47 106q0 70 -65.5 106t-182.5 36v84q104 0 161 40.5t57 102.5q0 57 -40 92t-106 35q-45 0 -86 -27.5t-76 -68.5l-80 69q53 59 116 95t147 36q51 0 97 -14t81 -42t55.5 -68t20.5 -91q0 -72 -39 -120t-101 -76 q68 -16 120 -66.5t52 -130.5q0 -55 -22.5 -99t-61.5 -76t-91 -48.5t-109 -16.5q-98 0 -174 44t-123 112zM444 -25l741 1393h115l-741 -1393h-115zM963 213v68l336 518h147v-492h119v-94h-119v-213h-118v213h-365zM1100 307h228v144l8 223h-8l-103 -166z" />
141
- <glyph unicode="&#xbf;" horiz-adv-x="870" d="M98 -74q0 68 24.5 123t60.5 104.5t76 97.5t73 99t51 109.5t10 130.5h150q10 -80 -6.5 -144.5t-47 -119t-70.5 -101.5t-75 -93t-58.5 -94t-23.5 -101q0 -82 49 -139.5t150 -57.5q68 0 127 30.5t106 86.5l99 -88q-66 -72 -150 -121t-194 -49q-160 0 -255.5 87t-95.5 240z M342 893q0 55 36 91t87 36q49 0 85 -36t36 -91q0 -59 -36 -95t-85 -36q-51 0 -87 36t-36 95z" />
142
- <glyph unicode="&#xc0;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM287 1675h192l180 -229h-141zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5z" />
143
- <glyph unicode="&#xc1;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5zM451 1446l180 229h192l-231 -229h-141z" />
144
- <glyph unicode="&#xc2;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM276 1446l197 229h164l197 -229h-138l-137 139h-8l-137 -139h-138zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5z" />
145
- <glyph unicode="&#xc3;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM258 1456q10 96 55 158.5t119 62.5q41 0 74 -16t60.5 -36.5t54 -37t55.5 -16.5t51.5 27.5t30.5 78.5h94q-10 -94 -55 -157.5t-119 -63.5q-41 0 -74 16.5t-60.5 37t-54 37t-55.5 16.5t-51.5 -27t-30.5 -80 h-94zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5z" />
146
- <glyph unicode="&#xc4;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM279 1565q0 45 27.5 72.5t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5 t-69.5 -223.5zM631 1565q0 45 28.5 72.5t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
147
- <glyph unicode="&#xc5;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-37 113 -69.5 224t-65.5 228h-8q-31 -117 -63.5 -228.5t-69.5 -223.5zM365 1612q0 82 53 131t137 49q82 0 136 -49t54 -131q0 -84 -54 -132t-136 -48q-84 0 -137 48t-53 132z M457 1612q0 -51 28.5 -79t69.5 -28q39 0 67.5 28t28.5 79q0 47 -28.5 75.5t-67.5 28.5q-41 0 -69.5 -28.5t-28.5 -75.5z" />
148
- <glyph unicode="&#xc6;" horiz-adv-x="1683" d="M16 0l705 1343h842v-143h-570v-422h475v-145h-475v-488h590v-145h-762v391h-422l-202 -391h-181zM469 528h352v680h-8q-109 -219 -219 -438z" />
149
- <glyph unicode="&#xc7;" horiz-adv-x="1169" d="M106 672q0 162 45.5 291t125 219t189 138t239.5 48q123 0 215 -50t151 -116l-96 -108q-53 57 -117.5 91t-150.5 34q-96 0 -174 -38t-133.5 -109t-86 -171t-30.5 -225q0 -127 29.5 -228.5t83 -173t130 -110.5t172.5 -39q98 0 171 39t139 110l96 -104 q-80 -92 -180.5 -143.5t-229.5 -51.5q-127 0 -234.5 47.5t-186 136.5t-123 219t-44.5 294zM528 -352q82 10 132 33.5t50 64.5t-33.5 62.5t-95.5 37.5l82 160h109l-52 -108q49 -16 85 -49t36 -97q0 -45 -24.5 -77.5t-65.5 -55t-95 -36t-112 -19.5z" />
150
- <glyph unicode="&#xc8;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM314 1675h192l180 -229h-141z" />
151
- <glyph unicode="&#xc9;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM478 1446l180 229h192l-231 -229h-141z" />
152
- <glyph unicode="&#xca;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM303 1446l197 229h164l197 -229h-138l-137 139h-8l-137 -139h-138z" />
153
- <glyph unicode="&#xcb;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM306 1565q0 45 27.5 72.5t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM658 1565q0 45 28.5 72.5t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5 q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
154
- <glyph unicode="&#xcc;" horiz-adv-x="538" d="M0 1675h192l180 -229h-141zM184 0v1343h170v-1343h-170z" />
155
- <glyph unicode="&#xcd;" horiz-adv-x="538" d="M164 1446l180 229h192l-231 -229h-141zM184 0v1343h170v-1343h-170z" />
156
- <glyph unicode="&#xce;" horiz-adv-x="538" d="M-11 1446l197 229h164l197 -229h-138l-137 139h-8l-137 -139h-138zM184 0v1343h170v-1343h-170z" />
157
- <glyph unicode="&#xcf;" horiz-adv-x="538" d="M-8 1565q0 45 27.5 72.5t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM184 0v1343h170v-1343h-170zM344 1565q0 45 28.5 72.5t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z " />
158
- <glyph unicode="&#xd0;" horiz-adv-x="1306" d="M68 657v88l161 9v589h336q311 0 473 -172t162 -493q0 -160 -41 -286t-121 -213t-196.5 -133t-268.5 -46h-344v657h-161zM399 139h154q236 0 353.5 141.5t117.5 397.5t-118 391t-353 135h-154v-450h306v-97h-306v-518z" />
159
- <glyph unicode="&#xd1;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-6 102 -13 212t-7 216v694h162v-1343h-176l-488 846l-145 276h-8q8 -102 15 -207.5t7 -212.5v-702h-162zM371 1456q10 96 55 158.5t119 62.5q41 0 74 -16t60.5 -36.5t54 -37t55.5 -16.5t51.5 27.5t30.5 78.5h94q-10 -94 -55 -157.5 t-119 -63.5q-41 0 -74 16.5t-60.5 37t-54 37t-55.5 16.5t-51.5 -27t-30.5 -80h-94z" />
160
- <glyph unicode="&#xd2;" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5zM412 1675h192l180 -229h-141z" />
161
- <glyph unicode="&#xd3;" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5zM576 1446l180 229h192l-231 -229h-141z" />
162
- <glyph unicode="&#xd4;" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5zM401 1446l197 229h164l197 -229h-138l-137 139h-8l-137 -139h-138z" />
163
- <glyph unicode="&#xd5;" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5zM383 1456q10 96 55 158.5t119 62.5q41 0 74 -16t60.5 -36.5t54 -37t55.5 -16.5t51.5 27.5t30.5 78.5h94q-10 -94 -55 -157.5t-119 -63.5 q-41 0 -74 16.5t-60.5 37t-54 37t-55.5 16.5t-51.5 -27t-30.5 -80h-94z" />
164
- <glyph unicode="&#xd6;" horiz-adv-x="1359" d="M106 678q0 162 42 290t118 217t181.5 136t232.5 47t232.5 -48t182 -137t118.5 -217t42 -288q0 -162 -42 -292t-118.5 -221t-182 -140.5t-232.5 -49.5t-232.5 49.5t-181.5 140.5t-118 221t-42 292zM283 678q0 -127 28.5 -228.5t80.5 -174t125 -111.5t163 -39t162.5 39 t125 111.5t81 174t28.5 228.5q0 125 -28.5 225.5t-81 170t-125 107.5t-162.5 38t-163 -38t-125 -107.5t-80.5 -170t-28.5 -225.5zM404 1565q0 45 27.5 72.5t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM756 1565 q0 45 28.5 72.5t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
125
+ <glyph unicode="&#xb2;" horiz-adv-x="751" d="M82 1477q47 71 116.5 113t149.5 42q122 0 194 -67t72 -191q0 -54 -16.5 -102.5t-67 -113t-79.5 -96.5t-116 -121q-12 -13 -18 -19h338v-113h-549v76q108 97 166 152.5t113.5 117.5t77.5 108.5t22 90.5q0 78 -41 123t-112 45q-92 0 -172 -117z" />
126
+ <glyph unicode="&#xb3;" horiz-adv-x="751" d="M72 940l88 68q79 -119 202 -119q68 0 114 38.5t46 104.5q0 69 -65 105.5t-183 36.5v83q101 0 159.5 40.5t58.5 103.5q0 57 -40 92t-106 35q-83 0 -162 -96l-80 69q115 131 263 131q107 0 180.5 -58.5t73.5 -156.5q0 -129 -140 -196q73 -19 122.5 -70.5t49.5 -126.5 q0 -108 -82 -174t-202 -66q-93 0 -171 43t-126 113z" />
127
+ <glyph unicode="&#xb4;" horiz-adv-x="1110" d="M440 1257l289 342l119 -112l-322 -313z" />
128
+ <glyph unicode="&#xb5;" horiz-adv-x="1150" d="M168 -367v1362h168v-608q0 -134 43.5 -200t138.5 -66q76 0 138 40t126 154v680h170q-1 -90 -4.5 -258.5t-5.5 -301.5t-2 -240q0 -40 20 -60t54 -20q24 0 59 12l23 -127q-52 -25 -119 -25q-84 0 -126.5 46.5t-53.5 146.5h-4q-107 -188 -277 -188q-66 0 -112.5 20.5 t-79.5 75.5q3 -264 14 -443h-170z" />
129
+ <glyph unicode="&#xb6;" horiz-adv-x="1146" d="M84 907q0 118 36.5 203.5t105 135.5t155.5 73.5t197 23.5h90v-880h-68q-153 0 -266.5 45.5t-181.5 147t-68 251.5zM778 -164v1507h172v-1507h-172z" />
130
+ <glyph unicode="&#xb7;" horiz-adv-x="509" d="M133 657q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91z" />
131
+ <glyph unicode="&#xb8;" horiz-adv-x="1110" d="M373 -381q125 9 174 32.5t49 69.5q0 41 -36 64t-122 35l90 186h109l-59 -137q75 -18 112 -51.5t37 -93.5q0 -171 -338 -187z" />
132
+ <glyph unicode="&#xb9;" horiz-adv-x="751" d="M178 1440v86q117 21 199 82h106v-799h-131v631h-174z" />
133
+ <glyph unicode="&#xba;" horiz-adv-x="747" d="M61 1137q0 160 89.5 253t222.5 93q132 0 221.5 -93t89.5 -253q0 -157 -90 -250.5t-221 -93.5q-132 0 -222 93t-90 251zM190 1137q0 -107 49.5 -173.5t133.5 -66.5q83 0 131.5 66t48.5 174q0 110 -48 175.5t-132 65.5t-133.5 -66t-49.5 -175z" />
134
+ <glyph unicode="&#xbb;" horiz-adv-x="878" d="M111 193l241 323l-241 320l71 61l281 -317v-127l-281 -318zM434 193l242 323l-242 320l72 61l280 -317v-127l-280 -318z" />
135
+ <glyph unicode="&#xbc;" horiz-adv-x="1599" d="M129 1176v86q119 21 199 81h106v-798h-131v631h-174zM369 -25l741 1393h115l-742 -1393h-114zM932 213v68l336 518h147v-492h119v-94h-119v-213h-119v213h-364zM1069 307h227v144l9 223h-9l-102 -166z" />
136
+ <glyph unicode="&#xbd;" horiz-adv-x="1654" d="M129 1176v86q119 21 199 81h106v-798h-131v631h-174zM328 -25l741 1393h115l-742 -1393h-114zM985 668q47 71 116.5 113t149.5 42q123 0 195 -67t72 -191q0 -54 -16.5 -102.5t-67 -113t-79.5 -96.5t-116 -121q-12 -13 -18 -19h338v-113h-549v76q108 97 166 152.5 t113.5 117.5t77.5 108.5t22 90.5q0 78 -41.5 123t-112.5 45q-92 0 -172 -117z" />
137
+ <glyph unicode="&#xbe;" horiz-adv-x="1630" d="M70 676l88 67q78 -118 202 -118q68 0 114 38.5t46 104.5q0 68 -65 104.5t-183 36.5v84q100 0 158.5 40.5t58.5 103.5q0 57 -39.5 92t-105.5 35q-83 0 -162 -97l-80 70q115 131 263 131q107 0 180 -58.5t73 -156.5q0 -131 -139 -197q73 -19 122.5 -70t49.5 -126 q0 -108 -82 -174t-202 -66q-93 0 -171 43t-126 113zM446 -25l742 1393h115l-742 -1393h-115zM963 213v68l335 518h148v-492h119v-94h-119v-213h-119v213h-364zM1100 307h227v144l8 223h-8l-102 -166z" />
138
+ <glyph unicode="&#xbf;" horiz-adv-x="870" d="M98 -74q0 62 24 122t60 105.5t76.5 97.5t73.5 99t51 110t10 130h150q9 -65 -1.5 -125t-34.5 -106.5t-55.5 -90.5t-65 -84t-61 -78t-45.5 -81.5t-18 -87.5q0 -86 51.5 -141.5t147.5 -55.5q133 0 233 117l99 -88q-156 -170 -353 -170q-156 0 -249 88t-93 239zM342 893 q0 55 35.5 91t87.5 36q50 0 85.5 -36t35.5 -91q0 -57 -35 -94t-86 -37q-52 0 -87.5 36.5t-35.5 94.5z" />
139
+ <glyph unicode="&#xc0;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM276 1663l97 113l291 -263l-76 -86zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
140
+ <glyph unicode="&#xc1;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452zM442 1513l291 263l96 -113l-311 -236z" />
141
+ <glyph unicode="&#xc2;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM250 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-225 -190zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
142
+ <glyph unicode="&#xc3;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM190 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65.5 35t33.5 100l114 -8q-6 -119 -61 -185.5t-147 -66.5q-43 0 -81 15t-65.5 36t-52.5 42.5t-52 36.5t-53 15 q-39 0 -65.5 -35t-32.5 -100zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
143
+ <glyph unicode="&#xc4;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM242 1565q0 44 28.5 72t71.5 28q44 0 72 -28t28 -72q0 -43 -28 -72t-72 -29q-43 0 -71.5 29t-28.5 72zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452zM664 1565q0 44 28 72t72 28 q43 0 71.5 -28t28.5 -72q0 -43 -28.5 -72t-71.5 -29q-44 0 -72 29t-28 72z" />
144
+ <glyph unicode="&#xc5;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452zM354 1616q0 84 56 135t143 51q86 0 142.5 -51.5t56.5 -134.5q0 -82 -56.5 -133t-142.5 -51q-87 0 -143 51t-56 133zM446 1616 q0 -52 30.5 -81.5t76.5 -29.5q44 0 74 29.5t30 81.5q0 50 -30.5 80t-73.5 30q-46 0 -76.5 -29.5t-30.5 -80.5z" />
145
+ <glyph unicode="&#xc6;" horiz-adv-x="1683" d="M16 0l705 1343h842v-143h-570v-422h475v-145h-475v-488h590v-145h-762v391h-422l-202 -391h-181zM469 528h352v680h-8q-163 -329 -219 -438z" />
146
+ <glyph unicode="&#xc7;" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-145 -167 -344 -190l-47 -111q75 -18 112 -51.5t37 -93.5q0 -171 -338 -187 l-16 82q125 9 174 32.5t49 69.5q0 41 -36 64t-122 35l76 157q-241 15 -392 201t-151 494z" />
147
+ <glyph unicode="&#xc8;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM305 1663l96 113l291 -263l-76 -86z" />
148
+ <glyph unicode="&#xc9;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM471 1513l291 263l96 -113l-311 -236z" />
149
+ <glyph unicode="&#xca;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM279 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-226 -190z" />
150
+ <glyph unicode="&#xcb;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM270 1565q0 44 29 72t72 28q44 0 72 -28t28 -72q0 -43 -28 -72t-72 -29q-43 0 -72 29t-29 72zM692 1565q0 44 28.5 72t72.5 28q43 0 71.5 -28t28.5 -72q0 -43 -28.5 -72t-71.5 -29q-44 0 -72.5 29 t-28.5 72z" />
151
+ <glyph unicode="&#xcc;" horiz-adv-x="538" d="M-8 1663l96 113l291 -263l-76 -86zM184 0v1343h170v-1343h-170z" />
152
+ <glyph unicode="&#xcd;" horiz-adv-x="538" d="M158 1513l291 263l96 -113l-312 -236zM184 0v1343h170v-1343h-170z" />
153
+ <glyph unicode="&#xce;" horiz-adv-x="538" d="M-35 1485l215 231h176l215 -231l-73 -53l-226 190h-8l-225 -190zM184 0v1343h170v-1343h-170z" />
154
+ <glyph unicode="&#xcf;" horiz-adv-x="538" d="M-43 1565q0 44 28.5 72t71.5 28q44 0 72.5 -28t28.5 -72q0 -43 -28.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72zM184 0v1343h170v-1343h-170zM379 1565q0 44 28 72t72 28q43 0 72 -28t29 -72q0 -43 -29 -72t-72 -29q-44 0 -72 29t-28 72z" />
155
+ <glyph unicode="&#xd0;" horiz-adv-x="1306" d="M68 657v88l161 9v589h336q309 0 472 -172t163 -493q0 -323 -162 -500.5t-465 -177.5h-344v657h-161zM399 139h154q232 0 351.5 140.5t119.5 398.5q0 256 -119 391t-352 135h-154v-450h306v-97h-306v-518z" />
156
+ <glyph unicode="&#xd1;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162zM307 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65.5 35t33.5 100l114 -8q-6 -118 -61.5 -185 t-147.5 -67q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5q-39 0 -65.5 -35t-32.5 -100z" />
157
+ <glyph unicode="&#xd2;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM403 1663l97 113l291 -263l-76 -86z " />
158
+ <glyph unicode="&#xd3;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM569 1513l291 263l96 -113l-311 -236 z" />
159
+ <glyph unicode="&#xd4;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM377 1485l215 231h176l215 -231 l-74 -53l-225 190h-8l-225 -190z" />
160
+ <glyph unicode="&#xd5;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM317 1470q6 117 61.5 184.5 t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65.5 35t33.5 100l114 -8q-6 -119 -61 -185.5t-147 -66.5q-43 0 -81 15t-65.5 36t-52.5 42.5t-52 36.5t-53 15q-39 0 -65.5 -35t-32.5 -100z" />
161
+ <glyph unicode="&#xd6;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM369 1565q0 44 28.5 72t71.5 28 q44 0 72 -28t28 -72q0 -43 -28 -72t-72 -29q-43 0 -71.5 29t-28.5 72zM791 1565q0 44 28 72t72 28q43 0 71.5 -28t28.5 -72q0 -43 -28.5 -72t-71.5 -29q-44 0 -72 29t-28 72z" />
165
162
  <glyph unicode="&#xd7;" d="M102 350l318 326l-318 323l91 93l317 -326l315 326l90 -93l-317 -323l317 -326l-90 -92l-315 328l-317 -328z" />
166
- <glyph unicode="&#xd8;" horiz-adv-x="1359" d="M102 12l144 187q-66 90 -100.5 210.5t-34.5 268.5q0 162 42 290t118.5 217t182 136t232.5 47q213 0 358 -129l130 166l94 -72l-142 -184q63 -88 98.5 -206t35.5 -265q0 -162 -42 -292t-119 -221t-182.5 -140.5t-230.5 -49.5q-106 0 -197.5 34t-162.5 100l-129 -170z M287 678q0 -197 69 -336l590 766q-104 111 -260 111q-90 0 -163.5 -38t-126 -107.5t-81 -170t-28.5 -225.5zM426 238q51 -53 116.5 -83t143.5 -30q90 0 163 39t125 111.5t80.5 174t28.5 228.5q0 98 -17 180t-50 148z" />
167
- <glyph unicode="&#xd9;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -121 24.5 -203t66.5 -131t99.5 -70.5t123.5 -21.5q68 0 125 21.5t100 70.5t67.5 131t24.5 203v792h164v-788q0 -162 -37 -272.5t-101.5 -179t-152.5 -98.5t-190 -30t-191.5 30t-154 98.5t-101.5 179t-37 272.5zM391 1675h192l180 -229h-141z" />
168
- <glyph unicode="&#xda;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -121 24.5 -203t66.5 -131t99.5 -70.5t123.5 -21.5q68 0 125 21.5t100 70.5t67.5 131t24.5 203v792h164v-788q0 -162 -37 -272.5t-101.5 -179t-152.5 -98.5t-190 -30t-191.5 30t-154 98.5t-101.5 179t-37 272.5zM555 1446l180 229h192l-231 -229 h-141z" />
169
- <glyph unicode="&#xdb;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -121 24.5 -203t66.5 -131t99.5 -70.5t123.5 -21.5q68 0 125 21.5t100 70.5t67.5 131t24.5 203v792h164v-788q0 -162 -37 -272.5t-101.5 -179t-152.5 -98.5t-190 -30t-191.5 30t-154 98.5t-101.5 179t-37 272.5zM380 1446l197 229h164l197 -229 h-138l-137 139h-8l-137 -139h-138z" />
170
- <glyph unicode="&#xdc;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -121 24.5 -203t66.5 -131t99.5 -70.5t123.5 -21.5q68 0 125 21.5t100 70.5t67.5 131t24.5 203v792h164v-788q0 -162 -37 -272.5t-101.5 -179t-152.5 -98.5t-190 -30t-191.5 30t-154 98.5t-101.5 179t-37 272.5zM383 1565q0 45 27.5 72.5 t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM735 1565q0 45 28.5 72.5t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
171
- <glyph unicode="&#xdd;" horiz-adv-x="974" d="M-2 1343h182l174 -378q33 -74 64 -145.5t65 -147.5h9q35 76 69.5 147.5t65.5 145.5l172 378h178l-404 -823v-520h-172v520zM383 1446l180 229h192l-231 -229h-141z" />
172
- <glyph unicode="&#xde;" horiz-adv-x="1193" d="M184 0v1343h170v-225h242q111 0 203 -20.5t156.5 -67.5t100.5 -121.5t36 -185.5q0 -106 -36 -185t-101.5 -130.5t-156.5 -76t-202 -24.5h-242v-307h-170zM354 446h221q176 0 261.5 66t85.5 211t-86 200.5t-261 55.5h-221v-533z" />
173
- <glyph unicode="&#xdf;" horiz-adv-x="1179" d="M168 0v1055q0 193 104.5 308.5t296.5 115.5q80 0 142.5 -23.5t105.5 -64.5t64.5 -95.5t21.5 -115.5q0 -78 -28.5 -132.5t-64.5 -99.5t-64.5 -87t-28.5 -95q0 -49 29.5 -82t74.5 -58.5t97.5 -52t97.5 -63.5t74.5 -92.5t29.5 -136.5q0 -66 -22.5 -121.5t-65.5 -96 t-103.5 -64.5t-135.5 -24q-86 0 -156 27t-133 74l67 119q53 -45 105.5 -67t111.5 -22q86 0 129.5 49.5t43.5 114.5q0 59 -30 98.5t-75 68t-97 54t-97.5 58.5t-75 79t-29.5 117q0 70 27.5 119t61.5 94.5t62.5 92.5t28.5 112q0 78 -42 128t-128 50q-111 0 -171 -78.5 t-60 -238.5v-1024h-168z" />
174
- <glyph unicode="&#xe0;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM285 270 q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87zM324 1462h176l184 -288h-129z" />
175
- <glyph unicode="&#xe1;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM285 270 q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87zM418 1174l184 288h176l-231 -288h-129z" />
176
- <glyph unicode="&#xe2;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM285 270 q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87zM287 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123z" />
177
- <glyph unicode="&#xe3;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM266 1186 q8 92 49 154.5t117 62.5q39 0 72 -16.5t60.5 -36t52 -36t49.5 -16.5q57 0 75 105h95q-8 -92 -49 -154.5t-117 -62.5q-39 0 -71 16.5t-59.5 35.5t-52 35.5t-51.5 16.5q-57 0 -75 -104h-95zM285 270q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276 q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87z" />
178
- <glyph unicode="&#xe4;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM275 1305 q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM285 270q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87zM627 1305q0 43 28.5 71.5t71.5 28.5 q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
179
- <glyph unicode="&#xe5;" horiz-adv-x="1048" d="M119 258q0 164 146.5 251t465.5 122q0 47 -9 92t-32.5 80t-62.5 56.5t-101 21.5q-88 0 -162.5 -33t-134.5 -74l-67 117q70 45 170 87t221 42q182 0 264 -111.5t82 -298.5v-610h-139l-15 119h-4q-72 -59 -154.5 -101.5t-174.5 -42.5q-127 0 -210 74t-83 209zM285 270 q0 -86 50 -122.5t124 -36.5q72 0 136 33.5t136 99.5v276q-125 -16 -211 -38.5t-138 -53.5t-74.5 -71t-22.5 -87zM361 1300q0 86 53 137.5t137 51.5t137 -51.5t53 -137.5t-53 -138t-137 -52t-137 52t-53 138zM453 1300q0 -53 28.5 -83.5t69.5 -30.5t69.5 30.5t28.5 83.5 q0 51 -28.5 82t-69.5 31t-69.5 -30.5t-28.5 -82.5z" />
180
- <glyph unicode="&#xe6;" horiz-adv-x="1607" d="M119 258q0 164 145.5 251t456.5 122q0 47 -8 92t-32 80t-62.5 56.5t-100.5 21.5q-82 0 -155.5 -33t-133.5 -74l-67 117q70 45 168 87t209 42t182.5 -56.5t101.5 -154.5q59 98 142.5 154.5t185.5 56.5q92 0 162.5 -33t119 -94.5t73 -148.5t24.5 -193q0 -57 -6 -94h-645 q2 -78 27.5 -141.5t66.5 -108.5t96 -69.5t119 -24.5q72 0 129 23.5t113 58.5l61 -117q-66 -41 -143.5 -72t-180.5 -31q-125 0 -209 56.5t-141 130.5q-102 -92 -205.5 -139.5t-199.5 -47.5q-127 0 -210 74t-83 209zM285 270q0 -86 50 -122.5t124 -36.5q70 0 151.5 39.5 t149.5 113.5q-16 39 -26.5 93.5t-12.5 111.5v51q-119 -16 -202 -38.5t-135 -53.5t-75.5 -71t-23.5 -87zM879 569h503q0 154 -60 236t-175 82q-104 0 -179 -85t-89 -233z" />
181
- <glyph unicode="&#xe7;" horiz-adv-x="933" d="M94 496q0 125 39 222t104.5 164.5t152.5 102.5t183 35q98 0 169 -36t122 -83l-84 -108q-45 39 -93 63.5t-107 24.5q-68 0 -125.5 -28t-98.5 -79t-64.5 -121.5t-23.5 -156.5t22.5 -156t62.5 -120t97.5 -77.5t124.5 -27.5q72 0 130.5 29.5t103.5 70.5l76 -111 q-68 -59 -151 -94t-173 -35q-98 0 -184 35t-148.5 101.5t-98.5 164t-36 220.5zM383 -352q82 10 132 33.5t50 64.5t-33.5 62.5t-95.5 37.5l82 160h109l-52 -108q49 -16 85 -49t36 -97q0 -45 -24.5 -77.5t-65.5 -55t-95 -36t-112 -19.5z" />
182
- <glyph unicode="&#xe8;" horiz-adv-x="1015" d="M94 496q0 123 38 220t100.5 164.5t142.5 103.5t166 36q94 0 168.5 -33t125 -94.5t77 -147.5t26.5 -192q0 -55 -6 -92h-672q10 -162 99.5 -256t232.5 -94q72 0 132 21.5t116 55.5l59 -110q-66 -41 -145.5 -72t-182.5 -31q-100 0 -187 36t-151.5 102.5t-101.5 163 t-37 219.5zM258 571h533q0 154 -64.5 235t-181.5 81q-53 0 -101.5 -21.5t-87.5 -61.5t-64.5 -98.5t-33.5 -134.5zM316 1462h176l184 -288h-129z" />
183
- <glyph unicode="&#xe9;" horiz-adv-x="1015" d="M94 496q0 123 38 220t100.5 164.5t142.5 103.5t166 36q94 0 168.5 -33t125 -94.5t77 -147.5t26.5 -192q0 -55 -6 -92h-672q10 -162 99.5 -256t232.5 -94q72 0 132 21.5t116 55.5l59 -110q-66 -41 -145.5 -72t-182.5 -31q-100 0 -187 36t-151.5 102.5t-101.5 163 t-37 219.5zM258 571h533q0 154 -64.5 235t-181.5 81q-53 0 -101.5 -21.5t-87.5 -61.5t-64.5 -98.5t-33.5 -134.5zM410 1174l184 288h176l-231 -288h-129z" />
184
- <glyph unicode="&#xea;" horiz-adv-x="1015" d="M94 496q0 123 38 220t100.5 164.5t142.5 103.5t166 36q94 0 168.5 -33t125 -94.5t77 -147.5t26.5 -192q0 -55 -6 -92h-672q10 -162 99.5 -256t232.5 -94q72 0 132 21.5t116 55.5l59 -110q-66 -41 -145.5 -72t-182.5 -31q-100 0 -187 36t-151.5 102.5t-101.5 163 t-37 219.5zM258 571h533q0 154 -64.5 235t-181.5 81q-53 0 -101.5 -21.5t-87.5 -61.5t-64.5 -98.5t-33.5 -134.5zM279 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123z" />
185
- <glyph unicode="&#xeb;" horiz-adv-x="1015" d="M94 496q0 123 38 220t100.5 164.5t142.5 103.5t166 36q94 0 168.5 -33t125 -94.5t77 -147.5t26.5 -192q0 -55 -6 -92h-672q10 -162 99.5 -256t232.5 -94q72 0 132 21.5t116 55.5l59 -110q-66 -41 -145.5 -72t-182.5 -31q-100 0 -187 36t-151.5 102.5t-101.5 163 t-37 219.5zM258 571h533q0 154 -64.5 235t-181.5 81q-53 0 -101.5 -21.5t-87.5 -61.5t-64.5 -98.5t-33.5 -134.5zM267 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM619 1305q0 43 28.5 71.5t71.5 28.5 q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
186
- <glyph unicode="&#xec;" horiz-adv-x="503" d="M25 1462h176l184 -288h-129zM168 0v995h168v-995h-168z" />
187
- <glyph unicode="&#xed;" horiz-adv-x="503" d="M119 1174l184 288h176l-231 -288h-129zM168 0v995h168v-995h-168z" />
188
- <glyph unicode="&#xee;" horiz-adv-x="503" d="M-12 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123zM168 0v995h168v-995h-168z" />
189
- <glyph unicode="&#xef;" horiz-adv-x="503" d="M-24 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM168 0v995h168v-995h-168zM328 1305q0 43 28.5 71.5t71.5 28.5q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
190
- <glyph unicode="&#xf0;" horiz-adv-x="1116" d="M109 455q0 104 32.5 189t89 145.5t133 93t166.5 32.5q78 0 150 -32.5t125 -102.5q-29 127 -85 221.5t-134 172.5l-289 -150l-49 84l260 133q-106 82 -229 148l77 106q74 -41 145.5 -86t137.5 -100l291 149l49 -84l-264 -135q123 -125 200.5 -297t77.5 -416 q0 -123 -31.5 -224t-90 -174t-139.5 -113t-181 -40q-86 0 -166 33t-141.5 95.5t-98 151.5t-36.5 200zM268 455q0 -78 22.5 -140.5t62.5 -106.5t91.5 -68.5t110.5 -24.5q70 0 121 29.5t86 83t52 128t17 164.5q0 29 -1 57.5t-3 55.5q-68 90 -135 120.5t-137 30.5 q-68 0 -121 -24.5t-90 -69.5t-56.5 -105.5t-19.5 -129.5z" />
191
- <glyph unicode="&#xf1;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q72 72 150.5 120t183.5 48q158 0 230.5 -98.5t72.5 -290.5v-631h-168v608q0 141 -45 203.5t-144 62.5q-78 0 -137 -38.5t-135 -114.5v-721h-168zM313 1186q8 92 49 154.5t117 62.5q39 0 72 -16.5t60.5 -36t52 -36t49.5 -16.5q57 0 75 105h95 q-8 -92 -49 -154.5t-117 -62.5q-39 0 -71 16.5t-59.5 35.5t-52 35.5t-51.5 16.5q-57 0 -75 -104h-95z" />
192
- <glyph unicode="&#xf2;" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5zM328 1462h176l184 -288h-129z" />
193
- <glyph unicode="&#xf3;" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5zM422 1174l184 288h176l-231 -288h-129z" />
194
- <glyph unicode="&#xf4;" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5zM291 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123z" />
195
- <glyph unicode="&#xf5;" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5zM270 1186q8 92 49 154.5t117 62.5q39 0 72 -16.5t60.5 -36t52 -36t49.5 -16.5q57 0 75 105h95q-8 -92 -49 -154.5t-117 -62.5 q-39 0 -71 16.5t-59.5 35.5t-52 35.5t-51.5 16.5q-57 0 -75 -104h-95z" />
196
- <glyph unicode="&#xf6;" horiz-adv-x="1110" d="M94 496q0 125 38 222t101.5 164.5t146.5 102.5t175 35t175 -35t146.5 -102.5t101.5 -164.5t38 -222q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35t-175 35t-146.5 101.5t-101.5 164t-38 220.5zM268 496q0 -86 20.5 -156t58.5 -120t91.5 -77.5t116.5 -27.5 t116.5 27.5t91.5 77.5t58.5 120t20.5 156t-20.5 156.5t-58.5 121.5t-91.5 79t-116.5 28t-116.5 -28t-91.5 -79t-58.5 -121.5t-20.5 -156.5zM279 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM631 1305 q0 43 28.5 71.5t71.5 28.5q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
197
- <glyph unicode="&#xf7;" d="M70 612v127h878v-127h-878zM397 307q0 47 33 78t80 31t79 -31t32 -78q0 -49 -32 -79.5t-79 -30.5t-80 30.5t-33 79.5zM397 1044q0 47 33 78t80 31t79 -30.5t32 -78.5q0 -49 -32 -79.5t-79 -30.5t-80 30.5t-33 79.5z" />
198
- <glyph unicode="&#xf8;" horiz-adv-x="1110" d="M94 12l111 133q-51 66 -81 153t-30 198q0 125 38 222t101.5 164.5t146.5 102.5t175 35q78 0 151.5 -25.5t133.5 -76.5l102 124l74 -59l-111 -133q51 -66 81 -155t30 -199q0 -123 -38 -220.5t-101.5 -164t-146.5 -101.5t-175 -35q-162 0 -285 101l-100 -123zM260 504 q0 -137 47 -232l438 531q-76 82 -190 82q-63 0 -117.5 -28t-93.5 -78t-61.5 -120.5t-22.5 -154.5zM365 190q80 -80 190 -79q63 0 117.5 27.5t94.5 77.5t61.5 120t21.5 153q0 137 -49 234z" />
199
- <glyph unicode="&#xf9;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -141 44 -203.5t142 -62.5q78 0 137.5 40t130.5 128v706h168v-995h-139l-14 156h-7q-70 -82 -146.5 -131.5t-180.5 -49.5q-160 0 -232.5 98.5t-72.5 291.5zM330 1462h176l184 -288h-129z" />
200
- <glyph unicode="&#xfa;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -141 44 -203.5t142 -62.5q78 0 137.5 40t130.5 128v706h168v-995h-139l-14 156h-7q-70 -82 -146.5 -131.5t-180.5 -49.5q-160 0 -232.5 98.5t-72.5 291.5zM424 1174l184 288h176l-231 -288h-129z" />
201
- <glyph unicode="&#xfb;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -141 44 -203.5t142 -62.5q78 0 137.5 40t130.5 128v706h168v-995h-139l-14 156h-7q-70 -82 -146.5 -131.5t-180.5 -49.5q-160 0 -232.5 98.5t-72.5 291.5zM293 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123z" />
202
- <glyph unicode="&#xfc;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -141 44 -203.5t142 -62.5q78 0 137.5 40t130.5 128v706h168v-995h-139l-14 156h-7q-70 -82 -146.5 -131.5t-180.5 -49.5q-160 0 -232.5 98.5t-72.5 291.5zM281 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29 q-45 0 -72.5 29t-27.5 72zM633 1305q0 43 28.5 71.5t71.5 28.5q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
203
- <glyph unicode="&#xfd;" horiz-adv-x="956" d="M25 995h174l202 -551q23 -66 48.5 -138.5t48.5 -141.5h8q23 68 43 141.5t41 138.5l178 551h164l-375 -1077q-27 -74 -59.5 -137.5t-77.5 -109.5t-102.5 -72.5t-133.5 -26.5q-35 0 -63.5 5t-52.5 15l32 134q16 -4 37 -9.5t39 -5.5q86 0 140.5 60.5t84.5 152.5l23 74z M363 1174l184 288h176l-231 -288h-129z" />
204
- <glyph unicode="&#xfe;" horiz-adv-x="1136" d="M168 -420v1878h168v-397l-2 -170q66 53 143.5 91t159.5 38q98 0 173 -36t126 -102.5t76.5 -159.5t25.5 -210q0 -127 -34.5 -226.5t-94 -169t-137.5 -105.5t-164 -36q-72 0 -139.5 29t-134.5 82l2 -170v-336h-168zM336 221q68 -57 131 -80.5t113 -23.5q61 0 113 27.5 t90 77.5t59.5 124t21.5 166q0 82 -14 149.5t-46 115.5t-82 75t-120 27q-63 0 -127.5 -35t-138.5 -101v-522z" />
205
- <glyph unicode="&#xff;" horiz-adv-x="956" d="M25 995h174l202 -551q23 -66 48.5 -138.5t48.5 -141.5h8q23 68 43 141.5t41 138.5l178 551h164l-375 -1077q-27 -74 -59.5 -137.5t-77.5 -109.5t-102.5 -72.5t-133.5 -26.5q-35 0 -63.5 5t-52.5 15l32 134q16 -4 37 -9.5t39 -5.5q86 0 140.5 60.5t84.5 152.5l23 74z M220 1305q0 43 27.5 71.5t72.5 28.5q43 0 71.5 -28.5t28.5 -71.5t-28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM572 1305q0 43 28.5 71.5t71.5 28.5q45 0 72.5 -28.5t27.5 -71.5t-27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
206
- <glyph unicode="&#x152;" horiz-adv-x="1734" d="M106 678q0 322 172.5 493.5t485.5 171.5h850v-143h-570v-422h476v-145h-476v-488h590v-145h-878q-154 0 -274 46t-203.5 133t-128 213t-44.5 286zM283 678q0 -258 124.5 -398.5t368.5 -140.5h98v1065h-98q-244 0 -368.5 -135t-124.5 -391z" />
207
- <glyph unicode="&#x153;" horiz-adv-x="1718" d="M94 496q0 125 37 222t98.5 164.5t143.5 102.5t172 35q115 0 211 -63.5t149 -186.5q57 117 148.5 183.5t201.5 66.5q92 0 164 -33t121 -94.5t74.5 -148.5t25.5 -193q0 -57 -6 -94h-653q2 -78 27.5 -141.5t67.5 -108.5t98.5 -69.5t119.5 -24.5q72 0 131.5 23.5t114.5 58.5 l62 -117q-66 -41 -146 -72t-182 -31q-117 0 -213 65.5t-154 182.5q-117 -248 -366 -248q-90 0 -171 35t-142.5 101.5t-97.5 164t-36 220.5zM266 496q0 -86 20.5 -156t57.5 -120t88 -77.5t113 -27.5q61 0 112.5 27.5t88 77.5t57 120t20.5 156t-20.5 156.5t-57 121.5t-88 79 t-112.5 28t-112.5 -28t-88.5 -79t-57.5 -121.5t-20.5 -156.5zM981 569h512q0 154 -63.5 236t-178.5 82q-104 0 -180 -85t-90 -233z" />
208
- <glyph unicode="&#x178;" horiz-adv-x="974" d="M-2 1343h182l174 -378q33 -74 64 -145.5t65 -147.5h9q35 76 69.5 147.5t65.5 145.5l172 378h178l-404 -823v-520h-172v520zM211 1565q0 45 27.5 72.5t72.5 27.5q43 0 71.5 -27.5t28.5 -72.5q0 -43 -28.5 -72t-71.5 -29q-45 0 -72.5 29t-27.5 72zM563 1565q0 45 28.5 72.5 t71.5 27.5q45 0 72.5 -27.5t27.5 -72.5q0 -43 -27.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72z" />
209
- <glyph unicode="&#x2c6;" horiz-adv-x="1110" d="M291 1174l194 288h140l194 -288h-123l-137 186h-8l-137 -186h-123z" />
210
- <glyph unicode="&#x2dc;" horiz-adv-x="1110" d="M270 1186q8 92 49 154.5t117 62.5q39 0 72 -16.5t60.5 -36t52 -36t49.5 -16.5q57 0 75 105h95q-8 -92 -49 -154.5t-117 -62.5q-39 0 -71 16.5t-59.5 35.5t-52 35.5t-51.5 16.5q-57 0 -75 -104h-95z" />
211
- <glyph unicode="&#x2000;" horiz-adv-x="896" />
212
- <glyph unicode="&#x2001;" horiz-adv-x="1792" />
213
- <glyph unicode="&#x2002;" horiz-adv-x="896" />
214
- <glyph unicode="&#x2003;" horiz-adv-x="1792" />
215
- <glyph unicode="&#x2004;" horiz-adv-x="597" />
216
- <glyph unicode="&#x2005;" horiz-adv-x="448" />
217
- <glyph unicode="&#x2006;" horiz-adv-x="298" />
218
- <glyph unicode="&#x2007;" horiz-adv-x="298" />
219
- <glyph unicode="&#x2008;" horiz-adv-x="224" />
220
- <glyph unicode="&#x2009;" horiz-adv-x="358" />
221
- <glyph unicode="&#x200a;" horiz-adv-x="99" />
163
+ <glyph unicode="&#xd8;" horiz-adv-x="1359" d="M102 12l144 187q-133 192 -133 479q0 318 158 504t415 186q214 0 361 -129l127 166l94 -72l-142 -182q136 -188 136 -473q0 -321 -160 -512t-416 -191q-212 0 -358 134l-131 -170zM289 678q0 -197 67 -334l590 764q-105 111 -260 111q-181 0 -289 -146t-108 -395z M428 240q103 -115 258 -115q180 0 288.5 150.5t108.5 402.5q0 194 -67 328z" />
164
+ <glyph unicode="&#xd9;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM385 1663l96 113l291 -263l-76 -86z" />
165
+ <glyph unicode="&#xda;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM551 1513l291 263l96 -113l-311 -236z" />
166
+ <glyph unicode="&#xdb;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1485l215 231h177l215 -231l-74 -53l-225 190h-9l-225 -190z" />
167
+ <glyph unicode="&#xdc;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM350 1565q0 44 29 72t72 28q44 0 72 -28t28 -72q0 -43 -28 -72t-72 -29q-43 0 -72 29t-29 72z M772 1565q0 44 28 72t72 28q43 0 72 -28t29 -72q0 -43 -29 -72t-72 -29q-44 0 -72 29t-28 72z" />
168
+ <glyph unicode="&#xdd;" horiz-adv-x="974" d="M-2 1343h182l174 -378q111 -254 129 -293h9q113 241 135 293l172 378h178l-404 -823v-520h-172v520zM377 1513l291 263l96 -113l-311 -236z" />
169
+ <glyph unicode="&#xde;" horiz-adv-x="1193" d="M184 0v1343h170v-225h242q115 0 203.5 -21t155.5 -66.5t102 -123t35 -184.5q0 -207 -133 -311.5t-363 -104.5h-242v-307h-170zM354 446h221q176 0 261.5 67t85.5 210q0 141 -84 198.5t-263 57.5h-221v-533z" />
170
+ <glyph unicode="&#xdf;" horiz-adv-x="1179" d="M168 0v1055q0 195 105.5 309.5t295.5 114.5q155 0 244.5 -86t89.5 -213q0 -57 -19 -107.5t-46.5 -87t-55 -70.5t-46.5 -72.5t-19 -76.5q0 -40 22 -71.5t58 -54t78.5 -44t85.5 -48.5t79 -60t58 -86.5t22 -120.5q0 -132 -89 -219t-238 -87q-150 0 -289 101l67 119 q109 -89 217 -89q81 0 127 48t46 116q0 48 -22.5 86t-58 63t-78.5 47.5t-86 47t-78.5 54t-58 74.5t-22.5 103q0 51 18.5 97t45 81.5t53 70.5t45 78.5t18.5 90.5q0 80 -44 129t-126 49q-110 0 -170.5 -80.5t-60.5 -236.5v-1024h-168z" />
171
+ <glyph unicode="&#xe0;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM246 1487l119 112l288 -342l-86 -83zM270 270q0 -81 48.5 -120 t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
172
+ <glyph unicode="&#xe1;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276 q-241 -30 -344 -90.5t-103 -159.5zM424 1257l289 342l118 -112l-321 -313z" />
173
+ <glyph unicode="&#xe2;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM221 1229l234 287h168l233 -287l-72 -66l-241 232h-8l-242 -232z M270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
174
+ <glyph unicode="&#xe3;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM184 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72.5 -59 t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5l113 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
175
+ <glyph unicode="&#xe4;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM240 1305q0 43 29 72.5t73 29.5q43 0 71.5 -29.5t28.5 -72.5t-29 -73 t-71 -30q-44 0 -73 30t-29 73zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5zM635 1305q0 43 28.5 72.5t71.5 29.5q44 0 73.5 -29.5t29.5 -72.5t-29.5 -73t-73.5 -30q-42 0 -71 30t-29 73z" />
176
+ <glyph unicode="&#xe5;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276 q-241 -30 -344 -90.5t-103 -159.5zM313 1337q0 87 62.5 144t163.5 57t163 -56.5t62 -144.5q0 -89 -61.5 -145.5t-163.5 -56.5t-164 56.5t-62 145.5zM422 1337q0 -57 33 -92t84 -35q50 0 83 35t33 92q0 56 -33 90.5t-83 34.5t-83.5 -34.5t-33.5 -90.5z" />
177
+ <glyph unicode="&#xe6;" horiz-adv-x="1607" d="M119 258q0 161 144.5 249t457.5 124q0 250 -203 250q-132 0 -289 -107l-67 117q201 129 377 129q108 0 180 -56t104 -155q60 99 144.5 155t183.5 56q181 0 280 -126t99 -343q0 -57 -6 -94h-645q6 -154 93 -249t216 -95q113 0 242 82l61 -117q-161 -103 -324 -103 q-205 0 -350 187q-209 -187 -405 -187q-129 0 -211 76t-82 207zM285 270q0 -81 48 -120t126 -39q71 0 153 40.5t148 112.5q-36 79 -39 205v51q-231 -30 -333.5 -91t-102.5 -159zM879 569h503q0 154 -60.5 236t-174.5 82q-104 0 -179.5 -87t-88.5 -231z" />
178
+ <glyph unicode="&#xe7;" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-119 -107 -269 -122l-47 -111q75 -18 112.5 -51.5t37.5 -93.5q0 -171 -338 -187 l-17 82q125 9 174.5 32.5t49.5 69.5q0 41 -36 64t-122 35l76 157q-182 21 -296 158.5t-114 360.5z" />
179
+ <glyph unicode="&#xe8;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM248 1487l119 112l288 -342l-86 -83zM258 578h533 q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226z" />
180
+ <glyph unicode="&#xe9;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM258 578h533q0 150 -64 229.5t-182 79.5 q-109 0 -191 -83t-96 -226zM426 1257l289 342l119 -112l-322 -313z" />
181
+ <glyph unicode="&#xea;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM223 1229l234 287h168l233 -287l-72 -66l-241 232h-8 l-242 -232zM258 578h533q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226z" />
182
+ <glyph unicode="&#xeb;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM242 1305q0 43 29 72.5t73 29.5q43 0 71.5 -29.5 t28.5 -72.5t-29 -73t-71 -30q-44 0 -73 30t-29 73zM258 578h533q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226zM637 1305q0 43 28.5 72.5t71.5 29.5q44 0 73.5 -29.5t29.5 -72.5t-29.5 -73t-73.5 -30q-42 0 -71 30t-29 73z" />
183
+ <glyph unicode="&#xec;" horiz-adv-x="503" d="M-41 1487l119 112l289 -342l-86 -83zM168 0v995h168v-995h-168z" />
184
+ <glyph unicode="&#xed;" horiz-adv-x="503" d="M137 1257l289 342l119 -112l-322 -313zM168 0v995h168v-995h-168z" />
185
+ <glyph unicode="&#xee;" horiz-adv-x="503" d="M-66 1229l234 287h168l233 -287l-71 -66l-242 232h-8l-242 -232zM168 0v995h168v-995h-168z" />
186
+ <glyph unicode="&#xef;" horiz-adv-x="503" d="M-47 1305q0 43 29 72.5t73 29.5q43 0 72 -29.5t29 -72.5t-29 -73t-72 -30q-44 0 -73 30t-29 73zM168 0v995h168v-995h-168zM348 1305q0 43 29 72.5t72 29.5q44 0 73 -29.5t29 -72.5t-29 -73t-73 -30q-43 0 -72 30t-29 73z" />
187
+ <glyph unicode="&#xf0;" horiz-adv-x="1116" d="M109 455q0 206 119.5 333t301.5 127q172 0 275 -135q-50 229 -219 394l-289 -150l-49 84l260 133q-114 87 -229 148l77 106q173 -94 283 -186l291 149l49 -84l-264 -135q278 -281 278 -713q0 -247 -121.5 -399t-320.5 -152q-87 0 -166.5 34t-141 94.5t-98 152 t-36.5 199.5zM268 455q0 -150 83.5 -245t203.5 -95q134 0 205 109.5t71 295.5q0 43 -4 113q-63 85 -129 118t-143 33q-133 0 -210 -92t-77 -237z" />
188
+ <glyph unicode="&#xf1;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168zM244 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72 -59t62.5 -59t66 -27q43 0 66.5 43.5t28.5 117.5 l112 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-50.5 51t-50 43t-52 17.5q-87 0 -97 -162z" />
189
+ <glyph unicode="&#xf2;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM262 1487l119 112l289 -342l-86 -83zM268 496 q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
190
+ <glyph unicode="&#xf3;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM268 496q0 -170 79.5 -275.5t207.5 -105.5 q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5zM440 1257l289 342l119 -112l-322 -313z" />
191
+ <glyph unicode="&#xf4;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM238 1229l233 287h168l233 -287l-71 -66l-242 232h-8 l-242 -232zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
192
+ <glyph unicode="&#xf5;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM201 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27 t72 -59t62.5 -59t66 -27q43 0 66.5 43.5t28.5 117.5l112 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-50.5 51t-50 43t-52 17.5q-87 0 -97 -162zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5 q-128 0 -207.5 -106.5t-79.5 -278.5z" />
193
+ <glyph unicode="&#xf6;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM256 1305q0 43 29 72.5t73 29.5q43 0 72 -29.5t29 -72.5 t-29 -73t-72 -30q-44 0 -73 30t-29 73zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5zM651 1305q0 43 29 72.5t72 29.5q44 0 73 -29.5t29 -72.5t-29 -73t-73 -30q-43 0 -72 30t-29 73z " />
194
+ <glyph unicode="&#xf7;" d="M70 612v127h878v-127h-878zM397 307q0 47 32.5 78t80.5 31q46 0 78.5 -31t32.5 -78q0 -49 -32 -79.5t-79 -30.5q-48 0 -80.5 30.5t-32.5 79.5zM397 1044q0 47 32.5 78t80.5 31q46 0 78.5 -31t32.5 -78q0 -49 -32 -79.5t-79 -30.5q-48 0 -80.5 30.5t-32.5 79.5z" />
195
+ <glyph unicode="&#xf8;" horiz-adv-x="1110" d="M94 12l111 133q-111 144 -111 351q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5q165 0 285 -102l102 124l74 -59l-111 -133q111 -144 111 -354q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5q-163 0 -285 101l-100 -123zM260 504q0 -140 47 -232l438 531 q-76 82 -190 82q-128 0 -211.5 -106.5t-83.5 -274.5zM365 190q79 -79 190 -79q130 0 212.5 105t82.5 273q0 140 -49 234z" />
196
+ <glyph unicode="&#xf9;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM264 1487l119 112l289 -342l-86 -83z" />
197
+ <glyph unicode="&#xfa;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM442 1257l289 342l119 -112l-322 -313z" />
198
+ <glyph unicode="&#xfb;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM240 1229l233 287h168l233 -287l-71 -66l-242 232h-8l-242 -232z" />
199
+ <glyph unicode="&#xfc;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM258 1305q0 43 29 72.5t73 29.5q43 0 72 -29.5t29 -72.5t-29 -73t-72 -30q-44 0 -73 30t-29 73zM653 1305 q0 43 29 72.5t72 29.5q44 0 73 -29.5t29 -72.5t-29 -73t-73 -30q-43 0 -72 30t-29 73z" />
200
+ <glyph unicode="&#xfd;" horiz-adv-x="956" d="M25 995h174l202 -551q41 -113 97 -280h8q16 51 45 150t39 130l178 551h164l-375 -1077q-28 -79 -60 -138t-76.5 -108t-104 -74.5t-132.5 -25.5q-61 0 -116 20l32 134q50 -15 76 -15q154 0 225 213l23 74zM383 1257l289 342l119 -112l-322 -313z" />
201
+ <glyph unicode="&#xfe;" horiz-adv-x="1136" d="M168 -420v1878h168v-397l-2 -170q162 129 303 129q193 0 297 -136t104 -372q0 -123 -35 -226t-94.5 -170t-137 -104t-163.5 -37q-131 0 -274 111l2 -170v-336h-168zM336 221q123 -104 244 -104q125 0 204.5 107t79.5 288q0 173 -63.5 270t-198.5 97q-115 0 -266 -136 v-522z" />
202
+ <glyph unicode="&#xff;" horiz-adv-x="956" d="M25 995h174l202 -551q41 -113 97 -280h8q16 51 45 150t39 130l178 551h164l-375 -1077q-28 -79 -60 -138t-76.5 -108t-104 -74.5t-132.5 -25.5q-61 0 -116 20l32 134q50 -15 76 -15q154 0 225 213l23 74zM199 1305q0 43 29 72.5t73 29.5q43 0 71.5 -29.5t28.5 -72.5 t-29 -73t-71 -30q-44 0 -73 30t-29 73zM594 1305q0 43 28.5 72.5t71.5 29.5q44 0 73.5 -29.5t29.5 -72.5t-29.5 -73t-73.5 -30q-42 0 -71 30t-29 73z" />
203
+ <glyph unicode="&#x100;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM279 1505v117h548v-117h-548zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
204
+ <glyph unicode="&#x101;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM266 1231v117h545v-117h-545zM270 270q0 -81 48.5 -120t127.5 -39 q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
205
+ <glyph unicode="&#x102;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM254 1708l102 16q13 -77 63 -124.5t134 -47.5t134 47.5t63 124.5l102 -16q-13 -116 -88.5 -190t-210.5 -74t-210.5 74t-88.5 190zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
206
+ <glyph unicode="&#x103;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM219 1479l105 16q14 -88 68.5 -150.5t146.5 -62.5t146.5 62.5 t68.5 150.5l104 -16q-4 -60 -24 -113t-56.5 -98.5t-98 -72t-140.5 -26.5t-140.5 26.5t-98.5 72t-57 98.5t-24 113zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
207
+ <glyph unicode="&#x104;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343q-71 -29 -117.5 -91.5t-46.5 -127.5q0 -45 27.5 -69.5t66.5 -24.5q47 0 86 28l47 -92q-32 -24 -78 -40.5t-85 -16.5q-86 0 -141.5 46.5t-55.5 131.5q0 77 46.5 146t107.5 110h-39l-127 410h-490l-129 -410h-174zM352 547h404l-64 205 q-67 204 -135 452h-8q-60 -230 -133 -452z" />
208
+ <glyph unicode="&#x105;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610q-83 -33 -130.5 -92.5t-47.5 -122.5q0 -45 27.5 -69.5t66.5 -24.5q43 0 84 26l43 -84q-29 -23 -75.5 -39t-84.5 -16q-82 0 -134 45.5 t-52 128.5q0 77 48.5 144.5t115.5 111.5l-15 111h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM270 270q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
209
+ <glyph unicode="&#x106;" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-168 -195 -412 -195q-126 0 -233.5 48t-185.5 136t-122.5 220t-44.5 293z M565 1513l291 263l96 -113l-311 -236z" />
210
+ <glyph unicode="&#x107;" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-143 -127 -322 -127q-204 0 -335.5 140t-131.5 381zM457 1257l288 342l119 -112 l-321 -313z" />
211
+ <glyph unicode="&#x108;" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-168 -195 -412 -195q-126 0 -233.5 48t-185.5 136t-122.5 220t-44.5 293z M373 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-226 -190z" />
212
+ <glyph unicode="&#x109;" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-143 -127 -322 -127q-204 0 -335.5 140t-131.5 381zM254 1229l233 287h168l234 -287 l-72 -66l-242 232h-8l-241 -232z" />
213
+ <glyph unicode="&#x10a;" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-168 -195 -412 -195q-126 0 -233.5 48t-185.5 136t-122.5 220t-44.5 293z M559 1573q0 47 33.5 77.5t83.5 30.5t83.5 -30.5t33.5 -77.5q0 -49 -33.5 -80t-83.5 -31t-83.5 31t-33.5 80z" />
214
+ <glyph unicode="&#x10b;" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-143 -127 -322 -127q-204 0 -335.5 140t-131.5 381zM461 1311q0 47 31.5 78.5 t78.5 31.5t79 -31.5t32 -78.5q0 -49 -31.5 -80t-79.5 -31t-79 31t-31 80z" />
215
+ <glyph unicode="&#x10c;" horiz-adv-x="1169" d="M106 672q0 211 78 370.5t212.5 242.5t305.5 83q115 0 209.5 -46.5t159.5 -119.5l-92 -110q-120 127 -274 127q-192 0 -307 -147t-115 -396q0 -253 112 -402t303 -149q174 0 312 151l94 -106q-168 -195 -412 -195q-126 0 -233.5 48t-185.5 136t-122.5 220t-44.5 293z M373 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176z" />
216
+ <glyph unicode="&#x10d;" horiz-adv-x="933" d="M94 496q0 122 38.5 222.5t105 165.5t152.5 100.5t183 35.5q161 0 291 -117l-86 -110q-98 88 -198 88q-136 0 -224 -107t-88 -278q0 -170 85 -275.5t222 -105.5q123 0 234 100l74 -113q-143 -127 -322 -127q-204 0 -335.5 140t-131.5 381zM254 1462l72 66l241 -232h8 l242 232l72 -66l-234 -286h-168z" />
217
+ <glyph unicode="&#x10e;" horiz-adv-x="1259" d="M184 0v1343h336q309 0 472 -172t163 -493q0 -323 -162 -500.5t-465 -177.5h-344zM328 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176zM354 139h154q232 0 351.5 140.5t119.5 398.5q0 256 -119 391t-352 135h-154v-1065z" />
218
+ <glyph unicode="&#x10f;" horiz-adv-x="1173" d="M96 496q0 118 35.5 218t95.5 166t138 103t163 37q81 0 144 -28t135 -87l-8 170v383h170v-1458h-140l-14 117h-6q-146 -142 -301 -142q-190 0 -301 137.5t-111 383.5zM270 498q0 -179 72.5 -280t202.5 -101q132 0 254 137v520q-116 105 -242 105q-122 0 -204.5 -106.5 t-82.5 -274.5zM1077 1556h121l-2 -116l-29 -318h-82z" />
219
+ <glyph unicode="&#x110;" horiz-adv-x="1306" d="M68 657v88l161 9v589h336q309 0 472 -172t163 -493q0 -323 -162 -500.5t-465 -177.5h-344v657h-161zM399 139h154q232 0 351.5 140.5t119.5 398.5q0 256 -119 391t-352 135h-154v-450h306v-97h-306v-518z" />
220
+ <glyph unicode="&#x111;" horiz-adv-x="1136" d="M96 457q0 107 35.5 198.5t95.5 153t138 96.5t163 35q81 0 143.5 -28.5t135.5 -88.5l-8 172v174h-330v99h330v190h170v-190h147v-88l-147 -11v-1169h-144l-12 113h-6q-138 -138 -299 -138q-189 0 -300.5 128.5t-111.5 353.5zM270 459q0 -158 73 -250t202 -92 q132 0 254 137v440q-116 105 -242 105q-121 0 -204 -97t-83 -243z" />
221
+ <glyph unicode="&#x112;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM307 1505v117h549v-117h-549z" />
222
+ <glyph unicode="&#x113;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM258 578h533q0 150 -64 229.5t-182 79.5 q-109 0 -191 -83t-96 -226zM268 1231v117h545v-117h-545z" />
223
+ <glyph unicode="&#x114;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM283 1708l102 16q13 -77 63 -124.5t134 -47.5t133.5 47.5t62.5 124.5l103 -16q-13 -116 -88.5 -190t-210.5 -74t-210.5 74t-88.5 190z" />
224
+ <glyph unicode="&#x115;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM221 1479l105 16q14 -88 68.5 -150.5t146.5 -62.5 t146.5 62.5t68.5 150.5l104 -16q-4 -60 -24 -113t-56.5 -98.5t-98 -72t-140.5 -26.5t-140.5 26.5t-98.5 72t-57 98.5t-24 113zM258 578h533q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226z" />
225
+ <glyph unicode="&#x116;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM465 1573q0 47 33.5 77.5t83.5 30.5t83 -30.5t33 -77.5q0 -49 -33 -80t-83 -31t-83.5 31t-33.5 80z" />
226
+ <glyph unicode="&#x117;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM258 578h533q0 150 -64 229.5t-182 79.5 q-109 0 -191 -83t-96 -226zM430 1311q0 47 32 78.5t79 31.5t78.5 -31.5t31.5 -78.5q0 -49 -31 -80t-79 -31t-79.5 31t-31.5 80z" />
227
+ <glyph unicode="&#x118;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-6q-73 -9 -131 -74t-58 -145q0 -45 29.5 -69.5t69.5 -24.5q43 0 82 28l47 -92q-30 -24 -77.5 -40.5t-86.5 -16.5q-86 0 -141.5 46.5t-55.5 131.5q0 79 45 147t109 109h-621z" />
228
+ <glyph unicode="&#x119;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-128 -91 -177.5 -158t-49.5 -135q0 -45 27.5 -69.5t68.5 -24.5t82 26l43 -84q-29 -23 -75.5 -39t-84.5 -16 q-81 0 -132.5 45.5t-51.5 128.5q0 69 37 132t86 106q-44 -15 -101 -15q-205 0 -341 141.5t-136 379.5zM258 578h533q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226z" />
229
+ <glyph unicode="&#x11a;" horiz-adv-x="1079" d="M184 0v1343h774v-143h-604v-422h510v-145h-510v-488h625v-145h-795zM279 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176z" />
230
+ <glyph unicode="&#x11b;" horiz-adv-x="1015" d="M94 496q0 118 38 218.5t100.5 166.5t142.5 102.5t166 36.5q188 0 292.5 -125.5t104.5 -341.5q0 -59 -6 -96h-672q9 -158 99 -252t233 -94q127 0 248 77l59 -110q-161 -103 -328 -103q-205 0 -341 141.5t-136 379.5zM223 1462l72 66l242 -232h8l241 232l72 -66l-233 -286 h-168zM258 578h533q0 150 -64 229.5t-182 79.5q-109 0 -191 -83t-96 -226z" />
231
+ <glyph unicode="&#x11c;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM422 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-225 -190z" />
232
+ <glyph unicode="&#x11d;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM231 1229l234 287h168l233 -287l-71 -66l-242 232h-8l-242 -232zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16 q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5z" />
233
+ <glyph unicode="&#x11e;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM426 1708l102 16q13 -77 63 -124.5t134 -47.5t134 47.5t63 124.5l102 -16q-13 -116 -88.5 -190t-210.5 -74t-210.5 74t-88.5 190z" />
234
+ <glyph unicode="&#x11f;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM229 1479l105 16q14 -88 68.5 -150.5t146.5 -62.5t146.5 62.5t68.5 150.5l104 -16q-4 -60 -24 -113t-56.5 -98.5t-98 -72t-140.5 -26.5t-140.5 26.5t-98.5 72t-57 98.5 t-24 113zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5z" />
235
+ <glyph unicode="&#x120;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM608 1573q0 47 33.5 77.5t83.5 30.5t83.5 -30.5t33.5 -77.5q0 -49 -33.5 -80t-83.5 -31t-83.5 31t-33.5 80z" />
236
+ <glyph unicode="&#x121;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172 t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5zM438 1311q0 47 32 78.5t79 31.5t78.5 -31.5t31.5 -78.5q0 -49 -31 -80t-79 -31t-79.5 31t-31.5 80z" />
237
+ <glyph unicode="&#x122;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM518 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106q0 -171 -337 -187z" />
238
+ <glyph unicode="&#x123;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172 t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5zM389 1335q0 170 338 189l16 -84q-124 -7 -173.5 -30.5t-49.5 -68.5q0 -74 146 -86l-37 -77q-132 15 -186 51t-54 106z" />
239
+ <glyph unicode="&#x124;" horiz-adv-x="1335" d="M184 0v1343h170v-563h625v563h172v-1343h-172v633h-625v-633h-170zM362 1485l216 231h176l215 -231l-74 -53l-225 190h-8l-226 -190z" />
240
+ <glyph unicode="&#x125;" horiz-adv-x="1114" d="M-49 1571l215 231h176l215 -231l-74 -53l-225 190h-8l-225 -190zM168 0v1458h168v-397l-6 -205q82 78 160 121t172 43q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168z" />
241
+ <glyph unicode="&#x126;" horiz-adv-x="1406" d="M66 1008v86l159 10v239h170v-239h625v239h172v-239h147v-96h-147v-1008h-172v633h-625v-633h-170v1008h-159zM395 780h625v228h-625v-228z" />
242
+ <glyph unicode="&#x127;" horiz-adv-x="1114" d="M16 1169v88l152 11v190h168v-190h373v-99h-373v-190l-6 -205q83 79 160.5 122.5t171.5 43.5q303 0 303 -389v-551h-168v528q0 139 -45 202t-144 63q-72 0 -131.5 -35.5t-140.5 -116.5v-641h-168v1169h-152z" />
243
+ <glyph unicode="&#x128;" horiz-adv-x="538" d="M-94 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65 35t33 100l115 -8q-6 -118 -61.5 -185t-147.5 -67q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5q-39 0 -66 -35.5t-33 -99.5zM184 0v1343h170v-1343h-170z" />
244
+ <glyph unicode="&#x129;" horiz-adv-x="503" d="M-102 1198q5 128 55 203.5t151 75.5q49 0 93.5 -27t72.5 -59t63 -59t66 -27q43 0 66.5 43.5t28.5 117.5l112 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-86 0 -96 -162zM168 0v995h168v-995h-168z" />
245
+ <glyph unicode="&#x12a;" horiz-adv-x="538" d="M-6 1505v117h549v-117h-549zM184 0v1343h170v-1343h-170z" />
246
+ <glyph unicode="&#x12b;" horiz-adv-x="503" d="M-20 1231v117h544v-117h-544zM168 0v995h168v-995h-168z" />
247
+ <glyph unicode="&#x12c;" horiz-adv-x="538" d="M-31 1708l103 16q13 -77 62.5 -124.5t133.5 -47.5t134 47.5t63 124.5l102 -16q-13 -116 -88.5 -190t-210.5 -74t-210.5 74t-88.5 190zM184 0v1343h170v-1343h-170z" />
248
+ <glyph unicode="&#x12d;" horiz-adv-x="503" d="M-66 1479l105 16q14 -88 68.5 -150.5t146.5 -62.5t146.5 62.5t68.5 150.5l104 -16q-4 -60 -24 -113t-56.5 -98.5t-98 -72t-140.5 -26.5t-140.5 26.5t-98.5 72t-57 98.5t-24 113zM168 0v995h168v-995h-168z" />
249
+ <glyph unicode="&#x12e;" horiz-adv-x="538" d="M88 -256q0 134 137 256h-41v1343h170v-1343q-133 -104 -133 -219q0 -44 28.5 -69t67.5 -25q45 0 84 28l48 -92q-31 -24 -78 -40.5t-86 -16.5q-86 0 -141.5 46.5t-55.5 131.5z" />
250
+ <glyph unicode="&#x12f;" horiz-adv-x="503" d="M78 -248q0 51 23 102t47 80t61 66h-41v995h168v-995q-133 -96 -133 -215q0 -45 27.5 -69.5t68.5 -24.5q38 0 82 26l43 -84q-29 -23 -75.5 -39t-84.5 -16q-82 0 -134 45.5t-52 128.5zM135 1309q0 49 33.5 78.5t83.5 29.5q49 0 82 -30t33 -78q0 -47 -33.5 -78t-81.5 -31 q-50 0 -83.5 31t-33.5 78z" />
251
+ <glyph unicode="&#x130;" horiz-adv-x="538" d="M152 1573q0 47 33 77.5t83 30.5t83.5 -30.5t33.5 -77.5q0 -49 -33.5 -80t-83.5 -31t-83 31t-33 80zM184 0v1343h170v-1343h-170z" />
252
+ <glyph unicode="&#x131;" horiz-adv-x="503" d="M168 0v995h168v-995h-168z" />
253
+ <glyph unicode="&#x132;" horiz-adv-x="1077" d="M184 0v1343h170v-1343h-170zM471 -313l33 135q64 -19 94 -19q71 0 98 49.5t27 147.5v1343h170v-1349q0 -332 -275 -332q-74 0 -147 25z" />
254
+ <glyph unicode="&#x133;" horiz-adv-x="1009" d="M137 1309q0 49 33.5 78.5t83.5 29.5t83.5 -29.5t33.5 -78.5q0 -47 -33.5 -78t-83.5 -31t-83.5 31t-33.5 78zM168 0v995h168v-995h-168zM422 -418l35 127q50 -16 94 -16q70 0 96.5 48t26.5 146v1108h168v-1108q0 -331 -273 -331q-82 0 -147 26zM643 1309q0 49 33.5 78.5 t83.5 29.5q48 0 81 -30t33 -78q0 -47 -33 -78t-81 -31q-50 0 -83.5 31t-33.5 78z" />
255
+ <glyph unicode="&#x134;" horiz-adv-x="983" d="M63 190l123 86q84 -151 232 -151q109 0 162 68t53 219v931h172v-948q0 -71 -13 -132.5t-42 -115t-72 -91.5t-105 -59.5t-139 -21.5q-252 0 -371 215zM410 1485l215 231h176l215 -231l-74 -53l-225 190h-8l-226 -190z" />
256
+ <glyph unicode="&#x135;" horiz-adv-x="505" d="M-82 -418l35 127q50 -16 94 -16q70 0 96.5 48t26.5 146v1108h168v-1108q0 -160 -64.5 -245.5t-207.5 -85.5q-83 0 -148 26zM-63 1229l233 287h168l233 -287l-71 -66l-242 232h-8l-242 -232z" />
257
+ <glyph unicode="&#x136;" horiz-adv-x="1185" d="M184 0v1343h170v-673h6l560 673h192l-420 -512l486 -831h-191l-401 698l-232 -272v-426h-170zM473 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106q0 -171 -338 -187z" />
258
+ <glyph unicode="&#x137;" horiz-adv-x="1013" d="M168 0v1458h166v-987h6l424 524h186l-334 -399l379 -596h-184l-291 479l-186 -217v-262h-166zM360 -381q125 9 174.5 32t49.5 66q0 74 -146 86l37 78q132 -15 186 -51t54 -106q0 -171 -338 -187z" />
259
+ <glyph unicode="&#x138;" horiz-adv-x="1013" d="M168 0v995h168v-528h6l422 528h186l-329 -399l374 -596h-184l-291 473l-184 -217v-256h-168z" />
260
+ <glyph unicode="&#x139;" horiz-adv-x="995" d="M164 1513l291 263l96 -113l-311 -236zM184 0v1343h170v-1198h588v-145h-758z" />
261
+ <glyph unicode="&#x13a;" horiz-adv-x="522" d="M133 1620l291 262l96 -113l-311 -235zM168 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l22 -127q-39 -17 -96 -17q-93 0 -135.5 57t-42.5 169z" />
262
+ <glyph unicode="&#x13b;" horiz-adv-x="995" d="M184 0v1343h170v-1198h588v-145h-758zM395 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 186 -51t54 -106q0 -171 -338 -187z" />
263
+ <glyph unicode="&#x13c;" horiz-adv-x="522" d="M129 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106q0 -171 -338 -187zM168 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l22 -127q-39 -17 -96 -17q-93 0 -135.5 57t-42.5 169z" />
264
+ <glyph unicode="&#x13d;" horiz-adv-x="995" d="M184 0v1343h170v-1198h588v-145h-758zM676 1487h121l-2 -117l-29 -317h-82z" />
265
+ <glyph unicode="&#x13e;" horiz-adv-x="552" d="M168 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l22 -127q-39 -17 -96 -17q-93 0 -135.5 57t-42.5 169zM444 1556h121l-2 -116l-28 -318h-82z" />
266
+ <glyph unicode="&#x13f;" horiz-adv-x="995" d="M184 0v1343h170v-1198h588v-145h-758zM649 666q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91z" />
267
+ <glyph unicode="&#x140;" horiz-adv-x="741" d="M168 201v1257h168v-1270q0 -37 13 -55t34 -18q19 0 37 4l22 -127q-39 -17 -96 -17q-93 0 -135.5 57t-42.5 169zM500 666q0 58 35.5 94.5t87.5 36.5q50 0 85 -37t35 -94q0 -55 -35 -91t-85 -36q-52 0 -87.5 36t-35.5 91z" />
268
+ <glyph unicode="&#x141;" horiz-adv-x="1001" d="M-12 518l207 113v712h170v-636l360 194l61 -108l-421 -226v-422h587v-145h-757v492l-146 -82z" />
269
+ <glyph unicode="&#x142;" horiz-adv-x="536" d="M-2 713l178 108v637h168v-549l111 72l61 -109l-172 -106v-578q0 -37 13 -55t34 -18q19 0 37 4l23 -127q-39 -17 -97 -17q-93 0 -135.5 57t-42.5 169v477l-117 -74z" />
270
+ <glyph unicode="&#x143;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162zM559 1513l291 263l96 -113l-311 -236z" />
271
+ <glyph unicode="&#x144;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168zM483 1257l289 342l119 -112l-322 -313z" />
272
+ <glyph unicode="&#x145;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162zM477 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106q0 -171 -337 -187z" />
273
+ <glyph unicode="&#x146;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168zM377 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106q0 -171 -338 -187z" />
274
+ <glyph unicode="&#x147;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162zM367 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176z" />
275
+ <glyph unicode="&#x148;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168zM281 1462l71 66l242 -232h8l242 232l71 -66l-233 -286h-168z" />
276
+ <glyph unicode="&#x149;" horiz-adv-x="1587" d="M129 961q80 53 117 112t37 144q-9 -3 -17 -3q-45 0 -76.5 27.5t-31.5 75.5q0 53 30 84t78 31q60 0 94.5 -49t34.5 -138q0 -235 -219 -362zM623 0v995h139l14 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45 202.5t-143 63.5q-72 0 -131 -35.5 t-141 -117.5v-721h-168z" />
277
+ <glyph unicode="&#x14a;" horiz-adv-x="1300" d="M184 0v1343h166v-165q75 85 176 137.5t203 52.5q103 0 185.5 -37t146.5 -115t98.5 -212.5t34.5 -317.5q0 -711 -363 -711q-102 0 -159 31l41 154q48 -23 102 -23q203 0 203 549q0 148 -23.5 253t-68.5 165.5t-103.5 87.5t-136.5 27q-80 0 -175.5 -57t-156.5 -144v-1018 h-170z" />
278
+ <glyph unicode="&#x14b;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-674q0 -332 -273 -332q-81 0 -145 27l33 129q59 -19 94 -19q70 0 96.5 49t26.5 148v649q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168z" />
279
+ <glyph unicode="&#x14c;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM406 1505v117h548v-117h-548z" />
280
+ <glyph unicode="&#x14d;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM268 496q0 -170 79.5 -275.5t207.5 -105.5 q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5zM283 1231v117h544v-117h-544z" />
281
+ <glyph unicode="&#x14e;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM381 1708l102 16q13 -77 63 -124.5 t134 -47.5t134 47.5t63 124.5l102 -16q-13 -116 -88.5 -190t-210.5 -74t-210.5 74t-88.5 190z" />
282
+ <glyph unicode="&#x14f;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM236 1479l104 16q14 -88 68.5 -150.5t146.5 -62.5 t146.5 62.5t68.5 150.5l104 -16q-4 -60 -24 -113t-56.5 -98.5t-98 -72t-140.5 -26.5t-140.5 26.5t-98 72t-56.5 98.5t-24 113zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
283
+ <glyph unicode="&#x150;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM471 1483l188 311l115 -65l-215 -289 zM799 1483l188 311l115 -65l-215 -289z" />
284
+ <glyph unicode="&#x151;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM268 496q0 -170 79.5 -275.5t207.5 -105.5 q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5zM358 1206l177 353l120 -58l-204 -338zM666 1206l178 353l119 -58l-203 -338z" />
285
+ <glyph unicode="&#x152;" horiz-adv-x="1734" d="M106 678q0 318 172.5 491.5t485.5 173.5h850v-143h-570v-422h476v-145h-476v-488h590v-145h-878q-306 0 -478 178.5t-172 499.5zM283 678q0 -259 126 -399t367 -140h98v1065h-98q-242 0 -367.5 -135t-125.5 -391z" />
286
+ <glyph unicode="&#x153;" horiz-adv-x="1718" d="M94 496q0 122 36.5 222.5t98.5 165.5t143.5 100.5t172.5 35.5q116 0 211.5 -65t148.5 -185q57 118 149.5 184t200.5 66q182 0 283.5 -126.5t101.5 -342.5q0 -57 -6 -94h-653q6 -153 95 -248.5t218 -95.5q117 0 246 82l62 -117q-161 -103 -328 -103q-116 0 -213 66 t-154 182q-118 -248 -366 -248q-90 0 -171 35.5t-142.5 100.5t-97.5 165t-36 220zM266 496q0 -170 78 -275.5t201 -105.5t200.5 105.5t77.5 275.5q0 171 -77.5 278t-200.5 107t-201 -107t-78 -278zM981 569h512q0 153 -63.5 235.5t-178.5 82.5q-105 0 -181 -87t-89 -231z " />
287
+ <glyph unicode="&#x154;" horiz-adv-x="1165" d="M184 0v1343h420q471 0 471 -376q0 -153 -80.5 -249.5t-222.5 -131.5l342 -586h-192l-324 567h-244v-567h-170zM354 707h226q158 0 241.5 65.5t83.5 194.5q0 128 -81 183.5t-244 55.5h-226v-499zM479 1513l291 263l96 -113l-311 -236z" />
288
+ <glyph unicode="&#x155;" horiz-adv-x="710" d="M168 0v995h139l15 -180h6q52 96 125.5 150.5t156.5 54.5q58 0 107 -21l-33 -147q-53 16 -96 16q-69 0 -136.5 -55.5t-115.5 -173.5v-639h-168zM332 1257l289 342l118 -112l-321 -313z" />
289
+ <glyph unicode="&#x156;" horiz-adv-x="1165" d="M184 0v1343h420q471 0 471 -376q0 -153 -80.5 -249.5t-222.5 -131.5l342 -586h-192l-324 567h-244v-567h-170zM354 707h226q158 0 241.5 65.5t83.5 194.5q0 128 -81 183.5t-244 55.5h-226v-499zM428 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51 t53.5 -106q0 -171 -338 -187z" />
290
+ <glyph unicode="&#x157;" horiz-adv-x="710" d="M53 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 186 -51t54 -106q0 -171 -338 -187zM168 0v995h139l15 -180h6q52 96 125.5 150.5t156.5 54.5q58 0 107 -21l-33 -147q-53 16 -96 16q-69 0 -136.5 -55.5t-115.5 -173.5v-639h-168z" />
291
+ <glyph unicode="&#x158;" horiz-adv-x="1165" d="M184 0v1343h420q471 0 471 -376q0 -153 -80.5 -249.5t-222.5 -131.5l342 -586h-192l-324 567h-244v-567h-170zM287 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176zM354 707h226q158 0 241.5 65.5t83.5 194.5q0 128 -81 183.5t-244 55.5h-226v-499z" />
292
+ <glyph unicode="&#x159;" horiz-adv-x="710" d="M129 1462l72 66l241 -232h9l241 232l72 -66l-234 -286h-168zM168 0v995h139l15 -180h6q52 96 125.5 150.5t156.5 54.5q58 0 107 -21l-33 -147q-53 16 -96 16q-69 0 -136.5 -55.5t-115.5 -173.5v-639h-168z" />
293
+ <glyph unicode="&#x15a;" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -164 -125 -273.5t-332 -109.5q-138 0 -259.5 53t-211.5 146zM461 1513l291 263l96 -113l-311 -236z" />
294
+ <glyph unicode="&#x15b;" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -127 -97 -212t-268 -85q-101 0 -199 38t-172 100zM336 1257l289 342l118 -112l-321 -313z" />
295
+ <glyph unicode="&#x15c;" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -164 -125 -273.5t-332 -109.5q-138 0 -259.5 53t-211.5 146zM268 1485l215 231h176l215 -231l-73 -53l-226 190h-8l-225 -190z" />
296
+ <glyph unicode="&#x15d;" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -127 -97 -212t-268 -85q-101 0 -199 38t-172 100zM133 1229l234 287h168l233 -287l-72 -66l-241 232h-9l-241 -232z" />
297
+ <glyph unicode="&#x15e;" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -151 -108 -257.5t-290 -123.5l-47 -108q75 -18 112.5 -51.5t37.5 -93.5q0 -171 -338 -187l-16 82q125 9 174 32.5t49 69.5q0 41 -36 64t-122 35 l76 157q-249 18 -420 197z" />
298
+ <glyph unicode="&#x15f;" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -109 -73.5 -189t-205.5 -101l-49 -113q75 -18 112 -51.5t37 -93.5q0 -171 -338 -187l-16 82q125 9 174 32.5t49 69.5 q0 41 -35.5 64t-121.5 35l75 155q-95 6 -185 43t-159 95z" />
299
+ <glyph unicode="&#x160;" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -164 -125 -273.5t-332 -109.5q-138 0 -259.5 53t-211.5 146zM268 1677l74 54l225 -189h8l226 189l73 -54l-215 -231h-176z" />
300
+ <glyph unicode="&#x161;" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -127 -97 -212t-268 -85q-101 0 -199 38t-172 100zM133 1462l72 66l241 -232h9l241 232l72 -66l-233 -286h-168z" />
301
+ <glyph unicode="&#x162;" horiz-adv-x="1097" d="M57 1200v143h983v-143h-405v-1200h-25l-57 -131q75 -18 112 -51.5t37 -93.5q0 -171 -337 -187l-17 82q125 9 174 32.5t49 69.5q0 41 -35.5 64t-121.5 35l88 180h-39v1200h-406z" />
302
+ <glyph unicode="&#x163;" horiz-adv-x="692" d="M49 858v127l156 10l20 279h142v-279h268v-137h-268v-553q0 -97 35 -144.5t118 -47.5q42 0 113 26l33 -127q-99 -32 -164 -37l-47 -106q75 -18 112 -51.5t37 -93.5q0 -171 -338 -187l-16 82q125 9 174 32.5t49 69.5q0 41 -36 64t-122 35l80 164q-198 44 -198 323v551h-148 z" />
303
+ <glyph unicode="&#x164;" horiz-adv-x="1097" d="M57 1200v143h983v-143h-405v-1200h-172v1200h-406zM244 1677l73 54l226 -189h8l225 189l74 -54l-215 -231h-176z" />
304
+ <glyph unicode="&#x165;" horiz-adv-x="692" d="M49 858v127l156 10l20 279h142v-279h268v-137h-268v-553q0 -97 35 -144.5t118 -47.5q42 0 113 26l33 -127q-113 -37 -185 -37q-152 0 -218 87t-66 245v551h-148zM516 1556h121l-2 -116l-29 -318h-82z" />
305
+ <glyph unicode="&#x166;" horiz-adv-x="1097" d="M57 1200v143h983v-143h-405v-463h252v-96h-252v-641h-172v641h-252v90l180 6h72v463h-406z" />
306
+ <glyph unicode="&#x167;" horiz-adv-x="692" d="M49 473v88l148 10v287h-148v127l156 10l20 279h142v-279h268v-137h-268v-287h268v-98h-268v-168q0 -97 35 -144.5t118 -47.5q42 0 113 26l33 -127q-113 -37 -185 -37q-152 0 -218 87t-66 245v166h-148z" />
307
+ <glyph unicode="&#x168;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM299 1470q6 117 61.5 184.5t147.5 67.5q52 0 98.5 -22.5t75 -50t63.5 -50t66 -22.5q39 0 65 35 t33 100l115 -8q-6 -118 -61.5 -185t-147.5 -67q-52 0 -98.5 22.5t-75 50t-63.5 50t-66 22.5q-39 0 -65.5 -35t-32.5 -100z" />
308
+ <glyph unicode="&#x169;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM203 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72.5 -59t63 -59t66 -27q42 0 65.5 43.5t28.5 117.5 l112 -8q-5 -127 -55 -201.5t-151 -74.5q-40 0 -76.5 17.5t-63 43t-51 51t-50.5 43t-52 17.5q-87 0 -97 -162z" />
309
+ <glyph unicode="&#x16a;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM387 1505v117h549v-117h-549z" />
310
+ <glyph unicode="&#x16b;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM279 1231v117h544v-117h-544z" />
311
+ <glyph unicode="&#x16c;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM362 1708l103 16q13 -77 63 -124.5t134 -47.5t133.5 47.5t62.5 124.5l103 -16q-13 -116 -88.5 -190 t-210.5 -74t-211 74.5t-89 189.5z" />
312
+ <glyph unicode="&#x16d;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM238 1479l104 16q14 -88 68.5 -150.5t146.5 -62.5t146.5 62.5t68.5 150.5l105 -16q-4 -60 -24 -113t-57 -98.5 t-98.5 -72t-140.5 -26.5t-140.5 26.5t-98 72t-56.5 98.5t-24 113z" />
313
+ <glyph unicode="&#x16e;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM463 1616q0 84 56 135t143 51q86 0 142 -51t56 -135q0 -82 -56 -133t-142 -51q-87 0 -143 51 t-56 133zM555 1616q0 -52 30.5 -81.5t76.5 -29.5q44 0 74 29.5t30 81.5q0 50 -30.5 80t-73.5 30q-46 0 -76.5 -29.5t-30.5 -80.5z" />
314
+ <glyph unicode="&#x16f;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM332 1337q0 88 62 144.5t163 56.5t163 -56.5t62 -144.5q0 -89 -61.5 -145.5t-163.5 -56.5t-163.5 56.5 t-61.5 145.5zM440 1337q0 -57 33 -92t84 -35t84 35t33 92q0 56 -33.5 90.5t-83.5 34.5t-83.5 -34.5t-33.5 -90.5z" />
315
+ <glyph unicode="&#x170;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM453 1483l188 311l115 -65l-215 -289zM780 1483l189 311l114 -65l-215 -289z" />
316
+ <glyph unicode="&#x171;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM360 1206l177 353l120 -58l-204 -338zM668 1206l178 353l119 -58l-203 -338z" />
317
+ <glyph unicode="&#x172;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -106 -16 -189.5t-42.5 -140.5t-70.5 -103.5t-89.5 -76t-109.5 -59.5q-76 -37 -119 -94t-43 -111q0 -45 29.5 -69.5t69.5 -24.5q43 0 82 28l47 -92q-30 -24 -77 -40.5t-87 -16.5q-86 0 -141.5 46.5 t-55.5 131.5q0 18 2.5 35.5t8.5 34t11 29.5t16 28.5t16.5 24t20 24t19 20l20 20l17.5 17.5q-108 2 -192.5 35t-148.5 100.5t-98 179t-34 263.5z" />
318
+ <glyph unicode="&#x173;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 43.5 -203t142.5 -63q75 0 135.5 39t132.5 129v706h168v-995q-178 -87 -178 -215q0 -45 28 -69.5t66 -24.5q43 0 84 26l43 -84q-29 -23 -75.5 -39t-84.5 -16q-82 0 -134 45.5t-52 128.5q0 137 166 256l-16 148h-7q-75 -89 -152.5 -135 t-174.5 -46q-305 0 -305 390z" />
319
+ <glyph unicode="&#x174;" horiz-adv-x="1609" d="M47 1343h176l142 -731q12 -72 38 -217t39 -217h9q6 28 94 434l186 731h156l186 -731q19 -81 53.5 -234.5t44.5 -199.5h9q73 423 75 434l142 731h164l-279 -1343h-205l-203 809q-32 132 -65 305h-8q-12 -62 -38.5 -176t-29.5 -129l-198 -809h-203zM502 1485l215 231h176 l215 -231l-74 -53l-225 190h-8l-226 -190z" />
320
+ <glyph unicode="&#x175;" horiz-adv-x="1470" d="M49 995h172l148 -575q24 -98 59 -277h8q6 25 29.5 124.5t38.5 152.5l153 575h164l156 -575q12 -47 70 -277h8q14 55 61 277l146 575h159l-266 -995h-205l-143 535q-14 51 -35.5 147.5t-32.5 138.5h-8q-56 -245 -69 -289l-140 -532h-196zM420 1229l233 287h168l234 -287 l-72 -66l-242 232h-8l-241 -232z" />
321
+ <glyph unicode="&#x176;" horiz-adv-x="974" d="M-2 1343h182l174 -378q111 -254 129 -293h9q113 241 135 293l172 378h178l-404 -823v-520h-172v520zM184 1485l215 231h176l216 -231l-74 -53l-225 190h-9l-225 -190z" />
322
+ <glyph unicode="&#x177;" horiz-adv-x="956" d="M25 995h174l202 -551q41 -113 97 -280h8q16 51 45 150t39 130l178 551h164l-375 -1077q-28 -79 -60 -138t-76.5 -108t-104 -74.5t-132.5 -25.5q-61 0 -116 20l32 134q50 -15 76 -15q154 0 225 213l23 74zM180 1229l234 287h168l233 -287l-72 -66l-241 232h-8l-242 -232z " />
323
+ <glyph unicode="&#x178;" horiz-adv-x="974" d="M-2 1343h182l174 -378q111 -254 129 -293h9q113 241 135 293l172 378h178l-404 -823v-520h-172v520zM176 1565q0 44 28.5 72t71.5 28q44 0 72.5 -28t28.5 -72q0 -43 -28.5 -72t-72.5 -29q-43 0 -71.5 29t-28.5 72zM598 1565q0 44 28 72t72 28q43 0 72 -28t29 -72 q0 -43 -29 -72t-72 -29q-44 0 -72 29t-28 72z" />
324
+ <glyph unicode="&#x179;" horiz-adv-x="1103" d="M92 0v102l707 1098h-643v143h856v-100l-709 -1098h715v-145h-926zM465 1513l291 263l96 -113l-311 -236z" />
325
+ <glyph unicode="&#x17a;" horiz-adv-x="870" d="M63 0v90l525 768h-467v137h680v-90l-525 -768h541v-137h-754zM354 1257l289 342l119 -112l-322 -313z" />
326
+ <glyph unicode="&#x17b;" horiz-adv-x="1103" d="M92 0v102l707 1098h-643v143h856v-100l-709 -1098h715v-145h-926zM459 1573q0 47 33 77.5t83 30.5t83.5 -30.5t33.5 -77.5q0 -49 -33.5 -80t-83.5 -31t-83 31t-33 80z" />
327
+ <glyph unicode="&#x17c;" horiz-adv-x="870" d="M63 0v90l525 768h-467v137h680v-90l-525 -768h541v-137h-754zM358 1311q0 47 32 78.5t79 31.5t79 -31.5t32 -78.5q0 -49 -31.5 -80t-79.5 -31t-79.5 31t-31.5 80z" />
328
+ <glyph unicode="&#x17d;" horiz-adv-x="1103" d="M92 0v102l707 1098h-643v143h856v-100l-709 -1098h715v-145h-926zM272 1677l74 54l225 -189h9l225 189l74 -54l-215 -231h-177z" />
329
+ <glyph unicode="&#x17e;" horiz-adv-x="870" d="M63 0v90l525 768h-467v137h680v-90l-525 -768h541v-137h-754zM152 1462l71 66l242 -232h8l242 232l71 -66l-233 -286h-168z" />
330
+ <glyph unicode="&#x180;" horiz-adv-x="1114" d="M16 1169v88l152 11v190h168v-190h373v-99h-373v-190l-4 -178q160 139 311 139q190 0 292.5 -125.5t102.5 -339.5q0 -114 -35 -209.5t-94.5 -158.5t-137.5 -97.5t-163 -34.5q-69 0 -143.5 33.5t-140.5 93.5h-7l-14 -102h-135v1169h-152zM336 221q120 -104 244 -104t204 98 t80 258q0 150 -63.5 238t-198.5 88q-123 0 -266 -137v-441z" />
331
+ <glyph unicode="&#x18f;" horiz-adv-x="1347" d="M119 666q0 15 4 51h950q-9 249 -112.5 379.5t-294.5 130.5q-192 0 -328 -133l-84 116q76 73 184.5 115.5t239.5 42.5q265 0 414 -180t149 -512q0 -331 -153.5 -516t-417.5 -185q-258 0 -404.5 186t-146.5 505zM293 586q9 -220 110.5 -344.5t266.5 -124.5q172 0 277 121 t122 348h-776z" />
332
+ <glyph unicode="&#x192;" d="M37 -168l31 127q47 -20 102 -20q91 0 135 77t62 242l49 449h-178v120l141 9h51l12 114q24 211 104.5 314.5t239.5 103.5q80 0 160 -37l-37 -129q-70 29 -114 29q-158 0 -189 -266l-14 -129h258v-129h-272l-54 -486q-11 -99 -33.5 -172t-61 -131t-99.5 -87.5t-144 -29.5 q-92 0 -149 31z" />
333
+ <glyph unicode="&#x193;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q97 0 186 -27q-12 41 -12 82q0 99 63.5 161.5t167.5 62.5q53 0 127 -27l-32 -129q-5 2 -16 6t-17 6t-16.5 4t-20.5 2q-51 0 -80 -31t-29 -79q0 -43 14.5 -77t51.5 -85l-94 -113q-127 95 -289 95 q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5q-132 0 -244 48t-192.5 136t-125.5 220t-45 293z" />
334
+ <glyph unicode="&#x1a0;" horiz-adv-x="1359" d="M113 678q0 318 158 504t415 186q146 0 266 -63q85 17 125.5 57.5t40.5 110.5q0 60 -28 118l133 58q47 -78 47 -164q0 -193 -219 -250q101 -91 156 -233t55 -324q0 -321 -160 -512t-416 -191t-414.5 191t-158.5 512zM289 678q0 -252 108.5 -402.5t288.5 -150.5 t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395z" />
335
+ <glyph unicode="&#x1a1;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5q105 0 195 -43q176 36 176 194q0 56 -31 113l131 62q47 -78 47 -162q0 -112 -64 -179.5t-161 -95.5q79 -68 123.5 -173.5t44.5 -239.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5 t-147 100.5t-101.5 165t-37.5 220zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
336
+ <glyph unicode="&#x1af;" horiz-adv-x="1349" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h68q91 11 137.5 49.5t46.5 120.5q0 62 -31 119l133 58q47 -73 47 -164q0 -111 -63 -170.5t-174 -85.5v-715q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272z " />
337
+ <glyph unicode="&#x1b0;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h43q172 25 172 197q0 55 -28 113l131 61q47 -78 47 -162q0 -113 -56.5 -178.5t-140.5 -93.5v-932h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390z" />
338
+ <glyph unicode="&#x1c2;" horiz-adv-x="589" d="M12 330v86l158 10h76v252h-234v88l158 8h76v762h119v-762h210v-96h-210v-252h210v-96h-210v-842h-119v842h-234z" />
339
+ <glyph unicode="&#x1cd;" horiz-adv-x="1114" d="M6 0l455 1343h192l455 -1343h-182l-127 410h-490l-129 -410h-174zM250 1677l74 54l225 -189h8l225 189l74 -54l-215 -231h-176zM352 547h404l-64 205q-67 204 -135 452h-8q-60 -230 -133 -452z" />
340
+ <glyph unicode="&#x1ce;" horiz-adv-x="1032" d="M106 258q0 162 145.5 250t465.5 123q0 250 -205 250q-140 0 -297 -107l-65 117q201 129 391 129q177 0 261.5 -108t84.5 -302v-610h-139l-15 119h-6q-174 -144 -330 -144q-128 0 -209.5 76t-81.5 207zM221 1462l72 66l242 -232h8l241 232l72 -66l-233 -286h-168zM270 270 q0 -81 48.5 -120t127.5 -39q69 0 132 32.5t139 100.5v276q-241 -30 -344 -90.5t-103 -159.5z" />
341
+ <glyph unicode="&#x1cf;" horiz-adv-x="538" d="M-35 1677l74 54l225 -189h8l226 189l73 -54l-215 -231h-176zM184 0v1343h170v-1343h-170z" />
342
+ <glyph unicode="&#x1d0;" horiz-adv-x="503" d="M-66 1462l72 66l242 -232h8l242 232l71 -66l-233 -286h-168zM168 0v995h168v-995h-168z" />
343
+ <glyph unicode="&#x1d1;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -321 -159.5 -512t-415.5 -191t-415 191t-159 512zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395zM377 1677l74 54l225 -189h8l225 189 l74 -54l-215 -231h-176z" />
344
+ <glyph unicode="&#x1d2;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -120 -37.5 -220t-101.5 -165t-147 -100.5t-175 -35.5t-175 35.5t-147 100.5t-101.5 165t-37.5 220zM238 1462l71 66l242 -232h8l242 232l71 -66l-233 -286 h-168zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
345
+ <glyph unicode="&#x1d3;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1677l74 54l225 -189h9l225 189l74 -54l-215 -231h-177z" />
346
+ <glyph unicode="&#x1d4;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM240 1462l71 66l242 -232h8l242 232l71 -66l-233 -286h-168z" />
347
+ <glyph unicode="&#x1d5;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1559q0 40 26.5 66t66.5 26t67 -26t27 -66q0 -41 -27 -68t-67 -27t-66.5 27t-26.5 68z M387 1763v95h549v-95h-549zM778 1559q0 40 27 66t67 26t66.5 -26t26.5 -66q0 -41 -26.5 -68t-66.5 -27t-67 27t-27 68z" />
348
+ <glyph unicode="&#x1d6;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM266 1296q0 40 27 67.5t67 27.5t66.5 -27.5t26.5 -67.5q0 -38 -26.5 -65t-66.5 -27t-67 27t-27 65zM283 1536v96 h546v-96h-546zM662 1296q0 40 26.5 67.5t65.5 27.5q40 0 67 -27.5t27 -67.5q0 -38 -27 -65t-67 -27q-39 0 -65.5 26.5t-26.5 65.5z" />
349
+ <glyph unicode="&#x1d7;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1559q0 40 26.5 66t66.5 26t67 -26t27 -66q0 -41 -27 -68t-67 -27t-66.5 27t-26.5 68z M584 1739l194 243l109 -73l-228 -223zM778 1559q0 40 27 66t67 26t66.5 -26t26.5 -66q0 -41 -26.5 -68t-66.5 -27t-67 27t-27 68z" />
350
+ <glyph unicode="&#x1d8;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM266 1296q0 40 27 67.5t67 27.5t66.5 -27.5t26.5 -67.5q0 -38 -26.5 -65t-66.5 -27t-67 27t-27 65zM471 1493 l168 236l100 -70l-196 -215zM662 1296q0 40 26.5 67.5t65.5 27.5q40 0 67 -27.5t27 -67.5q0 -38 -27 -65t-67 -27q-39 0 -65.5 26.5t-26.5 65.5z" />
351
+ <glyph unicode="&#x1d9;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1559q0 40 26.5 66t66.5 26t67 -26t27 -66q0 -41 -27 -68t-67 -27t-66.5 27t-26.5 68z M385 1915l68 55l204 -153h9l204 153l68 -55l-203 -197h-147zM778 1559q0 40 27 66t67 26t66.5 -26t26.5 -66q0 -41 -26.5 -68t-66.5 -27t-67 27t-27 68z" />
352
+ <glyph unicode="&#x1da;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM266 1296q0 40 27 67.5t67 27.5t66.5 -27.5t26.5 -67.5q0 -38 -26.5 -65t-66.5 -27t-67 27t-27 65zM295 1663 l61 57l197 -149h8l197 149l61 -57l-192 -188h-140zM662 1296q0 40 26.5 67.5t65.5 27.5q40 0 67 -27.5t27 -67.5q0 -38 -27 -65t-67 -27q-39 0 -65.5 26.5t-26.5 65.5z" />
353
+ <glyph unicode="&#x1db;" horiz-adv-x="1320" d="M178 555v788h170v-792q0 -426 314 -426q317 0 317 426v792h164v-788q0 -157 -36 -272t-102.5 -181t-151 -96.5t-191.5 -30.5t-192 30.5t-152 96.5t-103.5 181t-36.5 272zM358 1559q0 40 26.5 66t66.5 26t67 -26t27 -66q0 -41 -27 -68t-67 -27t-66.5 27t-26.5 68z M436 1909l109 73l194 -243l-75 -53zM778 1559q0 40 27 66t67 26t66.5 -26t26.5 -66q0 -41 -26.5 -68t-66.5 -27t-67 27t-27 68z" />
354
+ <glyph unicode="&#x1dc;" horiz-adv-x="1114" d="M154 365v630h170v-608q0 -140 44 -203t142 -63q75 0 135.5 39t132.5 129v706h168v-995h-139l-14 156h-7q-75 -89 -152.5 -135t-174.5 -46q-305 0 -305 390zM266 1296q0 40 27 67.5t67 27.5t66.5 -27.5t26.5 -67.5q0 -38 -26.5 -65t-66.5 -27t-67 27t-27 65zM375 1659 l100 70l168 -236l-72 -49zM662 1296q0 40 26.5 67.5t65.5 27.5q40 0 67 -27.5t27 -67.5q0 -38 -27 -65t-67 -27q-39 0 -65.5 26.5t-26.5 65.5z" />
355
+ <glyph unicode="&#x1e2;" horiz-adv-x="1683" d="M16 0l705 1343h842v-143h-570v-422h475v-145h-475v-488h590v-145h-762v391h-422l-202 -391h-181zM469 528h352v680h-8q-163 -329 -219 -438zM881 1522v116h549v-116h-549z" />
356
+ <glyph unicode="&#x1e3;" horiz-adv-x="1607" d="M119 258q0 161 144.5 249t457.5 124q0 250 -203 250q-132 0 -289 -107l-67 117q201 129 377 129q108 0 180 -56t104 -155q60 99 144.5 155t183.5 56q181 0 280 -126t99 -343q0 -57 -6 -94h-645q6 -154 93 -249t216 -95q113 0 242 82l61 -117q-161 -103 -324 -103 q-205 0 -350 187q-209 -187 -405 -187q-129 0 -211 76t-82 207zM285 270q0 -81 48 -120t126 -39q71 0 153 40.5t148 112.5q-36 79 -39 205v51q-231 -30 -333.5 -91t-102.5 -159zM573 1231v117h545v-117h-545zM879 569h503q0 154 -60.5 236t-174.5 82q-104 0 -179.5 -87 t-88.5 -231z" />
357
+ <glyph unicode="&#x1e6;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM422 1677l74 54l225 -189h8l225 189l74 -54l-215 -231h-176z" />
358
+ <glyph unicode="&#x1e7;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM231 1462l72 66l242 -232h8l242 232l71 -66l-233 -286h-168zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16 q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5z" />
359
+ <glyph unicode="&#x1ea;" horiz-adv-x="1359" d="M106 678q0 318 158.5 504t415.5 186t416 -186.5t159 -503.5q0 -267 -105 -431.5t-314 -260.5q-79 -35 -119.5 -91.5t-40.5 -113.5q0 -45 29 -69.5t69 -24.5q43 0 82 28l47 -92q-30 -24 -77 -40.5t-87 -16.5q-85 0 -139.5 46.5t-54.5 131.5q0 65 34 126t91 107 q-259 6 -411.5 196t-152.5 505zM283 678q0 -252 108.5 -402.5t288.5 -150.5t288.5 150.5t108.5 402.5q0 249 -108 395t-289 146t-289 -146t-108 -395z" />
360
+ <glyph unicode="&#x1eb;" horiz-adv-x="1110" d="M94 496q0 122 37.5 222.5t101.5 165.5t147 100.5t175 35.5t175 -35.5t147 -100.5t101.5 -165.5t37.5 -222.5q0 -196 -84 -314.5t-242 -189.5q-67 -31 -106 -89t-39 -118q0 -45 27.5 -69.5t66.5 -24.5q40 0 84 26l43 -84q-29 -23 -75.5 -39t-86.5 -16q-80 0 -132 45.5 t-52 128.5q0 69 35.5 128.5t79.5 96.5q-90 5 -170 42.5t-140.5 103t-95.5 162t-35 211.5zM268 496q0 -170 79.5 -275.5t207.5 -105.5q129 0 208 105.5t79 275.5q0 172 -79 278.5t-208 106.5q-128 0 -207.5 -106.5t-79.5 -278.5z" />
361
+ <glyph unicode="&#x1f4;" horiz-adv-x="1263" d="M106 672q0 159 46.5 290.5t128.5 220t195.5 137t246.5 48.5q229 0 387 -166l-94 -110q-123 127 -289 127q-203 0 -323.5 -146.5t-120.5 -396.5q0 -257 116.5 -404t329.5 -147q72 0 137 21.5t105 58.5v350h-285v141h440v-565q-67 -71 -175 -113.5t-238 -42.5 q-132 0 -244 48t-192.5 136t-125.5 220t-45 293zM612 1513l291 263l96 -113l-311 -236z" />
362
+ <glyph unicode="&#x1f5;" horiz-adv-x="1032" d="M92 -190q0 62 38.5 120t107.5 105v8q-88 56 -88 162q0 58 31.5 105.5t76.5 78.5v8q-55 44 -92 115t-37 154q0 158 109 256t266 98q75 0 141 -25h346v-129h-205q37 -35 59.5 -89t22.5 -115q0 -156 -104 -251.5t-260 -95.5q-82 0 -150 35q-63 -56 -63 -119q0 -108 176 -108 h192q176 0 262.5 -57.5t86.5 -180.5q0 -143 -139.5 -243.5t-364.5 -100.5q-187 0 -299.5 71t-112.5 198zM240 -168q0 -80 77 -127t211 -47q138 0 227 61t89 142q0 67 -50 95t-151 28h-172q-72 0 -129 16q-102 -72 -102 -168zM293 666q0 -106 61 -172t150 -66t150 66t61 172 t-60 168.5t-151 62.5t-151 -62.5t-60 -168.5zM434 1257l289 342l119 -112l-322 -313z" />
363
+ <glyph unicode="&#x1f8;" horiz-adv-x="1325" d="M184 0v1343h176l486 -843l145 -279h8q-20 338 -20 428v694h162v-1343h-176l-488 846l-145 276h-8q22 -297 22 -420v-702h-162zM393 1663l96 113l291 -263l-75 -86z" />
364
+ <glyph unicode="&#x1f9;" horiz-adv-x="1120" d="M168 0v995h139l15 -143h6q80 80 159.5 124t174.5 44q303 0 303 -389v-631h-168v608q0 139 -45.5 202.5t-143.5 63.5q-72 0 -131 -35.5t-141 -117.5v-721h-168zM303 1487l119 112l289 -342l-86 -83z" />
365
+ <glyph unicode="&#x1fc;" horiz-adv-x="1683" d="M16 0l705 1343h842v-143h-570v-422h475v-145h-475v-488h590v-145h-762v391h-422l-202 -391h-181zM469 528h352v680h-8q-163 -329 -219 -438zM1044 1530l291 262l97 -113l-312 -235z" />
366
+ <glyph unicode="&#x1fd;" horiz-adv-x="1607" d="M119 258q0 161 144.5 249t457.5 124q0 250 -203 250q-132 0 -289 -107l-67 117q201 129 377 129q108 0 180 -56t104 -155q60 99 144.5 155t183.5 56q181 0 280 -126t99 -343q0 -57 -6 -94h-645q6 -154 93 -249t216 -95q113 0 242 82l61 -117q-161 -103 -324 -103 q-205 0 -350 187q-209 -187 -405 -187q-129 0 -211 76t-82 207zM285 270q0 -81 48 -120t126 -39q71 0 153 40.5t148 112.5q-36 79 -39 205v51q-231 -30 -333.5 -91t-102.5 -159zM731 1257l289 342l119 -112l-322 -313zM879 569h503q0 154 -60.5 236t-174.5 82 q-104 0 -179.5 -87t-88.5 -231z" />
367
+ <glyph unicode="&#x218;" horiz-adv-x="1093" d="M86 174l102 119q74 -77 171.5 -122.5t199.5 -45.5q131 0 206 60t75 159q0 40 -12.5 72.5t-28.5 53.5t-50.5 43.5t-59 34.5t-73.5 34l-192 84q-272 114 -272 346q0 154 119 255t302 101q116 0 219.5 -45t178.5 -121l-92 -110q-134 127 -306 127q-113 0 -181 -53.5 t-68 -143.5q0 -37 14.5 -69t32 -52t53.5 -41.5t58 -32t65 -28.5l190 -82q64 -28 110 -57.5t86 -72t60.5 -100t20.5 -129.5q0 -164 -125 -273.5t-332 -109.5q-138 0 -259.5 53t-211.5 146zM365 -381q125 9 174 32t49 66q0 74 -146 86l37 78q132 -15 186 -51t54 -106 q0 -171 -338 -187z" />
368
+ <glyph unicode="&#x219;" horiz-adv-x="858" d="M57 113l84 112q71 -58 140.5 -88.5t152.5 -30.5q94 0 145.5 44t51.5 112q0 29 -14.5 55t-33 43.5t-54 36t-59.5 28.5t-67 26q-51 18 -86 33t-78.5 41t-69.5 53.5t-44.5 69t-18.5 89.5q0 123 92.5 203t250.5 80q168 0 309 -113l-80 -106q-117 88 -227 88q-89 0 -136 -41.5 t-47 -102.5q0 -32 16 -57.5t45.5 -43.5t63.5 -33t76 -31q13 -5 20 -7q41 -15 62.5 -23.5t59 -26t59 -32t48.5 -38.5t41 -49t24 -59t10 -73q0 -127 -97 -212t-268 -85q-101 0 -199 38t-172 100zM262 -381q125 9 174 32t49 66q0 74 -145 86l37 78q132 -15 185.5 -51t53.5 -106 q0 -171 -337 -187z" />
369
+ <glyph unicode="&#x21a;" horiz-adv-x="1097" d="M57 1200v143h983v-143h-405v-1200h-172v1200h-406zM356 -381q125 9 174.5 32t49.5 66q0 74 -146 86l37 78q132 -15 186 -51t54 -106q0 -171 -338 -187z" />
370
+ <glyph unicode="&#x21b;" horiz-adv-x="692" d="M49 858v127l156 10l20 279h142v-279h268v-137h-268v-553q0 -97 35 -144.5t118 -47.5q42 0 113 26l33 -127q-113 -37 -185 -37q-152 0 -218 87t-66 245v551h-148zM242 -381q125 9 174 32t49 66q0 74 -146 86l37 78q132 -15 186 -51t54 -106q0 -171 -338 -187z" />
371
+ <glyph unicode="&#x2c6;" horiz-adv-x="1110" d="M238 1229l233 287h168l233 -287l-71 -66l-242 232h-8l-242 -232z" />
372
+ <glyph unicode="&#x2da;" horiz-adv-x="1110" d="M330 1337q0 88 62 144.5t163 56.5t163 -56.5t62 -144.5q0 -89 -61.5 -145.5t-163.5 -56.5t-163.5 56.5t-61.5 145.5zM438 1337q0 -57 33 -92t84 -35t84 35t33 92q0 56 -33.5 90.5t-83.5 34.5t-83.5 -34.5t-33.5 -90.5z" />
373
+ <glyph unicode="&#x2dc;" horiz-adv-x="1110" d="M201 1198q5 128 55.5 203.5t151.5 75.5q49 0 93.5 -27t72 -59t62.5 -59t66 -27q43 0 66.5 43.5t28.5 117.5l112 -8q-5 -126 -55.5 -201t-151.5 -75q-40 0 -76.5 17.5t-63 43t-50.5 51t-50 43t-52 17.5q-87 0 -97 -162z" />
374
+ <glyph unicode="&#x2000;" horiz-adv-x="991" />
375
+ <glyph unicode="&#x2001;" horiz-adv-x="1982" />
376
+ <glyph unicode="&#x2002;" horiz-adv-x="991" />
377
+ <glyph unicode="&#x2003;" horiz-adv-x="1982" />
378
+ <glyph unicode="&#x2004;" horiz-adv-x="660" />
379
+ <glyph unicode="&#x2005;" horiz-adv-x="495" />
380
+ <glyph unicode="&#x2006;" horiz-adv-x="330" />
381
+ <glyph unicode="&#x2007;" />
382
+ <glyph unicode="&#x2008;" horiz-adv-x="247" />
383
+ <glyph unicode="&#x2009;" horiz-adv-x="396" />
384
+ <glyph unicode="&#x200a;" horiz-adv-x="110" />
222
385
  <glyph unicode="&#x2010;" horiz-adv-x="636" d="M84 449v129h471v-129h-471z" />
223
386
  <glyph unicode="&#x2011;" horiz-adv-x="636" d="M84 449v129h471v-129h-471z" />
224
- <glyph unicode="&#x2012;" horiz-adv-x="636" d="M84 449v129h471v-129h-471z" />
387
+ <glyph unicode="&#x2012;" d="M84 457v116h852v-116h-852z" />
225
388
  <glyph unicode="&#x2013;" horiz-adv-x="983" d="M84 457v116h815v-116h-815z" />
226
389
  <glyph unicode="&#x2014;" horiz-adv-x="1638" d="M84 457v116h1470v-116h-1470z" />
227
- <glyph unicode="&#x2018;" horiz-adv-x="509" d="M117 1061q0 123 55 213t162 151l49 -79q-78 -51 -117 -108.5t-39 -145.5q6 2 19 2q41 0 74.5 -27t33.5 -78q0 -53 -30.5 -82.5t-77.5 -29.5q-61 0 -95 47t-34 137z" />
228
- <glyph unicode="&#x2019;" horiz-adv-x="509" d="M129 961q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5q0 -123 -56 -212t-163 -150z" />
229
- <glyph unicode="&#x201a;" horiz-adv-x="509" d="M129 -217q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5q0 -123 -56 -212t-163 -150z" />
230
- <glyph unicode="&#x201c;" horiz-adv-x="870" d="M117 1061q0 123 55 213t162 151l49 -79q-78 -51 -117 -108.5t-39 -145.5q6 2 19 2q41 0 74.5 -27t33.5 -78q0 -53 -30.5 -82.5t-77.5 -29.5q-61 0 -95 47t-34 137zM477 1061q0 123 55 213t162 151l49 -79q-78 -51 -117 -108.5t-39 -145.5q6 2 19 2q41 0 74.5 -27 t33.5 -78q0 -53 -30.5 -82.5t-77.5 -29.5q-61 0 -95 47t-34 137z" />
231
- <glyph unicode="&#x201d;" horiz-adv-x="870" d="M129 961q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5q0 -123 -56 -212t-163 -150zM489 961q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5 q0 -123 -56 -212t-163 -150z" />
232
- <glyph unicode="&#x201e;" horiz-adv-x="870" d="M129 -217q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5q0 -123 -56 -212t-163 -150zM489 -217q78 51 116 108t38 148q-6 -2 -17 -3q-43 0 -75.5 27t-32.5 76q0 53 30.5 84t77.5 31q59 0 94 -48.5t35 -138.5 q0 -123 -56 -212t-163 -150z" />
233
- <glyph unicode="&#x2022;" horiz-adv-x="622" d="M82 539q0 55 18.5 101t50 78t72.5 50t88 18q45 0 87 -18t74 -50t50.5 -78t18.5 -101t-18.5 -100.5t-50.5 -78t-74 -50t-87 -17.5q-47 0 -88 17.5t-72.5 50t-50 77.5t-18.5 101z" />
234
- <glyph unicode="&#x2026;" horiz-adv-x="1941" d="M192 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91zM878 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91t-85 -36q-51 0 -87 36t-36 91zM1565 102q0 59 36 95t87 36q49 0 85 -35.5t36 -95.5q0 -55 -36 -91 t-85 -36q-51 0 -87 36t-36 91z" />
235
- <glyph unicode="&#x202f;" horiz-adv-x="358" />
390
+ <glyph unicode="&#x2015;" horiz-adv-x="1638" d="M84 457v116h1470v-116h-1470z" />
391
+ <glyph unicode="&#x2016;" horiz-adv-x="798" d="M188 -512v2048h119v-2048h-119zM494 -512v2048h118v-2048h-118z" />
392
+ <glyph unicode="&#x2018;" horiz-adv-x="509" d="M117 1061q0 238 217 364l49 -79q-81 -53 -118.5 -111.5t-37.5 -142.5q6 2 19 2q44 0 76 -28t32 -77q0 -52 -30 -82t-78 -30q-62 0 -95.5 47.5t-33.5 136.5z" />
393
+ <glyph unicode="&#x2019;" horiz-adv-x="509" d="M129 961q80 53 117 112t37 144q-9 -3 -17 -3q-45 0 -76.5 27.5t-31.5 75.5q0 53 30 84t78 31q60 0 94.5 -49t34.5 -138q0 -235 -219 -362z" />
394
+ <glyph unicode="&#x201a;" horiz-adv-x="509" d="M129 -219q80 53 117 112t37 144q-6 -2 -17 -2q-45 0 -76.5 27.5t-31.5 74.5q0 53 30 84t78 31q60 0 94.5 -48.5t34.5 -137.5q0 -236 -219 -363z" />
395
+ <glyph unicode="&#x201c;" horiz-adv-x="872" d="M117 1061q0 238 217 364l49 -79q-81 -53 -118.5 -111.5t-37.5 -142.5q6 2 19 2q44 0 76 -28t32 -77q0 -52 -30 -82t-78 -30q-62 0 -95.5 47.5t-33.5 136.5zM479 1061q0 238 217 364l49 -79q-81 -53 -118 -111.5t-37 -142.5q6 2 18 2q44 0 76.5 -28.5t32.5 -76.5 q0 -52 -30.5 -82t-78.5 -30q-62 0 -95.5 47.5t-33.5 136.5z" />
396
+ <glyph unicode="&#x201d;" horiz-adv-x="872" d="M129 961q80 53 117 112t37 144q-9 -3 -17 -3q-45 0 -76.5 27.5t-31.5 75.5q0 53 30 84t78 31q60 0 94.5 -49t34.5 -138q0 -235 -219 -362zM492 961q79 53 116 112t37 144q-9 -3 -16 -3q-45 0 -77 28t-32 75q0 53 30.5 84t78.5 31q60 0 94.5 -49t34.5 -138 q0 -235 -219 -362z" />
397
+ <glyph unicode="&#x201e;" horiz-adv-x="872" d="M129 -219q80 53 117 112t37 144q-6 -2 -17 -2q-45 0 -76.5 27.5t-31.5 74.5q0 53 30 84t78 31q60 0 94.5 -48.5t34.5 -137.5q0 -236 -219 -363zM492 -219q79 53 116 112t37 144q-6 -2 -16 -2q-45 0 -77 27.5t-32 74.5q0 53 30.5 84t78.5 31q60 0 94.5 -48.5t34.5 -137.5 q0 -236 -219 -363z" />
398
+ <glyph unicode="&#x2020;" horiz-adv-x="929" d="M111 995v146l292 -11l-10 328h144l-11 -328l293 11v-146l-293 11l11 -1170h-144l10 1170z" />
399
+ <glyph unicode="&#x2021;" horiz-adv-x="929" d="M111 154v145l292 -14l-10 362l10 363l-292 -15v146l292 -11l-10 328h144l-11 -328l293 11v-146l-293 15l11 -363l-11 -362l293 14v-145l-293 10l11 -328h-144l10 328z" />
400
+ <glyph unicode="&#x2022;" horiz-adv-x="622" d="M82 539q0 108 67 177.5t162 69.5t162.5 -69.5t67.5 -177.5t-67.5 -177t-162.5 -69t-162 69t-67 177z" />
401
+ <glyph unicode="&#x2026;" horiz-adv-x="1941" d="M193 102q0 58 35 94.5t87 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87 36t-35 91zM879 102q0 58 35 94.5t87 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87 36t-35 91zM1565 102q0 58 35.5 94.5t87.5 36.5q50 0 85 -37t35 -94 q0 -55 -35 -91t-85 -36q-52 0 -87.5 36t-35.5 91z" />
402
+ <glyph unicode="&#x202f;" horiz-adv-x="256" />
403
+ <glyph unicode="&#x2030;" horiz-adv-x="2445" d="M72 946q0 199 82.5 310.5t222.5 111.5q139 0 222 -112t83 -310q0 -201 -83 -313.5t-222 -112.5q-140 0 -222.5 112.5t-82.5 313.5zM199 946q0 -156 48 -238.5t130 -82.5q80 0 128 82.5t48 238.5q0 155 -47.5 236.5t-128.5 81.5q-82 0 -130 -81t-48 -237zM410 -25 l741 1393h115l-742 -1393h-114zM1004 401q0 199 82.5 310.5t222.5 111.5q139 0 222 -112t83 -310q0 -201 -83 -313.5t-222 -112.5q-140 0 -222.5 112.5t-82.5 313.5zM1130 401q0 -156 48.5 -238.5t130.5 -82.5q80 0 128 82.5t48 238.5q0 155 -47.5 236.5t-128.5 81.5 q-82 0 -130.5 -81.5t-48.5 -236.5zM1765 401q0 198 83 310t223 112q139 0 222 -112t83 -310q0 -201 -83 -313.5t-222 -112.5q-140 0 -223 112.5t-83 313.5zM1892 401q0 -156 48.5 -238.5t130.5 -82.5q80 0 128 82.5t48 238.5q0 155 -47.5 236.5t-128.5 81.5 q-82 0 -130.5 -81.5t-48.5 -236.5z" />
404
+ <glyph unicode="&#x2032;" horiz-adv-x="509" d="M168 922l45 491l166 -2l-31 -186l-69 -305z" />
405
+ <glyph unicode="&#x2033;" horiz-adv-x="872" d="M168 922l45 491l166 -2l-31 -186l-69 -305zM530 922l45 491l166 -2l-30 -186l-70 -305z" />
406
+ <glyph unicode="&#x2035;" horiz-adv-x="509" d="M131 1411l31 -186l69 -305l111 2l-45 491z" />
236
407
  <glyph unicode="&#x2039;" horiz-adv-x="555" d="M92 453v127l279 317l73 -61l-241 -320l241 -323l-73 -58z" />
237
408
  <glyph unicode="&#x203a;" horiz-adv-x="555" d="M111 193l241 323l-241 320l71 61l281 -317v-127l-281 -318z" />
238
- <glyph unicode="&#x205f;" horiz-adv-x="448" />
239
- <glyph unicode="&#x20ac;" d="M47 481v88l121 9q-2 18 -2 36.5v36.5v32.5t2 33.5h-121v90l131 10q18 121 61.5 216t108 162t149.5 101.5t185 34.5q92 0 172 -46t133 -114l-100 -96q-43 53 -94.5 87t-116.5 34q-135 0 -218 -100.5t-108 -278.5h520v-100h-528q-2 -14 -2 -28.5v-31.5v-39.5t2 -37.5h446 v-99h-436q27 -174 106 -272t206 -98q76 0 132 36.5t109 108.5l101 -90q-68 -90 -154 -140.5t-199 -50.5q-92 0 -171 34t-140 99.5t-103 158.5t-61 214h-131z" />
240
- <glyph unicode="&#x2122;" horiz-adv-x="1304" d="M6 1274v110h531v-110h-205v-524h-123v524h-203zM635 750v634h153l95 -229l55 -162h8l55 162l93 229h151v-634h-117v280l13 215h-8l-146 -397h-92l-147 397h-9l15 -215v-280h-119z" />
241
- <glyph unicode="&#xe000;" horiz-adv-x="993" d="M0 0v993h993v-993h-993z" />
242
- <glyph unicode="&#xfb01;" horiz-adv-x="1138" d="M61 858v127l136 10v158q0 154 70.5 242t219.5 88q47 0 89 -9.5t77 -23.5l-37 -129q-55 25 -112 25q-139 0 -139 -193v-158h210v-137h-210v-858h-168v858h-136zM772 1309q0 49 34 78.5t83 29.5t83 -29.5t34 -78.5q0 -47 -34 -78t-83 -31t-83 31t-34 78zM803 0v995h168 v-995h-168z" />
243
- <glyph unicode="&#xfb02;" horiz-adv-x="1120" d="M61 858v127l136 10v158q0 154 70.5 242t219.5 88q47 0 89 -9.5t77 -23.5l-37 -129q-55 25 -112 25q-139 0 -139 -193v-158h210v-137h-210v-858h-168v858h-136zM766 201v1257h168v-1270q0 -41 14.5 -57t32.5 -16h15.5t21.5 4l22 -127q-16 -8 -38.5 -12.5t-57.5 -4.5 q-96 0 -137 57.5t-41 168.5z" />
409
+ <glyph unicode="&#x203c;" horiz-adv-x="1124" d="M174 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91zM211 1372h170l-4 -192l-23 -774h-116l-23 774zM707 102q0 58 35 94.5t87 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87 36t-35 91zM743 1372 h170l-4 -192l-22 -774h-117l-22 774z" />
410
+ <glyph unicode="&#x203d;" horiz-adv-x="884" d="M55 1221q149 176 367 176q164 0 265 -90.5t101 -231.5q0 -84 -36.5 -160t-86.5 -133.5t-98.5 -113.5t-78 -123t-19.5 -139h-119l-20 514l-11 170h144v-134l-10 -272q20 35 56.5 86.5t60 86t42.5 86.5t19 106q0 93 -58.5 154t-162.5 61q-150 0 -258 -131zM285 102 q0 58 34.5 94.5t86.5 36.5t87 -36.5t35 -94.5q0 -55 -35 -91t-87 -36q-51 0 -86 36t-35 91z" />
411
+ <glyph unicode="&#x203e;" horiz-adv-x="1024" d="M25 1163v113h974v-113h-974z" />
412
+ <glyph unicode="&#x203f;" horiz-adv-x="0" d="M-930 -215l49 84q188 -114 417.5 -170.5t463.5 -56.5t463.5 56.5t417.5 170.5l49 -84q-422 -262 -930 -262t-930 262z" />
413
+ <glyph unicode="&#x2044;" horiz-adv-x="176" d="M-342 -25l741 1393h115l-741 -1393h-115z" />
414
+ <glyph unicode="&#x2047;" horiz-adv-x="1669" d="M78 1227q149 170 352 170q156 0 249 -88.5t93 -239.5q0 -73 -34 -142.5t-80.5 -125.5t-92 -113.5t-72.5 -130t-18 -151.5h-147q-9 65 1.5 125t34.5 106.5t55.5 90.5t64.5 84t60.5 78t45.5 81.5t18 87.5q0 86 -52 142t-146 56q-136 0 -236 -118zM285 102q0 58 34.5 94.5 t86.5 36.5t87 -36.5t35 -94.5q0 -55 -35 -91t-87 -36q-51 0 -86 36t-35 91zM877 1227q149 170 352 170q156 0 249 -88.5t93 -239.5q0 -73 -34 -142.5t-80.5 -125.5t-92 -113.5t-72.5 -130t-18 -151.5h-148q-9 65 1.5 125t34.5 106.5t55.5 90.5t65 84t61 78t45.5 81.5 t18 87.5q0 86 -52 142t-147 56q-135 0 -235 -118zM1083 102q0 58 34.5 94.5t86.5 36.5t87.5 -36.5t35.5 -94.5q0 -55 -35.5 -91t-87.5 -36q-51 0 -86 36t-35 91z" />
415
+ <glyph unicode="&#x2048;" horiz-adv-x="1390" d="M78 1227q149 170 352 170q156 0 249 -88.5t93 -239.5q0 -73 -34 -142.5t-80.5 -125.5t-92 -113.5t-72.5 -130t-18 -151.5h-147q-9 65 1.5 125t34.5 106.5t55.5 90.5t64.5 84t60.5 78t45.5 81.5t18 87.5q0 86 -52 142t-146 56q-136 0 -236 -118zM285 102q0 58 34.5 94.5 t86.5 36.5t87 -36.5t35 -94.5q0 -55 -35 -91t-87 -36q-51 0 -86 36t-35 91zM973 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91zM1010 1372h170l-4 -192l-23 -774h-117l-22 774z" />
416
+ <glyph unicode="&#x2049;" horiz-adv-x="1390" d="M174 102q0 58 35.5 94.5t87.5 36.5q51 0 86 -37t35 -94q0 -55 -35.5 -91t-85.5 -36q-52 0 -87.5 36t-35.5 91zM211 1372h170l-4 -192l-23 -774h-116l-23 774zM598 1227q149 170 352 170q156 0 249 -88.5t93 -239.5q0 -73 -34 -142.5t-80.5 -125.5t-92 -113.5t-72.5 -130 t-18 -151.5h-147q-9 65 1.5 125t34.5 106.5t55.5 90.5t64.5 84t60.5 78t45.5 81.5t18 87.5q0 86 -52 142t-146 56q-136 0 -236 -118zM805 102q0 58 34.5 94.5t86.5 36.5t87.5 -36.5t35.5 -94.5q0 -55 -35.5 -91t-87.5 -36q-51 0 -86 36t-35 91z" />
417
+ <glyph unicode="&#x205f;" horiz-adv-x="495" />
418
+ <glyph unicode="&#x20a1;" d="M125 651q0 271 109 446t298 220l25 215h78l-25 -203q14 2 45 2q41 0 74 -8l25 209h77l-28 -234q96 -45 166 -135l-101 -94q-43 53 -82 80l-122 -1036q120 14 217 143l98 -90q-139 -180 -332 -191l-24 -200h-78l24 202q-53 5 -116 29l-27 -231h-78l33 268 q-121 78 -188.5 235t-67.5 373zM299 657q0 -279 104 -426l111 934q-104 -52 -159.5 -184t-55.5 -324zM471 160q50 -36 115 -45l127 1073q-40 8 -62 8q-21 0 -57 -4z" />
419
+ <glyph unicode="&#x20a4;" d="M109 481v90l141 11h65q-17 71 -34 120h-172v91l124 10h19q-25 91 -25 151q0 172 105 274.5t276 102.5q193 0 318 -153l-99 -97q-88 109 -206 109q-108 0 -168 -66t-60 -174q0 -61 21 -147h354v-101h-328q22 -71 29 -120h299v-101h-289v-12q0 -103 -31 -176t-96 -139v-9 h576v-145h-817v102q103 56 160 154t57 215v10h-219z" />
420
+ <glyph unicode="&#x20a6;" d="M23 492v77l153 11v122h-153v76l153 10v519h172l182 -519h179v519h133v-519h147v-86h-147v-122h147v-88h-147v-492h-172l-172 492h-189v-492h-133v492h-153zM276 1153l25 -365h96l-112 365h-9zM307 702l2 -45v-77h158l-43 120v2h-117zM561 702l33 -94l8 -28h111l-4 69v53 h-148zM629 492l104 -340h8l-22 340h-90z" />
421
+ <glyph unicode="&#x20a7;" d="M20 854v104l150 11v338h248q191 0 309 -81t137 -257h127v-115h-127q-18 -174 -139 -264t-307 -90h-86v-500h-162v854h-150zM332 616h65q134 0 213 61t92 177h-370v-238zM332 969h370q-15 117 -91 169t-214 52h-65v-221z" />
422
+ <glyph unicode="&#x20a9;" d="M-31 621v77l133 9l-79 600h157l60 -598h129l71 516h148l71 -516h134l59 598h145l-75 -598h120v-88h-133l-78 -621h-182l-84 621h-112l-82 -621h-174l-82 621h-146zM248 621l20 -215l23 -279h8l27 279l30 215h-108zM465 709h88l-8 55l-31 332h-8l-35 -334zM672 621 l30 -215l31 -279h8l23 279l20 215h-112z" />
423
+ <glyph unicode="&#x20ab;" d="M139 612q0 163 99.5 265t234.5 102q70 0 118 -22.5t105 -71.5l-8 170v69h-299v101h299v137h143v-137h160v-90l-160 -11v-878h-118l-13 88h-6q-105 -109 -233 -109q-150 0 -236 101t-86 286zM162 0v100h735v-100h-735zM289 614q0 -126 52.5 -197t147.5 -71q104 0 199 109 v317q-53 46 -94 65t-96 19q-87 0 -148 -70t-61 -172z" />
424
+ <glyph unicode="&#x20ac;" d="M47 481v88l121 9q-2 25 -2 73q0 46 2 66h-121v90l131 10q35 241 169 377.5t335 136.5q88 0 168 -44t137 -116l-100 -96q-96 121 -211 121q-133 0 -216 -99.5t-110 -279.5h520v-100h-528q-2 -18 -2 -60q0 -52 2 -77h446v-99h-436q27 -175 107 -272.5t205 -97.5 q72 0 129 35.5t112 109.5l101 -90q-144 -191 -353 -191q-186 0 -313 134t-162 372h-131z" />
425
+ <glyph unicode="&#x20ae;" d="M68 1176v131h876v-131h-352v-336l264 141v-109l-264 -141v-147l264 141v-109l-264 -139v-477h-168v395l-266 -139v109l266 139v147l-266 -139v109l266 139v416h-356z" />
426
+ <glyph unicode="&#x20b1;" d="M20 772v74l150 10v121h-150v76l150 8v246h248q349 0 428 -246h145v-84h-129q4 -40 4 -68q0 -37 -2 -53h127v-84h-143q-39 -134 -153.5 -203t-276.5 -69h-86v-500h-162v772h-150zM332 616h65q219 0 285 156h-350v-156zM332 856h370q5 40 5 53q0 18 -5 68h-370v-121z M332 1061h346q-63 129 -281 129h-65v-129z" />
427
+ <glyph unicode="&#x20b2;" d="M96 651q0 283 116.5 461.5t317.5 212.5v207h123v-203q160 -14 283 -162l-100 -94q-101 123 -222 123q-165 0 -255.5 -144t-90.5 -395q0 -253 88 -397.5t244 -144.5q56 0 107.5 21.5t80.5 53.5v347h-206v141h360v-553q-121 -127 -289 -145v-205h-123v205 q-197 25 -315.5 203t-118.5 468z" />
428
+ <glyph unicode="&#x20b4;" d="M47 481v88l139 11h86q42 52 152 137h-377v90l141 10h367q115 99 115 207q0 75 -50 123.5t-133 48.5q-70 0 -122.5 -28.5t-110.5 -88.5l-88 95q68 75 144.5 116t181.5 41q154 0 249 -85.5t95 -227.5q0 -111 -64 -201h197v-100h-287q-24 -22 -53.5 -45t-65.5 -50t-55 -42 h461v-99h-566q-69 -86 -69 -186q0 -82 58.5 -133t162.5 -51q141 0 287 135l76 -111q-71 -71 -168 -115.5t-195 -44.5q-175 0 -280 88t-105 242q0 94 37 176h-160z" />
429
+ <glyph unicode="&#x20b5;" d="M125 651q0 285 120 464t326 210v201h107v-195q82 -6 155.5 -49.5t127.5 -110.5l-101 -96q-80 108 -182 119v-1079q111 19 203 141l98 -90q-129 -164 -301 -186v-205h-107v202q-203 21 -324.5 200t-121.5 474zM299 657q0 -229 71 -371.5t201 -168.5v1069 q-131 -32 -201.5 -171t-70.5 -358z" />
430
+ <glyph unicode="&#x20b8;" d="M68 971v90l143 8h733v-98h-352v-971h-168v971h-356zM68 1206v101h876v-101h-876z" />
431
+ <glyph unicode="&#x20b9;" d="M147 516v137h146q150 0 234.5 60.5t93.5 181.5h-474v90l142 10h327q-21 91 -102 131.5t-221 40.5h-146v140h777v-101h-291q59 -31 98.5 -86t52.5 -125h140v-100h-136q-9 -149 -91.5 -240t-219.5 -123l385 -532h-192l-365 516h-158z" />
432
+ <glyph unicode="&#x20ba;" d="M47 436v109l189 98v148l-189 -99v107l189 100v408h172v-324l335 176v-108l-335 -177v-147l335 176v-106l-335 -179v-483q69 2 138 25t127.5 64t95 105.5t36.5 141.5q0 49 -10 88l143 37q14 -66 14 -117q0 -168 -94.5 -285t-253.5 -170t-368 -49v560z" />
433
+ <glyph unicode="&#x20bd;" d="M20 340v88l150 10v125h-150v90l150 9v645h246q99 0 179.5 -21t142 -64t95 -114.5t33.5 -165.5q0 -188 -124.5 -283.5t-325.5 -95.5h-84v-125h413v-98h-413v-340h-162v340h-150zM332 662h65q149 0 229.5 69.5t80.5 202.5q0 136 -78 196t-232 60h-65v-528z" />
434
+ <glyph unicode="&#x2122;" horiz-adv-x="1304" d="M6 1274v110h531v-110h-205v-524h-123v524h-203zM635 750v634h149l97 -237l57 -160h8l58 160l94 237h147v-634h-112v280l14 215h-8l-150 -397h-96l-150 397h-8l15 -215v-280h-115z" />
435
+ <glyph unicode="&#x25fc;" horiz-adv-x="993" d="M0 0v993h993v-993h-993z" />
436
+ <hkern u1="&#x2f;" u2="&#x1d0;" k="-133" />
437
+ <hkern u1="&#x2f;" u2="&#x135;" k="-133" />
438
+ <hkern u1="&#x2f;" u2="&#x12d;" k="-133" />
439
+ <hkern u1="&#x2f;" u2="&#x12b;" k="-133" />
440
+ <hkern u1="&#x2f;" u2="&#x129;" k="-133" />
441
+ <hkern u1="&#x2f;" u2="&#xef;" k="-133" />
442
+ <hkern u1="&#x2f;" u2="&#xee;" k="-133" />
443
+ <hkern u1="&#x2f;" u2="&#xec;" k="-31" />
444
+ <hkern u1="F" u2="&#x12b;" k="-59" />
445
+ <hkern u1="F" u2="&#x129;" k="-74" />
446
+ <hkern u1="F" u2="&#xef;" k="-74" />
447
+ <hkern u1="F" u2="&#xee;" k="-59" />
448
+ <hkern u1="V" u2="&#x1d0;" k="-86" />
449
+ <hkern u1="V" u2="&#x12d;" k="-109" />
450
+ <hkern u1="V" u2="&#x12b;" k="-109" />
451
+ <hkern u1="V" u2="&#x129;" k="-131" />
452
+ <hkern u1="V" u2="&#xef;" k="-131" />
453
+ <hkern u1="V" u2="&#xee;" k="-109" />
454
+ <hkern u1="V" u2="&#xed;" k="-27" />
455
+ <hkern u1="V" u2="&#xec;" k="-41" />
456
+ <hkern u1="x" u2="&#x3b;" k="-14" />
457
+ <hkern u1="x" u2="&#x2c;" k="-14" />
458
+ <hkern g1="backslash" g2="Eth,Dcroat" k="59" />
459
+ <hkern g1="backslash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="-68" />
460
+ <hkern g1="backslash" g2="Hbar" k="37" />
461
+ <hkern g1="backslash" g2="j,jcircumflex" k="-150" />
462
+ <hkern g1="backslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="174" />
463
+ <hkern g1="backslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="59" />
464
+ <hkern g1="backslash" g2="v" k="41" />
465
+ <hkern g1="backslash" g2="V" k="109" />
466
+ <hkern g1="backslash" g2="w,wcircumflex" k="20" />
467
+ <hkern g1="backslash" g2="W,Wcircumflex" k="59" />
468
+ <hkern g1="backslash" g2="y,yacute,ydieresis,ycircumflex" k="-27" />
469
+ <hkern g1="backslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="150" />
470
+ <hkern g1="exclamdown" g2="j,jcircumflex" k="-68" />
471
+ <hkern g1="exclamdown" g2="V" k="66" />
472
+ <hkern g1="exclamdown" g2="W,Wcircumflex" k="33" />
473
+ <hkern g1="exclamdown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="92" />
474
+ <hkern g1="periodcentered" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="131" />
475
+ <hkern g1="periodcentered" g2="V" k="53" />
476
+ <hkern g1="periodcentered" g2="Y,Yacute,Ycircumflex,Ydieresis" k="119" />
477
+ <hkern g1="periodcentered" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="49" />
478
+ <hkern g1="periodcentered" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="49" />
479
+ <hkern g1="periodcentered" g2="x" k="41" />
480
+ <hkern g1="periodcentered" g2="X" k="53" />
481
+ <hkern g1="periodcentered" g2="Z,Zacute,Zdotaccent,Zcaron" k="78" />
482
+ <hkern g1="questiondown" g2="j,jcircumflex" k="-121" />
483
+ <hkern g1="questiondown" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="178" />
484
+ <hkern g1="questiondown" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="82" />
485
+ <hkern g1="questiondown" g2="V" k="119" />
486
+ <hkern g1="questiondown" g2="W,Wcircumflex" k="82" />
487
+ <hkern g1="questiondown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="182" />
488
+ <hkern g1="questiondown" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="127" />
489
+ <hkern g1="questiondown" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="72" />
490
+ <hkern g1="questiondown" g2="X" k="86" />
491
+ <hkern g1="questiondown" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="72" />
492
+ <hkern g1="questiondown" g2="f" k="127" />
493
+ <hkern g1="questiondown" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="43" />
494
+ <hkern g1="questiondown" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="90" />
495
+ <hkern g1="slash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
496
+ <hkern g1="slash" g2="j,jcircumflex" k="-51" />
497
+ <hkern g1="slash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="82" />
498
+ <hkern g1="slash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="49" />
499
+ <hkern g1="slash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="63" />
500
+ <hkern g1="slash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
501
+ <hkern g1="slash" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,uni01D0" k="-51" />
502
+ <hkern g1="slash" g2="J,Jcircumflex" k="164" />
503
+ <hkern g1="slash" g2="uni018F" k="29" />
504
+ <hkern g1="slash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="-18" />
505
+ <hkern g1="slash" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="41" />
506
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="29" />
507
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="113" />
508
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="V" k="29" />
509
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
510
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="question,uni203D,uni2047,uni2048" k="53" />
511
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteright,quotedblright" k="115" />
512
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="asterisk" k="193" />
513
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="periodcentered" k="49" />
514
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="-47" />
515
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="12" />
516
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="f" k="20" />
517
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
518
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="-47" />
519
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="12" />
520
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="31" />
521
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="v" k="14" />
522
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="w,wcircumflex" k="8" />
523
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="x" k="8" />
524
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="X" k="-8" />
525
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="y,yacute,ydieresis,ycircumflex" k="14" />
526
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="Z,Zacute,Zdotaccent,Zcaron" k="16" />
527
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteleft,quotedblleft" k="137" />
528
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quotedbl,quotesingle" k="113" />
529
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="backslash" k="82" />
530
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="registered" k="164" />
531
+ <hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="trademark" k="106" />
532
+ <hkern g1="B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
533
+ <hkern g1="B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
534
+ <hkern g1="B" g2="V" k="12" />
535
+ <hkern g1="B" g2="W,Wcircumflex" k="8" />
536
+ <hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
537
+ <hkern g1="B" g2="quoteright,quotedblright" k="41" />
538
+ <hkern g1="B" g2="asterisk" k="61" />
539
+ <hkern g1="B" g2="periodcentered" k="41" />
540
+ <hkern g1="B" g2="v" k="29" />
541
+ <hkern g1="B" g2="w,wcircumflex" k="20" />
542
+ <hkern g1="B" g2="x" k="20" />
543
+ <hkern g1="B" g2="X" k="8" />
544
+ <hkern g1="B" g2="y,yacute,ydieresis,ycircumflex" k="29" />
545
+ <hkern g1="B" g2="Z,Zacute,Zdotaccent,Zcaron" k="8" />
546
+ <hkern g1="B" g2="quoteleft,quotedblleft" k="29" />
547
+ <hkern g1="B" g2="trademark" k="41" />
548
+ <hkern g1="B" g2="J,Jcircumflex" k="33" />
549
+ <hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
550
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
551
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
552
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="V" k="29" />
553
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="49" />
554
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="periodcentered" k="29" />
555
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
556
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="v" k="-12" />
557
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="w,wcircumflex" k="-12" />
558
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="x" k="-16" />
559
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="y,yacute,ydieresis,ycircumflex" k="-12" />
560
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="registered" k="-41" />
561
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
562
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="43" />
563
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="41" />
564
+ <hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="guillemotleft,guilsinglleft" k="29" />
565
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="55" />
566
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="37" />
567
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="V" k="8" />
568
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="W,Wcircumflex" k="8" />
569
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="14" />
570
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered" k="106" />
571
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="59" />
572
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
573
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="29" />
574
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="v" k="29" />
575
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="w,wcircumflex" k="20" />
576
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="X" k="8" />
577
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="y,yacute,ydieresis,ycircumflex" k="29" />
578
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
579
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="registered" k="-20" />
580
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="trademark" k="-49" />
581
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="J,Jcircumflex" k="20" />
582
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="49" />
583
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="41" />
584
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="53" />
585
+ <hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemotleft,guilsinglleft" k="29" />
586
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
587
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
588
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="V" k="33" />
589
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="W,Wcircumflex" k="20" />
590
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="Y,Yacute,Ycircumflex,Ydieresis" k="53" />
591
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="question,uni203D,uni2047,uni2048" k="14" />
592
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="quoteright,quotedblright" k="20" />
593
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="asterisk" k="70" />
594
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="periodcentered" k="8" />
595
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="29" />
596
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="v" k="-10" />
597
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="w,wcircumflex" k="-10" />
598
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="x" k="14" />
599
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="y,yacute,ydieresis,ycircumflex" k="-10" />
600
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="backslash" k="41" />
601
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="trademark" k="35" />
602
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="J,Jcircumflex" k="41" />
603
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="41" />
604
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
605
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-20" />
606
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="49" />
607
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="v" k="20" />
608
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="x" k="63" />
609
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="y,yacute,ydieresis,ycircumflex" k="20" />
610
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
611
+ <hkern g1="f" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="-94" />
612
+ <hkern g1="f" g2="V" k="-135" />
613
+ <hkern g1="f" g2="W,Wcircumflex" k="-94" />
614
+ <hkern g1="f" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-121" />
615
+ <hkern g1="f" g2="question,uni203D,uni2047,uni2048" k="-53" />
616
+ <hkern g1="f" g2="quoteright,quotedblright" k="-70" />
617
+ <hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="102" />
618
+ <hkern g1="f" g2="periodcentered" k="41" />
619
+ <hkern g1="f" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
620
+ <hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="8" />
621
+ <hkern g1="f" g2="v" k="-27" />
622
+ <hkern g1="f" g2="x" k="8" />
623
+ <hkern g1="f" g2="X" k="-68" />
624
+ <hkern g1="f" g2="quoteleft,quotedblleft" k="-70" />
625
+ <hkern g1="f" g2="quotedbl,quotesingle" k="-82" />
626
+ <hkern g1="f" g2="backslash" k="-127" />
627
+ <hkern g1="f" g2="registered" k="-154" />
628
+ <hkern g1="f" g2="trademark" k="-156" />
629
+ <hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="29" />
630
+ <hkern g1="f" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
631
+ <hkern g1="f" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="29" />
632
+ <hkern g1="f" g2="j,jcircumflex" k="20" />
633
+ <hkern g1="f" g2="z,zacute,zdotaccent,zcaron" k="29" />
634
+ <hkern g1="f" g2="parenright,bracketright,braceright" k="-100" />
635
+ <hkern g1="f" g2="exclam,exclamdbl,uni2049" k="-29" />
636
+ <hkern g1="f" g2="slash" k="29" />
637
+ <hkern g1="F" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
638
+ <hkern g1="F" g2="V" k="-8" />
639
+ <hkern g1="F" g2="W,Wcircumflex" k="-8" />
640
+ <hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="147" />
641
+ <hkern g1="F" g2="periodcentered" k="29" />
642
+ <hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="70" />
643
+ <hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="76" />
644
+ <hkern g1="F" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
645
+ <hkern g1="F" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
646
+ <hkern g1="F" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="33" />
647
+ <hkern g1="F" g2="v" k="41" />
648
+ <hkern g1="F" g2="w,wcircumflex" k="33" />
649
+ <hkern g1="F" g2="x" k="53" />
650
+ <hkern g1="F" g2="X" k="49" />
651
+ <hkern g1="F" g2="y,yacute,ydieresis,ycircumflex" k="33" />
652
+ <hkern g1="F" g2="Z,Zacute,Zdotaccent,Zcaron" k="61" />
653
+ <hkern g1="F" g2="registered" k="-41" />
654
+ <hkern g1="F" g2="trademark" k="-78" />
655
+ <hkern g1="F" g2="J,Jcircumflex" k="283" />
656
+ <hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="41" />
657
+ <hkern g1="F" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="49" />
658
+ <hkern g1="F" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="29" />
659
+ <hkern g1="F" g2="guillemotleft,guilsinglleft" k="41" />
660
+ <hkern g1="F" g2="z,zacute,zdotaccent,zcaron" k="61" />
661
+ <hkern g1="F" g2="slash" k="141" />
662
+ <hkern g1="F" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
663
+ <hkern g1="germandbls" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="33" />
664
+ <hkern g1="germandbls" g2="question,uni203D,uni2047,uni2048" k="33" />
665
+ <hkern g1="germandbls" g2="quoteright,quotedblright" k="115" />
666
+ <hkern g1="germandbls" g2="f" k="8" />
667
+ <hkern g1="germandbls" g2="v" k="33" />
668
+ <hkern g1="germandbls" g2="w,wcircumflex" k="29" />
669
+ <hkern g1="germandbls" g2="x" k="-12" />
670
+ <hkern g1="germandbls" g2="y,yacute,ydieresis,ycircumflex" k="33" />
671
+ <hkern g1="germandbls" g2="quoteleft,quotedblleft" k="98" />
672
+ <hkern g1="germandbls" g2="quotedbl,quotesingle" k="137" />
673
+ <hkern g1="germandbls" g2="backslash" k="53" />
674
+ <hkern g1="germandbls" g2="registered" k="72" />
675
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="53" />
676
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
677
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="question,uni203D,uni2047,uni2048" k="74" />
678
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="asterisk" k="68" />
679
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="periodcentered" k="16" />
680
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="33" />
681
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="v" k="8" />
682
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="w,wcircumflex" k="8" />
683
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="y,yacute,ydieresis,ycircumflex" k="-31" />
684
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="registered" k="-29" />
685
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="29" />
686
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="j,jcircumflex" k="-76" />
687
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="z,zacute,zdotaccent,zcaron" k="29" />
688
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="parenright,bracketright,braceright" k="-29" />
689
+ <hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="slash" k="-98" />
690
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
691
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="V" k="29" />
692
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="W,Wcircumflex" k="8" />
693
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="asterisk" k="57" />
694
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="8" />
695
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="registered" k="-16" />
696
+ <hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="trademark" k="-25" />
697
+ <hkern g1="Hbar" g2="registered" k="-39" />
698
+ <hkern g1="Hbar" g2="trademark" k="-12" />
699
+ <hkern g1="Hbar" g2="slash" k="27" />
700
+ <hkern g1="J,Jcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="49" />
701
+ <hkern g1="J,Jcircumflex" g2="J,Jcircumflex" k="82" />
702
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="43" />
703
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="72" />
704
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="Y,Yacute,Ycircumflex,Ydieresis" k="23" />
705
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="question,uni203D,uni2047,uni2048" k="25" />
706
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="quoteright,quotedblright" k="53" />
707
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="asterisk" k="43" />
708
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="colon,semicolon" k="-27" />
709
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="-27" />
710
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="periodcentered" k="53" />
711
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
712
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="29" />
713
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="x" k="14" />
714
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="trademark" k="41" />
715
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
716
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="37" />
717
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="90" />
718
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotleft,guilsinglleft" k="53" />
719
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotright,guilsinglright" k="23" />
720
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="j,jcircumflex" k="20" />
721
+ <hkern g1="k,kcommaaccent,kgreenlandic" g2="z,zacute,zdotaccent,zcaron" k="14" />
722
+ <hkern g1="K,Kcommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="68" />
723
+ <hkern g1="K,Kcommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="35" />
724
+ <hkern g1="K,Kcommaaccent" g2="V" k="25" />
725
+ <hkern g1="K,Kcommaaccent" g2="W,Wcircumflex" k="20" />
726
+ <hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="33" />
727
+ <hkern g1="K,Kcommaaccent" g2="question,uni203D,uni2047,uni2048" k="14" />
728
+ <hkern g1="K,Kcommaaccent" g2="quoteright,quotedblright" k="37" />
729
+ <hkern g1="K,Kcommaaccent" g2="asterisk" k="82" />
730
+ <hkern g1="K,Kcommaaccent" g2="periodcentered" k="94" />
731
+ <hkern g1="K,Kcommaaccent" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
732
+ <hkern g1="K,Kcommaaccent" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="41" />
733
+ <hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="29" />
734
+ <hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="29" />
735
+ <hkern g1="K,Kcommaaccent" g2="v" k="41" />
736
+ <hkern g1="K,Kcommaaccent" g2="w,wcircumflex" k="33" />
737
+ <hkern g1="K,Kcommaaccent" g2="x" k="33" />
738
+ <hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex" k="41" />
739
+ <hkern g1="K,Kcommaaccent" g2="quoteleft,quotedblleft" k="37" />
740
+ <hkern g1="K,Kcommaaccent" g2="quotedbl,quotesingle" k="43" />
741
+ <hkern g1="K,Kcommaaccent" g2="trademark" k="-18" />
742
+ <hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="18" />
743
+ <hkern g1="K,Kcommaaccent" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="14" />
744
+ <hkern g1="K,Kcommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="61" />
745
+ <hkern g1="K,Kcommaaccent" g2="guillemotleft,guilsinglleft" k="20" />
746
+ <hkern g1="K,Kcommaaccent" g2="guillemotright,guilsinglright" k="8" />
747
+ <hkern g1="K,Kcommaaccent" g2="j,jcircumflex" k="20" />
748
+ <hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron" k="29" />
749
+ <hkern g1="dcaron,lcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="18" />
750
+ <hkern g1="dcaron,lcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="31" />
751
+ <hkern g1="dcaron,lcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="25" />
752
+ <hkern g1="dcaron,lcaron" g2="backslash" k="-109" />
753
+ <hkern g1="dcaron,lcaron" g2="z,zacute,zdotaccent,zcaron" k="29" />
754
+ <hkern g1="dcaron,lcaron" g2="slash" k="29" />
755
+ <hkern g1="Lcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
756
+ <hkern g1="l,lacute,lcommaaccent" g2="j,jcircumflex" k="-16" />
757
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
758
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="246" />
759
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="V" k="156" />
760
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="W,Wcircumflex" k="115" />
761
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="156" />
762
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="question,uni203D,uni2047,uni2048" k="66" />
763
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteright,quotedblright" k="160" />
764
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="asterisk" k="311" />
765
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="periodcentered" k="188" />
766
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="-6" />
767
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="f" k="29" />
768
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="53" />
769
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
770
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="59" />
771
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="v" k="74" />
772
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="w,wcircumflex" k="70" />
773
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="y,yacute,ydieresis,ycircumflex" k="74" />
774
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteleft,quotedblleft" k="160" />
775
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quotedbl,quotesingle" k="182" />
776
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="backslash" k="164" />
777
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="registered" k="188" />
778
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="trademark" k="201" />
779
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="45" />
780
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="8" />
781
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="25" />
782
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="111" />
783
+ <hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="guillemotleft,guilsinglleft" k="70" />
784
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
785
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="V" k="20" />
786
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="Y,Yacute,Ycircumflex,Ydieresis" k="33" />
787
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="question,uni203D,uni2047,uni2048" k="14" />
788
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="quoteright,quotedblright" k="41" />
789
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="asterisk" k="70" />
790
+ <hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="trademark" k="41" />
791
+ <hkern g1="ohorn" g2="question,uni203D,uni2047,uni2048" k="-8" />
792
+ <hkern g1="ohorn" g2="quoteright,quotedblright" k="-33" />
793
+ <hkern g1="ohorn" g2="x" k="8" />
794
+ <hkern g1="ohorn" g2="quoteleft,quotedblleft" k="-18" />
795
+ <hkern g1="ohorn" g2="quotedbl,quotesingle" k="-23" />
796
+ <hkern g1="ohorn" g2="backslash" k="-41" />
797
+ <hkern g1="ohorn" g2="registered" k="-53" />
798
+ <hkern g1="ohorn" g2="z,zacute,zdotaccent,zcaron" k="8" />
799
+ <hkern g1="ohorn" g2="parenright,bracketright,braceright" k="-41" />
800
+ <hkern g1="Ohorn" g2="registered" k="-12" />
801
+ <hkern g1="Ohorn" g2="trademark" k="-20" />
802
+ <hkern g1="Ohorn" g2="z,zacute,zdotaccent,zcaron" k="8" />
803
+ <hkern g1="Ohorn" g2="slash" k="29" />
804
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="35" />
805
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="117" />
806
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="V" k="39" />
807
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="94" />
808
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="question,uni203D,uni2047,uni2048" k="25" />
809
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteright,quotedblright" k="53" />
810
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="asterisk" k="51" />
811
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="20" />
812
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="29" />
813
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="v" k="8" />
814
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="w,wcircumflex" k="8" />
815
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="x" k="35" />
816
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="X" k="8" />
817
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="y,yacute,ydieresis,ycircumflex" k="8" />
818
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteleft,quotedblleft" k="29" />
819
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quotedbl,quotesingle" k="59" />
820
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="backslash" k="53" />
821
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="registered" k="14" />
822
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-12" />
823
+ <hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="z,zacute,zdotaccent,zcaron" k="12" />
824
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
825
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="V" k="20" />
826
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="W,Wcircumflex" k="12" />
827
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
828
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="asterisk" k="70" />
829
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
830
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="x" k="29" />
831
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="X" k="35" />
832
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
833
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="registered" k="-12" />
834
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="trademark" k="53" />
835
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="J,Jcircumflex" k="82" />
836
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="z,zacute,zdotaccent,zcaron" k="14" />
837
+ <hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="slash" k="37" />
838
+ <hkern g1="P" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
839
+ <hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis" k="20" />
840
+ <hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="229" />
841
+ <hkern g1="P" g2="periodcentered" k="16" />
842
+ <hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="88" />
843
+ <hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="102" />
844
+ <hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
845
+ <hkern g1="P" g2="x" k="29" />
846
+ <hkern g1="P" g2="X" k="49" />
847
+ <hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron" k="160" />
848
+ <hkern g1="P" g2="registered" k="-61" />
849
+ <hkern g1="P" g2="J,Jcircumflex" k="299" />
850
+ <hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
851
+ <hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="61" />
852
+ <hkern g1="P" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="49" />
853
+ <hkern g1="P" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="68" />
854
+ <hkern g1="P" g2="guillemotleft,guilsinglleft" k="41" />
855
+ <hkern g1="P" g2="z,zacute,zdotaccent,zcaron" k="41" />
856
+ <hkern g1="P" g2="slash" k="154" />
857
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteright,quotedblright" k="-37" />
858
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="colon,semicolon" k="-51" />
859
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="117" />
860
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="periodcentered" k="33" />
861
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="49" />
862
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="29" />
863
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="8" />
864
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="v" k="-51" />
865
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="w,wcircumflex" k="-39" />
866
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="y,yacute,ydieresis,ycircumflex" k="-51" />
867
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
868
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteleft,quotedblleft" k="-68" />
869
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="backslash" k="-27" />
870
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="registered" k="-127" />
871
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="J,Jcircumflex" k="113" />
872
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
873
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
874
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="49" />
875
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="guillemotleft,guilsinglleft" k="41" />
876
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="z,zacute,zdotaccent,zcaron" k="8" />
877
+ <hkern g1="r,racute,rcommaaccent,rcaron" g2="slash" k="70" />
878
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="29" />
879
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="V" k="-10" />
880
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="W,Wcircumflex" k="-12" />
881
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="asterisk" k="20" />
882
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="periodcentered" k="20" />
883
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="8" />
884
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="8" />
885
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="x" k="14" />
886
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="X" k="8" />
887
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
888
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="registered" k="-51" />
889
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="J,Jcircumflex" k="37" />
890
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
891
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="8" />
892
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
893
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="63" />
894
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotleft,guilsinglleft" k="61" />
895
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotright,guilsinglright" k="29" />
896
+ <hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="z,zacute,zdotaccent,zcaron" k="14" />
897
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
898
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
899
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="V" k="20" />
900
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
901
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="question,uni203D,uni2047,uni2048" k="23" />
902
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="quoteright,quotedblright" k="23" />
903
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="asterisk" k="100" />
904
+ <hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-20" />
905
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="49" />
906
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
907
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
908
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="quoteright,quotedblright" k="23" />
909
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="asterisk" k="33" />
910
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="periodcentered" k="23" />
911
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="registered" k="-6" />
912
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="J,Jcircumflex" k="29" />
913
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
914
+ <hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-29" />
915
+ <hkern g1="Thorn" g2="asterisk" k="127" />
916
+ <hkern g1="Thorn" g2="backslash" k="82" />
917
+ <hkern g1="Thorn" g2="trademark" k="49" />
918
+ <hkern g1="Thorn" g2="slash" k="119" />
919
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
920
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="29" />
921
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="Y,Yacute,Ycircumflex,Ydieresis" k="8" />
922
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="question,uni203D,uni2047,uni2048" k="53" />
923
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="colon,semicolon" k="-29" />
924
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="-14" />
925
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="periodcentered" k="41" />
926
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="43" />
927
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
928
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="x" k="33" />
929
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="registered" k="-70" />
930
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
931
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="29" />
932
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="53" />
933
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotleft,guilsinglleft" k="37" />
934
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotright,guilsinglright" k="29" />
935
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="slash" k="-20" />
936
+ <hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hbar,uni0180" k="20" />
937
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="37" />
938
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
939
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="colon,semicolon" k="41" />
940
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="217" />
941
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="periodcentered" k="131" />
942
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="150" />
943
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="82" />
944
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="f" k="37" />
945
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="49" />
946
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="121" />
947
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="94" />
948
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="v" k="68" />
949
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="w,wcircumflex" k="70" />
950
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="x" k="80" />
951
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="X" k="41" />
952
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="y,yacute,ydieresis,ycircumflex" k="68" />
953
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Z,Zacute,Zdotaccent,Zcaron" k="111" />
954
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="registered" k="-41" />
955
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="trademark" k="-70" />
956
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="J,Jcircumflex" k="258" />
957
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="80" />
958
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="150" />
959
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="135" />
960
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="150" />
961
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotleft,guilsinglleft" k="96" />
962
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotright,guilsinglright" k="82" />
963
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="z,zacute,zdotaccent,zcaron" k="154" />
964
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="slash" k="182" />
965
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="94" />
966
+ <hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="AE,uni01E2,AEacute" k="174" />
967
+ <hkern g1="uhorn" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="-35" />
968
+ <hkern g1="uhorn" g2="question,uni203D,uni2047,uni2048" k="-18" />
969
+ <hkern g1="uhorn" g2="quoteright,quotedblright" k="-49" />
970
+ <hkern g1="uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
971
+ <hkern g1="uhorn" g2="f" k="-43" />
972
+ <hkern g1="uhorn" g2="v" k="-20" />
973
+ <hkern g1="uhorn" g2="w,wcircumflex" k="-20" />
974
+ <hkern g1="uhorn" g2="y,yacute,ydieresis,ycircumflex" k="-20" />
975
+ <hkern g1="uhorn" g2="quoteleft,quotedblleft" k="-90" />
976
+ <hkern g1="uhorn" g2="quotedbl,quotesingle" k="-96" />
977
+ <hkern g1="uhorn" g2="backslash" k="-100" />
978
+ <hkern g1="uhorn" g2="registered" k="-150" />
979
+ <hkern g1="uhorn" g2="j,jcircumflex" k="-35" />
980
+ <hkern g1="uhorn" g2="parenright,bracketright,braceright" k="-102" />
981
+ <hkern g1="uhorn" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,uni01D0" k="-29" />
982
+ <hkern g1="Uhorn" g2="asterisk" k="-16" />
983
+ <hkern g1="Uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
984
+ <hkern g1="Uhorn" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
985
+ <hkern g1="Uhorn" g2="x" k="14" />
986
+ <hkern g1="Uhorn" g2="backslash" k="-109" />
987
+ <hkern g1="Uhorn" g2="registered" k="-41" />
988
+ <hkern g1="Uhorn" g2="trademark" k="-96" />
989
+ <hkern g1="Uhorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="29" />
990
+ <hkern g1="Uhorn" g2="slash" k="100" />
991
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
992
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="V" k="29" />
993
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="Y,Yacute,Ycircumflex,Ydieresis" k="61" />
994
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="asterisk" k="49" />
995
+ <hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="hbar,uni0180" k="12" />
996
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="V" k="8" />
997
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
998
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="33" />
999
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="8" />
1000
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="33" />
1001
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="8" />
1002
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="x" k="14" />
1003
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="X" k="20" />
1004
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="J,Jcircumflex" k="96" />
1005
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
1006
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
1007
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="slash" k="63" />
1008
+ <hkern g1="v" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
1009
+ <hkern g1="v" g2="V" k="18" />
1010
+ <hkern g1="v" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
1011
+ <hkern g1="v" g2="asterisk" k="23" />
1012
+ <hkern g1="v" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="72" />
1013
+ <hkern g1="v" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
1014
+ <hkern g1="v" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="23" />
1015
+ <hkern g1="v" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
1016
+ <hkern g1="v" g2="registered" k="-92" />
1017
+ <hkern g1="v" g2="trademark" k="-18" />
1018
+ <hkern g1="v" g2="J,Jcircumflex" k="82" />
1019
+ <hkern g1="v" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="8" />
1020
+ <hkern g1="v" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="14" />
1021
+ <hkern g1="v" g2="j,jcircumflex" k="20" />
1022
+ <hkern g1="v" g2="z,zacute,zdotaccent,zcaron" k="49" />
1023
+ <hkern g1="v" g2="slash" k="41" />
1024
+ <hkern g1="V" g2="V" k="-20" />
1025
+ <hkern g1="V" g2="quoteright,quotedblright" k="-27" />
1026
+ <hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="133" />
1027
+ <hkern g1="V" g2="periodcentered" k="23" />
1028
+ <hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="45" />
1029
+ <hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="29" />
1030
+ <hkern g1="V" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
1031
+ <hkern g1="V" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="25" />
1032
+ <hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="61" />
1033
+ <hkern g1="V" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1034
+ <hkern g1="V" g2="v" k="18" />
1035
+ <hkern g1="V" g2="w,wcircumflex" k="18" />
1036
+ <hkern g1="V" g2="x" k="31" />
1037
+ <hkern g1="V" g2="y,yacute,ydieresis,ycircumflex" k="18" />
1038
+ <hkern g1="V" g2="Z,Zacute,Zdotaccent,Zcaron" k="39" />
1039
+ <hkern g1="V" g2="registered" k="-109" />
1040
+ <hkern g1="V" g2="trademark" k="-111" />
1041
+ <hkern g1="V" g2="J,Jcircumflex" k="150" />
1042
+ <hkern g1="V" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
1043
+ <hkern g1="V" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="43" />
1044
+ <hkern g1="V" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="31" />
1045
+ <hkern g1="V" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="39" />
1046
+ <hkern g1="V" g2="guillemotleft,guilsinglleft" k="43" />
1047
+ <hkern g1="V" g2="guillemotright,guilsinglright" k="39" />
1048
+ <hkern g1="V" g2="z,zacute,zdotaccent,zcaron" k="51" />
1049
+ <hkern g1="V" g2="slash" k="96" />
1050
+ <hkern g1="V" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
1051
+ <hkern g1="w,wcircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
1052
+ <hkern g1="w,wcircumflex" g2="V" k="18" />
1053
+ <hkern g1="w,wcircumflex" g2="Y,Yacute,Ycircumflex,Ydieresis" k="49" />
1054
+ <hkern g1="w,wcircumflex" g2="asterisk" k="23" />
1055
+ <hkern g1="w,wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="84" />
1056
+ <hkern g1="w,wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1057
+ <hkern g1="w,wcircumflex" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="8" />
1058
+ <hkern g1="w,wcircumflex" g2="X" k="29" />
1059
+ <hkern g1="w,wcircumflex" g2="registered" k="-78" />
1060
+ <hkern g1="w,wcircumflex" g2="trademark" k="-20" />
1061
+ <hkern g1="w,wcircumflex" g2="J,Jcircumflex" k="61" />
1062
+ <hkern g1="w,wcircumflex" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="8" />
1063
+ <hkern g1="w,wcircumflex" g2="j,jcircumflex" k="20" />
1064
+ <hkern g1="w,wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="35" />
1065
+ <hkern g1="w,wcircumflex" g2="slash" k="16" />
1066
+ <hkern g1="W,Wcircumflex" g2="quoteright,quotedblright" k="-27" />
1067
+ <hkern g1="W,Wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="70" />
1068
+ <hkern g1="W,Wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="33" />
1069
+ <hkern g1="W,Wcircumflex" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="12" />
1070
+ <hkern g1="W,Wcircumflex" g2="Z,Zacute,Zdotaccent,Zcaron" k="12" />
1071
+ <hkern g1="W,Wcircumflex" g2="registered" k="-80" />
1072
+ <hkern g1="W,Wcircumflex" g2="trademark" k="-70" />
1073
+ <hkern g1="W,Wcircumflex" g2="J,Jcircumflex" k="133" />
1074
+ <hkern g1="W,Wcircumflex" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="12" />
1075
+ <hkern g1="W,Wcircumflex" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="27" />
1076
+ <hkern g1="W,Wcircumflex" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="20" />
1077
+ <hkern g1="W,Wcircumflex" g2="guillemotleft,guilsinglleft" k="20" />
1078
+ <hkern g1="W,Wcircumflex" g2="guillemotright,guilsinglright" k="33" />
1079
+ <hkern g1="W,Wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="20" />
1080
+ <hkern g1="W,Wcircumflex" g2="slash" k="59" />
1081
+ <hkern g1="x" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="49" />
1082
+ <hkern g1="x" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="68" />
1083
+ <hkern g1="x" g2="V" k="31" />
1084
+ <hkern g1="x" g2="Y,Yacute,Ycircumflex,Ydieresis" k="70" />
1085
+ <hkern g1="x" g2="asterisk" k="47" />
1086
+ <hkern g1="x" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="14" />
1087
+ <hkern g1="x" g2="periodcentered" k="41" />
1088
+ <hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1089
+ <hkern g1="x" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="20" />
1090
+ <hkern g1="x" g2="X" k="20" />
1091
+ <hkern g1="x" g2="registered" k="-78" />
1092
+ <hkern g1="x" g2="trademark" k="-18" />
1093
+ <hkern g1="x" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="8" />
1094
+ <hkern g1="x" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="35" />
1095
+ <hkern g1="x" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="29" />
1096
+ <hkern g1="x" g2="guillemotleft,guilsinglleft" k="49" />
1097
+ <hkern g1="x" g2="guillemotright,guilsinglright" k="41" />
1098
+ <hkern g1="x" g2="exclam,exclamdbl,uni2049" k="29" />
1099
+ <hkern g1="X" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="33" />
1100
+ <hkern g1="X" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
1101
+ <hkern g1="X" g2="quoteright,quotedblright" k="14" />
1102
+ <hkern g1="X" g2="asterisk" k="20" />
1103
+ <hkern g1="X" g2="periodcentered" k="82" />
1104
+ <hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
1105
+ <hkern g1="X" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="-6" />
1106
+ <hkern g1="X" g2="f" k="33" />
1107
+ <hkern g1="X" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="35" />
1108
+ <hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
1109
+ <hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1110
+ <hkern g1="X" g2="v" k="33" />
1111
+ <hkern g1="X" g2="w,wcircumflex" k="29" />
1112
+ <hkern g1="X" g2="x" k="20" />
1113
+ <hkern g1="X" g2="y,yacute,ydieresis,ycircumflex" k="33" />
1114
+ <hkern g1="X" g2="quoteleft,quotedblleft" k="14" />
1115
+ <hkern g1="X" g2="quotedbl,quotesingle" k="20" />
1116
+ <hkern g1="X" g2="registered" k="-16" />
1117
+ <hkern g1="X" g2="trademark" k="-43" />
1118
+ <hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
1119
+ <hkern g1="X" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="14" />
1120
+ <hkern g1="X" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="55" />
1121
+ <hkern g1="X" g2="guillemotleft,guilsinglleft" k="29" />
1122
+ <hkern g1="X" g2="guillemotright,guilsinglright" k="29" />
1123
+ <hkern g1="X" g2="z,zacute,zdotaccent,zcaron" k="29" />
1124
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
1125
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="V" k="8" />
1126
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="Y,Yacute,Ycircumflex,Ydieresis" k="14" />
1127
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="72" />
1128
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
1129
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="x" k="29" />
1130
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="X" k="8" />
1131
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="registered" k="-92" />
1132
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="trademark" k="-27" />
1133
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="J,Jcircumflex" k="82" />
1134
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="8" />
1135
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="guillemotleft,guilsinglleft" k="8" />
1136
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="guillemotright,guilsinglright" k="8" />
1137
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="j,jcircumflex" k="20" />
1138
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="z,zacute,zdotaccent,zcaron" k="49" />
1139
+ <hkern g1="y,yacute,ydieresis,ycircumflex" g2="slash" k="29" />
1140
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="57" />
1141
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="29" />
1142
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="question,uni203D,uni2047,uni2048" k="14" />
1143
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="quoteright,quotedblright" k="-18" />
1144
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="colon,semicolon" k="51" />
1145
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="186" />
1146
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="periodcentered" k="94" />
1147
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="137" />
1148
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="29" />
1149
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="29" />
1150
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="84" />
1151
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="70" />
1152
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1153
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="v" k="29" />
1154
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="w,wcircumflex" k="49" />
1155
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="x" k="70" />
1156
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="y,yacute,ydieresis,ycircumflex" k="29" />
1157
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="Z,Zacute,Zdotaccent,Zcaron" k="53" />
1158
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="registered" k="-68" />
1159
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="trademark" k="-94" />
1160
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="J,Jcircumflex" k="205" />
1161
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="33" />
1162
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="123" />
1163
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="84" />
1164
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="135" />
1165
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotleft,guilsinglleft" k="113" />
1166
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotright,guilsinglright" k="76" />
1167
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="z,zacute,zdotaccent,zcaron" k="96" />
1168
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="slash" k="137" />
1169
+ <hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="82" />
1170
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="53" />
1171
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="59" />
1172
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="periodcentered" k="23" />
1173
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="47" />
1174
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
1175
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="v" k="8" />
1176
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="y,yacute,ydieresis,ycircumflex" k="8" />
1177
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="registered" k="-51" />
1178
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="trademark" k="-27" />
1179
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="12" />
1180
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="20" />
1181
+ <hkern g1="z,zacute,zdotaccent,zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="33" />
1182
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="29" />
1183
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="V" k="12" />
1184
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="W,Wcircumflex" k="12" />
1185
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
1186
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="periodcentered" k="123" />
1187
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="33" />
1188
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="12" />
1189
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="f" k="41" />
1190
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="C,G,O,Q,Ccedilla,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Cacute,Ccircumflex,Cdotaccent,Ccaron,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,Omacron,Obreve,Ohungarumlaut,OE,uni0193,Ohorn,uni01D1,Gcaron,uni01EA,uni01F4" k="41" />
1191
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="47" />
1192
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
1193
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="v" k="33" />
1194
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="w,wcircumflex" k="33" />
1195
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="x" k="49" />
1196
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="y,yacute,ydieresis,ycircumflex" k="33" />
1197
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="33" />
1198
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="registered" k="-41" />
1199
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="trademark" k="-41" />
1200
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="J,Jcircumflex" k="68" />
1201
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
1202
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="29" />
1203
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="43" />
1204
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="70" />
1205
+ <hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="guillemotleft,guilsinglleft" k="70" />
1206
+ <hkern g1="colon,semicolon" g2="j,jcircumflex" k="-8" />
1207
+ <hkern g1="colon,semicolon" g2="hbar,uni0180" k="20" />
1208
+ <hkern g1="colon,semicolon" g2="Y,Yacute,Ycircumflex,Ydieresis" k="53" />
1209
+ <hkern g1="colon,semicolon" g2="asterisk" k="100" />
1210
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="j,jcircumflex" k="-53" />
1211
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="hbar,uni0180" k="20" />
1212
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="Y,Yacute,Ycircumflex,Ydieresis" k="188" />
1213
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="asterisk" k="283" />
1214
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="23" />
1215
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="94" />
1216
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="203" />
1217
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="41" />
1218
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="v" k="72" />
1219
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="V" k="133" />
1220
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="w,wcircumflex" k="45" />
1221
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="W,Wcircumflex" k="70" />
1222
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="y,yacute,ydieresis,ycircumflex" k="41" />
1223
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteleft,quotedblleft" k="172" />
1224
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteright,quotedblright" k="213" />
1225
+ <hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle" k="197" />
1226
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="J,Jcircumflex" k="41" />
1227
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Y,Yacute,Ycircumflex,Ydieresis" k="135" />
1228
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="53" />
1229
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="96" />
1230
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="v" k="14" />
1231
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="V" k="39" />
1232
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="W,Wcircumflex" k="20" />
1233
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="35" />
1234
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="x" k="29" />
1235
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="X" k="55" />
1236
+ <hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
1237
+ <hkern g1="exclam,exclamdbl,uni2048" g2="quoteright,quotedblright" k="66" />
1238
+ <hkern g1="guillemotleft,guilsinglleft" g2="hbar,uni0180" k="20" />
1239
+ <hkern g1="guillemotleft,guilsinglleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="76" />
1240
+ <hkern g1="guillemotleft,guilsinglleft" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="29" />
1241
+ <hkern g1="guillemotleft,guilsinglleft" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
1242
+ <hkern g1="guillemotleft,guilsinglleft" g2="v" k="8" />
1243
+ <hkern g1="guillemotleft,guilsinglleft" g2="V" k="35" />
1244
+ <hkern g1="guillemotleft,guilsinglleft" g2="W,Wcircumflex" k="35" />
1245
+ <hkern g1="guillemotleft,guilsinglleft" g2="y,yacute,ydieresis,ycircumflex" k="8" />
1246
+ <hkern g1="guillemotleft,guilsinglleft" g2="x" k="41" />
1247
+ <hkern g1="guillemotleft,guilsinglleft" g2="X" k="29" />
1248
+ <hkern g1="guillemotright,guilsinglright" g2="J,Jcircumflex" k="61" />
1249
+ <hkern g1="guillemotright,guilsinglright" g2="Y,Yacute,Ycircumflex,Ydieresis" k="113" />
1250
+ <hkern g1="guillemotright,guilsinglright" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="68" />
1251
+ <hkern g1="guillemotright,guilsinglright" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="94" />
1252
+ <hkern g1="guillemotright,guilsinglright" g2="v" k="14" />
1253
+ <hkern g1="guillemotright,guilsinglright" g2="V" k="43" />
1254
+ <hkern g1="guillemotright,guilsinglright" g2="W,Wcircumflex" k="20" />
1255
+ <hkern g1="guillemotright,guilsinglright" g2="y,yacute,ydieresis,ycircumflex" k="14" />
1256
+ <hkern g1="guillemotright,guilsinglright" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
1257
+ <hkern g1="guillemotright,guilsinglright" g2="x" k="49" />
1258
+ <hkern g1="guillemotright,guilsinglright" g2="X" k="29" />
1259
+ <hkern g1="guillemotright,guilsinglright" g2="Z,Zacute,Zdotaccent,Zcaron" k="37" />
1260
+ <hkern g1="question,uni203D,uni2047,uni2049" g2="quoteright,quotedblright" k="43" />
1261
+ <hkern g1="quoteleft,quotedblleft" g2="J,Jcircumflex" k="154" />
1262
+ <hkern g1="quoteleft,quotedblleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-18" />
1263
+ <hkern g1="quoteleft,quotedblleft" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="68" />
1264
+ <hkern g1="quoteleft,quotedblleft" g2="V" k="-27" />
1265
+ <hkern g1="quoteleft,quotedblleft" g2="W,Wcircumflex" k="-27" />
1266
+ <hkern g1="quoteleft,quotedblleft" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
1267
+ <hkern g1="quoteleft,quotedblleft" g2="X" k="14" />
1268
+ <hkern g1="quoteleft,quotedblleft" g2="AE,uni01E2,AEacute" k="174" />
1269
+ <hkern g1="quoteleft,quotedblleft" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="88" />
1270
+ <hkern g1="quoteleft,quotedblleft" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="115" />
1271
+ <hkern g1="quoteleft,quotedblleft" g2="f" k="29" />
1272
+ <hkern g1="quoteleft,quotedblleft" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="68" />
1273
+ <hkern g1="quoteleft,quotedblleft" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
1274
+ <hkern g1="quoteleft,quotedblleft" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="170" />
1275
+ <hkern g1="quoteleft,quotedblleft" g2="exclamdown" k="109" />
1276
+ <hkern g1="quoteleft,quotedblleft" g2="questiondown" k="272" />
1277
+ <hkern g1="quoteright,quotedblright" g2="J,Jcircumflex" k="168" />
1278
+ <hkern g1="quoteright,quotedblright" g2="hbar,uni0180" k="-14" />
1279
+ <hkern g1="quoteright,quotedblright" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="119" />
1280
+ <hkern g1="quoteright,quotedblright" g2="X" k="14" />
1281
+ <hkern g1="quoteright,quotedblright" g2="AE,uni01E2,AEacute" k="174" />
1282
+ <hkern g1="quoteright,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="133" />
1283
+ <hkern g1="quoteright,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="119" />
1284
+ <hkern g1="quoteright,quotedblright" g2="f" k="33" />
1285
+ <hkern g1="quoteright,quotedblright" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="92" />
1286
+ <hkern g1="quoteright,quotedblright" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="100" />
1287
+ <hkern g1="quoteright,quotedblright" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="270" />
1288
+ <hkern g1="quoteright,quotedblright" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="27" />
1289
+ <hkern g1="quoteright,quotedblright" g2="z,zacute,zdotaccent,zcaron" k="53" />
1290
+ <hkern g1="quotedbl,quotesingle" g2="J,Jcircumflex" k="195" />
1291
+ <hkern g1="quotedbl,quotesingle" g2="c,d,e,o,q,ccedilla,egrave,eacute,ecircumflex,edieresis,ograve,oacute,ocircumflex,otilde,odieresis,oslash,cacute,ccircumflex,cdotaccent,ccaron,dcaron,dcroat,emacron,ebreve,edotaccent,eogonek,ecaron,omacron,obreve,ohungarumlaut,oe,ohorn,uni01D2,uni01EB" k="59" />
1292
+ <hkern g1="quotedbl,quotesingle" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
1293
+ <hkern g1="quotedbl,quotesingle" g2="X" k="20" />
1294
+ <hkern g1="quotedbl,quotesingle" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="113" />
1295
+ <hkern g1="quotedbl,quotesingle" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
1296
+ <hkern g1="quotedbl,quotesingle" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="236" />
244
1297
  </font>
245
1298
  </defs></svg>