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.
- checksums.yaml +5 -13
- data/CHANGELOG.md +193 -11
- data/README.md +9 -1
- data/Rakefile +5 -0
- data/admins/pageflow/accounts.rb +2 -1
- data/admins/pageflow/entry.rb +21 -1
- data/admins/pageflow/revisions.rb +1 -1
- data/app/assets/fonts/pageflow/entypo-license.txt +358 -0
- data/app/assets/fonts/pageflow/fontawesome-license.txt +1 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.svg +1236 -194
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-bold-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-license.txt +93 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.svg +1153 -839
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-light-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.svg +1252 -199
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/sourcesanspro-regular-webfont.woff +0 -0
- data/app/assets/javascripts/pageflow/base.js +2 -0
- data/app/assets/javascripts/pageflow/browser/agent.js +25 -0
- data/app/assets/javascripts/pageflow/browser/css_animations.js +18 -0
- data/app/assets/javascripts/pageflow/browser/mobile_platform.js +1 -4
- data/app/assets/javascripts/pageflow/browser/video.js +8 -1
- data/app/assets/javascripts/pageflow/chapter_filter.js +6 -16
- data/app/assets/javascripts/pageflow/editor/api.js +6 -2
- data/app/assets/javascripts/pageflow/editor/api/page_type.js +12 -0
- data/app/assets/javascripts/pageflow/editor/base.js +4 -0
- data/app/assets/javascripts/pageflow/editor/collections/chapter_pages_collection.js +4 -1
- data/app/assets/javascripts/pageflow/editor/collections/chapters_collection.js +1 -5
- data/app/assets/javascripts/pageflow/editor/collections/mixins/add_and_return_model.js +11 -0
- data/app/assets/javascripts/pageflow/editor/collections/mixins/ordered_collection.js +6 -4
- data/app/assets/javascripts/pageflow/editor/collections/ordered_page_links_collection.js +9 -0
- data/app/assets/javascripts/pageflow/editor/collections/page_links_collection.js +78 -0
- data/app/assets/javascripts/pageflow/editor/collections/pages_collection.js +9 -3
- data/app/assets/javascripts/pageflow/editor/collections/storyline_chapters_collection.js +35 -0
- data/app/assets/javascripts/pageflow/editor/collections/storylines_collection.js +33 -0
- data/app/assets/javascripts/pageflow/editor/controllers/sidebar_controller.js +19 -2
- data/app/assets/javascripts/pageflow/editor/initializers/edit_lock.js +1 -1
- data/app/assets/javascripts/pageflow/editor/initializers/setup_collections.js +11 -0
- data/app/assets/javascripts/pageflow/editor/initializers/setup_common_seed.js +3 -0
- data/app/assets/javascripts/pageflow/editor/initializers/stylesheet_reloading.js +11 -0
- data/app/assets/javascripts/pageflow/editor/models/chapter.js +14 -7
- data/app/assets/javascripts/pageflow/editor/models/chapter_scaffold.js +13 -0
- data/app/assets/javascripts/pageflow/editor/models/edit_lock_container.js +4 -4
- data/app/assets/javascripts/pageflow/editor/models/entry.js +33 -4
- data/app/assets/javascripts/pageflow/editor/models/mixins/persited_promise.js +18 -0
- data/app/assets/javascripts/pageflow/editor/models/page.js +4 -0
- data/app/assets/javascripts/pageflow/editor/models/page_link.js +37 -0
- data/app/assets/javascripts/pageflow/editor/models/page_link_file_selection_handler.js +14 -0
- data/app/assets/javascripts/pageflow/editor/models/preview_entry_data.js +15 -0
- data/app/assets/javascripts/pageflow/editor/models/scaffold.js +26 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline.js +99 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_configuration.js +15 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_ordering.js +117 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_scaffold.js +23 -0
- data/app/assets/javascripts/pageflow/editor/models/storyline_transitive_child_pages.js +33 -0
- data/app/assets/javascripts/pageflow/editor/routers/sidebar_router.js +3 -0
- data/app/assets/javascripts/pageflow/editor/templates/edit_entry.jst.ejs +1 -6
- data/app/assets/javascripts/pageflow/editor/templates/edit_page_link.jst.ejs +3 -0
- data/app/assets/javascripts/pageflow/editor/templates/edit_storyline.jst.ejs +12 -0
- data/app/assets/javascripts/pageflow/editor/templates/page_link_item.jst.ejs +1 -0
- data/app/assets/javascripts/pageflow/editor/templates/page_selection.jst.ejs +2 -2
- data/app/assets/javascripts/pageflow/editor/templates/storyline_outline.jst.ejs +4 -0
- data/app/assets/javascripts/pageflow/editor/templates/storyline_picker.jst.ejs +7 -0
- data/app/assets/javascripts/pageflow/editor/utils/reload_stylesheet.js +9 -0
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/options.js +2 -2
- data/app/assets/javascripts/pageflow/editor/views/configuration_editors/groups/page_link.js +10 -0
- data/app/assets/javascripts/pageflow/editor/views/edit_chapter_view.js +0 -4
- data/app/assets/javascripts/pageflow/editor/views/edit_entry_view.js +9 -15
- data/app/assets/javascripts/pageflow/editor/views/edit_meta_data_view.js +14 -6
- data/app/assets/javascripts/pageflow/editor/views/edit_page_link_view.js +47 -0
- data/app/assets/javascripts/pageflow/editor/views/edit_storyline_view.js +97 -0
- data/app/assets/javascripts/pageflow/editor/views/editor_view.js +6 -3
- data/app/assets/javascripts/pageflow/editor/views/entry_preview_view.js +13 -7
- data/app/assets/javascripts/pageflow/editor/views/file_item_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/inputs/page_link_input_view.js +3 -1
- data/app/assets/javascripts/pageflow/editor/views/locked_view.js +3 -3
- data/app/assets/javascripts/pageflow/editor/views/mixins/loadable.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/page_item_view.js +2 -0
- data/app/assets/javascripts/pageflow/editor/views/page_link_configuration_editor_view.js +7 -0
- data/app/assets/javascripts/pageflow/editor/views/page_link_item_view.js +8 -1
- data/app/assets/javascripts/pageflow/editor/views/page_preview_view.js +1 -1
- data/app/assets/javascripts/pageflow/editor/views/page_selection_view.js +13 -12
- data/app/assets/javascripts/pageflow/editor/views/storyline_outline_view.js +33 -0
- data/app/assets/javascripts/pageflow/editor/views/storyline_picker_view.js +114 -0
- data/app/assets/javascripts/pageflow/entry_data.js +38 -4
- data/app/assets/javascripts/pageflow/highlighted_page.js +5 -5
- data/app/assets/javascripts/pageflow/history.js +1 -1
- data/app/assets/javascripts/pageflow/native_scrolling.js +14 -0
- data/app/assets/javascripts/pageflow/page_transitions.js +3 -1
- data/app/assets/javascripts/pageflow/page_type.js +2 -0
- data/app/assets/javascripts/pageflow/ready.js +4 -1
- data/app/assets/javascripts/pageflow/seed_entry_data.js +28 -1
- data/app/assets/javascripts/pageflow/slideshow.js +11 -8
- data/app/assets/javascripts/pageflow/slideshow/dom_order_scroll_navigator.js +93 -8
- data/app/assets/javascripts/pageflow/slideshow/hidden_text_indicator_widget.js +5 -3
- data/app/assets/javascripts/pageflow/slideshow/lazy_page_widget.js +4 -0
- data/app/assets/javascripts/pageflow/slideshow/page_widget.js +15 -6
- data/app/assets/javascripts/pageflow/ui/templates/tooltip.jst.ejs +2 -0
- data/app/assets/javascripts/pageflow/ui/views/inputs/text_area_input_view.js +17 -4
- data/app/assets/javascripts/pageflow/ui/views/mixins/tooltip_container.js +42 -0
- data/app/assets/javascripts/pageflow/ui/views/tooltip_view.js +49 -0
- data/app/assets/javascripts/pageflow/video_player.js +2 -2
- data/app/assets/javascripts/pageflow/video_player/{filter_for_silk.js → filter_sources.js} +2 -2
- data/app/assets/javascripts/pageflow/widgets/navigation.js +17 -14
- data/app/assets/javascripts/pageflow/widgets/navigation_mobile.js +7 -2
- data/app/assets/javascripts/pageflow/widgets/overview.js +9 -6
- data/app/assets/javascripts/pageflow/widgets/page_navigation_list.js +51 -13
- data/app/assets/javascripts/pageflow/widgets/page_navigation_list_animation.js +48 -0
- data/app/assets/javascripts/pageflow/widgets/parent_page_button.js +9 -2
- data/app/assets/stylesheets/pageflow/admin.css.scss +2 -15
- data/app/assets/stylesheets/pageflow/admin/features.scss +5 -0
- data/app/assets/stylesheets/pageflow/admin/forms.scss +18 -0
- data/app/assets/stylesheets/pageflow/animations.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/animations/navigation_bar.scss +89 -0
- data/app/assets/stylesheets/pageflow/delayed_text_fade_in.css.scss +1 -1
- data/app/assets/stylesheets/pageflow/editor/base.css.scss +5 -0
- data/app/assets/stylesheets/pageflow/editor/menu.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/editor/outline.css.scss +5 -0
- data/app/assets/stylesheets/pageflow/editor/page_links.css.scss +9 -1
- data/app/assets/stylesheets/pageflow/editor/page_selection.css.scss +7 -1
- data/app/assets/stylesheets/pageflow/editor/storyline_picker.css.scss +32 -0
- data/app/assets/stylesheets/pageflow/extendables.scss +26 -0
- data/app/assets/stylesheets/pageflow/mixins/pageflow.css.scss +25 -0
- data/app/assets/stylesheets/pageflow/navigation_bar.css.scss +64 -4
- data/app/assets/stylesheets/pageflow/navigation_mobile.css.scss +56 -0
- data/app/assets/stylesheets/pageflow/page_transitions.css.scss +4 -1
- data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_left.scss +12 -0
- data/app/assets/stylesheets/pageflow/page_transitions/scroll_over_from_right.scss +12 -0
- data/app/assets/stylesheets/pageflow/page_types/video.css.scss +5 -1
- data/app/assets/stylesheets/pageflow/themes/default/page.css.scss +180 -42
- data/app/assets/stylesheets/pageflow/ui.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/ui/forms.css.scss +11 -2
- data/app/assets/stylesheets/pageflow/ui/input/extended_select_input.css.scss +1 -0
- data/app/assets/stylesheets/pageflow/ui/tabs_view.css.scss +0 -3
- data/app/assets/stylesheets/pageflow/ui/tooltip.scss +57 -0
- data/app/controllers/concerns/pageflow/entry_password_protection.rb +13 -0
- data/app/controllers/pageflow/chapters_controller.rb +24 -9
- data/app/controllers/pageflow/edit_locks_controller.rb +2 -2
- data/app/controllers/pageflow/editor/files_controller.rb +0 -2
- data/app/controllers/pageflow/editor/widgets_controller.rb +1 -1
- data/app/controllers/pageflow/entries_controller.rb +5 -9
- data/app/controllers/pageflow/files_controller.rb +3 -0
- data/app/controllers/pageflow/storylines_controller.rb +69 -0
- data/app/helpers/pageflow/admin/features_helper.rb +17 -6
- data/app/helpers/pageflow/admin/widgets_helper.rb +18 -0
- data/app/helpers/pageflow/audio_files_helper.rb +2 -2
- data/app/helpers/pageflow/common_entry_seed_helper.rb +52 -0
- data/app/helpers/pageflow/entries_helper.rb +7 -1
- data/app/helpers/pageflow/entry_json_seed_helper.rb +27 -10
- data/app/helpers/pageflow/meta_tags_helper.rb +11 -0
- data/app/helpers/pageflow/page_types_helper.rb +9 -5
- data/app/helpers/pageflow/pages_helper.rb +9 -96
- data/app/helpers/pageflow/public_i18n_helper.rb +13 -0
- data/app/helpers/pageflow/social_share_helper.rb +1 -1
- data/app/helpers/pageflow/video_files_helper.rb +133 -0
- data/app/helpers/pageflow/widgets_helper.rb +3 -9
- data/app/models/concerns/pageflow/feature_target.rb +21 -3
- data/app/models/concerns/pageflow/hosted_file.rb +4 -0
- data/app/models/pageflow/account.rb +2 -2
- data/app/models/pageflow/chapter.rb +4 -4
- data/app/models/pageflow/chapter_scaffold.rb +33 -0
- data/app/models/pageflow/cname_theming_request_scope.rb +7 -1
- data/app/models/pageflow/draft_entry.rb +13 -2
- data/app/models/pageflow/edit_lock.rb +2 -2
- data/app/models/pageflow/entry.rb +3 -2
- data/app/models/pageflow/image_file.rb +6 -0
- data/app/models/pageflow/published_entry.rb +13 -2
- data/app/models/pageflow/revision.rb +17 -4
- data/app/models/pageflow/storyline.rb +23 -0
- data/app/models/pageflow/storyline_scaffold.rb +27 -0
- data/app/models/pageflow/theming.rb +4 -0
- data/app/models/pageflow/widget.rb +16 -12
- data/app/views/admin/accounts/_form.html.erb +8 -12
- data/app/views/admin/accounts/_widgets_inline_help.html.erb +5 -0
- data/app/views/layouts/pageflow/application.html.erb +4 -1
- data/app/views/pageflow/admin/widgets/_fields.html.erb +9 -0
- data/app/views/pageflow/config/_editor_seeds.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/_entry.json.jbuilder +2 -2
- data/app/views/pageflow/editor/entries/_other_entry.json.jbuilder +1 -0
- data/app/views/pageflow/editor/entries/index.json.jbuilder +1 -1
- data/app/views/pageflow/editor/entries/seed.json.erb +4 -1
- data/app/views/pageflow/editor/files/_file.json.jbuilder +4 -0
- data/app/views/pageflow/editor/themings/_theming.json.jbuilder +1 -0
- data/app/views/pageflow/entries/_entry.html.erb +2 -2
- data/app/views/pageflow/entries/_ie8_hint.html.erb +2 -2
- data/app/views/pageflow/entries/_indicators.html.erb +3 -3
- data/app/views/pageflow/entries/_mobile_navigation.html.erb +6 -5
- data/app/views/pageflow/entries/_multimedia_alert.html.erb +6 -6
- data/app/views/pageflow/entries/_non_js_hint.html.erb +1 -1
- data/app/views/pageflow/entries/_skip_links.html.erb +3 -3
- data/app/views/pageflow/entries/edit.html.erb +4 -2
- data/app/views/pageflow/entries/navigation/_bar_bottom.html.erb +6 -5
- data/app/views/pageflow/entries/navigation/_bar_top.html.erb +13 -13
- data/app/views/pageflow/entries/navigation/_home_button.html.erb +2 -2
- data/app/views/pageflow/entries/navigation/_page.html.erb +1 -1
- data/app/views/pageflow/entries/overview/_chapter.html.erb +1 -1
- data/app/views/pageflow/entries/overview/_entry.html.erb +7 -6
- data/app/views/pageflow/entries/share_menu/_facebook_link.html.erb +1 -1
- data/app/views/pageflow/entries/share_menu/_google_link.html.erb +1 -1
- data/app/views/pageflow/entries/share_menu/_twitter_link.html.erb +1 -1
- data/app/views/pageflow/entries/show.html.erb +4 -1
- data/app/views/pageflow/file_types/_thumbnails.css.erb +2 -0
- data/app/views/pageflow/meta_tags/_entry.html.erb +4 -0
- data/app/views/pageflow/pages/_page.html.erb +2 -2
- data/app/views/pageflow/pages/templates/_audio.html.erb +2 -2
- data/app/views/pageflow/pages/templates/_audio_loop.html.erb +1 -1
- data/app/views/pageflow/pages/templates/_background_video.html.erb +8 -3
- data/app/views/pageflow/pages/templates/_video.html.erb +9 -4
- data/app/views/pageflow/public_i18n/_javascript_tag.html.erb +5 -0
- data/app/views/pageflow/social_share/_entry_meta_tags.html.erb +1 -1
- data/app/views/pageflow/video_files/_script_tag.html.erb +3 -0
- data/app/views/pageflow/video_files/_video_file.html.erb +4 -1
- data/app/views/pageflow/video_files/_video_tag.html.erb +7 -0
- data/config/initializers/admin_resource_tabs.rb +1 -0
- data/config/initializers/features.rb +3 -1
- data/config/initializers/paperclip.rb +5 -0
- data/config/locales/de.yml +205 -601
- data/config/locales/en.yml +198 -405
- data/config/routes.rb +10 -2
- data/db/migrate/20150826125417_create_pageflow_storylines.rb +12 -0
- data/db/migrate/20150826125744_add_storyline_id_to_chapters.rb +6 -0
- data/db/migrate/20150826125745_insert_main_storylines.rb +28 -0
- data/db/migrate/20150830105831_remove_revision_id_from_chapters.rb +5 -0
- data/db/migrate/20150830110006_remove_entry_id_from_chapters.rb +5 -0
- data/db/migrate/20160201130118_add_additional_cnames_to_themings.rb +5 -0
- data/db/migrate/20160216130336_add_meta_fields_to_revision.rb +7 -0
- data/lib/generators/pageflow/initializer/templates/pageflow.rb +7 -0
- data/lib/pageflow/ability_mixin.rb +7 -1
- data/lib/pageflow/configuration.rb +27 -2
- data/lib/pageflow/engine.rb +4 -1
- data/lib/pageflow/features.rb +24 -0
- data/lib/pageflow/global_config_api.rb +1 -0
- data/lib/pageflow/seeds.rb +4 -2
- data/lib/pageflow/theme.rb +4 -0
- data/lib/pageflow/version.rb +1 -1
- data/spec/factories/chapters.rb +6 -3
- data/spec/factories/storylines.rb +13 -0
- metadata +1021 -928
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.svg +0 -768
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Demi-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.eot +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.svg +0 -968
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.ttf +0 -0
- data/app/assets/fonts/pageflow/FranklinGothic-Hvy-webfont.woff +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.eot +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.svg +0 -228
- data/app/assets/fonts/pageflow/thesansboldplain.ttf +0 -0
- data/app/assets/fonts/pageflow/thesansboldplain.woff +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.eot +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.svg +0 -228
- data/app/assets/fonts/pageflow/thesanssemiboldplain.ttf +0 -0
- data/app/assets/fonts/pageflow/thesanssemiboldplain.woff +0 -0
- data/app/assets/javascripts/pageflow/browser/hashchange_support.js +0 -8
- data/app/assets/javascripts/pageflow/widgets/button.js +0 -22
- data/app/views/layouts/pageflow/_meta_tags.html.erb +0 -5
- data/app/views/pageflow/pages/_video_tag.html.erb +0 -13
@@ -0,0 +1 @@
|
|
1
|
+
see http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
|
Binary file
|
@@ -5,241 +5,1283 @@
|
|
5
5
|
<defs>
|
6
6
|
<font id="source_sans_probold" horiz-adv-x="1081" >
|
7
7
|
<font-face units-per-em="2048" ascent="1536" descent="-512" />
|
8
|
-
<missing-glyph horiz-adv-x="
|
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="
|
12
|
-
<glyph horiz-adv-x="
|
13
|
-
<glyph unicode="&#
|
14
|
-
<glyph unicode=" " horiz-adv-x="425" />
|
15
|
-
<glyph unicode="	" horiz-adv-x="425" />
|
16
|
-
<glyph unicode=" " horiz-adv-x="425" />
|
11
|
+
<glyph unicode=" " horiz-adv-x="409" />
|
12
|
+
<glyph unicode="	" horiz-adv-x="409" />
|
13
|
+
<glyph unicode=" " horiz-adv-x="409" />
|
17
14
|
<glyph unicode="!" horiz-adv-x="696" d="M166 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM197 1372h303l-11 -272l-43 -627h-196l-43 627z" />
|
18
|
-
<glyph unicode=""" horiz-adv-x="
|
15
|
+
<glyph unicode=""" horiz-adv-x="1099" d="M156 1405h303l-10 -272l-60 -408h-164l-59 408zM641 1405h303l-10 -272l-60 -408h-163l-60 408z" />
|
19
16
|
<glyph unicode="#" d="M70 383v192h174l28 226h-161v192h186l43 338h172l-41 -338h213l43 338h172l-41 -338h162v-192h-186l-27 -226h172v-192h-195l-47 -383h-174l45 383h-211l-47 -383h-174l45 383h-151zM420 575h211l28 226h-213z" />
|
20
|
-
<glyph unicode="$" d="M80 135l131
|
21
|
-
<glyph unicode="%" horiz-adv-x="1755" d="M53 938q0
|
22
|
-
<glyph unicode="&" horiz-adv-x="1366" d="M51 356q0
|
17
|
+
<glyph unicode="$" d="M80 135l131 203q159 -119 293 -119q85 0 125.5 35t40.5 106q0 42 -30 78.5t-77.5 64t-105 56t-115.5 63t-105.5 75.5t-77.5 102.5t-30 136.5q0 150 82.5 250t228.5 129v211h199v-207q167 -23 305 -168l-151 -172q-58 53 -109.5 77.5t-114.5 24.5q-151 0 -151 -131 q0 -39 30 -72t77.5 -58.5t105 -52t115 -60.5t105 -76t77.5 -106.5t30 -143.5q0 -151 -82 -255.5t-237 -137.5v-213h-199v205q-96 11 -193.5 51.5t-166.5 103.5z" />
|
18
|
+
<glyph unicode="%" horiz-adv-x="1755" d="M53 938q0 196 92 309t240 113t241 -113t93 -309q0 -197 -93 -311.5t-241 -114.5t-240 114.5t-92 311.5zM262 938q0 -134 34 -196t89 -62t89 62t34 196q0 254 -123 254t-123 -254zM430 -25l721 1385h174l-721 -1385h-174zM1038 401q0 196 92 309t240 113t241 -113t93 -309 q0 -197 -93 -311.5t-241 -114.5t-240 114.5t-92 311.5zM1247 401q0 -134 34 -196t89 -62t89 62t34 196q0 254 -123 254t-123 -254z" />
|
19
|
+
<glyph unicode="&" horiz-adv-x="1366" d="M51 356q0 67 19 124.5t55 103t76 80t94 69.5q-82 154 -82 277q0 147 99.5 248.5t262.5 101.5q150 0 239 -82.5t89 -220.5q0 -62 -22.5 -117.5t-66 -103.5t-86 -82t-103.5 -76q111 -129 268 -244q106 137 154 320h274q-76 -250 -223 -451q137 -70 231 -84l-72 -244 q-164 34 -342 136q-183 -136 -419 -136q-209 0 -327 109.5t-118 271.5zM336 375q0 -75 55 -122.5t144 -47.5q84 0 167 53q-161 133 -276 277q-90 -80 -90 -160zM461 1012q0 -72 43 -160q83 49 126.5 96t43.5 109q0 49 -23 76.5t-69 27.5q-52 0 -86.5 -40.5t-34.5 -108.5z " />
|
23
20
|
<glyph unicode="'" horiz-adv-x="614" d="M156 1405h303l-10 -272l-60 -408h-164l-59 408z" />
|
24
|
-
<glyph unicode="(" horiz-adv-x="704" d="M147 569q0
|
25
|
-
<glyph unicode=")" horiz-adv-x="704" d="M98 -
|
21
|
+
<glyph unicode="(" horiz-adv-x="704" d="M147 569q0 261 68.5 489t202.5 447l188 -78q-215 -381 -215 -858t215 -858l-188 -78q-134 219 -202.5 447t-68.5 489z" />
|
22
|
+
<glyph unicode=")" horiz-adv-x="704" d="M98 -289q217 380 217 858t-217 858l189 78q134 -219 202 -446.5t68 -489.5t-68 -489.5t-202 -446.5z" />
|
26
23
|
<glyph unicode="*" horiz-adv-x="935" d="M78 1118l47 148l237 -49l27 241h158l26 -244l236 52l49 -148l-221 -100l121 -213l-125 -90l-164 182l-166 -182l-125 90l121 213z" />
|
27
24
|
<glyph unicode="+" d="M70 569v213h360v377h221v-377h361v-213h-361v-376h-221v376h-360z" />
|
28
|
-
<glyph unicode="," horiz-adv-x="614" d="M94 -
|
25
|
+
<glyph unicode="," horiz-adv-x="614" d="M94 -238q112 39 173 105.5t59 144.5h-17q-76 0 -129 46t-53 124q0 76 54 124t134 48q101 0 155 -74.5t54 -209.5q0 -170 -94.5 -291.5t-273.5 -175.5z" />
|
29
26
|
<glyph unicode="-" horiz-adv-x="679" d="M88 412v213h504v-213h-504z" />
|
30
27
|
<glyph unicode="." horiz-adv-x="614" d="M125 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5z" />
|
31
28
|
<glyph unicode="/" horiz-adv-x="694" d="M27 -328l411 1782h197l-412 -1782h-196z" />
|
32
|
-
<glyph unicode="0" d="M76 655q0
|
33
|
-
<glyph unicode="1" d="M143 0v244h283v751h-
|
34
|
-
<glyph unicode="2" d="M61
|
35
|
-
<glyph unicode="3" d="M45 160l139
|
36
|
-
<glyph unicode="4" d="M39 311v207l475 782h369v-759h149v-230h-149v-311h-281v311h-563zM328 541h274v211q0
|
37
|
-
<glyph unicode="5" d="M47 158l135
|
38
|
-
<glyph unicode="6" d="M84 621q0
|
39
|
-
<glyph unicode="7" d="M90 1047v253h905v-184q-
|
40
|
-
<glyph unicode="8" d="M86 332q0
|
41
|
-
<glyph unicode="9" d="M70 889q0
|
42
|
-
<glyph unicode=":" horiz-adv-x="614" d="M125 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM125
|
43
|
-
<glyph unicode=";" horiz-adv-x="614" d="M94 -
|
29
|
+
<glyph unicode="0" d="M76 655q0 324 125.5 497t339.5 173t339.5 -173t125.5 -497q0 -325 -125.5 -502.5t-339.5 -177.5t-339.5 177.5t-125.5 502.5zM360 655q0 -128 14 -218t39.5 -138.5t56.5 -69t71 -20.5q41 0 71.5 20.5t56 69t39 138t13.5 218.5t-13.5 217.5t-39 135t-56 65.5t-71.5 19 q-32 0 -57.5 -11t-49 -40.5t-39.5 -77.5t-25.5 -126t-9.5 -182z" />
|
30
|
+
<glyph unicode="1" d="M143 0v244h283v751h-244v187q186 36 324 118h221v-1056h244v-244h-828z" />
|
31
|
+
<glyph unicode="2" d="M61 1118q101 107 201.5 157t235.5 50q193 0 311.5 -113.5t118.5 -300.5q0 -78 -33 -163t-98.5 -176t-128 -163t-156.5 -171q132 16 217 16h262v-254h-915v172q87 82 137 130t119 116.5t107 112t82.5 99t67 96t37.5 84.5t15 83q0 94 -49 145.5t-135 51.5q-64 0 -118 -35 t-114 -99z" />
|
32
|
+
<glyph unicode="3" d="M45 160l139 190q134 -131 285 -131q97 0 154 40.5t57 113.5q0 46 -15.5 78t-53 57.5t-107.5 38t-174 12.5v213q166 0 236.5 45t70.5 129q0 68 -42 106t-118 38q-65 0 -121 -28t-123 -87l-151 184q194 166 410 166q204 0 326 -94t122 -262q0 -197 -217 -289v-8 q118 -34 188 -115.5t70 -202.5q0 -117 -66.5 -204.5t-175 -131t-241.5 -43.5q-296 0 -453 185z" />
|
33
|
+
<glyph unicode="4" d="M39 311v207l475 782h369v-759h149v-230h-149v-311h-281v311h-563zM328 541h274v211q0 44 12 290h-8q-38 -84 -106 -219z" />
|
34
|
+
<glyph unicode="5" d="M47 158l135 190q140 -129 281 -129q102 0 160.5 52.5t58.5 150.5q0 96 -56 148.5t-149 52.5q-55 0 -92.5 -13.5t-99.5 -52.5l-135 86l36 657h738v-253h-478l-22 -244q66 31 145 31q85 0 159 -25t131.5 -73t90.5 -127t33 -179q0 -140 -67 -245t-174 -157.5t-236 -52.5 q-276 0 -459 183z" />
|
35
|
+
<glyph unicode="6" d="M84 621q0 141 28.5 258.5t77.5 199t116.5 138t143.5 82.5t160 26q227 0 379 -156l-158 -180q-36 39 -91.5 65.5t-110.5 26.5q-117 0 -189.5 -95.5t-79.5 -309.5q49 62 123.5 99.5t137.5 37.5q175 0 281 -101.5t106 -299.5q0 -131 -59.5 -232t-157 -153t-216.5 -52 q-77 0 -147.5 23t-134 73.5t-109.5 124.5t-73 183t-27 242zM367 471q19 -144 73 -207t129 -63q72 0 118 53t46 158q0 98 -45.5 143t-124.5 45q-55 0 -106.5 -31.5t-89.5 -97.5z" />
|
36
|
+
<glyph unicode="7" d="M90 1047v253h905v-184q-75 -91 -130 -172.5t-94 -167t-63.5 -163.5t-40.5 -180.5t-24 -197.5t-14 -235h-303q19 335 94 567t254 480h-584z" />
|
37
|
+
<glyph unicode="8" d="M86 332q0 200 221 319v8q-174 132 -174 308q0 164 116 261t300 97q179 0 287 -97.5t108 -258.5q0 -88 -48 -162.5t-122 -122.5v-8q225 -122 225 -340q0 -156 -128 -258.5t-332 -102.5q-196 0 -324.5 100t-128.5 257zM344 367q0 -84 58 -133.5t143 -49.5q78 0 126 41.5 t48 120.5q0 23 -7 43.5t-15.5 36t-30.5 32.5t-36 27t-49.5 27t-52.5 24.5t-63 27.5l-21 9q-100 -93 -100 -206zM397 967q0 -74 55.5 -120t168.5 -89q79 91 79 190q0 76 -42 122t-115 46q-63 0 -104.5 -38.5t-41.5 -110.5z" />
|
38
|
+
<glyph unicode="9" d="M70 889q0 197 124.5 316.5t307.5 119.5q78 0 148.5 -22.5t134 -73t110 -124.5t73.5 -183t27 -242q0 -176 -43.5 -314t-118 -221.5t-167 -126.5t-197.5 -43q-225 0 -381 156l160 180q34 -38 90 -65t111 -27q118 0 189.5 95.5t78.5 310.5q-49 -62 -123 -100t-137 -38 q-174 0 -280.5 102t-106.5 300zM344 889q0 -98 46.5 -143.5t125.5 -45.5q55 0 107 32t88 97q-36 271 -203 271q-71 0 -117.5 -53.5t-46.5 -157.5z" />
|
39
|
+
<glyph unicode=":" horiz-adv-x="614" d="M125 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM125 827q0 82 52 136.5t130 54.5t130 -54.5t52 -136.5q0 -80 -52 -134t-130 -54t-130 54t-52 134z" />
|
40
|
+
<glyph unicode=";" horiz-adv-x="614" d="M94 -238q112 39 173 105.5t59 144.5h-17q-76 0 -129 46t-53 124q0 76 54 124t134 48q101 0 155 -74.5t54 -209.5q0 -170 -94.5 -291.5t-273.5 -175.5zM125 827q0 82 52 136.5t130 54.5t130 -54.5t52 -136.5q0 -80 -52 -134t-130 -54t-130 54t-52 134z" />
|
44
41
|
<glyph unicode="<" d="M70 575v209l942 363v-248l-361 -119l-276 -96v-8l276 -96l361 -119v-248z" />
|
45
|
-
<glyph unicode="=" d="M70
|
42
|
+
<glyph unicode="=" d="M70 332v213h942v-213h-942zM70 807v213h942v-213h-942z" />
|
46
43
|
<glyph unicode=">" d="M70 213v248l360 119l277 96v8l-277 96l-360 119v248l942 -363v-209z" />
|
47
|
-
<glyph unicode="?" horiz-adv-x="948" d="M84
|
48
|
-
<glyph unicode="@" horiz-adv-x="1849" d="M100 420q0
|
49
|
-
<glyph unicode="A" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM438 553h285l-31 123q-
|
50
|
-
<glyph unicode="B" horiz-adv-x="1239" d="M158
|
51
|
-
<glyph unicode="C" horiz-adv-x="1191" d="M94 659q0
|
52
|
-
<glyph unicode="D" horiz-adv-x="1300" d="M158
|
44
|
+
<glyph unicode="?" horiz-adv-x="948" d="M84 1210q75 87 175 137t216 50q113 0 198 -36t137 -116.5t52 -197.5q0 -51 -17 -98.5t-43.5 -84.5t-58.5 -72.5t-62.5 -70.5t-55.5 -71.5t-37.5 -82t-7.5 -94.5h-265q-11 78 11 149t62 123t82 98t72.5 93t30.5 88q0 62 -37 95.5t-100 33.5q-53 0 -96.5 -24t-89.5 -70z M266 164q0 82 51 136t129 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5q-77 0 -128.5 54.5t-51.5 134.5z" />
|
45
|
+
<glyph unicode="@" horiz-adv-x="1849" d="M100 420q0 168 47.5 318t133 264.5t200.5 197.5t254 126.5t289 43.5q218 0 383 -93t253.5 -258t88.5 -378q0 -135 -42.5 -245.5t-111 -178t-149.5 -103.5t-164 -36q-89 0 -153.5 41.5t-81.5 113.5h-5q-42 -59 -111.5 -97t-133.5 -38q-122 0 -196.5 84t-74.5 224 q0 125 53.5 240t150 188t210.5 73q108 0 156 -102h4l28 86h187l-94 -451q-43 -176 94 -176q97 0 170.5 103.5t73.5 265.5q0 114 -32 211t-97 175.5t-175.5 123.5t-255.5 45q-105 0 -206.5 -34t-189.5 -101t-155.5 -158t-106 -211.5t-38.5 -255.5q0 -118 31.5 -216.5 t87 -168.5t131 -118.5t163.5 -71.5t185 -23q158 0 311 80l66 -164q-180 -98 -401 -98q-125 0 -238.5 29.5t-212 92t-171 152.5t-114 217.5t-41.5 280.5zM754 424q0 -137 106 -137q66 0 135 92l49 276q-31 60 -94 60q-58 0 -104.5 -48t-69 -113.5t-22.5 -129.5z" />
|
46
|
+
<glyph unicode="A" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
47
|
+
<glyph unicode="B" horiz-adv-x="1239" d="M158 0v1335h456q492 0 492 -331q0 -93 -47.5 -176t-126.5 -113v-8q108 -28 173.5 -107.5t65.5 -206.5q0 -99 -40 -175.5t-111 -123.5t-163.5 -70.5t-203.5 -23.5h-495zM459 233h170q248 0 248 181q0 86 -60.5 125t-187.5 39h-170v-345zM459 801h141q107 0 159 41t52 116 q0 77 -50.5 110.5t-158.5 33.5h-143v-301z" />
|
48
|
+
<glyph unicode="C" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-170 -197 -432 -197q-128 0 -240 44.5t-197 128.5t-134.5 215.5 t-49.5 295.5z" />
|
49
|
+
<glyph unicode="D" horiz-adv-x="1300" d="M158 0v1335h377q317 0 493 -163.5t176 -497.5t-175 -504t-478 -170h-393zM459 244h57q181 0 280 101t99 329q0 117 -26.5 199.5t-78.5 129.5t-118.5 68t-155.5 21h-57v-848z" />
|
53
50
|
<glyph unicode="E" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856z" />
|
54
51
|
<glyph unicode="F" horiz-adv-x="1073" d="M158 0v1335h841v-254h-540v-309h463v-254h-463v-518h-301z" />
|
55
|
-
<glyph unicode="G" horiz-adv-x="1306" d="M94 659q0
|
52
|
+
<glyph unicode="G" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5z" />
|
56
53
|
<glyph unicode="H" horiz-adv-x="1380" d="M158 0v1335h301v-514h461v514h303v-1335h-303v557h-461v-557h-301z" />
|
57
54
|
<glyph unicode="I" horiz-adv-x="616" d="M158 0v1335h301v-1335h-301z" />
|
58
|
-
<glyph unicode="J" horiz-adv-x="1042" d="M33 217l205
|
55
|
+
<glyph unicode="J" horiz-adv-x="1042" d="M33 217l205 152q36 -66 84.5 -99.5t101.5 -33.5q85 0 125.5 52t40.5 181v866h301v-891q0 -99 -26 -182.5t-77 -148.5t-134.5 -101.5t-190.5 -36.5q-151 0 -255.5 59.5t-174.5 182.5z" />
|
59
56
|
<glyph unicode="K" horiz-adv-x="1257" d="M158 0v1335h301v-547h8l397 547h332l-403 -532l477 -803h-330l-326 563l-155 -205v-358h-301z" />
|
60
57
|
<glyph unicode="L" horiz-adv-x="1060" d="M158 0v1335h301v-1081h528v-254h-829z" />
|
61
|
-
<glyph unicode="M" horiz-adv-x="1560" d="M158
|
62
|
-
<glyph unicode="N" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-
|
63
|
-
<glyph unicode="O" horiz-adv-x="1400" d="M94 674q0
|
64
|
-
<glyph unicode="P" horiz-adv-x="
|
65
|
-
<glyph unicode="Q" horiz-adv-x="1400" d="M94 674q0
|
66
|
-
<glyph unicode="R" horiz-adv-x="
|
67
|
-
<glyph unicode="S" horiz-adv-x="1138" d="M72 168l172
|
58
|
+
<glyph unicode="M" horiz-adv-x="1560" d="M158 0v1335h329l215 -594q15 -43 41 -127.5t37 -117.5h8q12 36 36.5 119.5t39.5 125.5l211 594h328v-1335h-275v489q0 37 2.5 82.5t7.5 100t9 91.5t11 99.5t9 81.5h-8l-108 -317l-191 -510h-166l-190 510l-107 317h-8q2 -19 9 -81.5t11 -99.5t9 -91.5t7.5 -100t2.5 -82.5 v-489h-270z" />
|
59
|
+
<glyph unicode="N" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286z" />
|
60
|
+
<glyph unicode="O" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
61
|
+
<glyph unicode="P" horiz-adv-x="1220" d="M158 0v1335h458q91 0 168 -13.5t145 -45t115.5 -80t75 -122.5t27.5 -169q0 -114 -41.5 -202t-114 -142t-165 -81t-201.5 -27h-166v-453h-301zM459 692h147q246 0 246 213q0 101 -63.5 146t-190.5 45h-139v-404z" />
|
62
|
+
<glyph unicode="Q" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -265 -113.5 -441.5t-310.5 -232.5q43 -67 122 -99t171 -32q76 0 147 22l53 -219q-88 -45 -235 -45q-204 0 -354 99.5t-224 263.5q-217 45 -343 225t-126 459zM403 674q0 -212 80 -332.5t217 -120.5 t217 120.5t80 332.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
63
|
+
<glyph unicode="R" horiz-adv-x="1255" d="M158 0v1335h481q88 0 162.5 -12.5t140.5 -42.5t112 -76.5t72.5 -118.5t26.5 -165q0 -143 -63 -239.5t-175 -145.5l304 -535h-338l-256 481h-166v-481h-301zM459 721h155q119 0 181.5 50.5t62.5 148.5q0 95 -60.5 135.5t-183.5 40.5h-155v-375z" />
|
64
|
+
<glyph unicode="S" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -83 -34.5 -158t-97.5 -132t-159.5 -90.5t-212.5 -33.5q-133 0 -263.5 50t-229.5 143z" />
|
68
65
|
<glyph unicode="T" horiz-adv-x="1138" d="M51 1081v254h1036v-254h-366v-1081h-303v1081h-367z" />
|
69
|
-
<glyph unicode="U" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -
|
70
|
-
<glyph unicode="V" horiz-adv-x="1138" d="M-14 1335h319l160 -
|
71
|
-
<glyph unicode="W" horiz-adv-x="1665" d="M29 1335h309l92 -
|
72
|
-
<glyph unicode="X" horiz-adv-x="1161" d="M23 0l370 686l-348 649h336l117 -
|
73
|
-
<glyph unicode="Y" horiz-adv-x="1075" d="M-16 1335h323l119 -
|
66
|
+
<glyph unicode="U" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487z" />
|
67
|
+
<glyph unicode="V" horiz-adv-x="1138" d="M-14 1335h319l160 -622q21 -74 54.5 -215t53.5 -213h9q19 71 52.5 212.5t53.5 215.5l158 622h307l-401 -1335h-363z" />
|
68
|
+
<glyph unicode="W" horiz-adv-x="1665" d="M29 1335h309l92 -624q8 -67 26.5 -208.5t26.5 -213.5h9q12 64 38.5 206t40.5 216l144 624h256l143 -624q6 -29 80 -422h8q10 81 55 422l93 624h288l-237 -1335h-379l-131 606q-24 107 -53 309h-9q-39 -236 -55 -309l-125 -606h-373z" />
|
69
|
+
<glyph unicode="X" horiz-adv-x="1161" d="M23 0l370 686l-348 649h336l117 -252q10 -19 96 -215h8q46 125 86 215l107 252h321l-346 -663l369 -672h-336l-133 272q-40 86 -101 220h-8q-12 -32 -90 -220l-125 -272h-323z" />
|
70
|
+
<glyph unicode="Y" horiz-adv-x="1075" d="M-16 1335h323l119 -307q102 -274 109 -295h8q88 231 112 295l121 307h316l-404 -860v-475h-301v475z" />
|
74
71
|
<glyph unicode="Z" horiz-adv-x="1107" d="M74 0v182l590 899h-535v254h905v-182l-590 -899h596v-254h-966z" />
|
75
72
|
<glyph unicode="[" horiz-adv-x="704" d="M178 -311v1761h432v-160h-207v-1442h207v-159h-432z" />
|
76
73
|
<glyph unicode="\" horiz-adv-x="694" d="M57 1454h197l414 -1782h-197z" />
|
77
74
|
<glyph unicode="]" horiz-adv-x="704" d="M94 -152h209v1442h-209v160h432v-1761h-432v159z" />
|
78
75
|
<glyph unicode="^" d="M102 561l318 811h242l317 -811h-248l-94 262l-92 277h-8l-93 -277l-94 -262h-248z" />
|
79
76
|
<glyph unicode="_" horiz-adv-x="1024" d="M25 -117h974v-170h-974v170z" />
|
80
|
-
<glyph unicode="`" horiz-adv-x="1136" d="
|
81
|
-
<glyph unicode="a" horiz-adv-x="
|
82
|
-
<glyph unicode="b" horiz-adv-x="1173" d="M133 0v1436h301v-353l-8 -
|
83
|
-
<glyph unicode="c" horiz-adv-x="956" d="M74 508q0
|
84
|
-
<glyph unicode="d" horiz-adv-x="1173" d="M80 508q0
|
85
|
-
<glyph unicode="e" horiz-adv-x="1060" d="M74 508q0
|
86
|
-
<glyph unicode="f" horiz-adv-x="698" d="M49 780v224l135 10v55q0
|
87
|
-
<glyph unicode="g" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-
|
88
|
-
<glyph unicode="h" horiz-adv-x="1169" d="M133 0v1436h301v-353l-14 -
|
89
|
-
<glyph unicode="i" horiz-adv-x="565" d="M109 1323q0
|
90
|
-
<glyph unicode="j" horiz-adv-x="569" d="M-104 -373l53
|
77
|
+
<glyph unicode="`" horiz-adv-x="1136" d="M178 1493l203 199l315 -373l-147 -148z" />
|
78
|
+
<glyph unicode="a" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5 t-65 -104.5z" />
|
79
|
+
<glyph unicode="b" horiz-adv-x="1173" d="M133 0v1436h301v-353l-8 -155q125 112 268 112q184 0 292 -140t108 -374q0 -127 -36 -233t-96 -174.5t-136.5 -106t-159.5 -37.5q-143 0 -265 134h-8l-24 -109h-236zM434 287q71 -66 162 -66q83 0 135.5 75t52.5 224q0 275 -176 275q-90 0 -174 -93v-415z" />
|
80
|
+
<glyph unicode="c" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-137 -121 -336 -121q-106 0 -197.5 36t-159 103t-106 168.5t-38.5 225.5z" />
|
81
|
+
<glyph unicode="d" horiz-adv-x="1173" d="M80 508q0 121 35.5 222.5t95 168.5t135 104t156.5 37q80 0 136.5 -26t113.5 -80l-13 156v346h301v-1436h-245l-21 100h-8q-56 -56 -127.5 -90.5t-142.5 -34.5q-190 0 -303 143t-113 390zM389 512q0 -291 184 -291q100 0 166 92v416q-71 66 -168 66q-77 0 -129.5 -73 t-52.5 -210z" />
|
82
|
+
<glyph unicode="e" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM362 618h367q0 89 -41.5 141 t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
83
|
+
<glyph unicode="f" horiz-adv-x="698" d="M49 780v224l135 10v55q0 84 20.5 152.5t63.5 123t117 85t174 30.5q99 0 203 -37l-55 -221q-61 21 -105 21q-117 0 -117 -146v-61h183v-236h-183v-780h-301v780h-135z" />
|
84
|
+
<glyph unicode="g" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12 q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5z" />
|
85
|
+
<glyph unicode="h" horiz-adv-x="1169" d="M133 0v1436h301v-353l-14 -182q155 139 313 139q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301z" />
|
86
|
+
<glyph unicode="i" horiz-adv-x="565" d="M109 1323q0 69 49.5 112.5t124.5 43.5q77 0 125.5 -43.5t48.5 -112.5t-49 -113.5t-125 -44.5q-75 0 -124.5 44.5t-49.5 113.5zM133 0v1016h301v-1016h-301z" />
|
87
|
+
<glyph unicode="j" horiz-adv-x="569" d="M-104 -373l53 221q47 -14 80 -14q59 0 82.5 38.5t23.5 125.5v1018h301v-1010q0 -87 -18.5 -157.5t-58.5 -128t-112.5 -89.5t-172.5 -32q-106 0 -178 28zM113 1323q0 69 49.5 112.5t124.5 43.5t124.5 -43.5t49.5 -112.5t-49.5 -113.5t-124.5 -44.5t-124.5 44.5 t-49.5 113.5z" />
|
91
88
|
<glyph unicode="k" horiz-adv-x="1122" d="M133 0v1436h293v-824h8l322 404h327l-356 -418l383 -598h-326l-229 395l-129 -145v-250h-293z" />
|
92
|
-
<glyph unicode="l" horiz-adv-x="585" d="M133 315v1121h301v-1133q0 -
|
93
|
-
<glyph unicode="m" horiz-adv-x="1755" d="M133 0v1016h246l20 -
|
94
|
-
<glyph unicode="n" horiz-adv-x="1171" d="M133 0v1016h246l20 -
|
95
|
-
<glyph unicode="o" horiz-adv-x="1136" d="M74 508q0
|
96
|
-
<glyph unicode="p" horiz-adv-x="1173" d="M133 -377v1393h246l20 -
|
97
|
-
<glyph unicode="q" horiz-adv-x="
|
98
|
-
<glyph unicode="r" horiz-adv-x="815" d="M133 0v1016h246l20 -
|
99
|
-
<glyph unicode="s" horiz-adv-x="907" d="M43 117l135
|
100
|
-
<glyph unicode="t" horiz-adv-x="784" d="M35 780v224l155 12l35 270h250v-270h244v-236h-244v-407q0 -
|
101
|
-
<glyph unicode="u" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -
|
102
|
-
<glyph unicode="v" horiz-adv-x="1071" d="M25 1016h303l131 -
|
103
|
-
<glyph unicode="w" horiz-adv-x="1589" d="M49 1016h299l98 -
|
104
|
-
<glyph unicode="x" horiz-adv-x="1052" d="M29 0l311 528l-293 488h324l90 -
|
105
|
-
<glyph unicode="y" horiz-adv-x="1067" d="M25 1016h303l145 -
|
89
|
+
<glyph unicode="l" horiz-adv-x="585" d="M133 315v1121h301v-1133q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -151 -25q-148 0 -212.5 88t-64.5 252z" />
|
90
|
+
<glyph unicode="m" horiz-adv-x="1755" d="M133 0v1016h246l20 -131h9q74 74 145 114.5t162 40.5q200 0 280 -170q80 82 154 126t166 44q160 0 238.5 -106.5t78.5 -302.5v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-76 0 -174 -98v-686h-301v592q0 107 -29.5 149.5t-95.5 42.5q-78 0 -172 -98v-686h-301z" />
|
91
|
+
<glyph unicode="n" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301z" />
|
92
|
+
<glyph unicode="o" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77 q-92 0 -139 -77t-47 -212z" />
|
93
|
+
<glyph unicode="p" horiz-adv-x="1173" d="M133 -377v1393h246l20 -101h9q139 125 288 125q184 0 291 -140t107 -376q0 -126 -36 -231.5t-96 -174t-136.5 -106t-159.5 -37.5q-129 0 -242 107l10 -162v-297h-301zM434 287q71 -66 162 -66q83 0 135.5 75t52.5 224q0 275 -176 275q-87 0 -174 -93v-415z" />
|
94
|
+
<glyph unicode="q" horiz-adv-x="1173" d="M80 508q0 121 35.5 222.5t95 168.5t135 104t156.5 37q82 0 145.5 -30t124.5 -95h8l25 101h235v-1393h-301v309l13 156q-53 -51 -121 -82t-135 -31q-190 0 -303 143t-113 390zM389 512q0 -291 184 -291q100 0 166 92v416q-71 66 -168 66q-77 0 -129.5 -73t-52.5 -210z" />
|
95
|
+
<glyph unicode="r" horiz-adv-x="815" d="M133 0v1016h246l20 -178h9q54 99 130.5 150.5t157.5 51.5q73 0 121 -20l-49 -260q-59 16 -111 16q-64 0 -125 -45.5t-98 -140.5v-590h-301z" />
|
96
|
+
<glyph unicode="s" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -143 -110.5 -235.5t-307.5 -92.5q-99 0 -205.5 39t-183.5 103z" />
|
97
|
+
<glyph unicode="t" horiz-adv-x="784" d="M35 780v224l155 12l35 270h250v-270h244v-236h-244v-407q0 -162 131 -162q42 0 96 20l48 -219q-123 -37 -226 -37q-181 0 -265.5 104t-84.5 290v411h-139z" />
|
98
|
+
<glyph unicode="u" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410z" />
|
99
|
+
<glyph unicode="v" horiz-adv-x="1071" d="M25 1016h303l131 -479q0 -1 80 -314h8q47 199 78 314l133 479h289l-332 -1016h-348z" />
|
100
|
+
<glyph unicode="w" horiz-adv-x="1589" d="M49 1016h299l98 -471q9 -54 24 -154.5t22 -146.5h8q41 231 59 301l113 471h260l115 -471q18 -74 63 -301h8q9 50 23.5 150t23.5 151l97 471h278l-244 -1016h-352l-92 406q-27 128 -55 296h-9q-36 -216 -51 -296l-90 -406h-344z" />
|
101
|
+
<glyph unicode="x" horiz-adv-x="1052" d="M29 0l311 528l-293 488h324l90 -164q34 -72 86 -174h8q1 4 70 174l69 164h312l-295 -522l313 -494h-324l-98 168q-16 29 -47.5 88.5t-48.5 87.5h-8q-8 -18 -36 -80t-42 -96l-80 -168h-311z" />
|
102
|
+
<glyph unicode="y" horiz-adv-x="1067" d="M25 1016h303l145 -436q14 -44 80 -289h8q60 252 70 289l123 436h288l-352 -1026q-38 -101 -76.5 -169.5t-91 -119.5t-120 -74.5t-156.5 -23.5q-76 0 -144 20l54 230q59 -13 67 -13q133 0 178 133l15 54z" />
|
106
103
|
<glyph unicode="z" horiz-adv-x="942" d="M78 0v162l426 618h-379v236h754v-160l-426 -620h440v-236h-815z" />
|
107
|
-
<glyph unicode="{" horiz-adv-x="704" d="M63
|
104
|
+
<glyph unicode="{" horiz-adv-x="704" d="M63 481v176q92 3 134.5 46.5t42.5 105.5q0 63 -10.5 169t-10.5 181q0 162 61.5 226.5t200.5 64.5h129v-160h-39q-63 0 -85.5 -29.5t-22.5 -113.5q0 -54 4 -162t4 -172q0 -113 -36 -167t-116 -73v-8q80 -20 116 -73t36 -166q0 -64 -4 -172t-4 -162q0 -85 22.5 -114.5 t85.5 -29.5h39v-159h-129q-139 0 -200.5 64.5t-61.5 226.5q0 74 10.5 181t10.5 169t-42.5 105t-134.5 46z" />
|
108
105
|
<glyph unicode="|" horiz-adv-x="548" d="M176 -512v2048h197v-2048h-197z" />
|
109
|
-
<glyph unicode="}" horiz-adv-x="704" d="M94 -
|
110
|
-
<glyph unicode="~" d="M59
|
106
|
+
<glyph unicode="}" horiz-adv-x="704" d="M94 -152h39q64 0 86.5 29.5t22.5 114.5q0 54 -4.5 162t-4.5 172q0 113 36 166t116 73v8q-80 19 -116 73t-36 167q0 64 4.5 172t4.5 162q0 85 -22 114t-87 29h-39v160h129q139 0 200.5 -64.5t61.5 -226.5q0 -75 -10 -181t-10 -169q0 -62 42 -105.5t134 -46.5v-176 q-92 -3 -134 -46t-42 -105t10 -168.5t10 -181.5q0 -162 -61.5 -226.5t-200.5 -64.5h-129v159z" />
|
107
|
+
<glyph unicode="~" d="M59 649q137 211 308 211q47 0 90 -16t75.5 -39t62 -45.5t61.5 -38.5t63 -16q80 0 147 118l156 -121q-136 -210 -307 -210q-47 0 -90.5 16t-75.5 39t-62 45.5t-62 38.5t-63 16q-80 0 -147 -119z" />
|
111
108
|
<glyph unicode="¡" horiz-adv-x="696" d="M166 852q0 80 52 134t130 54t130 -54t52 -134q0 -82 -52 -136t-130 -54t-130 54t-52 136zM197 -356l10 272l43 627h196l43 -627l11 -272h-303z" />
|
112
|
-
<glyph unicode="¢" d="M123 629q0
|
113
|
-
<glyph unicode="£" d="M98
|
114
|
-
<glyph unicode="¤" d="M41 322l125 127q-70
|
115
|
-
<glyph unicode="¥" d="M25 1300h309l104 -
|
109
|
+
<glyph unicode="¢" d="M123 629q0 211 121.5 346t318.5 168v198h166v-190q157 -15 254 -115l-137 -184q-61 49 -117 55v-557q75 13 148 72l120 -191q-115 -100 -268 -120v-195h-166v195q-203 27 -321.5 163t-118.5 355zM416 629q0 -93 37.5 -159t109.5 -97v512q-147 -65 -147 -256z" />
|
110
|
+
<glyph unicode="£" d="M98 0v186q96 43 156.5 126t60.5 188q0 19 -4 55h-205v176l140 10h12q-33 101 -33 164q0 191 123 305.5t316 114.5q210 0 354 -166l-164 -164q-71 86 -162 86q-84 0 -131 -48t-47 -144q0 -54 23 -148h303v-186h-265q5 -45 5 -57q0 -73 -21.5 -126.5t-71.5 -109.5v-8h531 v-254h-920z" />
|
111
|
+
<glyph unicode="¤" d="M41 322l125 127q-70 95 -70 227q0 130 68 223l-123 127l149 152l142 -144q97 51 209 51q107 0 209 -51l141 144l149 -152l-125 -127q70 -92 70 -223q0 -128 -70 -227l125 -127l-149 -152l-143 145q-94 -49 -207 -49t-207 49l-144 -145zM365 676q0 -90 50.5 -145.5 t125.5 -55.5t125.5 55.5t50.5 145.5q0 89 -50.5 145t-125.5 56t-125.5 -56t-50.5 -145z" />
|
112
|
+
<glyph unicode="¥" d="M25 1300h309l104 -272q66 -180 103 -268h8q15 39 49 129.5t53 138.5l103 272h303l-301 -600h250v-143h-316v-113h316v-143h-316v-301h-301v301h-313v143h313v113h-313v143h250z" />
|
116
113
|
<glyph unicode="¦" horiz-adv-x="548" d="M176 418h197v-930h-197v930zM176 639v897h197v-897h-197z" />
|
117
|
-
<glyph unicode="§" d="M76 668q0
|
118
|
-
<glyph unicode="¨" horiz-adv-x="1136" d="
|
119
|
-
<glyph unicode="©" horiz-adv-x="1536" d="M92 666q0
|
120
|
-
<glyph unicode="ª" horiz-adv-x="735" d="M59
|
114
|
+
<glyph unicode="§" d="M76 668q0 76 44 146t120 116q-60 70 -60 170q0 140 98 226.5t267 86.5q199 0 368 -133l-137 -188q-112 98 -215 98q-110 0 -110 -80q0 -29 30.5 -55t79.5 -48.5t108 -48t118.5 -59.5t108.5 -75t79.5 -104t30.5 -138q0 -168 -168 -273q47 -70 47 -157 q0 -143 -103.5 -233.5t-289.5 -90.5q-118 0 -225 44t-173 128l174 154q102 -105 224 -105q61 0 91.5 24t30.5 64q0 32 -29.5 59t-77 49t-105 46t-115 57t-105 74t-77 104.5t-29.5 141.5zM330 690q0 -37 20 -67t60 -54.5t78.5 -43t97.5 -44t96 -45.5q70 43 70 121 q0 31 -15.5 58t-39 46t-61.5 39.5t-72 35t-82 35.5t-81 38q-71 -47 -71 -119z" />
|
115
|
+
<glyph unicode="¨" horiz-adv-x="1136" d="M199 1313q0 62 41.5 103.5t105.5 41.5t105 -41.5t41 -103.5q0 -64 -41 -106t-105 -42t-105.5 42.5t-41.5 105.5zM647 1313q0 62 41 103.5t105 41.5t105.5 -41.5t41.5 -103.5q0 -63 -41.5 -105.5t-105.5 -42.5t-105 42t-41 106z" />
|
116
|
+
<glyph unicode="©" horiz-adv-x="1536" d="M92 666q0 124 35.5 232.5t98.5 188.5t147.5 138t185 87t209.5 29q136 0 258 -47t214.5 -131.5t147 -213.5t54.5 -283q0 -155 -54.5 -285t-147 -216.5t-214.5 -134.5t-258 -48t-258.5 48t-215.5 134.5t-147.5 216.5t-54.5 285zM231 666q0 -123 41.5 -228.5t114 -178 t171 -113t210.5 -40.5t210.5 40.5t171 113t114 178t41.5 228.5q0 247 -153.5 400t-383.5 153t-383.5 -153t-153.5 -400zM397 664q0 116 56 207t146 138.5t194 47.5q86 0 149.5 -32t120.5 -89l-113 -125q-67 70 -139 70q-94 0 -146.5 -61.5t-52.5 -155.5q0 -104 51.5 -166 t137.5 -62q47 0 83.5 17.5t80.5 52.5l98 -139q-137 -107 -270 -107q-174 0 -285 110.5t-111 293.5z" />
|
117
|
+
<glyph unicode="ª" horiz-adv-x="735" d="M59 956q0 108 91.5 167.5t291.5 78.5q-9 90 -100 90q-69 0 -184 -61l-76 139q153 90 297 90q133 0 204.5 -77t71.5 -228v-387h-170l-20 70h-8q-86 -86 -191 -86q-93 0 -150 59t-57 145zM262 975q0 -62 76 -62q47 0 104 54v112q-180 -19 -180 -104z" />
|
121
118
|
<glyph unicode="«" horiz-adv-x="983" d="M100 410v213l275 295l112 -91l-227 -311l227 -311l-112 -90zM485 410v213l275 295l112 -91l-227 -311l227 -311l-112 -90z" />
|
122
119
|
<glyph unicode="¬" d="M70 569v213h942v-589h-221v376h-721z" />
|
123
120
|
<glyph unicode="­" horiz-adv-x="679" d="M88 412v213h504v-213h-504z" />
|
124
|
-
<glyph unicode="®" horiz-adv-x="946" d="M66 1051q0
|
125
|
-
<glyph unicode="¯" horiz-adv-x="1136" d="
|
126
|
-
<glyph unicode="°" horiz-adv-x="747" d="M80 1110q0
|
121
|
+
<glyph unicode="®" horiz-adv-x="946" d="M66 1051q0 179 118 296t289 117q170 0 288 -117t118 -296t-118 -296.5t-288 -117.5q-171 0 -289 117.5t-118 296.5zM178 1051q0 -141 82.5 -227.5t212.5 -86.5t211.5 86.5t81.5 227.5t-81.5 227t-211.5 86t-212.5 -86t-82.5 -227zM307 852v403h182q74 0 120 -34.5 t46 -100.5q0 -75 -71 -110l84 -158h-123l-62 123h-59v-123h-117zM424 1057h43q29 0 45 16t16 41q0 23 -16 38t-45 15h-43v-110z" />
|
122
|
+
<glyph unicode="¯" horiz-adv-x="1136" d="M266 1212v191h606v-191h-606z" />
|
123
|
+
<glyph unicode="°" horiz-adv-x="747" d="M80 1110q0 128 85.5 211.5t209.5 83.5q126 0 211.5 -83.5t85.5 -211.5t-85.5 -211.5t-211.5 -83.5q-124 0 -209.5 83.5t-85.5 211.5zM238 1110q0 -67 38.5 -109.5t98.5 -42.5q61 0 99 42t38 110q0 66 -38 108t-99 42q-60 0 -98.5 -42t-38.5 -108z" />
|
127
124
|
<glyph unicode="±" d="M70 0v213h942v-213h-942zM70 602v213h360v344h221v-344h361v-213h-361v-278h-221v278h-360z" />
|
128
|
-
<glyph unicode="²" horiz-adv-x="770" d="M55
|
129
|
-
<glyph unicode="³" horiz-adv-x="770" d="M55
|
130
|
-
<glyph unicode="´" horiz-adv-x="1136" d="
|
131
|
-
<glyph unicode="µ" horiz-adv-x="
|
132
|
-
<glyph unicode="¶" horiz-adv-x="1302" d="M80 879q0
|
133
|
-
<glyph unicode="·" horiz-adv-x="614" d="M125
|
134
|
-
<glyph unicode="¸" horiz-adv-x="1136" d="
|
135
|
-
<glyph unicode="¹" horiz-adv-x="770" d="M156
|
136
|
-
<glyph unicode="º" horiz-adv-x="763" d="M49
|
125
|
+
<glyph unicode="²" horiz-adv-x="770" d="M55 1427q123 164 305 164q134 0 214.5 -71.5t80.5 -198.5q0 -46 -15.5 -92t-50 -96t-64.5 -86.5t-83 -94.5h242v-184h-592v119q180 147 265 237.5t85 159.5q0 59 -30.5 92t-85.5 33q-73 0 -146 -96z" />
|
126
|
+
<glyph unicode="³" horiz-adv-x="770" d="M55 905l133 105q71 -99 170 -99q49 0 82 26.5t33 70.5q0 104 -190 104v127q161 0 161 98q0 40 -27 63t-73 23q-65 0 -131 -80l-125 111q68 72 135.5 104.5t159.5 32.5q115 0 197 -61t82 -162q0 -116 -117 -184q65 -26 105 -76t40 -117q0 -108 -91.5 -178t-217.5 -70 q-104 0 -189 42t-137 120z" />
|
127
|
+
<glyph unicode="´" horiz-adv-x="1136" d="M442 1319l316 373l203 -199l-371 -322z" />
|
128
|
+
<glyph unicode="µ" horiz-adv-x="1216" d="M133 -362v1378h301v-592q0 -105 29.5 -149t95.5 -44q52 0 93.5 31t80.5 103v651h303q-2 -63 -11 -337.5t-9 -373.5q0 -47 23 -66.5t67 -19.5q30 0 65 12l35 -223q-79 -33 -178 -33q-212 0 -262 170h-8q-75 -159 -215 -159q-87 0 -127 47q3 -223 20 -395h-303z" />
|
129
|
+
<glyph unicode="¶" horiz-adv-x="1302" d="M80 879q0 101 27 179.5t73.5 130t113.5 85t142 47.5t164 14h90v-932h-82q-110 0 -205.5 31t-167.5 89t-113.5 150t-41.5 206zM805 -164v1499h301v-1499h-301z" />
|
130
|
+
<glyph unicode="·" horiz-adv-x="614" d="M125 655q0 82 52 136.5t130 54.5t130 -54.5t52 -136.5q0 -80 -52 -134t-130 -54t-130 54t-52 134z" />
|
131
|
+
<glyph unicode="¸" horiz-adv-x="1136" d="M340 -369q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l99 201h176l-58 -133q79 -19 117.5 -55t38.5 -99q0 -197 -404 -210z" />
|
132
|
+
<glyph unicode="¹" horiz-adv-x="770" d="M156 1343v136q79 11 126.5 30.5t102.5 57.5h176v-799h-223v575h-182z" />
|
133
|
+
<glyph unicode="º" horiz-adv-x="763" d="M49 1104q0 161 97.5 258.5t234.5 97.5t234.5 -97.5t97.5 -258.5q0 -107 -47 -188.5t-122 -122.5t-163 -41t-163 41t-122 122.5t-47 188.5zM266 1104q0 -87 28.5 -135.5t86.5 -48.5t87.5 49t29.5 135q0 88 -29.5 138t-87.5 50t-86.5 -50t-28.5 -138z" />
|
137
134
|
<glyph unicode="»" horiz-adv-x="983" d="M111 205l227 311l-227 311l112 91l275 -295v-213l-275 -295zM496 205l227 311l-227 311l112 91l275 -295v-213l-275 -295z" />
|
138
|
-
<glyph unicode="¼" horiz-adv-x="1656" d="
|
139
|
-
<glyph unicode="½" horiz-adv-x="1732" d="
|
140
|
-
<glyph unicode="¾" horiz-adv-x="1675" d="
|
141
|
-
<glyph unicode="¿" horiz-adv-x="948" d="M86 -29q0
|
142
|
-
<glyph unicode="À" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
143
|
-
<glyph unicode="Á" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
144
|
-
<glyph unicode="Â" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
145
|
-
<glyph unicode="Ã" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
146
|
-
<glyph unicode="Ä" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
147
|
-
<glyph unicode="Å" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-
|
148
|
-
<glyph unicode="Æ" horiz-adv-x="1730" d="M-29 0l635 1335h998v-254h-512v-268h432v-252h-432v-307h532v-254h-833v305h-363l-139 -305h-318zM535 539h256v569h-9q-
|
149
|
-
<glyph unicode="Ç" horiz-adv-x="1191" d="M94 659q0
|
150
|
-
<glyph unicode="È" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-
|
151
|
-
<glyph unicode="É" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-
|
152
|
-
<glyph unicode="Ê" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-
|
153
|
-
<glyph unicode="Ë" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-
|
154
|
-
<glyph unicode="Ì" horiz-adv-x="616" d="M-
|
155
|
-
<glyph unicode="Í" horiz-adv-x="616" d="
|
156
|
-
<glyph unicode="Î" horiz-adv-x="616" d="M-
|
157
|
-
<glyph unicode="Ï" horiz-adv-x="616" d="M-
|
158
|
-
<glyph unicode="Ð" horiz-adv-x="1351" d="M53 616v136l156
|
159
|
-
<glyph unicode="Ñ" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-
|
160
|
-
<glyph unicode="Ò" horiz-adv-x="1400" d="M94 674q0
|
161
|
-
<glyph unicode="Ó" horiz-adv-x="1400" d="M94 674q0
|
162
|
-
<glyph unicode="Ô" horiz-adv-x="1400" d="M94 674q0
|
163
|
-
<glyph unicode="Õ" horiz-adv-x="1400" d="M94 674q0
|
164
|
-
<glyph unicode="Ö" horiz-adv-x="1400" d="M94 674q0
|
135
|
+
<glyph unicode="¼" horiz-adv-x="1656" d="M94 1112v135q79 11 127 30.5t103 57.5h176v-798h-224v575h-182zM379 -25l721 1385h174l-721 -1385h-174zM958 178v111l289 510h275v-477h118v-144h-118v-178h-197v178h-367zM1161 322h164v84l12 239h-8l-82 -158z" />
|
136
|
+
<glyph unicode="½" horiz-adv-x="1732" d="M94 1112v135q79 11 127 30.5t103 57.5h176v-798h-224v575h-182zM348 -25l721 1385h174l-721 -1385h-174zM1016 659q123 164 305 164q134 0 214.5 -71.5t80.5 -198.5q0 -46 -15.5 -92t-50 -96t-64.5 -86.5t-83 -94.5h242v-184h-592v119q180 147 265 237.5t85 159.5 q0 59 -31 92t-86 33q-72 0 -145 -96z" />
|
137
|
+
<glyph unicode="¾" horiz-adv-x="1675" d="M49 674l133 104q71 -98 170 -98q49 0 82 26t33 70q0 105 -191 105v127q162 0 162 98q0 40 -27 63t-73 23q-65 0 -131 -80l-125 111q68 72 135.5 104.5t159.5 32.5q115 0 196.5 -61t81.5 -162q0 -118 -116 -185q65 -26 105 -75.5t40 -116.5q0 -108 -91.5 -178t-217.5 -70 q-104 0 -189 42t-137 120zM424 -25l721 1385h174l-721 -1385h-174zM975 178v111l289 510h274v-477h119v-144h-119v-178h-197v178h-366zM1178 322h163v84l13 239h-8l-82 -158z" />
|
138
|
+
<glyph unicode="¿" horiz-adv-x="948" d="M86 -29q0 51 17 98t43.5 84t58.5 72.5t63.5 70.5t56 71.5t38 81.5t8.5 94h262q11 -78 -11 -149t-62 -123t-82 -98t-72.5 -93t-30.5 -88q0 -61 37.5 -95t99.5 -34q53 0 96.5 24t89.5 70l166 -152q-164 -186 -389 -186q-175 0 -282 88.5t-107 263.5zM319 852q0 80 52.5 134 t130.5 54t130 -54t52 -134q0 -82 -52 -136t-130 -54t-130.5 54t-52.5 136z" />
|
139
|
+
<glyph unicode="À" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM225 1636l160 195l350 -287l-135 -151zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
140
|
+
<glyph unicode="Á" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM424 1544l350 287l160 -195l-375 -243zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
141
|
+
<glyph unicode="Â" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM231 1483l185 227h327l185 -227l-131 -80l-213 172h-9l-213 -172zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
142
|
+
<glyph unicode="Ã" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM174 1450q7 149 77 222t183 73q49 0 95 -18.5t74.5 -41t59 -41t52.5 -18.5q65 0 76 100l194 -14q-7 -148 -77 -221.5t-183 -73.5q-49 0 -95 18.5t-74.5 41t-59 41t-52.5 18.5q-64 0 -75 -100zM438 553 h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
143
|
+
<glyph unicode="Ä" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM209 1577q0 62 40 102.5t103 40.5t103.5 -40.5t40.5 -102.5t-40.5 -102.5t-103.5 -40.5t-103 40.5t-40 102.5zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z M664 1577q0 62 40 102.5t103 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103 40.5t-40 102.5z" />
|
144
|
+
<glyph unicode="Å" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM346 1630q0 92 64.5 146.5t169.5 54.5q104 0 168.5 -55t64.5 -146q0 -92 -65 -147.5t-168 -55.5q-105 0 -169.5 55.5t-64.5 147.5zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9 q-83 -354 -104 -430zM494 1630q0 -40 25 -65t61 -25t61 25t25 65q0 39 -25 63.5t-61 24.5t-61 -24.5t-25 -63.5z" />
|
145
|
+
<glyph unicode="Æ" horiz-adv-x="1730" d="M-29 0l635 1335h998v-254h-512v-268h432v-252h-432v-307h532v-254h-833v305h-363l-139 -305h-318zM535 539h256v569h-9q-135 -322 -161 -379z" />
|
146
|
+
<glyph unicode="Ç" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-142 -163 -346 -190l-45 -107q79 -19 117 -55t38 -99q0 -197 -403 -210 l-23 120q118 6 164.5 26.5t46.5 63.5q0 33 -34 54t-123 32l86 175q-113 15 -208.5 65.5t-168 134t-113.5 206t-41 271.5z" />
|
147
|
+
<glyph unicode="È" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM236 1636l159 195l350 -287l-135 -151z" />
|
148
|
+
<glyph unicode="É" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM434 1544l350 287l160 -195l-375 -243z" />
|
149
|
+
<glyph unicode="Ê" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM242 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172z" />
|
150
|
+
<glyph unicode="Ë" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM219 1577q0 62 40 102.5t103 40.5t103.5 -40.5t40.5 -102.5t-40.5 -102.5t-103.5 -40.5t-103 40.5t-40 102.5zM674 1577q0 62 40 102.5t103 40.5t103.5 -40.5t40.5 -102.5t-40.5 -102.5t-103.5 -40.5 t-103 40.5t-40 102.5z" />
|
151
|
+
<glyph unicode="Ì" horiz-adv-x="616" d="M-45 1636l160 195l350 -287l-135 -151zM158 0v1335h301v-1335h-301z" />
|
152
|
+
<glyph unicode="Í" horiz-adv-x="616" d="M154 1544l350 287l160 -195l-375 -243zM158 0v1335h301v-1335h-301z" />
|
153
|
+
<glyph unicode="Î" horiz-adv-x="616" d="M-39 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172zM158 0v1335h301v-1335h-301z" />
|
154
|
+
<glyph unicode="Ï" horiz-adv-x="616" d="M-61 1577q0 62 40 102.5t103 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103 40.5t-40 102.5zM158 0v1335h301v-1335h-301zM393 1577q0 62 40.5 102.5t103.5 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103.5 40.5t-40.5 102.5z" />
|
155
|
+
<glyph unicode="Ð" horiz-adv-x="1351" d="M53 616v136l156 10v573h377q317 0 493 -163.5t176 -497.5t-175 -504t-478 -170h-393v616h-156zM510 244h57q181 0 280 101t99 329q0 117 -26.5 199.5t-78.5 129.5t-118.5 68t-155.5 21h-57v-330h256v-146h-256v-372z" />
|
156
|
+
<glyph unicode="Ñ" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286zM276 1450q7 149 77.5 222t183.5 73q49 0 95 -18.5t74 -41t58.5 -41t52.5 -18.5q65 0 76 100l194 -14 q-7 -148 -77 -221.5t-183 -73.5q-49 0 -95 18.5t-74 41t-58.5 41t-52.5 18.5q-65 0 -76 -100z" />
|
157
|
+
<glyph unicode="Ò" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM346 1636l160 195l350 -287l-135 -151zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5 t-217 -113.5t-80 -312.5z" />
|
158
|
+
<glyph unicode="Ó" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5zM545 1544l350 287 l160 -195l-375 -243z" />
|
159
|
+
<glyph unicode="Ô" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM352 1483l185 227h327l185 -227l-131 -80l-213 172h-9l-213 -172zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5 q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
160
|
+
<glyph unicode="Õ" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM295 1450q7 149 77 222t183 73q49 0 95 -18.5t74.5 -41t59 -41t52.5 -18.5q64 0 75 100l195 -14q-7 -148 -77 -221.5t-183 -73.5q-49 0 -95 18.5 t-74.5 41t-59 41t-52.5 18.5q-65 0 -76 -100zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
161
|
+
<glyph unicode="Ö" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM330 1577q0 62 40 102.5t103 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103 40.5t-40 102.5zM403 674q0 -201 80.5 -319.5t216.5 -118.5 t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5zM784 1577q0 62 40.5 102.5t103.5 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103.5 40.5t-40.5 102.5z" />
|
165
162
|
<glyph unicode="×" d="M98 381l291 293l-291 295l150 151l293 -295l293 295l149 -151l-291 -295l291 -293l-149 -152l-293 295l-293 -295z" />
|
166
|
-
<glyph unicode="Ø" horiz-adv-x="1400" d="M82 35l141 176q-
|
167
|
-
<glyph unicode="Ù" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -
|
168
|
-
<glyph unicode="Ú" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -
|
169
|
-
<glyph unicode="Û" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -
|
170
|
-
<glyph unicode="Ü" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -
|
171
|
-
<glyph unicode="Ý" horiz-adv-x="1075" d="M-16 1335h323l119 -
|
172
|
-
<glyph unicode="Þ" horiz-adv-x="1263" d="M158 0v1335h301v-
|
173
|
-
<glyph unicode="ß" horiz-adv-x="1294" d="M133 0v997q0
|
174
|
-
<glyph unicode="à" horiz-adv-x="
|
175
|
-
<glyph unicode="á" horiz-adv-x="
|
176
|
-
<glyph unicode="â" horiz-adv-x="
|
177
|
-
<glyph unicode="ã" horiz-adv-x="
|
178
|
-
<glyph unicode="ä" horiz-adv-x="
|
179
|
-
<glyph unicode="å" horiz-adv-x="
|
180
|
-
<glyph unicode="æ" horiz-adv-x="1609" d="M96 281q0
|
181
|
-
<glyph unicode="ç" horiz-adv-x="956" d="M74 508q0
|
182
|
-
<glyph unicode="è" horiz-adv-x="1060" d="M74 508q0
|
183
|
-
<glyph unicode="é" horiz-adv-x="1060" d="M74 508q0
|
184
|
-
<glyph unicode="ê" horiz-adv-x="1060" d="M74 508q0
|
185
|
-
<glyph unicode="ë" horiz-adv-x="1060" d="M74 508q0
|
186
|
-
<glyph unicode="ì" horiz-adv-x="565" d="M-
|
187
|
-
<glyph unicode="í" horiz-adv-x="565" d="
|
188
|
-
<glyph unicode="î" horiz-adv-x="565" d="M-
|
189
|
-
<glyph unicode="ï" horiz-adv-x="565" d="M-
|
190
|
-
<glyph unicode="ð" horiz-adv-x="1146" d="M86 467q0
|
191
|
-
<glyph unicode="ñ" horiz-adv-x="1171" d="M133 0v1016h246l20 -
|
192
|
-
<glyph unicode="ò" horiz-adv-x="1136" d="M74 508q0
|
193
|
-
<glyph unicode="ó" horiz-adv-x="1136" d="M74 508q0
|
194
|
-
<glyph unicode="ô" horiz-adv-x="1136" d="M74 508q0
|
195
|
-
<glyph unicode="õ" horiz-adv-x="1136" d="M74 508q0
|
196
|
-
<glyph unicode="ö" horiz-adv-x="1136" d="M74 508q0
|
197
|
-
<glyph unicode="÷" d="M70 569v213h942v-213h-942zM375 307q0
|
198
|
-
<glyph unicode="ø" horiz-adv-x="1136" d="M74 508q0
|
199
|
-
<glyph unicode="ù" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -
|
200
|
-
<glyph unicode="ú" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -
|
201
|
-
<glyph unicode="û" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -
|
202
|
-
<glyph unicode="ü" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -
|
203
|
-
<glyph unicode="ý" horiz-adv-x="1067" d="M25 1016h303l145 -
|
204
|
-
<glyph unicode="þ" horiz-adv-x="1173" d="M133 -377v1813h301v-353l-8 -
|
205
|
-
<glyph unicode="ÿ" horiz-adv-x="1067" d="M25 1016h303l145 -
|
206
|
-
<glyph unicode="&#
|
207
|
-
<glyph unicode="&#
|
208
|
-
<glyph unicode="&#
|
209
|
-
<glyph unicode="&#
|
210
|
-
<glyph unicode="&#
|
211
|
-
<glyph unicode="&#
|
212
|
-
<glyph unicode="&#
|
213
|
-
<glyph unicode="&#
|
214
|
-
<glyph unicode="&#
|
215
|
-
<glyph unicode="&#
|
216
|
-
<glyph unicode="&#
|
217
|
-
<glyph unicode="&#
|
218
|
-
<glyph unicode="&#
|
219
|
-
<glyph unicode="&#
|
220
|
-
<glyph unicode="&#
|
221
|
-
<glyph unicode="&#
|
163
|
+
<glyph unicode="Ø" horiz-adv-x="1400" d="M82 35l141 176q-127 186 -127 463q0 322 165.5 504t440.5 182q211 0 359 -109l135 168l156 -121l-156 -192q113 -174 113 -432q0 -323 -167 -511t-440 -188q-189 0 -337 99l-127 -158zM406 674q0 -110 26 -203l451 559q-73 70 -181 70q-137 0 -216.5 -113.5t-79.5 -312.5 zM541 293q69 -57 161 -57q136 0 216.5 118.5t80.5 319.5q0 92 -18 166z" />
|
164
|
+
<glyph unicode="Ù" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM326 1636l159 195l351 -287l-136 -151z" />
|
165
|
+
<glyph unicode="Ú" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM524 1544l350 287l160 -195l-375 -243z" />
|
166
|
+
<glyph unicode="Û" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM332 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172z" />
|
167
|
+
<glyph unicode="Ü" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM309 1577q0 62 40.5 102.5t103.5 40.5t103 -40.5t40 -102.5t-40 -102.5t-103 -40.5t-103.5 40.5t-40.5 102.5zM764 1577 q0 62 40 102.5t103 40.5t103.5 -40.5t40.5 -102.5t-40.5 -102.5t-103.5 -40.5t-103 40.5t-40 102.5z" />
|
168
|
+
<glyph unicode="Ý" horiz-adv-x="1075" d="M-16 1335h323l119 -307q102 -274 109 -295h8q88 231 112 295l121 307h316l-404 -860v-475h-301v475zM381 1544l350 287l160 -195l-375 -243z" />
|
169
|
+
<glyph unicode="Þ" horiz-adv-x="1263" d="M158 0v1335h301v-202h186q114 0 204.5 -22t164 -70t113.5 -133t40 -203q0 -115 -41.5 -203.5t-114 -142t-165 -80.5t-201.5 -27h-186v-252h-301zM459 492h168q245 0 245 213q0 101 -60.5 144.5t-184.5 43.5h-168v-401z" />
|
170
|
+
<glyph unicode="ß" horiz-adv-x="1294" d="M133 0v997q0 100 30 183t88.5 145t152 96.5t214.5 34.5q102 0 183.5 -28.5t132.5 -76.5t77.5 -109t26.5 -128q0 -66 -25 -123.5t-54.5 -91t-54.5 -72.5t-25 -73q0 -27 20 -50t51.5 -42t70 -39.5t77 -48t70 -61.5t51.5 -86t20 -116q0 -146 -99 -241t-278 -95 q-85 0 -157 23t-152 70l104 204q100 -73 195 -73q52 0 82.5 27.5t30.5 70.5q0 31 -20 57.5t-51.5 47t-70.5 41t-77.5 45.5t-70 54.5t-51.5 74.5t-20 100q0 53 23 102t50 82t50 80.5t23 97.5q0 62 -35 101t-97 39q-92 0 -140 -67.5t-48 -188.5v-963h-297z" />
|
171
|
+
<glyph unicode="à" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM174 1493l203 199l315 -373l-147 -148zM375 305q0 -96 117 -96 q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
172
|
+
<glyph unicode="á" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5 t-65 -104.5zM438 1319l316 373l202 -199l-370 -322z" />
|
173
|
+
<glyph unicode="â" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM190 1255l222 269h307l221 -269l-115 -106l-256 188h-8l-256 -188zM375 305 q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
174
|
+
<glyph unicode="ã" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM176 1202q9 311 254 311q44 0 86.5 -20.5t70 -45t57.5 -45t50 -20.5 q60 0 72 113l188 -10q-9 -311 -254 -311q-44 0 -86.5 20.5t-70 45t-57.5 45t-50 20.5q-31 0 -48 -26.5t-23 -86.5zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
175
|
+
<glyph unicode="ä" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM195 1313q0 62 41.5 103.5t105.5 41.5t104.5 -41.5t40.5 -103.5 q0 -64 -40.5 -106t-104.5 -42t-105.5 42.5t-41.5 105.5zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5zM643 1313q0 62 40.5 103.5t104.5 41.5t106 -41.5t42 -103.5q0 -63 -42 -105.5t-106 -42.5t-104.5 42t-40.5 106z" />
|
176
|
+
<glyph unicode="å" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM295 1368q0 93 70.5 153t199.5 60t200 -60t71 -153t-71 -153t-200 -60 t-199.5 60t-70.5 153zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5zM477 1368q0 -44 25.5 -72t62.5 -28t62.5 28t25.5 72t-25.5 72t-62.5 28t-62.5 -28t-25.5 -72z" />
|
177
|
+
<glyph unicode="æ" horiz-adv-x="1609" d="M96 281q0 163 134.5 253.5t431.5 120.5q-5 71 -41.5 108.5t-116.5 37.5q-108 0 -266 -92l-107 198q220 133 416 133q92 0 164.5 -40t117.5 -113q134 153 301 153q130 0 223 -66.5t137 -176t44 -250.5q0 -77 -12 -127h-586q17 -102 82.5 -155.5t161.5 -53.5q88 0 215 74 l102 -195q-78 -54 -173.5 -84.5t-184.5 -30.5q-206 0 -351 158q-106 -85 -197 -121.5t-194 -36.5q-135 0 -218 87.5t-83 218.5zM383 305q0 -96 117 -96q101 0 190 86q-22 63 -28 135l-3 43q-276 -40 -276 -168zM936 604h342q0 97 -39 152t-119 55q-73 0 -122.5 -52.5 t-61.5 -154.5z" />
|
178
|
+
<glyph unicode="ç" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-103 -92 -245 -112l-48 -109q79 -19 117.5 -55t38.5 -99q0 -197 -403 -210l-23 120 q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l86 175q-185 29 -299 167.5t-114 358.5z" />
|
179
|
+
<glyph unicode="è" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM162 1493l203 199l315 -373 l-148 -148zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
180
|
+
<glyph unicode="é" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM362 618h367q0 89 -41.5 141 t-128.5 52q-74 0 -128.5 -50t-68.5 -143zM426 1319l315 373l203 -199l-371 -322z" />
|
181
|
+
<glyph unicode="ê" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM178 1255l221 269h308l221 -269 l-115 -106l-256 188h-8l-256 -188zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
182
|
+
<glyph unicode="ë" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM182 1313q0 62 42 103.5t106 41.5 t104.5 -41.5t40.5 -103.5q0 -64 -40.5 -106t-104.5 -42t-106 42.5t-42 105.5zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143zM631 1313q0 62 40.5 103.5t104.5 41.5t106 -41.5t42 -103.5q0 -63 -42 -105.5t-106 -42.5t-104.5 42t-40.5 106z" />
|
183
|
+
<glyph unicode="ì" horiz-adv-x="565" d="M-109 1493l203 199l316 -373l-148 -148zM133 0v1016h301v-1016h-301z" />
|
184
|
+
<glyph unicode="í" horiz-adv-x="565" d="M133 0v1016h301v-1016h-301zM156 1319l315 373l203 -199l-371 -322z" />
|
185
|
+
<glyph unicode="î" horiz-adv-x="565" d="M-92 1255l221 269h307l221 -269l-114 -106l-256 188h-8l-256 -188zM133 0v1016h301v-1016h-301z" />
|
186
|
+
<glyph unicode="ï" horiz-adv-x="565" d="M-88 1313q0 62 41.5 103.5t105.5 41.5t105 -41.5t41 -103.5q0 -64 -41 -106t-105 -42t-105.5 42.5t-41.5 105.5zM133 0v1016h301v-1016h-301zM360 1313q0 62 41 103.5t105 41.5t105.5 -41.5t41.5 -103.5q0 -63 -41.5 -105.5t-105.5 -42.5t-105 42t-41 106z" />
|
187
|
+
<glyph unicode="ð" horiz-adv-x="1146" d="M86 467q0 106 35 195.5t93.5 147.5t133 90t154.5 32q137 0 217 -86q-53 157 -174 272l-291 -145l-78 133l238 119q-66 47 -185 108l131 183q158 -81 283 -175l293 148l78 -133l-246 -125q276 -279 276 -686q0 -252 -131.5 -411t-353.5 -159q-95 0 -181 35t-151 97.5 t-103 156t-38 203.5zM360 467q0 -117 60 -182.5t149 -65.5q90 0 142.5 78t52.5 231q0 62 -2 93q-79 88 -199 88q-93 0 -148 -61.5t-55 -180.5z" />
|
188
|
+
<glyph unicode="ñ" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301zM242 1202q9 311 254 311q44 0 86.5 -20.5t70 -45t57.5 -45t50 -20.5q59 0 71 113l189 -10q-9 -311 -254 -311 q-44 0 -86.5 20.5t-70 45t-57.5 45t-50 20.5q-61 0 -72 -113z" />
|
189
|
+
<glyph unicode="ò" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM178 1493l203 199l315 -373l-147 -148zM383 508q0 -135 47 -212t139 -77 q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
190
|
+
<glyph unicode="ó" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77 q-92 0 -139 -77t-47 -212zM442 1319l316 373l203 -199l-371 -322z" />
|
191
|
+
<glyph unicode="ô" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM195 1255l221 269h307l221 -269l-115 -106l-256 188h-8l-256 -188z M383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
192
|
+
<glyph unicode="õ" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM180 1202q9 311 254 311q44 0 86.5 -20.5t70 -45t57.5 -45t50 -20.5 q60 0 72 113l188 -10q-9 -311 -253 -311q-44 0 -87 20.5t-70.5 45t-57.5 45t-50 20.5q-31 0 -48 -26.5t-23 -86.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
193
|
+
<glyph unicode="ö" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM199 1313q0 62 41.5 103.5t105.5 41.5t105 -41.5t41 -103.5 q0 -64 -41 -106t-105 -42t-105.5 42.5t-41.5 105.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212zM647 1313q0 62 41 103.5t105 41.5t105.5 -41.5t41.5 -103.5q0 -63 -41.5 -105.5t-105.5 -42.5t-105 42t-41 106z" />
|
194
|
+
<glyph unicode="÷" d="M70 569v213h942v-213h-942zM375 307q0 69 47.5 113.5t118.5 44.5t118.5 -44.5t47.5 -113.5q0 -68 -47.5 -112.5t-118.5 -44.5t-118.5 44.5t-47.5 112.5zM375 1044q0 69 47.5 113.5t118.5 44.5t118.5 -44.5t47.5 -113.5q0 -68 -47.5 -112.5t-118.5 -44.5t-118.5 44.5 t-47.5 112.5z" />
|
195
|
+
<glyph unicode="ø" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36q147 0 271 -79l90 110l112 -88l-96 -119q117 -146 117 -356q0 -123 -41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5q-150 0 -274 82l-88 -108l-113 86l96 119q-116 142 -116 354zM365 524q0 -82 14 -137l305 381 q-45 39 -115 39q-93 0 -148.5 -77.5t-55.5 -205.5zM451 250q47 -41 118 -41q92 0 147.5 77.5t55.5 205.5q0 84 -14 139z" />
|
196
|
+
<glyph unicode="ù" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM193 1493l202 199l316 -373l-148 -148z" />
|
197
|
+
<glyph unicode="ú" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM457 1319l315 373l203 -199l-371 -322z" />
|
198
|
+
<glyph unicode="û" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM209 1255l221 269h307l221 -269l-114 -106l-256 188h-8l-256 -188z" />
|
199
|
+
<glyph unicode="ü" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM213 1313q0 62 41.5 103.5t105.5 41.5t105 -41.5t41 -103.5q0 -64 -41 -106t-105 -42t-105.5 42.5t-41.5 105.5z M662 1313q0 62 40.5 103.5t104.5 41.5t105.5 -41.5t41.5 -103.5q0 -63 -41.5 -105.5t-105.5 -42.5t-104.5 42t-40.5 106z" />
|
200
|
+
<glyph unicode="ý" horiz-adv-x="1067" d="M25 1016h303l145 -436q14 -44 80 -289h8q60 252 70 289l123 436h288l-352 -1026q-38 -101 -76.5 -169.5t-91 -119.5t-120 -74.5t-156.5 -23.5q-76 0 -144 20l54 230q59 -13 67 -13q133 0 178 133l15 54zM420 1319l315 373l203 -199l-371 -322z" />
|
201
|
+
<glyph unicode="þ" horiz-adv-x="1173" d="M133 -377v1813h301v-353l-8 -143q118 100 254 100q191 0 302.5 -140t111.5 -376q0 -126 -36 -231.5t-96 -174t-136.5 -106t-159.5 -37.5q-129 0 -240 97l8 -152v-297h-301zM434 287q71 -66 162 -66q83 0 135.5 75t52.5 224q0 275 -176 275q-87 0 -174 -93v-415z" />
|
202
|
+
<glyph unicode="ÿ" horiz-adv-x="1067" d="M25 1016h303l145 -436q14 -44 80 -289h8q60 252 70 289l123 436h288l-352 -1026q-38 -101 -76.5 -169.5t-91 -119.5t-120 -74.5t-156.5 -23.5q-76 0 -144 20l54 230q59 -13 67 -13q133 0 178 133l15 54zM176 1313q0 62 42 103.5t106 41.5t104.5 -41.5t40.5 -103.5 q0 -64 -40.5 -106t-104.5 -42t-106 42.5t-42 105.5zM625 1313q0 62 40.5 103.5t104.5 41.5t106 -41.5t42 -103.5q0 -63 -42 -105.5t-106 -42.5t-104.5 42t-40.5 106z" />
|
203
|
+
<glyph unicode="Ā" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM270 1477v192h619v-192h-619zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
204
|
+
<glyph unicode="ā" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM262 1212v191h606v-191h-606zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65 v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
205
|
+
<glyph unicode="Ă" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM246 1708l164 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l163 -29q-14 -137 -98 -209t-235 -72t-235.5 72t-98.5 209zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9 q-83 -354 -104 -430z" />
|
206
|
+
<glyph unicode="ă" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM219 1493l172 29q10 -72 53.5 -117t120.5 -45t120.5 45t53.5 117l172 -29 q-5 -144 -91 -233t-255 -89q-167 0 -254 89.5t-92 232.5zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
207
|
+
<glyph unicode="Ą" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335q-81 -7 -133 -63t-52 -121q0 -37 23 -57.5t57 -20.5q39 0 80 29l70 -152q-40 -31 -100.5 -51.5t-114.5 -20.5q-102 0 -168 51.5t-66 141.5q0 86 52 157t114 107h-82l-82 317h-407l-82 -317h-307zM438 553h285l-31 123q-16 59 -34.5 132 t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
208
|
+
<glyph unicode="ą" horiz-adv-x="1079" d="M86 281q0 162 136 251.5t435 120.5q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582q-91 -26 -134.5 -74t-43.5 -100q0 -39 24.5 -58.5t59.5 -19.5q37 0 74 25l63 -135q-39 -30 -98 -49t-110 -19q-94 0 -156 48.5 t-62 137.5q0 80 44.5 141.5t97.5 98.5l-25 108h-8q-146 -129 -295 -129q-136 0 -219.5 87.5t-83.5 218.5zM375 305q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
209
|
+
<glyph unicode="Ć" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-170 -197 -432 -197q-128 0 -240 44.5t-197 128.5t-134.5 215.5 t-49.5 295.5zM547 1544l350 287l160 -195l-375 -243z" />
|
210
|
+
<glyph unicode="ć" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-137 -121 -336 -121q-106 0 -197.5 36t-159 103t-106 168.5t-38.5 225.5zM467 1319 l315 373l203 -199l-371 -322z" />
|
211
|
+
<glyph unicode="Ĉ" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-170 -197 -432 -197q-128 0 -240 44.5t-197 128.5t-134.5 215.5 t-49.5 295.5zM354 1483l185 227h327l185 -227l-131 -80l-213 172h-9l-213 -172z" />
|
212
|
+
<glyph unicode="ĉ" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-137 -121 -336 -121q-106 0 -197.5 36t-159 103t-106 168.5t-38.5 225.5zM219 1255 l221 269h308l221 -269l-115 -106l-256 188h-8l-256 -188z" />
|
213
|
+
<glyph unicode="Ċ" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-170 -197 -432 -197q-128 0 -240 44.5t-197 128.5t-134.5 215.5 t-49.5 295.5zM528 1593q0 69 49.5 113.5t124.5 44.5t125 -44.5t50 -113.5t-50 -113t-125 -44t-124.5 44t-49.5 113z" />
|
214
|
+
<glyph unicode="ċ" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-137 -121 -336 -121q-106 0 -197.5 36t-159 103t-106 168.5t-38.5 225.5zM428 1323 q0 69 46.5 113.5t119.5 44.5t119.5 -44.5t46.5 -113.5t-46.5 -113.5t-119.5 -44.5t-119.5 44.5t-46.5 113.5z" />
|
215
|
+
<glyph unicode="Č" horiz-adv-x="1191" d="M94 659q0 161 51 295t138 222t201 136t241 48q121 0 223.5 -48.5t177.5 -125.5l-159 -193q-119 107 -236 107q-141 0 -234.5 -117t-93.5 -313q0 -204 87.5 -319t236.5 -115q143 0 260 124l160 -188q-170 -197 -432 -197q-128 0 -240 44.5t-197 128.5t-134.5 215.5 t-49.5 295.5zM354 1663l131 82l213 -172h9l213 172l131 -82l-185 -225h-327z" />
|
216
|
+
<glyph unicode="č" horiz-adv-x="956" d="M74 508q0 123 43 225t116 168.5t168 102.5t201 36q167 0 297 -108l-141 -195q-72 60 -137 60q-109 0 -173.5 -78.5t-64.5 -210.5q0 -130 63.5 -209.5t163.5 -79.5q87 0 183 74l118 -197q-137 -121 -336 -121q-106 0 -197.5 36t-159 103t-106 168.5t-38.5 225.5zM219 1450 l115 106l256 -188h8l256 188l115 -106l-221 -268h-308z" />
|
217
|
+
<glyph unicode="Ď" horiz-adv-x="1300" d="M158 0v1335h377q317 0 493 -163.5t176 -497.5t-175 -504t-478 -170h-393zM303 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328zM459 244h57q181 0 280 101t99 329q0 117 -26.5 199.5t-78.5 129.5t-118.5 68t-155.5 21h-57v-848z" />
|
218
|
+
<glyph unicode="ď" horiz-adv-x="1257" d="M80 508q0 121 35.5 222.5t95 168.5t135 104t156.5 37q80 0 136.5 -26t113.5 -80l-13 156v346h301v-1436h-245l-21 100h-8q-56 -56 -127.5 -90.5t-142.5 -34.5q-190 0 -303 143t-113 390zM389 512q0 -291 184 -291q100 0 166 92v416q-71 66 -168 66q-77 0 -129.5 -73 t-52.5 -210zM1118 1577h195l-4 -141l-49 -314h-130z" />
|
219
|
+
<glyph unicode="Đ" horiz-adv-x="1351" d="M53 616v136l156 10v573h377q317 0 493 -163.5t176 -497.5t-175 -504t-478 -170h-393v616h-156zM510 244h57q181 0 280 101t99 329q0 117 -26.5 199.5t-78.5 129.5t-118.5 68t-155.5 21h-57v-330h256v-146h-256v-372z" />
|
220
|
+
<glyph unicode="đ" horiz-adv-x="1173" d="M80 461q0 139 61 251t157 171t204 59q79 0 135 -26.5t115 -79.5l-13 153v150h-305v145h305v152h301v-152h140v-133l-140 -10v-1141h-252l-18 90h-8q-118 -115 -266 -115q-189 0 -302.5 133t-113.5 353zM389 465q0 -119 48 -181.5t136 -62.5q100 0 166 92v318 q-71 63 -168 63q-76 0 -129 -60.5t-53 -168.5z" />
|
221
|
+
<glyph unicode="Ē" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM281 1477v192h618v-192h-618z" />
|
222
|
+
<glyph unicode="ē" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM250 1212v191h606v-191h-606z M362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
223
|
+
<glyph unicode="Ĕ" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM256 1708l164 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l164 -29q-14 -137 -98.5 -209t-235.5 -72t-235.5 72t-98.5 209z" />
|
224
|
+
<glyph unicode="ĕ" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM207 1493l172 29q10 -72 53.5 -117 t120.5 -45t120.5 45t53.5 117l172 -29q-5 -144 -91 -233t-255 -89q-167 0 -254 89.5t-92 232.5zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
225
|
+
<glyph unicode="Ė" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM416 1593q0 69 49.5 113.5t124.5 44.5t124.5 -44.5t49.5 -113.5t-49.5 -113t-124.5 -44t-124.5 44t-49.5 113z" />
|
226
|
+
<glyph unicode="ė" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM362 618h367q0 89 -41.5 141 t-128.5 52q-74 0 -128.5 -50t-68.5 -143zM387 1323q0 69 46.5 113.5t119.5 44.5t119.5 -44.5t46.5 -113.5t-46.5 -113.5t-119.5 -44.5t-119.5 44.5t-46.5 113.5z" />
|
227
|
+
<glyph unicode="Ę" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-10q-70 -3 -123.5 -59.5t-53.5 -124.5q0 -37 25.5 -57.5t60.5 -20.5q33 0 74 29l70 -152q-40 -31 -100.5 -51.5t-114.5 -20.5q-102 0 -169 51.5t-67 141.5q0 85 49.5 155t112.5 109h-610z" />
|
228
|
+
<glyph unicode="ę" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-131 -91 -176 -146.5t-45 -117.5q0 -38 24.5 -58t63.5 -20q30 0 72 25l61 -135q-37 -30 -96.5 -49 t-110.5 -19q-94 0 -153.5 48.5t-59.5 137.5q0 68 34 126.5t81 99.5q-29 -7 -55 -7q-224 0 -369 143.5t-145 389.5zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
229
|
+
<glyph unicode="Ě" horiz-adv-x="1122" d="M158 0v1335h835v-254h-534v-268h454v-252h-454v-307h555v-254h-856zM242 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328z" />
|
230
|
+
<glyph unicode="ě" horiz-adv-x="1060" d="M74 508q0 120 40.5 222t107.5 168.5t153 104t178 37.5q209 0 320.5 -135.5t111.5 -351.5q0 -83 -12 -133h-608q20 -107 89.5 -161t174.5 -54q109 0 219 67l100 -182q-78 -54 -173.5 -84.5t-186.5 -30.5q-224 0 -369 143.5t-145 389.5zM178 1450l115 106l256 -188h8 l256 188l115 -106l-221 -268h-308zM362 618h367q0 89 -41.5 141t-128.5 52q-74 0 -128.5 -50t-68.5 -143z" />
|
231
|
+
<glyph unicode="Ĝ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM403 1483l185 227h327l185 -227l-131 -80l-213 172h-8l-213 -172z" />
|
232
|
+
<glyph unicode="ĝ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM197 1255l221 269h307l221 -269l-115 -106l-256 188h-8l-256 -188zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89 q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5z" />
|
233
|
+
<glyph unicode="Ğ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM418 1708l164 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l163 -29q-14 -137 -98 -209t-235 -72t-235.5 72t-98.5 209z" />
|
234
|
+
<glyph unicode="ğ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM225 1493l172 29q10 -72 53.5 -117t120.5 -45t120.5 45t53.5 117l173 -29q-5 -144 -91.5 -233t-255.5 -89q-167 0 -254 89.5 t-92 232.5zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5z" />
|
235
|
+
<glyph unicode="Ġ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM578 1593q0 69 49.5 113.5t124.5 44.5t124.5 -44.5t49.5 -113.5t-49.5 -113t-124.5 -44t-124.5 44t-49.5 113z" />
|
236
|
+
<glyph unicode="ġ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12 q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5zM406 1323q0 69 46 113.5t119 44.5t119.5 -44.5t46.5 -113.5t-46.5 -113.5t-119.5 -44.5t-119 44.5t-46 113.5z" />
|
237
|
+
<glyph unicode="Ģ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM512 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -403 -210z" />
|
238
|
+
<glyph unicode="ģ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12 q-56 -50 -56 -100zM377 1335q0 198 403 211l23 -121q-118 -6 -164.5 -24t-46.5 -55q0 -61 131 -72l-57 -111q-160 13 -224.5 54t-64.5 118zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5z" />
|
239
|
+
<glyph unicode="Ĥ" horiz-adv-x="1380" d="M158 0v1335h301v-514h461v514h303v-1335h-303v557h-461v-557h-301zM340 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172z" />
|
240
|
+
<glyph unicode="ĥ" horiz-adv-x="1169" d="M-68 1581l185 227h327l185 -227l-131 -80l-213 172h-9l-213 -172zM133 0v1436h301v-353l-14 -182q155 139 313 139q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301z" />
|
241
|
+
<glyph unicode="Ħ" horiz-adv-x="1458" d="M51 995v133l148 13v194h301v-194h461v194h303v-194h143v-146h-143v-995h-303v557h-461v-557h-301v995h-148zM500 821h461v174h-461v-174z" />
|
242
|
+
<glyph unicode="ħ" horiz-adv-x="1169" d="M-6 1139v133l139 10v154h301v-152h346v-145h-346v-154l-14 -184q153 141 313 141q161 0 238.5 -106.5t77.5 -303.5v-532h-301v494q0 106 -29.5 148t-95.5 42q-53 0 -93.5 -23t-95.5 -75v-586h-301v1139h-139z" />
|
243
|
+
<glyph unicode="Ĩ" horiz-adv-x="616" d="M-96 1450q7 149 77 222t183 73q49 0 95 -18.5t74 -41t58.5 -41t52.5 -18.5q65 0 76 100l195 -14q-7 -148 -77 -221.5t-183 -73.5q-49 0 -95 18.5t-74.5 41t-59 41t-52.5 18.5q-65 0 -76 -100zM158 0v1335h301v-1335h-301z" />
|
244
|
+
<glyph unicode="ĩ" horiz-adv-x="565" d="M-106 1202q9 311 253 311q44 0 87 -20.5t70.5 -45t57.5 -45t50 -20.5q59 0 71 113l189 -10q-9 -311 -254 -311q-44 0 -86.5 20.5t-70 45t-57.5 45t-50 20.5q-61 0 -72 -113zM133 0v1016h301v-1016h-301z" />
|
245
|
+
<glyph unicode="Ī" horiz-adv-x="616" d="M0 1477v192h618v-192h-618zM158 0v1335h301v-1335h-301z" />
|
246
|
+
<glyph unicode="ī" horiz-adv-x="565" d="M-20 1212v191h606v-191h-606zM133 0v1016h301v-1016h-301z" />
|
247
|
+
<glyph unicode="Ĭ" horiz-adv-x="616" d="M-25 1708l164 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l164 -29q-14 -137 -98.5 -209t-235.5 -72t-235.5 72t-98.5 209zM158 0v1335h301v-1335h-301z" />
|
248
|
+
<glyph unicode="ĭ" horiz-adv-x="565" d="M-63 1493l172 29q10 -72 53.5 -117t120.5 -45t120.5 45t53.5 117l172 -29q-5 -144 -91 -233t-255 -89q-167 0 -254 89.5t-92 232.5zM133 0v1016h301v-1016h-301z" />
|
249
|
+
<glyph unicode="Į" horiz-adv-x="616" d="M86 -264q0 87 46 153.5t106 110.5h-80v1335h301v-1335q-152 -63 -152 -184q0 -37 25 -57.5t59 -20.5q39 0 76 29l68 -152q-38 -31 -98.5 -51.5t-114.5 -20.5q-102 0 -169 51.5t-67 141.5z" />
|
250
|
+
<glyph unicode="į" horiz-adv-x="565" d="M84 -244q0 137 133 244h-84v1016h301v-1016q-76 -29 -111.5 -76t-35.5 -98q0 -38 25 -58t63 -20q19 0 71 25l62 -135q-37 -30 -97.5 -49t-109.5 -19q-95 0 -156 48.5t-61 137.5zM109 1323q0 69 49.5 112.5t124.5 43.5t124.5 -43.5t49.5 -112.5t-49.5 -113.5t-124.5 -44.5 t-124.5 44.5t-49.5 113.5z" />
|
251
|
+
<glyph unicode="İ" horiz-adv-x="616" d="M135 1593q0 69 49.5 113.5t124.5 44.5t124.5 -44.5t49.5 -113.5t-49.5 -113t-124.5 -44t-124.5 44t-49.5 113zM158 0v1335h301v-1335h-301z" />
|
252
|
+
<glyph unicode="ı" horiz-adv-x="565" d="M133 0v1016h301v-1016h-301z" />
|
253
|
+
<glyph unicode="IJ" horiz-adv-x="1232" d="M158 0v1335h301v-1335h-301zM532 -344l56 223q47 -14 78 -14q60 0 84 38.5t24 125.5v1306h303v-1298q0 -88 -18.5 -159t-59.5 -129t-113.5 -90t-172.5 -32q-103 0 -181 29z" />
|
254
|
+
<glyph unicode="ij" horiz-adv-x="1134" d="M109 1323q0 69 49.5 112.5t124.5 43.5q77 0 125.5 -43.5t48.5 -112.5t-49 -113.5t-125 -44.5q-75 0 -124.5 44.5t-49.5 113.5zM133 0v1016h301v-1016h-301zM461 -373l53 221q47 -14 80 -14q59 0 82.5 38.5t23.5 125.5v1018h301v-1010q0 -87 -18.5 -157.5t-58.5 -128 t-112.5 -89.5t-172.5 -32q-106 0 -178 28zM678 1323q0 69 49.5 112.5t124.5 43.5t124.5 -43.5t49.5 -112.5t-49.5 -113.5t-124.5 -44.5t-124.5 44.5t-49.5 113.5z" />
|
255
|
+
<glyph unicode="Ĵ" horiz-adv-x="1042" d="M33 217l205 152q36 -66 84.5 -99.5t101.5 -33.5q85 0 125.5 52t40.5 181v866h301v-891q0 -99 -26 -182.5t-77 -148.5t-134.5 -101.5t-190.5 -36.5q-151 0 -255.5 59.5t-174.5 182.5zM387 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172z" />
|
256
|
+
<glyph unicode="ĵ" horiz-adv-x="569" d="M-104 -373l53 221q47 -14 80 -14q59 0 82.5 38.5t23.5 125.5v1018h301v-1010q0 -87 -18.5 -157.5t-58.5 -128t-112.5 -89.5t-172.5 -32q-106 0 -178 28zM-88 1255l221 269h307l222 -269l-115 -106l-256 188h-8l-256 -188z" />
|
257
|
+
<glyph unicode="Ķ" horiz-adv-x="1257" d="M158 0v1335h301v-547h8l397 547h332l-403 -532l477 -803h-330l-326 563l-155 -205v-358h-301zM449 -369q117 6 163.5 25t46.5 55q0 61 -131 72l58 111q159 -13 223.5 -54t64.5 -119q0 -197 -403 -210z" />
|
258
|
+
<glyph unicode="ķ" horiz-adv-x="1122" d="M133 0v1436h293v-824h8l322 404h327l-356 -418l383 -598h-326l-229 395l-129 -145v-250h-293zM373 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
259
|
+
<glyph unicode="ĸ" horiz-adv-x="1122" d="M133 0v1016h301v-410h6l316 410h327l-348 -418l375 -598h-326l-229 387l-121 -147v-240h-301z" />
|
260
|
+
<glyph unicode="Ĺ" horiz-adv-x="1060" d="M158 0v1335h301v-1081h528v-254h-829zM160 1544l350 287l160 -195l-375 -243z" />
|
261
|
+
<glyph unicode="ĺ" horiz-adv-x="585" d="M133 315v1121h301v-1133q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -151 -25q-148 0 -212.5 88t-64.5 252zM133 1657l350 287l160 -195l-375 -244z" />
|
262
|
+
<glyph unicode="Ļ" horiz-adv-x="1060" d="M158 0v1335h301v-1081h528v-254h-829zM362 -369q117 6 164 25t47 55q0 61 -131 72l58 111q159 -13 223.5 -54t64.5 -119q0 -197 -403 -210z" />
|
263
|
+
<glyph unicode="ļ" horiz-adv-x="585" d="M133 315v1121h301v-1133q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -151 -25q-148 0 -212.5 88t-64.5 252zM152 -369q117 6 163.5 25t46.5 55q0 61 -131 72l58 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
264
|
+
<glyph unicode="Ľ" horiz-adv-x="1060" d="M158 0v1335h301v-1081h528v-254h-829zM711 1499h194l-4 -141l-49 -314h-129z" />
|
265
|
+
<glyph unicode="ľ" horiz-adv-x="653" d="M133 315v1121h301v-1133q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -151 -25q-148 0 -212.5 88t-64.5 252zM510 1577h195l-5 -141l-49 -314h-129z" />
|
266
|
+
<glyph unicode="Ŀ" horiz-adv-x="1060" d="M158 0v1335h301v-1081h528v-254h-829zM657 672q0 82 52.5 136t130.5 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130.5 54.5t-52.5 134.5z" />
|
267
|
+
<glyph unicode="ŀ" horiz-adv-x="927" d="M133 315v1121h301v-1133q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -151 -25q-148 0 -212.5 88t-64.5 252zM563 672q0 82 52 136t130 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5t-130 54.5t-52 134.5z" />
|
268
|
+
<glyph unicode="Ł" horiz-adv-x="1073" d="M-47 541l219 123v671h301v-532l324 178l102 -180l-426 -232v-315h528v-254h-829v430l-117 -70z" />
|
269
|
+
<glyph unicode="ł" horiz-adv-x="620" d="M-43 698l197 111v627h301v-480l98 56l102 -187l-200 -112v-410q0 -43 15.5 -63.5t37.5 -20.5q21 0 37 4l37 -223q-59 -25 -152 -25q-148 0 -212 88t-64 252v250l-93 -53z" />
|
270
|
+
<glyph unicode="Ń" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286zM528 1544l351 287l159 -195l-374 -243z" />
|
271
|
+
<glyph unicode="ń" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301zM504 1319l315 373l203 -199l-371 -322z" />
|
272
|
+
<glyph unicode="Ņ" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286zM473 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -403 -210z" />
|
273
|
+
<glyph unicode="ņ" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301zM365 -369q117 6 163.5 25t46.5 55q0 61 -131 72l58 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
274
|
+
<glyph unicode="Ň" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286zM334 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328z" />
|
275
|
+
<glyph unicode="ň" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301zM256 1450l115 106l256 -188h8l256 188l115 -106l-222 -268h-307z" />
|
276
|
+
<glyph unicode="ʼn" horiz-adv-x="1744" d="M145 852q94 47 139.5 109t45.5 151q-6 -2 -19 -2q-67 0 -112 41t-45 109q0 76 43.5 121.5t113.5 45.5q93 0 143 -70t50 -198q0 -295 -293 -438zM702 0v1016h246l21 -129h8q160 153 326 153q315 0 315 -409v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93 -22.5 t-95 -75.5v-686h-302z" />
|
277
|
+
<glyph unicode="Ŋ" horiz-adv-x="1363" d="M158 0v1335h291v-143q157 168 362 168q81 0 148.5 -23t126 -74t98.5 -129.5t63 -194t23 -261.5q0 -357 -104 -530t-322 -173q-126 0 -185 39l66 260q41 -18 84 -18q33 0 58.5 18t47.5 62.5t34 130.5t12 211q0 222 -61.5 322t-178.5 100q-66 0 -139.5 -45t-122.5 -123 v-932h-301z" />
|
278
|
+
<glyph unicode="ŋ" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-604q0 -88 -18.5 -159t-59 -129t-113 -90t-172.5 -32q-102 0 -180 29l55 221q41 -12 78 -12q61 0 85 37.5t24 125.5v574q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301z" />
|
279
|
+
<glyph unicode="Ō" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM391 1477v192h619v-192h-619zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5 t-80 -312.5z" />
|
280
|
+
<glyph unicode="ō" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM266 1212v191h606v-191h-606zM383 508q0 -135 47 -212t139 -77 q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
281
|
+
<glyph unicode="Ŏ" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM367 1708l163 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l164 -29q-14 -137 -98.5 -209t-235.5 -72t-235 72t-98 209zM403 674 q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
282
|
+
<glyph unicode="ŏ" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM223 1493l172 29q10 -72 53.5 -117t120.5 -45t120.5 45t53.5 117l172 -29 q-5 -144 -91 -233t-255 -89q-167 0 -254 89.5t-92 232.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
283
|
+
<glyph unicode="Ő" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5zM424 1491l207 330 l190 -107l-250 -293zM807 1491l207 330l192 -107l-250 -293z" />
|
284
|
+
<glyph unicode="ő" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM305 1229l178 370l203 -90l-223 -352zM383 508q0 -135 47 -212t139 -77 q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212zM672 1229l178 370l203 -90l-224 -352z" />
|
285
|
+
<glyph unicode="Œ" horiz-adv-x="1783" d="M94 674q0 168 51 296t143.5 207t216 118.5t275.5 39.5h875v-254h-506v-268h426v-252h-426v-307h526v-254h-911q-116 0 -216.5 25.5t-184 79.5t-143.5 133t-93 190t-33 246zM403 674q0 -118 28.5 -203t82.5 -134t124 -71t161 -22h47v848h-47q-92 0 -161 -20.5t-123.5 -67 t-83 -129.5t-28.5 -201z" />
|
286
|
+
<glyph unicode="œ" horiz-adv-x="1683" d="M74 508q0 123 38.5 225t104.5 168.5t152.5 102.5t183.5 36q205 0 330 -178q62 85 145.5 131.5t175.5 46.5q130 0 223.5 -66.5t138 -176t44.5 -250.5q0 -73 -13 -127h-587q17 -103 82 -156t161 -53q88 0 215 74l105 -195q-78 -54 -174.5 -84.5t-186.5 -30.5q-92 0 -178 47 t-149 132q-65 -90 -146.5 -134.5t-191.5 -44.5q-98 0 -183.5 36.5t-150 103t-102 168t-37.5 225.5zM379 508q0 -134 46 -211.5t128 -77.5q83 0 130.5 78t47.5 211t-47.5 211t-130.5 78q-82 0 -128 -77.5t-46 -211.5zM1010 604h342q0 97 -39 152t-119 55q-73 0 -122.5 -52.5 t-61.5 -154.5z" />
|
287
|
+
<glyph unicode="Ŕ" horiz-adv-x="1255" d="M158 0v1335h481q88 0 162.5 -12.5t140.5 -42.5t112 -76.5t72.5 -118.5t26.5 -165q0 -143 -63 -239.5t-175 -145.5l304 -535h-338l-256 481h-166v-481h-301zM459 721h155q119 0 181.5 50.5t62.5 148.5q0 95 -60.5 135.5t-183.5 40.5h-155v-375zM475 1544l350 287l160 -195 l-375 -243z" />
|
288
|
+
<glyph unicode="ŕ" horiz-adv-x="815" d="M133 0v1016h246l20 -178h9q54 99 130.5 150.5t157.5 51.5q73 0 121 -20l-49 -260q-59 16 -111 16q-64 0 -125 -45.5t-98 -140.5v-590h-301zM379 1319l315 373l203 -199l-371 -322z" />
|
289
|
+
<glyph unicode="Ŗ" horiz-adv-x="1255" d="M158 0v1335h481q88 0 162.5 -12.5t140.5 -42.5t112 -76.5t72.5 -118.5t26.5 -165q0 -143 -63 -239.5t-175 -145.5l304 -535h-338l-256 481h-166v-481h-301zM436 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -403 -210zM459 721h155 q119 0 181.5 50.5t62.5 148.5q0 95 -60.5 135.5t-183.5 40.5h-155v-375z" />
|
290
|
+
<glyph unicode="ŗ" horiz-adv-x="815" d="M51 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -403 -210zM133 0v1016h246l20 -178h9q54 99 130.5 150.5t157.5 51.5q73 0 121 -20l-49 -260q-59 16 -111 16q-64 0 -125 -45.5t-98 -140.5v-590h-301z" />
|
291
|
+
<glyph unicode="Ř" horiz-adv-x="1255" d="M158 0v1335h481q88 0 162.5 -12.5t140.5 -42.5t112 -76.5t72.5 -118.5t26.5 -165q0 -143 -63 -239.5t-175 -145.5l304 -535h-338l-256 481h-166v-481h-301zM283 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328zM459 721h155q119 0 181.5 50.5t62.5 148.5 q0 95 -60.5 135.5t-183.5 40.5h-155v-375z" />
|
292
|
+
<glyph unicode="ř" horiz-adv-x="815" d="M131 1450l115 106l256 -188h8l256 188l115 -106l-222 -268h-307zM133 0v1016h246l20 -178h9q54 99 130.5 150.5t157.5 51.5q73 0 121 -20l-49 -260q-59 16 -111 16q-64 0 -125 -45.5t-98 -140.5v-590h-301z" />
|
293
|
+
<glyph unicode="Ś" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -83 -34.5 -158t-97.5 -132t-159.5 -90.5t-212.5 -33.5q-133 0 -263.5 50t-229.5 143zM440 1544l351 287l159 -195l-375 -243z" />
|
294
|
+
<glyph unicode="ś" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -143 -110.5 -235.5t-307.5 -92.5q-99 0 -205.5 39t-183.5 103zM356 1319l316 373l202 -199l-370 -322z" />
|
295
|
+
<glyph unicode="Ŝ" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -83 -34.5 -158t-97.5 -132t-159.5 -90.5t-212.5 -33.5q-133 0 -263.5 50t-229.5 143zM248 1483l184 227h328l184 -227l-131 -80l-213 172h-8l-213 -172z" />
|
296
|
+
<glyph unicode="ŝ" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -143 -110.5 -235.5t-307.5 -92.5q-99 0 -205.5 39t-183.5 103zM109 1255l221 269h307l221 -269l-115 -106l-256 188h-8l-256 -188z" />
|
297
|
+
<glyph unicode="Ş" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -154 -111 -268.5t-303 -138.5l-45 -107q79 -19 117.5 -55t38.5 -99q0 -197 -404 -210l-22 120q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l84 175 q-234 26 -405 186z" />
|
298
|
+
<glyph unicode="ş" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -115 -72 -199t-205 -114l-49 -115q79 -19 117.5 -55t38.5 -99q0 -197 -404 -210l-22 120q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l84 170q-92 7 -185.5 45t-162.5 95z" />
|
299
|
+
<glyph unicode="Š" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -83 -34.5 -158t-97.5 -132t-159.5 -90.5t-212.5 -33.5q-133 0 -263.5 50t-229.5 143zM248 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328z" />
|
300
|
+
<glyph unicode="š" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -143 -110.5 -235.5t-307.5 -92.5q-99 0 -205.5 39t-183.5 103zM109 1450l114 106l256 -188h8l256 188l115 -106l-221 -268h-307z" />
|
301
|
+
<glyph unicode="Ţ" horiz-adv-x="1138" d="M51 1081v254h1036v-254h-366v-1081h-55l-54 -125q79 -19 117.5 -55t38.5 -99q0 -197 -403 -210l-23 120q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l94 193h-71v1081h-367z" />
|
302
|
+
<glyph unicode="ţ" horiz-adv-x="784" d="M35 780v224l155 12l35 270h250v-270h244v-236h-244v-407q0 -162 131 -162q42 0 96 20l48 -219q-85 -28 -172 -35l-46 -102q79 -19 117.5 -55t38.5 -99q0 -197 -403 -210l-23 120q118 6 164.5 26.5t46.5 63.5q0 33 -34.5 54t-123.5 32l91 183q-232 61 -232 379v411h-139z " />
|
303
|
+
<glyph unicode="Ť" horiz-adv-x="1138" d="M51 1081v254h1036v-254h-366v-1081h-303v1081h-367zM221 1663l131 82l213 -172h8l213 172l132 -82l-185 -225h-327z" />
|
304
|
+
<glyph unicode="ť" horiz-adv-x="784" d="M35 780v224l155 12l35 270h250v-270h244v-236h-244v-407q0 -162 131 -162q42 0 96 20l48 -219q-123 -37 -226 -37q-181 0 -265.5 104t-84.5 290v411h-139zM561 1577h195l-4 -141l-50 -314h-129z" />
|
305
|
+
<glyph unicode="Ŧ" horiz-adv-x="1138" d="M51 1081v254h1036v-254h-366v-352h242v-145h-242v-584h-303v584h-242v133l193 12h49v352h-367z" />
|
306
|
+
<glyph unicode="ŧ" horiz-adv-x="784" d="M35 457v133l139 10v180h-139v224l155 12l35 270h250v-270h244v-236h-244v-178h244v-145h-244v-84q0 -162 131 -162q42 0 96 20l48 -219q-123 -37 -226 -37q-181 0 -265.5 104t-84.5 290v88h-139z" />
|
307
|
+
<glyph unicode="Ũ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM274 1450q7 149 77.5 222t183.5 73q49 0 95 -18.5t74 -41t58.5 -41t52.5 -18.5q65 0 76 100l194 -14q-7 -148 -77 -221.5 t-183 -73.5q-49 0 -95 18.5t-74 41t-58.5 41t-52.5 18.5q-65 0 -76 -100z" />
|
308
|
+
<glyph unicode="ũ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM195 1202q9 311 254 311q44 0 86.5 -20.5t70 -45t57.5 -45t50 -20.5q59 0 71 113l189 -10q-9 -311 -254 -311 q-44 0 -86.5 20.5t-70 45t-57.5 45t-50 20.5q-61 0 -72 -113z" />
|
309
|
+
<glyph unicode="Ū" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM371 1477v192h618v-192h-618z" />
|
310
|
+
<glyph unicode="ū" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM279 1212v191h606v-191h-606z" />
|
311
|
+
<glyph unicode="Ŭ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM346 1708l164 29q14 -64 58 -99.5t112 -35.5t112 35.5t58 99.5l164 -29q-14 -137 -98.5 -209t-235.5 -72t-235.5 72 t-98.5 209z" />
|
312
|
+
<glyph unicode="ŭ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM238 1493l172 29q10 -72 53.5 -117t120.5 -45t120.5 45t53.5 117l172 -29q-5 -144 -91 -233t-255 -89q-167 0 -254 89.5 t-92 232.5z" />
|
313
|
+
<glyph unicode="Ů" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM446 1630q0 92 64.5 146.5t169.5 54.5q104 0 168.5 -55t64.5 -146q0 -92 -65 -147.5t-168 -55.5q-105 0 -169.5 55.5 t-64.5 147.5zM594 1630q0 -40 25 -65t61 -25t61 25t25 65q0 39 -25 63.5t-61 24.5t-61 -24.5t-25 -63.5z" />
|
314
|
+
<glyph unicode="ů" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM313 1368q0 93 71 153t200 60t199.5 -60t70.5 -153t-70.5 -153t-199.5 -60t-200 60t-71 153zM496 1368q0 -44 25.5 -72 t62.5 -28t62.5 28t25.5 72t-25.5 72t-62.5 28t-62.5 -28t-25.5 -72z" />
|
315
|
+
<glyph unicode="Ű" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM403 1491l207 330l191 -107l-250 -293zM786 1491l207 330l193 -107l-250 -293z" />
|
316
|
+
<glyph unicode="ű" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM319 1229l179 370l202 -90l-223 -352zM686 1229l178 370l203 -90l-223 -352z" />
|
317
|
+
<glyph unicode="Ų" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -187 -38 -307.5t-110.5 -191.5t-199.5 -129q-72 -33 -108.5 -81t-36.5 -93q0 -37 25.5 -57.5t60.5 -20.5q33 0 74 29l69 -152q-40 -31 -100.5 -51.5t-114.5 -20.5 q-101 0 -167 51.5t-66 141.5q0 127 131 244q-238 14 -358.5 170.5t-120.5 467.5z" />
|
318
|
+
<glyph unicode="ų" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016q-94 -29 -137 -76t-43 -98q0 -37 25.5 -57.5t60.5 -20.5q36 0 74 25l61 -135q-37 -30 -97.5 -49t-109.5 -19q-95 0 -156 48.5t-61 137.5q0 81 43.5 142t98.5 98l-27 145h-6 q-69 -82 -145 -124t-175 -42q-315 0 -315 410z" />
|
319
|
+
<glyph unicode="Ŵ" horiz-adv-x="1665" d="M29 1335h309l92 -624q8 -67 26.5 -208.5t26.5 -213.5h9q12 64 38.5 206t40.5 216l144 624h256l143 -624q6 -29 80 -422h8q10 81 55 422l93 624h288l-237 -1335h-379l-131 606q-24 107 -53 309h-9q-39 -236 -55 -309l-125 -606h-373zM485 1483l185 227h327l185 -227 l-131 -80l-213 172h-9l-213 -172z" />
|
320
|
+
<glyph unicode="ŵ" horiz-adv-x="1589" d="M49 1016h299l98 -471q9 -54 24 -154.5t22 -146.5h8q41 231 59 301l113 471h260l115 -471q18 -74 63 -301h8q9 50 23.5 150t23.5 151l97 471h278l-244 -1016h-352l-92 406q-27 128 -55 296h-9q-36 -216 -51 -296l-90 -406h-344zM422 1255l221 269h307l221 -269l-114 -106 l-256 188h-8l-256 -188z" />
|
321
|
+
<glyph unicode="Ŷ" horiz-adv-x="1075" d="M-16 1335h323l119 -307q102 -274 109 -295h8q88 231 112 295l121 307h316l-404 -860v-475h-301v475zM188 1483l185 227h327l185 -227l-131 -80l-213 172h-9l-213 -172z" />
|
322
|
+
<glyph unicode="ŷ" horiz-adv-x="1067" d="M25 1016h303l145 -436q14 -44 80 -289h8q60 252 70 289l123 436h288l-352 -1026q-38 -101 -76.5 -169.5t-91 -119.5t-120 -74.5t-156.5 -23.5q-76 0 -144 20l54 230q59 -13 67 -13q133 0 178 133l15 54zM172 1255l221 269h307l222 -269l-115 -106l-256 188h-8l-256 -188z " />
|
323
|
+
<glyph unicode="Ÿ" horiz-adv-x="1075" d="M-16 1335h323l119 -307q102 -274 109 -295h8q88 231 112 295l121 307h316l-404 -860v-475h-301v475zM166 1577q0 62 40 102.5t103 40.5t103.5 -40.5t40.5 -102.5t-40.5 -102.5t-103.5 -40.5t-103 40.5t-40 102.5zM621 1577q0 62 40 102.5t103 40.5t103 -40.5t40 -102.5 t-40 -102.5t-103 -40.5t-103 40.5t-40 102.5z" />
|
324
|
+
<glyph unicode="Ź" horiz-adv-x="1107" d="M74 0v182l590 899h-535v254h905v-182l-590 -899h596v-254h-966zM424 1544l350 287l160 -195l-375 -243z" />
|
325
|
+
<glyph unicode="ź" horiz-adv-x="942" d="M78 0v162l426 618h-379v236h754v-160l-426 -620h440v-236h-815zM375 1319l315 373l203 -199l-371 -322z" />
|
326
|
+
<glyph unicode="Ż" horiz-adv-x="1107" d="M74 0v182l590 899h-535v254h905v-182l-590 -899h596v-254h-966zM406 1593q0 69 49.5 113.5t124.5 44.5t124.5 -44.5t49.5 -113.5t-49.5 -113t-124.5 -44t-124.5 44t-49.5 113z" />
|
327
|
+
<glyph unicode="ż" horiz-adv-x="942" d="M78 0v162l426 618h-379v236h754v-160l-426 -620h440v-236h-815zM336 1323q0 69 46.5 113.5t119.5 44.5t119.5 -44.5t46.5 -113.5t-46.5 -113.5t-119.5 -44.5t-119.5 44.5t-46.5 113.5z" />
|
328
|
+
<glyph unicode="Ž" horiz-adv-x="1107" d="M74 0v182l590 899h-535v254h905v-182l-590 -899h596v-254h-966zM231 1663l131 82l213 -172h9l213 172l131 -82l-185 -225h-327z" />
|
329
|
+
<glyph unicode="ž" horiz-adv-x="942" d="M78 0v162l426 618h-379v236h754v-160l-426 -620h440v-236h-815zM127 1450l115 106l256 -188h8l256 188l115 -106l-222 -268h-307z" />
|
330
|
+
<glyph unicode="ƀ" horiz-adv-x="1169" d="M-6 1139v133l139 10v154h301v-152h346v-145h-346v-154l-8 -156q130 113 268 113q183 0 291.5 -128t108.5 -335q0 -114 -36 -210.5t-96 -159.5t-137 -98.5t-159 -35.5q-143 0 -265 134h-8l-24 -109h-236v1139h-139zM434 287q71 -66 162 -66q82 0 135 66.5t53 187.5 q0 219 -176 219q-93 0 -174 -90v-317z" />
|
331
|
+
<glyph unicode="Ə" horiz-adv-x="1382" d="M104 662q0 39 7 100h874q-15 179 -95.5 264.5t-227.5 85.5q-157 0 -293 -125l-138 207q180 166 465 166q271 0 431.5 -179t160.5 -511q0 -333 -162 -514t-438 -181q-272 0 -428 178.5t-156 508.5zM412 541q23 -320 276 -320q120 0 196 79t97 241h-569z" />
|
332
|
+
<glyph unicode="ƒ" d="M61 -166l41 223q35 -14 91 -18q50 2 78.5 26.5t47 85.5t31.5 179l35 299h-154v207l152 12h27l10 88q25 227 120 325.5t296 98.5q37 0 90.5 -11.5t85.5 -25.5l-58 -225q-5 2 -19 7t-22.5 7.5t-23.5 5t-29 2.5q-67 0 -104 -42t-45 -117l-15 -113h211v-219h-235l-47 -387 q-9 -79 -24.5 -140t-44 -119t-69.5 -96t-104.5 -61t-144.5 -23q-124 0 -177 31z" />
|
333
|
+
<glyph unicode="Ɠ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q63 0 107 -8q0 6 -1 17t-1 17q0 123 80 206t215 83q98 0 174 -26l-53 -224q-38 15 -58 15q-47 0 -75.5 -26.5t-28.5 -72.5q0 -36 15 -64.5t46 -66.5l-157 -194q-60 41 -116.5 62.5t-135.5 21.5q-158 0 -255.5 -116 t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5t-207 128.5t-139 215.5t-50.5 295.5z" />
|
334
|
+
<glyph unicode="Ơ" horiz-adv-x="1400" d="M96 674q0 322 165.5 504t440.5 182q157 0 285 -64q63 18 93 51.5t30 96.5q0 69 -33 133l223 90q62 -85 62 -201q0 -108 -58.5 -173.5t-177.5 -96.5q183 -189 183 -522q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM406 674q0 -201 80 -319.5t216 -118.5 t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-216.5 -113.5t-79.5 -312.5z" />
|
335
|
+
<glyph unicode="ơ" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36q104 0 197 -41q139 34 139 185q0 63 -33 116l224 97q25 -33 43 -86t18 -107q0 -116 -68.5 -193t-177.5 -110q152 -152 152 -393q0 -123 -41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5 t-110 168.5t-41 225.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
336
|
+
<glyph unicode="Ư" horiz-adv-x="1398" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h143q28 1 49.5 5t45.5 14t39.5 25.5t25.5 42.5t10 63q0 69 -33 133l223 90q62 -90 62 -201q0 -232 -275 -282v-607q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487z" />
|
337
|
+
<glyph unicode="ư" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h94q27 1 48 5.5t44 17t38.5 32t25.5 53.5t10 80q0 55 -30 117l221 96q26 -32 43.5 -84.5t17.5 -107.5q0 -118 -59 -194.5t-152 -106.5v-924h-246l-22 141h-6q-69 -82 -145 -124t-175 -42 q-315 0 -315 410z" />
|
338
|
+
<glyph unicode="ǂ" horiz-adv-x="675" d="M12 274v134l156 12h78v256h-234v135l156 10h78v715h196v-715h217v-145h-217v-256h217v-146h-217v-786h-196v786h-234z" />
|
339
|
+
<glyph unicode="Ǎ" horiz-adv-x="1173" d="M-12 0l418 1335h362l418 -1335h-320l-82 317h-407l-82 -317h-307zM231 1663l131 82l213 -172h9l213 172l131 -82l-185 -225h-327zM438 553h285l-31 123q-16 59 -34.5 132t-40 162t-33.5 136h-9q-83 -354 -104 -430z" />
|
340
|
+
<glyph unicode="ǎ" horiz-adv-x="1079" d="M86 283q0 161 136 250t435 120q-10 148 -159 148q-111 0 -269 -92l-108 198q220 133 434 133q198 0 300.5 -114t102.5 -344v-582h-245l-21 104h-8q-146 -129 -295 -129q-137 0 -220 88t-83 220zM190 1450l115 106l256 -188h8l256 188l115 -106l-221 -268h-307zM375 305 q0 -96 117 -96q48 0 84.5 21t80.5 65v178q-152 -21 -217 -63.5t-65 -104.5z" />
|
341
|
+
<glyph unicode="Ǐ" horiz-adv-x="616" d="M-39 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328zM158 0v1335h301v-1335h-301z" />
|
342
|
+
<glyph unicode="ǐ" horiz-adv-x="565" d="M-92 1450l115 106l256 -188h8l256 188l114 -106l-221 -268h-307zM133 0v1016h301v-1016h-301z" />
|
343
|
+
<glyph unicode="Ǒ" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -323 -167 -511t-440 -188t-439.5 188t-166.5 511zM352 1663l131 82l213 -172h9l213 172l131 -82l-185 -225h-327zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5 q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
344
|
+
<glyph unicode="ǒ" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225t-41 -225.5t-110 -168.5t-157.5 -102.5t-185.5 -36.5t-186 36.5t-158 102.5t-110 168.5t-41 225.5zM195 1450l114 106l256 -188h8l256 188l115 -106l-221 -268h-307zM383 508 q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
345
|
+
<glyph unicode="Ǔ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM332 1663l131 82l213 -172h8l213 172l131 -82l-184 -225h-328z" />
|
346
|
+
<glyph unicode="ǔ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM209 1450l115 106l256 -188h8l256 188l114 -106l-221 -268h-307z" />
|
347
|
+
<glyph unicode="Ǖ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM328 1561q0 53 35 89t90 36t91 -36t36 -89q0 -54 -36 -90.5t-91 -36.5t-90 36t-35 91zM371 1786v141h618v-141h-618z M780 1561q0 53 36 89t91 36t90 -36t35 -89q0 -55 -35 -91t-90 -36t-91 36.5t-36 90.5z" />
|
348
|
+
<glyph unicode="ǖ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM233 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89zM281 1548v142h606v-142h-606z M680 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89z" />
|
349
|
+
<glyph unicode="Ǘ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM328 1561q0 53 35 89t90 36t91 -36t36 -89q0 -54 -36 -90.5t-91 -36.5t-90 36t-35 91zM567 1769l195 297l188 -116 l-254 -260zM780 1561q0 53 36 89t91 36t90 -36t35 -89q0 -55 -35 -91t-90 -36t-91 36.5t-36 90.5z" />
|
350
|
+
<glyph unicode="ǘ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM233 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89zM483 1534l160 272l160 -106 l-205 -240zM680 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89z" />
|
351
|
+
<glyph unicode="Ǚ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM328 1561q0 53 35 89t90 36t91 -36t36 -89q0 -54 -36 -90.5t-91 -36.5t-90 36t-35 91zM362 1958l121 80l193 -150h8 l193 150l120 -80l-188 -209h-258zM780 1561q0 53 36 89t91 36t90 -36t35 -89q0 -55 -35 -91t-90 -36t-91 36.5t-36 90.5z" />
|
352
|
+
<glyph unicode="ǚ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM233 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89zM276 1698l99 90l205 -133h8 l205 133l98 -90l-189 -189h-237zM680 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89z" />
|
353
|
+
<glyph unicode="Ǜ" horiz-adv-x="1361" d="M150 618v717h303v-747q0 -190 57 -271t174 -81q118 0 177 81.5t59 270.5v747h290v-717q0 -331 -132 -487t-394 -156q-265 0 -399.5 156t-134.5 487zM328 1561q0 53 35 89t90 36t91 -36t36 -89q0 -54 -36 -90.5t-91 -36.5t-90 36t-35 91zM410 1950l188 116l195 -297 l-129 -79zM780 1561q0 53 36 89t91 36t90 -36t35 -89q0 -55 -35 -91t-90 -36t-91 36.5t-36 90.5z" />
|
354
|
+
<glyph unicode="ǜ" horiz-adv-x="1163" d="M123 385v631h301v-592q0 -107 30 -150t97 -43q56 0 95 25.5t85 87.5v672h301v-1016h-246l-22 141h-6q-69 -82 -145 -124t-175 -42q-315 0 -315 410zM233 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89zM365 1700l159 106l160 -272 l-115 -74zM680 1294q0 54 36 90.5t91 36.5t91 -36.5t36 -90.5q0 -53 -36 -89t-91 -36t-91 36t-36 89z" />
|
355
|
+
<glyph unicode="Ǣ" horiz-adv-x="1730" d="M-29 0l635 1335h998v-254h-512v-268h432v-252h-432v-307h532v-254h-833v305h-363l-139 -305h-318zM535 539h256v569h-9q-135 -322 -161 -379zM791 1513v193h618v-193h-618z" />
|
356
|
+
<glyph unicode="ǣ" horiz-adv-x="1609" d="M96 281q0 163 134.5 253.5t431.5 120.5q-5 71 -41.5 108.5t-116.5 37.5q-108 0 -266 -92l-107 198q220 133 416 133q92 0 164.5 -40t117.5 -113q134 153 301 153q130 0 223 -66.5t137 -176t44 -250.5q0 -77 -12 -127h-586q17 -102 82.5 -155.5t161.5 -53.5q88 0 215 74 l102 -195q-78 -54 -173.5 -84.5t-184.5 -30.5q-206 0 -351 158q-106 -85 -197 -121.5t-194 -36.5q-135 0 -218 87.5t-83 218.5zM383 305q0 -96 117 -96q101 0 190 86q-22 63 -28 135l-3 43q-276 -40 -276 -168zM539 1212v191h606v-191h-606zM936 604h342q0 97 -39 152 t-119 55q-73 0 -122.5 -52.5t-61.5 -154.5z" />
|
357
|
+
<glyph unicode="Ǧ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM403 1663l132 82l213 -172h8l213 172l131 -82l-185 -225h-327z" />
|
358
|
+
<glyph unicode="ǧ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM197 1450l114 106l256 -188h8l256 188l115 -106l-221 -268h-307zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89 q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5z" />
|
359
|
+
<glyph unicode="Ǫ" horiz-adv-x="1400" d="M94 674q0 322 165.5 504t440.5 182q274 0 440.5 -182.5t166.5 -503.5q0 -139 -28.5 -248.5t-85.5 -190.5t-132 -139.5t-178 -105.5q-72 -32 -109 -79.5t-37 -94.5q0 -37 25.5 -57.5t60.5 -20.5q33 0 74 29l70 -152q-40 -31 -100.5 -51.5t-112.5 -20.5q-102 0 -169 51.5 t-67 141.5q0 132 129 244q-255 19 -404 203t-149 491zM403 674q0 -201 80.5 -319.5t216.5 -118.5t216.5 118.5t80.5 319.5q0 199 -80 312.5t-217 113.5t-217 -113.5t-80 -312.5z" />
|
360
|
+
<glyph unicode="ǫ" horiz-adv-x="1136" d="M74 508q0 123 41 225t110 168.5t158 102.5t186 36t185.5 -36t157.5 -102.5t110 -168.5t41 -225q0 -192 -85.5 -312t-246.5 -196q-70 -32 -103.5 -78.5t-33.5 -95.5q0 -39 25 -58.5t61 -19.5q32 0 74 25l61 -135q-37 -30 -96.5 -49t-110.5 -19q-95 0 -156 48.5t-61 137.5 q0 69 34 127t79 97q-182 23 -306 164.5t-124 363.5zM383 508q0 -135 47 -212t139 -77q91 0 139 77t48 212t-48 212t-139 77q-92 0 -139 -77t-47 -212z" />
|
361
|
+
<glyph unicode="Ǵ" horiz-adv-x="1306" d="M94 659q0 162 51.5 295.5t140.5 221.5t207 136t252 48q250 0 420 -174l-157 -193q-61 53 -117 80t-135 27q-158 0 -255.5 -116t-97.5 -314q0 -208 95 -321t280 -113q95 0 144 40v230h-222v246h488v-615q-73 -71 -189.5 -116.5t-250.5 -45.5q-139 0 -257.5 44.5 t-207 128.5t-139 215.5t-50.5 295.5zM596 1544l350 287l160 -195l-375 -243z" />
|
362
|
+
<glyph unicode="ǵ" horiz-adv-x="1093" d="M70 -174q0 123 145 205v8q-94 62 -94 172q0 54 32 104.5t83 85.5v9q-59 40 -98.5 110t-39.5 154q0 89 34.5 160t93.5 115t133.5 67.5t158.5 23.5q90 0 158 -24h371v-219h-162q33 -57 33 -133q0 -167 -111.5 -254.5t-288.5 -87.5q-59 0 -123 20q-21 -18 -29 -34t-8 -42 q0 -39 35.5 -57.5t118.5 -18.5h164q192 0 289.5 -62t97.5 -196q0 -160 -154.5 -262t-412.5 -102q-123 0 -216.5 26t-151.5 85.5t-58 146.5zM317 -127q0 -56 61.5 -86.5t164.5 -30.5q100 0 166.5 36t66.5 89q0 45 -37.5 62.5t-117.5 17.5h-105q-94 0 -143 12 q-56 -50 -56 -100zM379 674q0 -82 38.5 -126t100.5 -44t100.5 44t38.5 126q0 77 -38.5 120.5t-100.5 43.5t-100.5 -42.5t-38.5 -121.5zM444 1319l316 373l203 -199l-371 -322z" />
|
363
|
+
<glyph unicode="Ǹ" horiz-adv-x="1361" d="M158 0v1335h309l348 -663l131 -295h8q-2 29 -13.5 141t-17 193.5t-5.5 152.5v471h286v-1335h-309l-348 666l-131 290h-8q3 -40 13.5 -145t16.5 -186t6 -152v-473h-286zM330 1636l159 195l351 -287l-135 -151z" />
|
364
|
+
<glyph unicode="ǹ" horiz-adv-x="1171" d="M133 0v1016h246l20 -129h9q160 153 325 153q161 0 238.5 -106t77.5 -303v-631h-301v592q0 107 -29.5 149.5t-95.5 42.5q-53 0 -93.5 -23t-95.5 -75v-686h-301zM240 1493l202 199l316 -373l-148 -148z" />
|
365
|
+
<glyph unicode="Ǽ" horiz-adv-x="1730" d="M-29 0l635 1335h998v-254h-512v-268h432v-252h-432v-307h532v-254h-833v305h-363l-139 -305h-318zM535 539h256v569h-9q-135 -322 -161 -379zM944 1581l350 287l160 -195l-375 -243z" />
|
366
|
+
<glyph unicode="ǽ" horiz-adv-x="1609" d="M96 281q0 163 134.5 253.5t431.5 120.5q-5 71 -41.5 108.5t-116.5 37.5q-108 0 -266 -92l-107 198q220 133 416 133q92 0 164.5 -40t117.5 -113q134 153 301 153q130 0 223 -66.5t137 -176t44 -250.5q0 -77 -12 -127h-586q17 -102 82.5 -155.5t161.5 -53.5q88 0 215 74 l102 -195q-78 -54 -173.5 -84.5t-184.5 -30.5q-206 0 -351 158q-106 -85 -197 -121.5t-194 -36.5q-135 0 -218 87.5t-83 218.5zM383 305q0 -96 117 -96q101 0 190 86q-22 63 -28 135l-3 43q-276 -40 -276 -168zM715 1319l315 373l203 -199l-371 -322zM936 604h342 q0 97 -39 152t-119 55q-73 0 -122.5 -52.5t-61.5 -154.5z" />
|
367
|
+
<glyph unicode="Ș" horiz-adv-x="1138" d="M72 168l172 207q74 -64 161 -101.5t168 -37.5q92 0 139.5 34t47.5 95q0 29 -9.5 49.5t-39.5 40t-49 28.5t-74 32l-21 9l-174 74q-116 47 -192 138t-76 227q0 168 134 282.5t341 114.5q118 0 231.5 -45.5t198.5 -130.5l-153 -191q-138 107 -277 107q-79 0 -124.5 -32 t-45.5 -89q0 -27 12 -48.5t40 -39t53.5 -29.5t72.5 -31q16 -7 25 -10l172 -69q128 -52 196 -140t68 -223q0 -83 -34.5 -158t-97.5 -132t-159.5 -90.5t-212.5 -33.5q-133 0 -263.5 50t-229.5 143zM340 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119 q0 -197 -404 -210z" />
|
368
|
+
<glyph unicode="ș" horiz-adv-x="907" d="M43 117l135 188q139 -106 262 -106q129 0 129 86q0 14 -5 26.5t-18.5 24t-24 19.5t-35 19t-37 16t-44 17t-43.5 17q-268 102 -268 299q0 142 106.5 229.5t282.5 87.5q187 0 359 -129l-135 -180q-120 86 -215 86q-115 0 -115 -80q0 -14 5 -25.5t17 -22t22.5 -18t33 -17.5 t35 -15t42.5 -15.5t43 -15.5q45 -16 79 -32t73 -42.5t64 -56.5t42 -75t17 -99q0 -143 -110.5 -235.5t-307.5 -92.5q-99 0 -205.5 39t-183.5 103zM244 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
369
|
+
<glyph unicode="Ț" horiz-adv-x="1138" d="M51 1081v254h1036v-254h-366v-1081h-303v1081h-367zM338 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
370
|
+
<glyph unicode="ț" horiz-adv-x="784" d="M35 780v224l155 12l35 270h250v-270h244v-236h-244v-407q0 -162 131 -162q42 0 96 20l48 -219q-123 -37 -226 -37q-181 0 -265.5 104t-84.5 290v411h-139zM250 -369q117 6 164 25t47 55q0 61 -131 72l57 111q159 -13 224 -54t65 -119q0 -197 -404 -210z" />
|
371
|
+
<glyph unicode="ˆ" horiz-adv-x="1136" d="M195 1255l221 269h307l221 -269l-115 -106l-256 188h-8l-256 -188z" />
|
372
|
+
<glyph unicode="˚" horiz-adv-x="1136" d="M299 1368q0 93 70.5 153t199.5 60t200 -60t71 -153t-71 -153t-200 -60t-199.5 60t-70.5 153zM481 1368q0 -44 25.5 -72t62.5 -28t62.5 28t25.5 72t-25.5 72t-62.5 28t-62.5 -28t-25.5 -72z" />
|
373
|
+
<glyph unicode="˜" horiz-adv-x="1136" d="M180 1202q9 311 254 311q44 0 86.5 -20.5t70 -45t57.5 -45t50 -20.5q60 0 72 113l188 -10q-9 -311 -253 -311q-44 0 -87 20.5t-70.5 45t-57.5 45t-50 20.5q-31 0 -48 -26.5t-23 -86.5z" />
|
374
|
+
<glyph unicode=" " horiz-adv-x="1033" />
|
375
|
+
<glyph unicode=" " horiz-adv-x="2066" />
|
376
|
+
<glyph unicode=" " horiz-adv-x="1033" />
|
377
|
+
<glyph unicode=" " horiz-adv-x="2066" />
|
378
|
+
<glyph unicode=" " horiz-adv-x="688" />
|
379
|
+
<glyph unicode=" " horiz-adv-x="516" />
|
380
|
+
<glyph unicode=" " horiz-adv-x="344" />
|
381
|
+
<glyph unicode=" " />
|
382
|
+
<glyph unicode=" " horiz-adv-x="258" />
|
383
|
+
<glyph unicode=" " horiz-adv-x="413" />
|
384
|
+
<glyph unicode=" " horiz-adv-x="114" />
|
222
385
|
<glyph unicode="‐" horiz-adv-x="679" d="M88 412v213h504v-213h-504z" />
|
223
386
|
<glyph unicode="‑" horiz-adv-x="679" d="M88 412v213h504v-213h-504z" />
|
224
|
-
<glyph unicode="‒"
|
387
|
+
<glyph unicode="‒" d="M88 422v192h905v-192h-905z" />
|
225
388
|
<glyph unicode="–" horiz-adv-x="983" d="M88 422v192h807v-192h-807z" />
|
226
389
|
<glyph unicode="—" horiz-adv-x="1638" d="M88 422v192h1462v-192h-1462z" />
|
227
|
-
<glyph unicode="&#
|
228
|
-
<glyph unicode="&#
|
229
|
-
<glyph unicode="&#
|
230
|
-
<glyph unicode="&#
|
231
|
-
<glyph unicode="&#
|
232
|
-
<glyph unicode="&#
|
233
|
-
<glyph unicode="&#
|
234
|
-
<glyph unicode="&#
|
235
|
-
<glyph unicode="&#
|
390
|
+
<glyph unicode="―" horiz-adv-x="1638" d="M88 422v192h1462v-192h-1462z" />
|
391
|
+
<glyph unicode="‖" horiz-adv-x="925" d="M176 -512v2048h197v-2048h-197zM553 -512v2048h197v-2048h-197z" />
|
392
|
+
<glyph unicode="‘" horiz-adv-x="614" d="M113 961q0 297 290 438l66 -131q-94 -47 -139 -109t-45 -151q6 2 20 2q66 0 112 -41.5t46 -108.5q0 -75 -44.5 -121.5t-113.5 -46.5q-94 0 -143 70.5t-49 198.5z" />
|
393
|
+
<glyph unicode="’" horiz-adv-x="614" d="M145 852q94 47 139.5 109t45.5 151q-6 -2 -19 -2q-67 0 -112 41t-45 109q0 76 43.5 121.5t113.5 45.5q93 0 143 -70t50 -198q0 -295 -293 -438z" />
|
394
|
+
<glyph unicode="‚" horiz-adv-x="614" d="M145 -215q94 47 139.5 109t45.5 151q-6 -2 -19 -2q-67 0 -112 41t-45 109q0 76 43.5 121.5t113.5 45.5q93 0 143 -70t50 -198q0 -295 -293 -438z" />
|
395
|
+
<glyph unicode="“" horiz-adv-x="1099" d="M113 961q0 297 290 438l66 -131q-94 -47 -139 -109t-45 -151q6 2 20 2q66 0 112 -41.5t46 -108.5q0 -75 -44.5 -121.5t-113.5 -46.5q-94 0 -143 70.5t-49 198.5zM598 961q0 296 291 438l65 -131q-94 -47 -139 -109t-45 -151q6 2 21 2q66 0 111.5 -41.5t45.5 -108.5 q0 -76 -44.5 -122t-112.5 -46q-94 0 -143.5 70.5t-49.5 198.5z" />
|
396
|
+
<glyph unicode="”" horiz-adv-x="1099" d="M145 852q94 47 139.5 109t45.5 151q-6 -2 -19 -2q-67 0 -112 41t-45 109q0 76 43.5 121.5t113.5 45.5q93 0 143 -70t50 -198q0 -295 -293 -438zM631 852q94 47 139 109t45 151q-6 -2 -18 -2q-68 0 -113 41t-45 109q0 76 44 121.5t114 45.5q93 0 142.5 -70t49.5 -198 q0 -295 -293 -438z" />
|
397
|
+
<glyph unicode="„" horiz-adv-x="1099" d="M145 -215q94 47 139.5 109t45.5 151q-6 -2 -19 -2q-67 0 -112 41t-45 109q0 76 43.5 121.5t113.5 45.5q93 0 143 -70t50 -198q0 -295 -293 -438zM631 -215q94 47 139 109t45 151q-6 -2 -18 -2q-68 0 -113 41t-45 109q0 76 44 121.5t114 45.5q93 0 142.5 -70t49.5 -198 q0 -295 -293 -438z" />
|
398
|
+
<glyph unicode="†" horiz-adv-x="1044" d="M90 881v241l330 -18l-19 354h242l-18 -354l329 18v-241l-329 16l18 -1061h-242l19 1061z" />
|
399
|
+
<glyph unicode="‡" horiz-adv-x="1044" d="M90 172v242l330 -25l-19 258l19 258l-330 -24v241l330 -18l-19 354h242l-18 -354l329 18v-241l-329 24l18 -258l-18 -258l329 25v-242l-329 18l18 -354h-242l19 354z" />
|
400
|
+
<glyph unicode="•" horiz-adv-x="706" d="M82 537q0 122 77.5 203t192.5 81q116 0 194.5 -81t78.5 -203q0 -121 -78.5 -203t-194.5 -82q-114 0 -192 82t-78 203z" />
|
401
|
+
<glyph unicode="…" horiz-adv-x="2002" d="M156 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM836 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM1513 164q0 82 52.5 136t130.5 54t130 -54t52 -136q0 -80 -52 -134.5 t-130 -54.5t-130.5 54.5t-52.5 134.5z" />
|
402
|
+
<glyph unicode=" " horiz-adv-x="256" />
|
403
|
+
<glyph unicode="‰" horiz-adv-x="2557" d="M53 938q0 196 92 309t240 113t241 -113t93 -309q0 -197 -93 -311.5t-241 -114.5t-240 114.5t-92 311.5zM262 938q0 -134 34 -196t89 -62t89 62t34 196q0 254 -123 254t-123 -254zM430 -25l721 1385h174l-721 -1385h-174zM1036 401q0 196 92 309t240 113t241 -113t93 -309 q0 -197 -93 -311.5t-241 -114.5t-240 114.5t-92 311.5zM1245 401q0 -134 34 -196t89 -62t89 62t34 196q0 254 -123 254t-123 -254zM1839 401q0 196 92 309t240 113t241 -113t93 -309q0 -197 -93 -311.5t-241 -114.5t-240 114.5t-92 311.5zM2048 401q0 -134 34 -196t89 -62 t89 62t34 196q0 254 -123 254t-123 -254z" />
|
404
|
+
<glyph unicode="′" horiz-adv-x="614" d="M168 795l39 610l301 -2l-47 -258l-96 -350h-197z" />
|
405
|
+
<glyph unicode="″" horiz-adv-x="1099" d="M168 795l39 610l301 -2l-47 -258l-96 -350h-197zM653 795l39 610l301 -2l-47 -258l-96 -350h-197z" />
|
406
|
+
<glyph unicode="‵" horiz-adv-x="614" d="M109 1403l45 -258l96 -350h196l-38 610z" />
|
236
407
|
<glyph unicode="‹" horiz-adv-x="598" d="M100 410v213l275 295l112 -91l-227 -311l227 -311l-112 -90z" />
|
237
408
|
<glyph unicode="›" horiz-adv-x="598" d="M111 205l227 311l-227 311l112 91l275 -295v-213l-275 -295z" />
|
238
|
-
<glyph unicode="&#
|
239
|
-
<glyph unicode="&#
|
240
|
-
<glyph unicode="&#
|
241
|
-
<glyph unicode="&#
|
242
|
-
<glyph unicode="&#
|
243
|
-
<glyph unicode="&#
|
409
|
+
<glyph unicode="‼" horiz-adv-x="1259" d="M166 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM197 1372h303l-11 -272l-43 -627h-196l-43 627zM727 164q0 82 52 136t130 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5t-130 54.5t-52 134.5zM758 1372h303 l-10 -272l-43 -627h-197l-43 627z" />
|
410
|
+
<glyph unicode="‽" horiz-adv-x="983" d="M33 1194q82 103 191.5 153t232.5 50q193 0 316.5 -92.5t123.5 -247.5q0 -67 -20 -126.5t-51.5 -103t-69.5 -82t-74.5 -71t-65.5 -63.5t-44.5 -66t-10.5 -72h-209l-37 348l-22 221h242v-137l-13 -145q5 8 20.5 30t21.5 31.5t18.5 29.5t18 34t12.5 34t9.5 40t2.5 42 q0 78 -53.5 124t-135.5 46q-73 0 -127 -29t-110 -100zM266 164q0 82 51 136t129 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5q-77 0 -128.5 54.5t-51.5 134.5z" />
|
411
|
+
<glyph unicode="‾" horiz-adv-x="1024" d="M25 1157v170h974v-170h-974z" />
|
412
|
+
<glyph unicode="‿" horiz-adv-x="0" d="M-936 -219l78 137q185 -104 413 -151.5t445 -47.5t445 47.5t413 151.5l78 -137q-415 -254 -936 -254t-936 254z" />
|
413
|
+
<glyph unicode="⁄" horiz-adv-x="196" d="M-350 -25l721 1385h174l-721 -1385h-174z" />
|
414
|
+
<glyph unicode="⁇" horiz-adv-x="1787" d="M84 1210q75 87 175 137t216 50q113 0 198 -36t137 -116.5t52 -197.5q0 -51 -17 -98.5t-43.5 -84.5t-58.5 -72.5t-62.5 -70.5t-55.5 -71.5t-37.5 -82t-7.5 -94.5h-265q-11 78 11 149t62 123t82 98t72.5 93t30.5 88q0 62 -37 95.5t-100 33.5q-53 0 -96.5 -24t-89.5 -70z M266 164q0 82 51 136t129 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5q-77 0 -128.5 54.5t-51.5 134.5zM924 1210q75 87 175 137t216 50q113 0 198 -36t137 -116.5t52 -197.5q0 -51 -17 -98.5t-43.5 -84.5t-58.5 -72.5t-63 -70.5t-55.5 -71.5t-37.5 -82 t-8 -94.5h-264q-11 78 11 149t62 123t82 98t72.5 93t30.5 88q0 62 -37 95.5t-100 33.5q-53 0 -96.5 -24t-89.5 -70zM1106 164q0 82 51 136t129 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5q-77 0 -128.5 54.5t-51.5 134.5z" />
|
415
|
+
<glyph unicode="⁈" horiz-adv-x="1538" d="M84 1210q75 87 175 137t216 50q113 0 198 -36t137 -116.5t52 -197.5q0 -51 -17 -98.5t-43.5 -84.5t-58.5 -72.5t-62.5 -70.5t-55.5 -71.5t-37.5 -82t-7.5 -94.5h-265q-11 78 11 149t62 123t82 98t72.5 93t30.5 88q0 62 -37 95.5t-100 33.5q-53 0 -96.5 -24t-89.5 -70z M266 164q0 82 51 136t129 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5q-77 0 -128.5 54.5t-51.5 134.5zM1006 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM1036 1372h303l-10 -272l-43 -627h-196l-43 627z" />
|
416
|
+
<glyph unicode="⁉" horiz-adv-x="1538" d="M166 164q0 82 52 136t130 54t130 -54t52 -136q0 -80 -52 -134.5t-130 -54.5t-130 54.5t-52 134.5zM197 1372h303l-11 -272l-43 -627h-196l-43 627zM672 1210q75 87 175 137t216 50q113 0 198 -36t137 -116.5t52 -197.5q0 -51 -17 -98.5t-43.5 -84.5t-58.5 -72.5 t-63 -70.5t-55.5 -71.5t-37.5 -82t-8 -94.5h-264q-11 78 11 149t62 123t82 98t72.5 93t30.5 88q0 62 -37 95.5t-100 33.5q-53 0 -96.5 -24t-89.5 -70zM854 164q0 82 51 136t129 54t130.5 -54t52.5 -136q0 -80 -52.5 -134.5t-130.5 -54.5q-77 0 -128.5 54.5t-51.5 134.5z" />
|
417
|
+
<glyph unicode=" " horiz-adv-x="516" />
|
418
|
+
<glyph unicode="₡" d="M111 643q0 278 127 453.5t342 216.5l24 213h103l-25 -201h23q19 0 59 -4l24 205h103l-29 -232q117 -50 193 -145l-166 -164q-27 31 -55 55l-99 -825q86 17 154 104l168 -155q-149 -172 -350 -187l-25 -202h-102l24 202q-41 6 -80 15l-26 -217h-103l31 252 q-147 71 -231 228t-84 388zM414 653q0 -179 51 -293l82 684q-133 -103 -133 -391zM555 248q35 -24 78 -33l102 872q-30 5 -39 5q-29 0 -41 -2z" />
|
419
|
+
<glyph unicode="₤" d="M98 0v186q83 37 140.5 104.5t72.5 153.5h-205v142l152 10h45q-3 11 -29 98h-168v142l119 12h6q-6 27 -6 57q0 191 123 305.5t316 114.5q210 0 354 -166l-164 -164q-71 86 -162 86q-84 0 -131 -48t-47 -144q0 -27 2 -41h324v-154h-291q9 -36 20 -98h271v-152h-265 q-11 -96 -88 -182v-8h531v-254h-920z" />
|
420
|
+
<glyph unicode="₦" d="M6 483v107l144 12v98h-144v107l144 12v481h278l164 -481h123v481h217v-481h141v-119h-141v-98h141v-119h-141v-483h-279l-164 483h-122v-483h-217v483h-144zM311 1077l27 -258h55l-74 258h-8zM350 700l8 -98h97l-29 98h-76zM627 700l28 -98h76l-8 98h-96zM688 483 l74 -260h8l-27 260h-55z" />
|
421
|
+
<glyph unicode="₧" d="M6 778v174l127 11v337h352q89 0 163 -18t136 -56t103 -104.5t55 -156.5h121v-187h-119q-28 -167 -155.5 -255.5t-303.5 -88.5h-67v-434h-285v778h-127zM418 625h51q76 0 126 40t67 113h-244v-153zM418 965h244q-36 147 -193 147h-51v-147z" />
|
422
|
+
<glyph unicode="₩" d="M-39 598v109l123 8l-70 585h267l32 -583h74l49 502h228l53 -502h76l32 583h244l-63 -583h112v-119h-125l-63 -598h-303l-56 598h-59l-51 -598h-293l-70 598h-137zM319 598l5 -86l12 -301h8l23 301l8 86h-56zM518 717h45l-18 291h-8zM729 598l8 -86l25 -301h8l12 301l4 86 h-57z" />
|
423
|
+
<glyph unicode="₫" d="M133 627q0 110 50.5 195.5t126.5 128t161 42.5q65 0 109.5 -19t89.5 -61l-8 138v30h-295v152h295v100h247v-100h150v-139l-150 -13v-823h-204l-19 74h-6q-87 -94 -217 -94q-153 0 -241.5 102t-88.5 287zM160 0v152h817v-152h-817zM387 625q0 -94 36 -141.5t101 -47.5 q75 0 138 74v227q-60 54 -130 54q-59 0 -102 -45.5t-43 -120.5z" />
|
424
|
+
<glyph unicode="€" d="M43 440v142l111 8q-2 18 -2 53q0 37 2 53h-111v140l127 10q47 227 192 353t351 126q93 0 180.5 -42t153.5 -118l-168 -161q-88 88 -177 88q-87 0 -145.5 -63t-83.5 -181h438v-152h-456v-43q0 -41 2 -59h372v-154h-352q28 -113 87 -172t145 -59q107 0 188 110l166 -155 q-153 -189 -373 -189q-196 0 -335.5 120.5t-184.5 344.5h-127z" />
|
425
|
+
<glyph unicode="₮" d="M66 1081v219h948v-219h-324v-227l228 123v-166l-228 -125v-111l228 123v-166l-228 -122v-410h-301v266l-227 -125v168l227 123v111l-227 -123v166l227 125v370h-323z" />
|
426
|
+
<glyph unicode="₱" d="M6 709v106l127 10v95h-127v106l127 10v264h352q164 0 280 -63t161 -199h137v-118h-115q2 -18 2 -56q0 -25 -2 -37h115v-118h-137q-30 -90 -97 -153t-154 -92.5t-190 -29.5h-67v-434h-285v709h-127zM418 625h51q112 0 164 84h-215v-84zM418 827h252q2 12 2 37q0 40 -2 56 h-252v-93zM418 1038h213q-51 74 -162 74h-51v-74z" />
|
427
|
+
<glyph unicode="₲" d="M78 643q0 276 121.5 452t328.5 218v213h201v-207q158 -27 285 -160l-166 -164q-50 49 -97.5 73t-107.5 24q-128 0 -196 -115.5t-68 -323.5q0 -211 70 -322.5t200 -111.5q57 0 96 27v250h-141v245h410v-614q-125 -113 -285 -143v-209h-201v209q-205 35 -327.5 206 t-122.5 453z" />
|
428
|
+
<glyph unicode="₴" d="M43 440v142l152 12h38q42 52 105 102h-295v140l152 12h356q67 57 67 121q0 58 -34.5 90.5t-96.5 32.5q-105 0 -211 -103l-143 162q157 174 371 174q188 0 295.5 -95.5t107.5 -268.5q0 -60 -16 -113h135v-152h-229q-43 -43 -125 -102h354v-154h-545q-37 -47 -37 -98 q0 -61 38.5 -97t113.5 -36q129 0 274 121l125 -195q-80 -75 -191.5 -117.5t-207.5 -42.5q-213 0 -326.5 102t-113.5 279q0 48 8 84h-121z" />
|
429
|
+
<glyph unicode="₵" d="M111 643q0 280 129.5 456.5t347.5 215.5v192h166v-186q165 -19 284 -156l-166 -161q-56 62 -118 79v-864q73 23 135 100l168 -155q-129 -150 -303 -180v-209h-166v205q-216 29 -346.5 200.5t-130.5 462.5zM414 653q0 -169 44.5 -277.5t129.5 -146.5v840 q-86 -39 -130 -146t-44 -270z" />
|
430
|
+
<glyph unicode="₸" d="M66 893v141l153 13h795v-154h-324v-893h-301v893h-323zM66 1149v151h948v-151h-948z" />
|
431
|
+
<glyph unicode="₹" d="M141 412v239h133q195 0 236 146h-369v139l152 12h215q-21 61 -78.5 87t-155.5 26h-133v239h811v-151h-270q100 -69 125 -201h145v-151h-143q-29 -240 -242 -334l351 -463h-338l-293 412h-146z" />
|
432
|
+
<glyph unicode="₺" d="M29 367v165l155 84v113l-155 -84v166l155 84v405h301v-258l299 158v-166l-299 -157v-113l299 158v-166l-299 -158v-342q118 12 198.5 85t80.5 179q0 31 -4 62l248 57q14 -57 14 -104q0 -279 -219.5 -425t-618.5 -135v476z" />
|
433
|
+
<glyph unicode="₽" d="M6 293v139l127 10v103h-127v139l127 10v606h346q99 0 182.5 -22t149 -66.5t102.5 -118.5t37 -171q0 -78 -25.5 -142t-69 -107t-104 -72.5t-128.5 -42.5t-144 -13h-61v-101h399v-151h-399v-293h-285v293h-127zM418 696h51q93 0 148 56.5t55 152.5q0 207 -203 207h-51v-416 z" />
|
434
|
+
<glyph unicode="™" horiz-adv-x="1396" d="M8 1206v178h551v-178h-178v-465h-195v465h-178zM647 741v643h221l80 -202l45 -135h8l48 135l77 202h224v-643h-181v197l23 236h-8l-117 -338h-139l-115 338h-8l22 -236v-197h-180z" />
|
435
|
+
<glyph unicode="◼" horiz-adv-x="1013" d="M0 0v1014h1014v-1014h-1014z" />
|
436
|
+
<hkern u1="/" u2="ǐ" k="-96" />
|
437
|
+
<hkern u1="/" u2="ĵ" k="-96" />
|
438
|
+
<hkern u1="/" u2="ĭ" k="-96" />
|
439
|
+
<hkern u1="/" u2="ī" k="-96" />
|
440
|
+
<hkern u1="/" u2="ĩ" k="-96" />
|
441
|
+
<hkern u1="/" u2="ï" k="-96" />
|
442
|
+
<hkern u1="/" u2="î" k="-96" />
|
443
|
+
<hkern u1="/" u2="ì" k="-68" />
|
444
|
+
<hkern u1="F" u2="ī" k="-31" />
|
445
|
+
<hkern u1="F" u2="ĩ" k="-66" />
|
446
|
+
<hkern u1="F" u2="ï" k="-66" />
|
447
|
+
<hkern u1="F" u2="î" k="-31" />
|
448
|
+
<hkern u1="V" u2="ǐ" k="-39" />
|
449
|
+
<hkern u1="V" u2="ĭ" k="-90" />
|
450
|
+
<hkern u1="V" u2="ī" k="-90" />
|
451
|
+
<hkern u1="V" u2="ĩ" k="-139" />
|
452
|
+
<hkern u1="V" u2="ï" k="-139" />
|
453
|
+
<hkern u1="V" u2="î" k="-90" />
|
454
|
+
<hkern u1="V" u2="í" k="-8" />
|
455
|
+
<hkern u1="V" u2="ì" k="-41" />
|
456
|
+
<hkern u1="x" u2=";" k="-33" />
|
457
|
+
<hkern u1="x" u2="," k="-33" />
|
458
|
+
<hkern g1="backslash" g2="Eth,Dcroat" k="31" />
|
459
|
+
<hkern g1="backslash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="-49" />
|
460
|
+
<hkern g1="backslash" g2="Hbar" k="25" />
|
461
|
+
<hkern g1="backslash" g2="j,jcircumflex" k="-131" />
|
462
|
+
<hkern g1="backslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="137" />
|
463
|
+
<hkern g1="backslash" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="31" />
|
464
|
+
<hkern g1="backslash" g2="v" k="41" />
|
465
|
+
<hkern g1="backslash" g2="V" k="90" />
|
466
|
+
<hkern g1="backslash" g2="w,wcircumflex" k="20" />
|
467
|
+
<hkern g1="backslash" g2="W,Wcircumflex" k="31" />
|
468
|
+
<hkern g1="backslash" g2="y,yacute,ydieresis,ycircumflex" k="-8" />
|
469
|
+
<hkern g1="backslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="131" />
|
470
|
+
<hkern g1="exclamdown" g2="j,jcircumflex" k="-49" />
|
471
|
+
<hkern g1="exclamdown" g2="V" k="106" />
|
472
|
+
<hkern g1="exclamdown" g2="W,Wcircumflex" k="53" />
|
473
|
+
<hkern g1="exclamdown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="143" />
|
474
|
+
<hkern g1="periodcentered" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="139" />
|
475
|
+
<hkern g1="periodcentered" g2="V" k="74" />
|
476
|
+
<hkern g1="periodcentered" g2="Y,Yacute,Ycircumflex,Ydieresis" k="180" />
|
477
|
+
<hkern g1="periodcentered" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="57" />
|
478
|
+
<hkern g1="periodcentered" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="57" />
|
479
|
+
<hkern g1="periodcentered" g2="x" k="41" />
|
480
|
+
<hkern g1="periodcentered" g2="X" k="74" />
|
481
|
+
<hkern g1="periodcentered" g2="Z,Zacute,Zdotaccent,Zcaron" k="66" />
|
482
|
+
<hkern g1="questiondown" g2="j,jcircumflex" k="-92" />
|
483
|
+
<hkern g1="questiondown" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="197" />
|
484
|
+
<hkern g1="questiondown" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="111" />
|
485
|
+
<hkern g1="questiondown" g2="V" k="180" />
|
486
|
+
<hkern g1="questiondown" g2="W,Wcircumflex" k="111" />
|
487
|
+
<hkern g1="questiondown" g2="Y,Yacute,Ycircumflex,Ydieresis" k="258" />
|
488
|
+
<hkern g1="questiondown" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="182" />
|
489
|
+
<hkern g1="questiondown" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="123" />
|
490
|
+
<hkern g1="questiondown" g2="X" k="141" />
|
491
|
+
<hkern g1="questiondown" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="109" />
|
492
|
+
<hkern g1="questiondown" g2="f" k="182" />
|
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="72" />
|
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="174" />
|
495
|
+
<hkern g1="slash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
|
496
|
+
<hkern g1="slash" g2="j,jcircumflex" k="-14" />
|
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="57" />
|
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="33" />
|
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="-14" />
|
502
|
+
<hkern g1="slash" g2="J,Jcircumflex" k="164" />
|
503
|
+
<hkern g1="slash" g2="uni018F" k="37" />
|
504
|
+
<hkern g1="slash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="10" />
|
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="37" />
|
507
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="150" />
|
508
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="V" k="37" />
|
509
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
510
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="question,uni203D,uni2047,uni2048" k="74" />
|
511
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteright,quotedblright" k="121" />
|
512
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="asterisk" k="172" />
|
513
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="periodcentered" k="57" />
|
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="-29" />
|
515
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="f" k="20" />
|
516
|
+
<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" />
|
517
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="-29" />
|
518
|
+
<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="23" />
|
519
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="v" k="33" />
|
520
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="w,wcircumflex" k="16" />
|
521
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="x" k="16" />
|
522
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="X" k="12" />
|
523
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="y,yacute,ydieresis,ycircumflex" k="33" />
|
524
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quoteleft,quotedblleft" k="172" />
|
525
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="quotedbl,quotesingle" k="150" />
|
526
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="backslash" k="82" />
|
527
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="registered" k="193" />
|
528
|
+
<hkern g1="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" g2="trademark" k="147" />
|
529
|
+
<hkern g1="B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
|
530
|
+
<hkern g1="B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="57" />
|
531
|
+
<hkern g1="B" g2="V" k="27" />
|
532
|
+
<hkern g1="B" g2="W,Wcircumflex" k="16" />
|
533
|
+
<hkern g1="B" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
534
|
+
<hkern g1="B" g2="quoteright,quotedblright" k="41" />
|
535
|
+
<hkern g1="B" g2="asterisk" k="61" />
|
536
|
+
<hkern g1="B" g2="periodcentered" k="41" />
|
537
|
+
<hkern g1="B" g2="v" k="37" />
|
538
|
+
<hkern g1="B" g2="w,wcircumflex" k="20" />
|
539
|
+
<hkern g1="B" g2="x" k="20" />
|
540
|
+
<hkern g1="B" g2="X" k="16" />
|
541
|
+
<hkern g1="B" g2="y,yacute,ydieresis,ycircumflex" k="37" />
|
542
|
+
<hkern g1="B" g2="quoteleft,quotedblleft" k="37" />
|
543
|
+
<hkern g1="B" g2="trademark" k="41" />
|
544
|
+
<hkern g1="B" g2="J,Jcircumflex" k="39" />
|
545
|
+
<hkern g1="B" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="37" />
|
546
|
+
<hkern g1="B" g2="Z,Zacute,Zdotaccent,Zcaron" k="16" />
|
547
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
|
548
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
549
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="V" k="37" />
|
550
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="57" />
|
551
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="periodcentered" k="37" />
|
552
|
+
<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" />
|
553
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="x" k="10" />
|
554
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="registered" k="-12" />
|
555
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
|
556
|
+
<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="57" />
|
557
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="70" />
|
558
|
+
<hkern g1="c,ccedilla,cacute,ccircumflex,cdotaccent,ccaron" g2="guillemotleft,guilsinglleft" k="37" />
|
559
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="74" />
|
560
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="25" />
|
561
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="V" k="16" />
|
562
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="W,Wcircumflex" k="16" />
|
563
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="33" />
|
564
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="periodcentered" k="147" />
|
565
|
+
<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="76" />
|
566
|
+
<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="37" />
|
567
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="v" k="37" />
|
568
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="w,wcircumflex" k="20" />
|
569
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="X" k="16" />
|
570
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="y,yacute,ydieresis,ycircumflex" k="37" />
|
571
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="registered" k="8" />
|
572
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="trademark" k="-29" />
|
573
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="J,Jcircumflex" k="20" />
|
574
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="57" />
|
575
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
|
576
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="41" />
|
577
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="74" />
|
578
|
+
<hkern g1="C,Ccedilla,Cacute,Ccircumflex,Cdotaccent,Ccaron" g2="guillemotleft,guilsinglleft" k="37" />
|
579
|
+
<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" />
|
580
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
|
581
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="57" />
|
582
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="V" k="53" />
|
583
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="W,Wcircumflex" k="20" />
|
584
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="Y,Yacute,Ycircumflex,Ydieresis" k="74" />
|
585
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="question,uni203D,uni2047,uni2048" k="33" />
|
586
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="quoteright,quotedblright" k="20" />
|
587
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="asterisk" k="49" />
|
588
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="periodcentered" k="16" />
|
589
|
+
<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="23" />
|
590
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="f" k="10" />
|
591
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="v" k="12" />
|
592
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="w,wcircumflex" k="12" />
|
593
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="x" k="33" />
|
594
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="y,yacute,ydieresis,ycircumflex" k="12" />
|
595
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="backslash" k="70" />
|
596
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="registered" k="31" />
|
597
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="trademark" k="53" />
|
598
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="J,Jcircumflex" k="41" />
|
599
|
+
<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" />
|
600
|
+
<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" />
|
601
|
+
<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" />
|
602
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="guillemotleft,guilsinglleft" k="31" />
|
603
|
+
<hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,emacron,ebreve,edotaccent,eogonek,ecaron,oe,uni01E3,aeacute" g2="z,zacute,zdotaccent,zcaron" k="14" />
|
604
|
+
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="57" />
|
605
|
+
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="v" k="20" />
|
606
|
+
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="x" k="92" />
|
607
|
+
<hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,Emacron,Ebreve,Edotaccent,Eogonek,Ecaron,OE,uni01E2,AEacute" g2="y,yacute,ydieresis,ycircumflex" k="20" />
|
608
|
+
<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" />
|
609
|
+
<hkern g1="f" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="-86" />
|
610
|
+
<hkern g1="f" g2="V" k="-127" />
|
611
|
+
<hkern g1="f" g2="W,Wcircumflex" k="-86" />
|
612
|
+
<hkern g1="f" g2="Y,Yacute,Ycircumflex,Ydieresis" k="-92" />
|
613
|
+
<hkern g1="f" g2="question,uni203D,uni2047,uni2048" k="-45" />
|
614
|
+
<hkern g1="f" g2="quoteright,quotedblright" k="-49" />
|
615
|
+
<hkern g1="f" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="131" />
|
616
|
+
<hkern g1="f" g2="periodcentered" k="41" />
|
617
|
+
<hkern g1="f" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
|
618
|
+
<hkern g1="f" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="16" />
|
619
|
+
<hkern g1="f" g2="v" k="-8" />
|
620
|
+
<hkern g1="f" g2="x" k="16" />
|
621
|
+
<hkern g1="f" g2="X" k="-49" />
|
622
|
+
<hkern g1="f" g2="quoteleft,quotedblleft" k="-49" />
|
623
|
+
<hkern g1="f" g2="quotedbl,quotesingle" k="-82" />
|
624
|
+
<hkern g1="f" g2="backslash" k="-66" />
|
625
|
+
<hkern g1="f" g2="registered" k="-102" />
|
626
|
+
<hkern g1="f" g2="trademark" k="-147" />
|
627
|
+
<hkern g1="f" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="23" />
|
628
|
+
<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" />
|
629
|
+
<hkern g1="f" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="37" />
|
630
|
+
<hkern g1="f" g2="z,zacute,zdotaccent,zcaron" k="37" />
|
631
|
+
<hkern g1="f" g2="j,jcircumflex" k="20" />
|
632
|
+
<hkern g1="f" g2="parenright,bracketright,braceright" k="-72" />
|
633
|
+
<hkern g1="f" g2="exclam,exclamdbl,uni2049" k="-8" />
|
634
|
+
<hkern g1="f" g2="slash" k="8" />
|
635
|
+
<hkern g1="F" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
|
636
|
+
<hkern g1="F" g2="V" k="12" />
|
637
|
+
<hkern g1="F" g2="W,Wcircumflex" k="12" />
|
638
|
+
<hkern g1="F" g2="Y,Yacute,Ycircumflex,Ydieresis" k="29" />
|
639
|
+
<hkern g1="F" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="188" />
|
640
|
+
<hkern g1="F" g2="periodcentered" k="37" />
|
641
|
+
<hkern g1="F" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="78" />
|
642
|
+
<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" />
|
643
|
+
<hkern g1="F" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="55" />
|
644
|
+
<hkern g1="F" g2="v" k="70" />
|
645
|
+
<hkern g1="F" g2="w,wcircumflex" k="53" />
|
646
|
+
<hkern g1="F" g2="x" k="74" />
|
647
|
+
<hkern g1="F" g2="X" k="57" />
|
648
|
+
<hkern g1="F" g2="y,yacute,ydieresis,ycircumflex" k="53" />
|
649
|
+
<hkern g1="F" g2="registered" k="-12" />
|
650
|
+
<hkern g1="F" g2="trademark" k="-23" />
|
651
|
+
<hkern g1="F" g2="J,Jcircumflex" k="274" />
|
652
|
+
<hkern g1="F" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="55" />
|
653
|
+
<hkern g1="F" g2="Z,Zacute,Zdotaccent,Zcaron" k="61" />
|
654
|
+
<hkern g1="F" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="57" />
|
655
|
+
<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="37" />
|
656
|
+
<hkern g1="F" g2="guillemotleft,guilsinglleft" k="41" />
|
657
|
+
<hkern g1="F" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="39" />
|
658
|
+
<hkern g1="F" g2="z,zacute,zdotaccent,zcaron" k="106" />
|
659
|
+
<hkern g1="F" g2="slash" k="98" />
|
660
|
+
<hkern g1="F" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="80" />
|
661
|
+
<hkern g1="F" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
|
662
|
+
<hkern g1="germandbls" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="39" />
|
663
|
+
<hkern g1="germandbls" g2="question,uni203D,uni2047,uni2048" k="53" />
|
664
|
+
<hkern g1="germandbls" g2="quoteright,quotedblright" k="180" />
|
665
|
+
<hkern g1="germandbls" g2="f" k="16" />
|
666
|
+
<hkern g1="germandbls" g2="v" k="53" />
|
667
|
+
<hkern g1="germandbls" g2="w,wcircumflex" k="37" />
|
668
|
+
<hkern g1="germandbls" g2="y,yacute,ydieresis,ycircumflex" k="53" />
|
669
|
+
<hkern g1="germandbls" g2="quoteleft,quotedblleft" k="145" />
|
670
|
+
<hkern g1="germandbls" g2="quotedbl,quotesingle" k="156" />
|
671
|
+
<hkern g1="germandbls" g2="backslash" k="74" />
|
672
|
+
<hkern g1="germandbls" g2="registered" k="109" />
|
673
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="74" />
|
674
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
675
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="question,uni203D,uni2047,uni2048" k="94" />
|
676
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="asterisk" k="49" />
|
677
|
+
<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="39" />
|
678
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="v" k="16" />
|
679
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="w,wcircumflex" k="16" />
|
680
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="y,yacute,ydieresis,ycircumflex" k="-8" />
|
681
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="registered" k="-8" />
|
682
|
+
<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="37" />
|
683
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="z,zacute,zdotaccent,zcaron" k="37" />
|
684
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="j,jcircumflex" k="-94" />
|
685
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="parenright,bracketright,braceright" k="-8" />
|
686
|
+
<hkern g1="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" g2="slash" k="-57" />
|
687
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
688
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="V" k="37" />
|
689
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="W,Wcircumflex" k="16" />
|
690
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="asterisk" k="45" />
|
691
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="registered" k="25" />
|
692
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="trademark" k="23" />
|
693
|
+
<hkern g1="G,Gcircumflex,Gbreve,Gdotaccent,Gcommaaccent,uni0193,Gcaron,uni01F4" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="16" />
|
694
|
+
<hkern g1="Hbar" g2="registered" k="-10" />
|
695
|
+
<hkern g1="Hbar" g2="slash" k="8" />
|
696
|
+
<hkern g1="J,Jcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="57" />
|
697
|
+
<hkern g1="J,Jcircumflex" g2="J,Jcircumflex" k="82" />
|
698
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="72" />
|
699
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="109" />
|
700
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
701
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="question,uni203D,uni2047,uni2048" k="66" />
|
702
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="quoteright,quotedblright" k="74" />
|
703
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="asterisk" k="41" />
|
704
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="colon,semicolon" k="-8" />
|
705
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="-8" />
|
706
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="periodcentered" k="74" />
|
707
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
|
708
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="x" k="33" />
|
709
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="registered" k="31" />
|
710
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="trademark" k="41" />
|
711
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
|
712
|
+
<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="57" />
|
713
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="174" />
|
714
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotleft,guilsinglleft" k="74" />
|
715
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="37" />
|
716
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="z,zacute,zdotaccent,zcaron" k="33" />
|
717
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="guillemotright,guilsinglright" k="51" />
|
718
|
+
<hkern g1="k,kcommaaccent,kgreenlandic" g2="j,jcircumflex" k="20" />
|
719
|
+
<hkern g1="K,Kcommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="109" />
|
720
|
+
<hkern g1="K,Kcommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="53" />
|
721
|
+
<hkern g1="K,Kcommaaccent" g2="V" k="37" />
|
722
|
+
<hkern g1="K,Kcommaaccent" g2="W,Wcircumflex" k="20" />
|
723
|
+
<hkern g1="K,Kcommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="53" />
|
724
|
+
<hkern g1="K,Kcommaaccent" g2="question,uni203D,uni2047,uni2048" k="33" />
|
725
|
+
<hkern g1="K,Kcommaaccent" g2="quoteright,quotedblright" k="98" />
|
726
|
+
<hkern g1="K,Kcommaaccent" g2="asterisk" k="82" />
|
727
|
+
<hkern g1="K,Kcommaaccent" g2="periodcentered" k="115" />
|
728
|
+
<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="55" />
|
729
|
+
<hkern g1="K,Kcommaaccent" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="37" />
|
730
|
+
<hkern g1="K,Kcommaaccent" g2="v" k="70" />
|
731
|
+
<hkern g1="K,Kcommaaccent" g2="w,wcircumflex" k="53" />
|
732
|
+
<hkern g1="K,Kcommaaccent" g2="x" k="53" />
|
733
|
+
<hkern g1="K,Kcommaaccent" g2="y,yacute,ydieresis,ycircumflex" k="70" />
|
734
|
+
<hkern g1="K,Kcommaaccent" g2="quoteleft,quotedblleft" k="98" />
|
735
|
+
<hkern g1="K,Kcommaaccent" g2="quotedbl,quotesingle" k="72" />
|
736
|
+
<hkern g1="K,Kcommaaccent" g2="registered" k="57" />
|
737
|
+
<hkern g1="K,Kcommaaccent" g2="trademark" k="10" />
|
738
|
+
<hkern g1="K,Kcommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="41" />
|
739
|
+
<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="33" />
|
740
|
+
<hkern g1="K,Kcommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="106" />
|
741
|
+
<hkern g1="K,Kcommaaccent" g2="guillemotleft,guilsinglleft" k="20" />
|
742
|
+
<hkern g1="K,Kcommaaccent" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="23" />
|
743
|
+
<hkern g1="K,Kcommaaccent" g2="z,zacute,zdotaccent,zcaron" k="37" />
|
744
|
+
<hkern g1="K,Kcommaaccent" g2="guillemotright,guilsinglright" k="16" />
|
745
|
+
<hkern g1="K,Kcommaaccent" g2="j,jcircumflex" k="20" />
|
746
|
+
<hkern g1="K,Kcommaaccent" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="20" />
|
747
|
+
<hkern g1="dcaron,lcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="20" />
|
748
|
+
<hkern g1="dcaron,lcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="39" />
|
749
|
+
<hkern g1="dcaron,lcaron" g2="backslash" k="-90" />
|
750
|
+
<hkern g1="dcaron,lcaron" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="37" />
|
751
|
+
<hkern g1="dcaron,lcaron" g2="z,zacute,zdotaccent,zcaron" k="37" />
|
752
|
+
<hkern g1="dcaron,lcaron" g2="slash" k="37" />
|
753
|
+
<hkern g1="Lcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
|
754
|
+
<hkern g1="l,lacute,lcommaaccent" g2="j,jcircumflex" k="-23" />
|
755
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="55" />
|
756
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="246" />
|
757
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="V" k="162" />
|
758
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="W,Wcircumflex" k="121" />
|
759
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="Y,Yacute,Ycircumflex,Ydieresis" k="176" />
|
760
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="question,uni203D,uni2047,uni2048" k="106" />
|
761
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteright,quotedblright" k="221" />
|
762
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="asterisk" k="352" />
|
763
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="periodcentered" k="229" />
|
764
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="f" k="37" />
|
765
|
+
<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="74" />
|
766
|
+
<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="76" />
|
767
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="v" k="109" />
|
768
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="w,wcircumflex" k="78" />
|
769
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="y,yacute,ydieresis,ycircumflex" k="109" />
|
770
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quoteleft,quotedblleft" k="221" />
|
771
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="quotedbl,quotesingle" k="287" />
|
772
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="backslash" k="164" />
|
773
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="registered" k="229" />
|
774
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="trademark" k="262" />
|
775
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="57" />
|
776
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="16" />
|
777
|
+
<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="29" />
|
778
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="90" />
|
779
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="guillemotleft,guilsinglleft" k="49" />
|
780
|
+
<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" />
|
781
|
+
<hkern g1="L,Lacute,Lcommaaccent,Ldot,Lslash" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="12" />
|
782
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="57" />
|
783
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="V" k="20" />
|
784
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="Y,Yacute,Ycircumflex,Ydieresis" k="53" />
|
785
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="question,uni203D,uni2047,uni2048" k="33" />
|
786
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="quoteright,quotedblright" k="41" />
|
787
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="asterisk" k="49" />
|
788
|
+
<hkern g1="h,m,n,ntilde,hcircumflex,hbar,nacute,ncommaaccent,ncaron,napostrophe,eng,uni01F9" g2="trademark" k="41" />
|
789
|
+
<hkern g1="ohorn" g2="question,uni203D,uni2047,uni2048" k="-16" />
|
790
|
+
<hkern g1="ohorn" g2="quoteright,quotedblright" k="-25" />
|
791
|
+
<hkern g1="ohorn" g2="x" k="16" />
|
792
|
+
<hkern g1="ohorn" g2="quoteleft,quotedblleft" k="-49" />
|
793
|
+
<hkern g1="ohorn" g2="quotedbl,quotesingle" k="-66" />
|
794
|
+
<hkern g1="ohorn" g2="backslash" k="-41" />
|
795
|
+
<hkern g1="ohorn" g2="registered" k="-74" />
|
796
|
+
<hkern g1="ohorn" g2="z,zacute,zdotaccent,zcaron" k="16" />
|
797
|
+
<hkern g1="ohorn" g2="parenright,bracketright,braceright" k="-41" />
|
798
|
+
<hkern g1="Ohorn" g2="trademark" k="-20" />
|
799
|
+
<hkern g1="Ohorn" g2="z,zacute,zdotaccent,zcaron" k="16" />
|
800
|
+
<hkern g1="Ohorn" g2="slash" k="8" />
|
801
|
+
<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="53" />
|
802
|
+
<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="121" />
|
803
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="V" k="41" />
|
804
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="115" />
|
805
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="question,uni203D,uni2047,uni2048" k="66" />
|
806
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteright,quotedblright" k="74" />
|
807
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="asterisk" k="14" />
|
808
|
+
<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" />
|
809
|
+
<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="23" />
|
810
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="f" k="10" />
|
811
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="10" />
|
812
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="v" k="16" />
|
813
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="w,wcircumflex" k="16" />
|
814
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="x" k="53" />
|
815
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="X" k="16" />
|
816
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="y,yacute,ydieresis,ycircumflex" k="16" />
|
817
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quoteleft,quotedblleft" k="8" />
|
818
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="quotedbl,quotesingle" k="31" />
|
819
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="backslash" k="74" />
|
820
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="registered" k="33" />
|
821
|
+
<hkern g1="b,o,p,ograve,oacute,ocircumflex,otilde,odieresis,oslash,thorn,omacron,obreve,ohungarumlaut,uni0180,uni01D2,uni01EB" g2="z,zacute,zdotaccent,zcaron" k="27" />
|
822
|
+
<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="57" />
|
823
|
+
<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" />
|
824
|
+
<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" />
|
825
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="asterisk" k="49" />
|
826
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="x" k="37" />
|
827
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="X" k="53" />
|
828
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="trademark" k="74" />
|
829
|
+
<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="111" />
|
830
|
+
<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" />
|
831
|
+
<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="33" />
|
832
|
+
<hkern g1="D,O,Q,Eth,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,Dcaron,Dcroat,Eng,Omacron,Obreve,Ohungarumlaut,uni018F,uni01D1,uni01EA" g2="slash" k="25" />
|
833
|
+
<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" />
|
834
|
+
<hkern g1="P" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="29" />
|
835
|
+
<hkern g1="P" g2="Y,Yacute,Ycircumflex,Ydieresis" k="20" />
|
836
|
+
<hkern g1="P" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="270" />
|
837
|
+
<hkern g1="P" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="70" />
|
838
|
+
<hkern g1="P" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
|
839
|
+
<hkern g1="P" g2="x" k="37" />
|
840
|
+
<hkern g1="P" g2="X" k="57" />
|
841
|
+
<hkern g1="P" g2="registered" k="-33" />
|
842
|
+
<hkern g1="P" g2="J,Jcircumflex" k="291" />
|
843
|
+
<hkern g1="P" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
|
844
|
+
<hkern g1="P" g2="Z,Zacute,Zdotaccent,Zcaron" k="104" />
|
845
|
+
<hkern g1="P" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="33" />
|
846
|
+
<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="43" />
|
847
|
+
<hkern g1="P" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="49" />
|
848
|
+
<hkern g1="P" g2="guillemotleft,guilsinglleft" k="41" />
|
849
|
+
<hkern g1="P" g2="z,zacute,zdotaccent,zcaron" k="41" />
|
850
|
+
<hkern g1="P" g2="slash" k="102" />
|
851
|
+
<hkern g1="P" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="102" />
|
852
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteright,quotedblright" k="18" />
|
853
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="colon,semicolon" k="-14" />
|
854
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="180" />
|
855
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="periodcentered" k="25" />
|
856
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="57" />
|
857
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="16" />
|
858
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="v" k="-14" />
|
859
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="w,wcircumflex" k="-10" />
|
860
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="y,yacute,ydieresis,ycircumflex" k="-14" />
|
861
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="quoteleft,quotedblleft" k="-49" />
|
862
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="backslash" k="-8" />
|
863
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="registered" k="-66" />
|
864
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="J,Jcircumflex" k="150" />
|
865
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
|
866
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
|
867
|
+
<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" />
|
868
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="57" />
|
869
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="guillemotleft,guilsinglleft" k="41" />
|
870
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="z,zacute,zdotaccent,zcaron" k="16" />
|
871
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="slash" k="49" />
|
872
|
+
<hkern g1="r,racute,rcommaaccent,rcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="37" />
|
873
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="37" />
|
874
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="V" k="27" />
|
875
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="31" />
|
876
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="asterisk" k="20" />
|
877
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="periodcentered" k="20" />
|
878
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="16" />
|
879
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="x" k="33" />
|
880
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="X" k="16" />
|
881
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="registered" k="-14" />
|
882
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="J,Jcircumflex" k="25" />
|
883
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="29" />
|
884
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
|
885
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="16" />
|
886
|
+
<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" />
|
887
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="61" />
|
888
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotleft,guilsinglleft" k="61" />
|
889
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="z,zacute,zdotaccent,zcaron" k="33" />
|
890
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="guillemotright,guilsinglright" k="37" />
|
891
|
+
<hkern g1="R,Racute,Rcommaaccent,Rcaron" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="16" />
|
892
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
|
893
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="57" />
|
894
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="V" k="20" />
|
895
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="41" />
|
896
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="question,uni203D,uni2047,uni2048" k="51" />
|
897
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="quoteright,quotedblright" k="51" />
|
898
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="asterisk" k="57" />
|
899
|
+
<hkern g1="s,sacute,scircumflex,scedilla,scaron,scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-20" />
|
900
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="57" />
|
901
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
902
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
903
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="quoteright,quotedblright" k="51" />
|
904
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="asterisk" k="25" />
|
905
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="periodcentered" k="20" />
|
906
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="registered" k="12" />
|
907
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="J,Jcircumflex" k="37" />
|
908
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="37" />
|
909
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="-37" />
|
910
|
+
<hkern g1="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" g2="z,zacute,zdotaccent,zcaron" k="29" />
|
911
|
+
<hkern g1="Thorn" g2="asterisk" k="80" />
|
912
|
+
<hkern g1="Thorn" g2="backslash" k="82" />
|
913
|
+
<hkern g1="Thorn" g2="trademark" k="57" />
|
914
|
+
<hkern g1="Thorn" g2="slash" k="63" />
|
915
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="41" />
|
916
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="37" />
|
917
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="Y,Yacute,Ycircumflex,Ydieresis" k="16" />
|
918
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="question,uni203D,uni2047,uni2048" k="74" />
|
919
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="colon,semicolon" k="-8" />
|
920
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="27" />
|
921
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="periodcentered" k="41" />
|
922
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
|
923
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
|
924
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="x" k="25" />
|
925
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="registered" k="-49" />
|
926
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="20" />
|
927
|
+
<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="37" />
|
928
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="74" />
|
929
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotleft,guilsinglleft" k="25" />
|
930
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="guillemotright,guilsinglright" k="37" />
|
931
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="slash" k="8" />
|
932
|
+
<hkern g1="t,tcommaaccent,tcaron,tbar,uni021B" g2="hbar,uni0180" k="20" />
|
933
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="25" />
|
934
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
935
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="colon,semicolon" k="41" />
|
936
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="238" />
|
937
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="periodcentered" k="139" />
|
938
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="131" />
|
939
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="f" k="25" />
|
940
|
+
<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="57" />
|
941
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="123" />
|
942
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="v" k="49" />
|
943
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="w,wcircumflex" k="49" />
|
944
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="x" k="51" />
|
945
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="X" k="41" />
|
946
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="y,yacute,ydieresis,ycircumflex" k="49" />
|
947
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="registered" k="-41" />
|
948
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="trademark" k="-49" />
|
949
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="J,Jcircumflex" k="250" />
|
950
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="51" />
|
951
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="Z,Zacute,Zdotaccent,Zcaron" k="90" />
|
952
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="131" />
|
953
|
+
<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="156" />
|
954
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="131" />
|
955
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotleft,guilsinglleft" k="115" />
|
956
|
+
<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="86" />
|
957
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="z,zacute,zdotaccent,zcaron" k="131" />
|
958
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="guillemotright,guilsinglright" k="82" />
|
959
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="slash" k="139" />
|
960
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="82" />
|
961
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="86" />
|
962
|
+
<hkern g1="T,Tcommaaccent,Tcaron,Tbar,uni021A" g2="AE,uni01E2,AEacute" k="137" />
|
963
|
+
<hkern g1="uhorn" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="-53" />
|
964
|
+
<hkern g1="uhorn" g2="question,uni203D,uni2047,uni2048" k="-49" />
|
965
|
+
<hkern g1="uhorn" g2="quoteright,quotedblright" k="-57" />
|
966
|
+
<hkern g1="uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
|
967
|
+
<hkern g1="uhorn" g2="f" k="-72" />
|
968
|
+
<hkern g1="uhorn" g2="v" k="-20" />
|
969
|
+
<hkern g1="uhorn" g2="w,wcircumflex" k="-20" />
|
970
|
+
<hkern g1="uhorn" g2="y,yacute,ydieresis,ycircumflex" k="-20" />
|
971
|
+
<hkern g1="uhorn" g2="quoteleft,quotedblleft" k="-98" />
|
972
|
+
<hkern g1="uhorn" g2="quotedbl,quotesingle" k="-115" />
|
973
|
+
<hkern g1="uhorn" g2="backslash" k="-117" />
|
974
|
+
<hkern g1="uhorn" g2="registered" k="-131" />
|
975
|
+
<hkern g1="uhorn" g2="j,jcircumflex" k="-53" />
|
976
|
+
<hkern g1="uhorn" g2="parenright,bracketright,braceright" k="-102" />
|
977
|
+
<hkern g1="uhorn" g2="i,igrave,iacute,icircumflex,idieresis,itilde,imacron,ibreve,iogonek,ij,uni01D0" k="-51" />
|
978
|
+
<hkern g1="Uhorn" g2="asterisk" k="-63" />
|
979
|
+
<hkern g1="Uhorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
|
980
|
+
<hkern g1="Uhorn" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
|
981
|
+
<hkern g1="Uhorn" g2="x" k="33" />
|
982
|
+
<hkern g1="Uhorn" g2="backslash" k="-90" />
|
983
|
+
<hkern g1="Uhorn" g2="registered" k="-41" />
|
984
|
+
<hkern g1="Uhorn" g2="trademark" k="-115" />
|
985
|
+
<hkern g1="Uhorn" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="37" />
|
986
|
+
<hkern g1="Uhorn" g2="slash" k="57" />
|
987
|
+
<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" />
|
988
|
+
<hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="V" k="37" />
|
989
|
+
<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" />
|
990
|
+
<hkern g1="q,u,ugrave,uacute,ucircumflex,udieresis,dotlessi,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" g2="asterisk" k="29" />
|
991
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="V" k="16" />
|
992
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
993
|
+
<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="53" />
|
994
|
+
<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="16" />
|
995
|
+
<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="16" />
|
996
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="x" k="33" />
|
997
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="X" k="20" />
|
998
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="J,Jcircumflex" k="115" />
|
999
|
+
<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" />
|
1000
|
+
<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" />
|
1001
|
+
<hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" g2="slash" k="33" />
|
1002
|
+
<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="25" />
|
1003
|
+
<hkern g1="v" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
1004
|
+
<hkern g1="v" g2="V" k="20" />
|
1005
|
+
<hkern g1="v" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
1006
|
+
<hkern g1="v" g2="asterisk" k="20" />
|
1007
|
+
<hkern g1="v" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
|
1008
|
+
<hkern g1="v" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
|
1009
|
+
<hkern g1="v" g2="registered" k="-55" />
|
1010
|
+
<hkern g1="v" g2="trademark" k="10" />
|
1011
|
+
<hkern g1="v" g2="J,Jcircumflex" k="82" />
|
1012
|
+
<hkern g1="v" g2="Z,Zacute,Zdotaccent,Zcaron" k="20" />
|
1013
|
+
<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="16" />
|
1014
|
+
<hkern g1="v" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="33" />
|
1015
|
+
<hkern g1="v" g2="z,zacute,zdotaccent,zcaron" k="57" />
|
1016
|
+
<hkern g1="v" g2="j,jcircumflex" k="20" />
|
1017
|
+
<hkern g1="v" g2="slash" k="41" />
|
1018
|
+
<hkern g1="v" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="27" />
|
1019
|
+
<hkern g1="V" g2="V" k="-20" />
|
1020
|
+
<hkern g1="V" g2="quoteright,quotedblright" k="-8" />
|
1021
|
+
<hkern g1="V" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="156" />
|
1022
|
+
<hkern g1="V" g2="periodcentered" k="6" />
|
1023
|
+
<hkern g1="V" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="72" />
|
1024
|
+
<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" />
|
1025
|
+
<hkern g1="V" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="37" />
|
1026
|
+
<hkern g1="V" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
|
1027
|
+
<hkern g1="V" g2="v" k="20" />
|
1028
|
+
<hkern g1="V" g2="w,wcircumflex" k="20" />
|
1029
|
+
<hkern g1="V" g2="x" k="39" />
|
1030
|
+
<hkern g1="V" g2="y,yacute,ydieresis,ycircumflex" k="20" />
|
1031
|
+
<hkern g1="V" g2="registered" k="-104" />
|
1032
|
+
<hkern g1="V" g2="trademark" k="-119" />
|
1033
|
+
<hkern g1="V" g2="J,Jcircumflex" k="131" />
|
1034
|
+
<hkern g1="V" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
|
1035
|
+
<hkern g1="V" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
|
1036
|
+
<hkern g1="V" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="41" />
|
1037
|
+
<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="39" />
|
1038
|
+
<hkern g1="V" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="41" />
|
1039
|
+
<hkern g1="V" g2="guillemotleft,guilsinglleft" k="41" />
|
1040
|
+
<hkern g1="V" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="61" />
|
1041
|
+
<hkern g1="V" g2="z,zacute,zdotaccent,zcaron" k="43" />
|
1042
|
+
<hkern g1="V" g2="guillemotright,guilsinglright" k="55" />
|
1043
|
+
<hkern g1="V" g2="slash" k="55" />
|
1044
|
+
<hkern g1="V" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="37" />
|
1045
|
+
<hkern g1="V" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="41" />
|
1046
|
+
<hkern g1="w,wcircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="57" />
|
1047
|
+
<hkern g1="w,wcircumflex" g2="V" k="20" />
|
1048
|
+
<hkern g1="w,wcircumflex" g2="Y,Yacute,Ycircumflex,Ydieresis" k="57" />
|
1049
|
+
<hkern g1="w,wcircumflex" g2="asterisk" k="20" />
|
1050
|
+
<hkern g1="w,wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="170" />
|
1051
|
+
<hkern g1="w,wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
|
1052
|
+
<hkern g1="w,wcircumflex" g2="X" k="37" />
|
1053
|
+
<hkern g1="w,wcircumflex" g2="registered" k="-23" />
|
1054
|
+
<hkern g1="w,wcircumflex" g2="trademark" k="8" />
|
1055
|
+
<hkern g1="w,wcircumflex" g2="J,Jcircumflex" k="61" />
|
1056
|
+
<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="16" />
|
1057
|
+
<hkern g1="w,wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="53" />
|
1058
|
+
<hkern g1="w,wcircumflex" g2="j,jcircumflex" k="20" />
|
1059
|
+
<hkern g1="w,wcircumflex" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="16" />
|
1060
|
+
<hkern g1="W,Wcircumflex" g2="quoteright,quotedblright" k="-8" />
|
1061
|
+
<hkern g1="W,Wcircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="78" />
|
1062
|
+
<hkern g1="W,Wcircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="25" />
|
1063
|
+
<hkern g1="W,Wcircumflex" g2="registered" k="-51" />
|
1064
|
+
<hkern g1="W,Wcircumflex" g2="trademark" k="-78" />
|
1065
|
+
<hkern g1="W,Wcircumflex" g2="J,Jcircumflex" k="96" />
|
1066
|
+
<hkern g1="W,Wcircumflex" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="8" />
|
1067
|
+
<hkern g1="W,Wcircumflex" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="20" />
|
1068
|
+
<hkern g1="W,Wcircumflex" g2="guillemotleft,guilsinglleft" k="20" />
|
1069
|
+
<hkern g1="W,Wcircumflex" g2="z,zacute,zdotaccent,zcaron" k="20" />
|
1070
|
+
<hkern g1="W,Wcircumflex" g2="guillemotright,guilsinglright" k="53" />
|
1071
|
+
<hkern g1="W,Wcircumflex" g2="slash" k="16" />
|
1072
|
+
<hkern g1="x" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="57" />
|
1073
|
+
<hkern g1="x" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="49" />
|
1074
|
+
<hkern g1="x" g2="V" k="39" />
|
1075
|
+
<hkern g1="x" g2="Y,Yacute,Ycircumflex,Ydieresis" k="78" />
|
1076
|
+
<hkern g1="x" g2="asterisk" k="43" />
|
1077
|
+
<hkern g1="x" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="33" />
|
1078
|
+
<hkern g1="x" g2="periodcentered" k="41" />
|
1079
|
+
<hkern g1="x" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
|
1080
|
+
<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" />
|
1081
|
+
<hkern g1="x" g2="X" k="20" />
|
1082
|
+
<hkern g1="x" g2="y,yacute,ydieresis,ycircumflex" k="31" />
|
1083
|
+
<hkern g1="x" g2="registered" k="-23" />
|
1084
|
+
<hkern g1="x" g2="trademark" k="10" />
|
1085
|
+
<hkern g1="x" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="16" />
|
1086
|
+
<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="53" />
|
1087
|
+
<hkern g1="x" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="37" />
|
1088
|
+
<hkern g1="x" g2="guillemotleft,guilsinglleft" k="57" />
|
1089
|
+
<hkern g1="x" g2="guillemotright,guilsinglright" k="41" />
|
1090
|
+
<hkern g1="x" g2="exclam,exclamdbl,uni2049" k="37" />
|
1091
|
+
<hkern g1="X" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="53" />
|
1092
|
+
<hkern g1="X" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
1093
|
+
<hkern g1="X" g2="quoteright,quotedblright" k="33" />
|
1094
|
+
<hkern g1="X" g2="asterisk" k="20" />
|
1095
|
+
<hkern g1="X" g2="periodcentered" k="82" />
|
1096
|
+
<hkern g1="X" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="20" />
|
1097
|
+
<hkern g1="X" g2="f" k="53" />
|
1098
|
+
<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="53" />
|
1099
|
+
<hkern g1="X" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis,Utilde,Umacron,Ubreve,Uring,Uhungarumlaut,Uogonek,Uhorn,uni01D3,uni01D5,uni01D7,uni01D9,uni01DB" k="20" />
|
1100
|
+
<hkern g1="X" g2="v" k="53" />
|
1101
|
+
<hkern g1="X" g2="w,wcircumflex" k="37" />
|
1102
|
+
<hkern g1="X" g2="x" k="20" />
|
1103
|
+
<hkern g1="X" g2="y,yacute,ydieresis,ycircumflex" k="53" />
|
1104
|
+
<hkern g1="X" g2="quoteleft,quotedblleft" k="33" />
|
1105
|
+
<hkern g1="X" g2="quotedbl,quotesingle" k="20" />
|
1106
|
+
<hkern g1="X" g2="registered" k="25" />
|
1107
|
+
<hkern g1="X" g2="trademark" k="-41" />
|
1108
|
+
<hkern g1="X" g2="J,Jcircumflex" k="31" />
|
1109
|
+
<hkern g1="X" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="37" />
|
1110
|
+
<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="33" />
|
1111
|
+
<hkern g1="X" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="74" />
|
1112
|
+
<hkern g1="X" g2="guillemotleft,guilsinglleft" k="37" />
|
1113
|
+
<hkern g1="X" g2="u,ugrave,uacute,ucircumflex,udieresis,utilde,umacron,ubreve,uring,uhungarumlaut,uogonek,uhorn,uni01D4,uni01D6,uni01D8,uni01DA,uni01DC" k="20" />
|
1114
|
+
<hkern g1="X" g2="z,zacute,zdotaccent,zcaron" k="37" />
|
1115
|
+
<hkern g1="X" g2="guillemotright,guilsinglright" k="37" />
|
1116
|
+
<hkern g1="X" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="12" />
|
1117
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="41" />
|
1118
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="V" k="16" />
|
1119
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="Y,Yacute,Ycircumflex,Ydieresis" k="33" />
|
1120
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="123" />
|
1121
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="41" />
|
1122
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="x" k="37" />
|
1123
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="X" k="16" />
|
1124
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="registered" k="-55" />
|
1125
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="trademark" k="-8" />
|
1126
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="J,Jcircumflex" k="82" />
|
1127
|
+
<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="16" />
|
1128
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="guillemotleft,guilsinglleft" k="16" />
|
1129
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="z,zacute,zdotaccent,zcaron" k="57" />
|
1130
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="guillemotright,guilsinglright" k="16" />
|
1131
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="j,jcircumflex" k="20" />
|
1132
|
+
<hkern g1="y,yacute,ydieresis,ycircumflex" g2="slash" k="8" />
|
1133
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="104" />
|
1134
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="37" />
|
1135
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="question,uni203D,uni2047,uni2048" k="33" />
|
1136
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="quoteright,quotedblright" k="10" />
|
1137
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="colon,semicolon" k="74" />
|
1138
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="229" />
|
1139
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="periodcentered" k="115" />
|
1140
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="156" />
|
1141
|
+
<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="37" />
|
1142
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="113" />
|
1143
|
+
<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" />
|
1144
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="v" k="37" />
|
1145
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="w,wcircumflex" k="57" />
|
1146
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="x" k="78" />
|
1147
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="y,yacute,ydieresis,ycircumflex" k="37" />
|
1148
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="registered" k="-49" />
|
1149
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="trademark" k="-86" />
|
1150
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="J,Jcircumflex" k="205" />
|
1151
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="39" />
|
1152
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="Z,Zacute,Zdotaccent,Zcaron" k="45" />
|
1153
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="123" />
|
1154
|
+
<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="113" />
|
1155
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="156" />
|
1156
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotleft,guilsinglleft" k="150" />
|
1157
|
+
<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="78" />
|
1158
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="z,zacute,zdotaccent,zcaron" k="115" />
|
1159
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="guillemotright,guilsinglright" k="111" />
|
1160
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="slash" k="96" />
|
1161
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="37" />
|
1162
|
+
<hkern g1="Y,Yacute,Ycircumflex,Ydieresis" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="82" />
|
1163
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="45" />
|
1164
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="31" />
|
1165
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="periodcentered" k="20" />
|
1166
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="29" />
|
1167
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="v" k="16" />
|
1168
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="y,yacute,ydieresis,ycircumflex" k="16" />
|
1169
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="registered" k="-14" />
|
1170
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="trademark" k="-8" />
|
1171
|
+
<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" />
|
1172
|
+
<hkern g1="z,zacute,zdotaccent,zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="53" />
|
1173
|
+
<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" />
|
1174
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="37" />
|
1175
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Y,Yacute,Ycircumflex,Ydieresis" k="37" />
|
1176
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="periodcentered" k="123" />
|
1177
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="25" />
|
1178
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="f" k="41" />
|
1179
|
+
<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" />
|
1180
|
+
<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" />
|
1181
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="v" k="25" />
|
1182
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="w,wcircumflex" k="25" />
|
1183
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="x" k="57" />
|
1184
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="y,yacute,ydieresis,ycircumflex" k="25" />
|
1185
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="registered" k="-41" />
|
1186
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="trademark" k="-41" />
|
1187
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="J,Jcircumflex" k="49" />
|
1188
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
|
1189
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="Z,Zacute,Zdotaccent,Zcaron" k="25" />
|
1190
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="23" />
|
1191
|
+
<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="27" />
|
1192
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="hyphen,uni00AD,figuredash,endash,emdash,afii00208" k="49" />
|
1193
|
+
<hkern g1="Z,Zacute,Zdotaccent,Zcaron" g2="guillemotleft,guilsinglleft" k="49" />
|
1194
|
+
<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="29" />
|
1195
|
+
<hkern g1="colon,semicolon" g2="j,jcircumflex" k="-8" />
|
1196
|
+
<hkern g1="colon,semicolon" g2="hbar,uni0180" k="20" />
|
1197
|
+
<hkern g1="colon,semicolon" g2="Y,Yacute,Ycircumflex,Ydieresis" k="74" />
|
1198
|
+
<hkern g1="colon,semicolon" g2="asterisk" k="57" />
|
1199
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="j,jcircumflex" k="-74" />
|
1200
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="hbar,uni0180" k="20" />
|
1201
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="Y,Yacute,Ycircumflex,Ydieresis" k="229" />
|
1202
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="asterisk" k="344" />
|
1203
|
+
<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="20" />
|
1204
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="129" />
|
1205
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="205" />
|
1206
|
+
<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="55" />
|
1207
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="v" k="123" />
|
1208
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="V" k="156" />
|
1209
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="w,wcircumflex" k="72" />
|
1210
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="W,Wcircumflex" k="78" />
|
1211
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="y,yacute,ydieresis,ycircumflex" k="41" />
|
1212
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteleft,quotedblleft" k="256" />
|
1213
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quoteright,quotedblright" k="297" />
|
1214
|
+
<hkern g1="comma,period,quotesinglbase,quotedblbase,ellipsis" g2="quotedbl,quotesingle" k="262" />
|
1215
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="J,Jcircumflex" k="41" />
|
1216
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Y,Yacute,Ycircumflex,Ydieresis" k="156" />
|
1217
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="45" />
|
1218
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="115" />
|
1219
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="v" k="33" />
|
1220
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="V" k="41" />
|
1221
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="W,Wcircumflex" k="20" />
|
1222
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="53" />
|
1223
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="x" k="37" />
|
1224
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="X" k="74" />
|
1225
|
+
<hkern g1="hyphen,uni00AD,figuredash,endash,emdash,afii00208" g2="Z,Zacute,Zdotaccent,Zcaron" k="41" />
|
1226
|
+
<hkern g1="exclam,exclamdbl,uni2048" g2="quoteright,quotedblright" k="106" />
|
1227
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="hbar,uni0180" k="20" />
|
1228
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="111" />
|
1229
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="37" />
|
1230
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="82" />
|
1231
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="v" k="16" />
|
1232
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="V" k="53" />
|
1233
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="W,Wcircumflex" k="53" />
|
1234
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="y,yacute,ydieresis,ycircumflex" k="16" />
|
1235
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="x" k="41" />
|
1236
|
+
<hkern g1="guillemotleft,guilsinglleft" g2="X" k="37" />
|
1237
|
+
<hkern g1="guillemotright,guilsinglright" g2="J,Jcircumflex" k="61" />
|
1238
|
+
<hkern g1="guillemotright,guilsinglright" g2="Y,Yacute,Ycircumflex,Ydieresis" k="150" />
|
1239
|
+
<hkern g1="guillemotright,guilsinglright" g2="t,tcommaaccent,tcaron,tbar,uni021B" k="49" />
|
1240
|
+
<hkern g1="guillemotright,guilsinglright" g2="T,Tcommaaccent,Tcaron,Tbar,uni021A" k="115" />
|
1241
|
+
<hkern g1="guillemotright,guilsinglright" g2="v" k="33" />
|
1242
|
+
<hkern g1="guillemotright,guilsinglright" g2="V" k="41" />
|
1243
|
+
<hkern g1="guillemotright,guilsinglright" g2="W,Wcircumflex" k="20" />
|
1244
|
+
<hkern g1="guillemotright,guilsinglright" g2="y,yacute,ydieresis,ycircumflex" k="33" />
|
1245
|
+
<hkern g1="guillemotright,guilsinglright" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="61" />
|
1246
|
+
<hkern g1="guillemotright,guilsinglright" g2="x" k="57" />
|
1247
|
+
<hkern g1="guillemotright,guilsinglright" g2="X" k="37" />
|
1248
|
+
<hkern g1="guillemotright,guilsinglright" g2="Z,Zacute,Zdotaccent,Zcaron" k="25" />
|
1249
|
+
<hkern g1="question,uni203D,uni2047,uni2049" g2="quoteright,quotedblright" k="72" />
|
1250
|
+
<hkern g1="quoteleft,quotedblleft" g2="J,Jcircumflex" k="190" />
|
1251
|
+
<hkern g1="quoteleft,quotedblleft" g2="Y,Yacute,Ycircumflex,Ydieresis" k="10" />
|
1252
|
+
<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="49" />
|
1253
|
+
<hkern g1="quoteleft,quotedblleft" g2="V" k="-8" />
|
1254
|
+
<hkern g1="quoteleft,quotedblleft" g2="W,Wcircumflex" k="-8" />
|
1255
|
+
<hkern g1="quoteleft,quotedblleft" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="37" />
|
1256
|
+
<hkern g1="quoteleft,quotedblleft" g2="X" k="33" />
|
1257
|
+
<hkern g1="quoteleft,quotedblleft" g2="AE,uni01E2,AEacute" k="137" />
|
1258
|
+
<hkern g1="quoteleft,quotedblleft" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="70" />
|
1259
|
+
<hkern g1="quoteleft,quotedblleft" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="121" />
|
1260
|
+
<hkern g1="quoteleft,quotedblleft" g2="f" k="37" />
|
1261
|
+
<hkern g1="quoteleft,quotedblleft" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="49" />
|
1262
|
+
<hkern g1="quoteleft,quotedblleft" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="20" />
|
1263
|
+
<hkern g1="quoteleft,quotedblleft" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="254" />
|
1264
|
+
<hkern g1="quoteleft,quotedblleft" g2="exclamdown" k="90" />
|
1265
|
+
<hkern g1="quoteleft,quotedblleft" g2="questiondown" k="254" />
|
1266
|
+
<hkern g1="quoteright,quotedblright" g2="J,Jcircumflex" k="223" />
|
1267
|
+
<hkern g1="quoteright,quotedblright" g2="hbar,uni0180" k="-33" />
|
1268
|
+
<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="63" />
|
1269
|
+
<hkern g1="quoteright,quotedblright" g2="X" k="33" />
|
1270
|
+
<hkern g1="quoteright,quotedblright" g2="AE,uni01E2,AEacute" k="137" />
|
1271
|
+
<hkern g1="quoteright,quotedblright" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae,amacron,abreve,aogonek,uni01CE,uni01E3,aeacute" k="96" />
|
1272
|
+
<hkern g1="quoteright,quotedblright" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="166" />
|
1273
|
+
<hkern g1="quoteright,quotedblright" g2="f" k="25" />
|
1274
|
+
<hkern g1="quoteright,quotedblright" g2="g,gcircumflex,gbreve,gdotaccent,gcommaaccent,gcaron,uni01F5" k="55" />
|
1275
|
+
<hkern g1="quoteright,quotedblright" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="72" />
|
1276
|
+
<hkern g1="quoteright,quotedblright" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="311" />
|
1277
|
+
<hkern g1="quoteright,quotedblright" g2="m,n,p,r,ntilde,dotlessi,kgreenlandic,nacute,ncommaaccent,ncaron,eng,racute,rcommaaccent,rcaron,uni01F9" k="8" />
|
1278
|
+
<hkern g1="quoteright,quotedblright" g2="z,zacute,zdotaccent,zcaron" k="45" />
|
1279
|
+
<hkern g1="quotedbl,quotesingle" g2="J,Jcircumflex" k="231" />
|
1280
|
+
<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="31" />
|
1281
|
+
<hkern g1="quotedbl,quotesingle" g2="S,Sacute,Scircumflex,Scedilla,Scaron,Scommaaccent" k="20" />
|
1282
|
+
<hkern g1="quotedbl,quotesingle" g2="X" k="20" />
|
1283
|
+
<hkern g1="quotedbl,quotesingle" g2="A,Agrave,Aacute,Acircumflex,Atilde,Adieresis,Aring,Amacron,Abreve,Aogonek,uni01CD" k="150" />
|
1284
|
+
<hkern g1="quotedbl,quotesingle" g2="s,sacute,scircumflex,scedilla,scaron,scommaaccent" k="41" />
|
1285
|
+
<hkern g1="quotedbl,quotesingle" g2="comma,period,quotesinglbase,quotedblbase,ellipsis" k="272" />
|
244
1286
|
</font>
|
245
1287
|
</defs></svg>
|