maily_herald-webui 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (236) hide show
  1. checksums.yaml +15 -0
  2. data/.gitignore +18 -0
  3. data/.rspec +5 -0
  4. data/Gemfile +15 -0
  5. data/Gemfile.lock +250 -0
  6. data/Guardfile +23 -0
  7. data/LICENSE +11 -0
  8. data/README.md +62 -0
  9. data/Rakefile +30 -0
  10. data/app/assets/images/maily_herald/.gitkeep +0 -0
  11. data/app/assets/images/maily_herald/webui/arrow-bottom.png +0 -0
  12. data/app/assets/images/maily_herald/webui/arrow-left.png +0 -0
  13. data/app/assets/images/maily_herald/webui/arrow-right.png +0 -0
  14. data/app/assets/images/maily_herald/webui/arrow-top.png +0 -0
  15. data/app/assets/images/maily_herald/webui/logo.svg +38 -0
  16. data/app/assets/images/maily_herald/webui/sprite-dropdown.png +0 -0
  17. data/app/assets/images/maily_herald/webui/sprite-form.png +0 -0
  18. data/app/assets/images/maily_herald/webui/sprite.png +0 -0
  19. data/app/assets/images/maily_herald/webui/user.png +0 -0
  20. data/app/assets/javascripts/maily_herald/webui/application.js +20 -0
  21. data/app/assets/javascripts/maily_herald/webui/dispatches.coffee +58 -0
  22. data/app/assets/javascripts/maily_herald/webui/webui.coffee +209 -0
  23. data/app/assets/stylesheets/maily_herald/webui/application.css +18 -0
  24. data/app/assets/stylesheets/maily_herald/webui/webui-bootstrap.scss +0 -0
  25. data/app/assets/stylesheets/maily_herald/webui/webui.sass +846 -0
  26. data/app/controllers/maily_herald/webui/application_controller.rb +19 -0
  27. data/app/controllers/maily_herald/webui/dashboard_controller.rb +65 -0
  28. data/app/controllers/maily_herald/webui/dispatches_controller.rb +42 -0
  29. data/app/controllers/maily_herald/webui/lists_controller.rb +69 -0
  30. data/app/controllers/maily_herald/webui/logs_controller.rb +20 -0
  31. data/app/controllers/maily_herald/webui/mailings_controller.rb +68 -0
  32. data/app/controllers/maily_herald/webui/one_time_mailings_controller.rb +32 -0
  33. data/app/controllers/maily_herald/webui/periodical_mailings_controller.rb +25 -0
  34. data/app/controllers/maily_herald/webui/resources_controller.rb +144 -0
  35. data/app/controllers/maily_herald/webui/sequence_mailings_controller.rb +43 -0
  36. data/app/controllers/maily_herald/webui/sequences_controller.rb +56 -0
  37. data/app/controllers/maily_herald/webui/sessions_controller.rb +11 -0
  38. data/app/controllers/maily_herald/webui/subscriptions_controller.rb +33 -0
  39. data/app/helpers/maily_herald/webui/application_helper.rb +157 -0
  40. data/app/helpers/maily_herald/webui/dispatches_helper.rb +18 -0
  41. data/app/helpers/maily_herald/webui/logs_helper.rb +37 -0
  42. data/app/helpers/maily_herald/webui/mailings_helper.rb +64 -0
  43. data/app/helpers/maily_herald/webui/sequence_mailings_helper.rb +13 -0
  44. data/app/helpers/maily_herald/webui/sequences_helper.rb +6 -0
  45. data/app/helpers/maily_herald/webui/subscribers_helper.rb +25 -0
  46. data/app/helpers/maily_herald/webui/subscriptions_helper.rb +11 -0
  47. data/app/helpers/maily_herald_helper.rb +151 -0
  48. data/app/views/layouts/maily_herald/webui/application.html.haml +58 -0
  49. data/app/views/layouts/maily_herald/webui/modal.html.haml +6 -0
  50. data/app/views/maily_herald/webui/dashboard/_log.html.haml +20 -0
  51. data/app/views/maily_herald/webui/dashboard/_log_list.html.haml +19 -0
  52. data/app/views/maily_herald/webui/dashboard/_logs.html.haml +15 -0
  53. data/app/views/maily_herald/webui/dashboard/index.html.haml +43 -0
  54. data/app/views/maily_herald/webui/dashboard/index.js.erb +15 -0
  55. data/app/views/maily_herald/webui/dispatches/_entities.html.haml +7 -0
  56. data/app/views/maily_herald/webui/dispatches/_logs.html.haml +4 -0
  57. data/app/views/maily_herald/webui/dispatches/_schedules.html.haml +4 -0
  58. data/app/views/maily_herald/webui/dispatches/_toggle.js.erb +1 -0
  59. data/app/views/maily_herald/webui/lists/_details.html.haml +14 -0
  60. data/app/views/maily_herald/webui/lists/_details_form.html.haml +14 -0
  61. data/app/views/maily_herald/webui/lists/_form.html.haml +1 -0
  62. data/app/views/maily_herald/webui/lists/_header.html.haml +13 -0
  63. data/app/views/maily_herald/webui/lists/_items.html.haml +24 -0
  64. data/app/views/maily_herald/webui/lists/_opt_outs.html.haml +7 -0
  65. data/app/views/maily_herald/webui/lists/_potential_subscribers.html.haml +7 -0
  66. data/app/views/maily_herald/webui/lists/_subscribers.html.haml +7 -0
  67. data/app/views/maily_herald/webui/lists/context_variables.html.haml +15 -0
  68. data/app/views/maily_herald/webui/lists/subscribe.js.erb +10 -0
  69. data/app/views/maily_herald/webui/lists/unsubscribe.js.erb +7 -0
  70. data/app/views/maily_herald/webui/logs/_items.html.haml +34 -0
  71. data/app/views/maily_herald/webui/logs/preview.html.haml +22 -0
  72. data/app/views/maily_herald/webui/mailings-old/_entity.html.haml +17 -0
  73. data/app/views/maily_herald/webui/mailings-old/_entity_list.html.haml +26 -0
  74. data/app/views/maily_herald/webui/mailings-old/_form.html.haml +32 -0
  75. data/app/views/maily_herald/webui/mailings-old/_print.html.haml +123 -0
  76. data/app/views/maily_herald/webui/mailings-old/create.js.erb +1 -0
  77. data/app/views/maily_herald/webui/mailings-old/destroy.js.erb +1 -0
  78. data/app/views/maily_herald/webui/mailings-old/edit.html.haml +16 -0
  79. data/app/views/maily_herald/webui/mailings-old/edit.js.erb +2 -0
  80. data/app/views/maily_herald/webui/mailings-old/index.html.haml +9 -0
  81. data/app/views/maily_herald/webui/mailings-old/index.js.erb +1 -0
  82. data/app/views/maily_herald/webui/mailings-old/new.html.haml +16 -0
  83. data/app/views/maily_herald/webui/mailings-old/new.js.erb +1 -0
  84. data/app/views/maily_herald/webui/mailings-old/preview.js.erb +2 -0
  85. data/app/views/maily_herald/webui/mailings-old/refresh_list.js.erb +1 -0
  86. data/app/views/maily_herald/webui/mailings-old/show.html.haml +135 -0
  87. data/app/views/maily_herald/webui/mailings-old/show.js.erb +1 -0
  88. data/app/views/maily_herald/webui/mailings-old/update.js.erb +1 -0
  89. data/app/views/maily_herald/webui/mailings/_deliver.js.erb +1 -0
  90. data/app/views/maily_herald/webui/mailings/_details.html.haml +65 -0
  91. data/app/views/maily_herald/webui/mailings/_details_form.html.haml +39 -0
  92. data/app/views/maily_herald/webui/mailings/_form.html.haml +1 -0
  93. data/app/views/maily_herald/webui/mailings/_form_periodical.html.haml +2 -0
  94. data/app/views/maily_herald/webui/mailings/_form_sequence.html.haml +1 -0
  95. data/app/views/maily_herald/webui/mailings/_form_template_generic.html.haml +7 -0
  96. data/app/views/maily_herald/webui/mailings/_form_template_mailer.html.haml +4 -0
  97. data/app/views/maily_herald/webui/mailings/_header.html.haml +24 -0
  98. data/app/views/maily_herald/webui/mailings/_list.html.haml +27 -0
  99. data/app/views/maily_herald/webui/mailings/_template.html.haml +16 -0
  100. data/app/views/maily_herald/webui/mailings/_template_form.html.haml +7 -0
  101. data/app/views/maily_herald/webui/mailings/nav_secondary/_index.html.haml +3 -0
  102. data/app/views/maily_herald/webui/mailings/preview.html.haml +13 -0
  103. data/app/views/maily_herald/webui/mailings/update_form.js.erb +33 -0
  104. data/app/views/maily_herald/webui/resources/edit.js.erb +2 -0
  105. data/app/views/maily_herald/webui/resources/index.html.haml +11 -0
  106. data/app/views/maily_herald/webui/resources/index.js.erb +1 -0
  107. data/app/views/maily_herald/webui/resources/new.html.haml +5 -0
  108. data/app/views/maily_herald/webui/resources/show.html.haml +4 -0
  109. data/app/views/maily_herald/webui/resources/show.js.erb +3 -0
  110. data/app/views/maily_herald/webui/resources/update.js.erb +18 -0
  111. data/app/views/maily_herald/webui/sequences-old/_entity.html.haml +11 -0
  112. data/app/views/maily_herald/webui/sequences-old/_entity_list.html.haml +23 -0
  113. data/app/views/maily_herald/webui/sequences-old/_form.html.haml +17 -0
  114. data/app/views/maily_herald/webui/sequences-old/_log.html.haml +7 -0
  115. data/app/views/maily_herald/webui/sequences-old/_logs.html.haml +16 -0
  116. data/app/views/maily_herald/webui/sequences-old/_mailing.html.haml +4 -0
  117. data/app/views/maily_herald/webui/sequences-old/_mailing_list.html.haml +19 -0
  118. data/app/views/maily_herald/webui/sequences-old/edit.html.haml +14 -0
  119. data/app/views/maily_herald/webui/sequences-old/new.html.haml +13 -0
  120. data/app/views/maily_herald/webui/sequences-old/show.html.haml +122 -0
  121. data/app/views/maily_herald/webui/sequences-old/show.js.erb +2 -0
  122. data/app/views/maily_herald/webui/sequences-old/subscription.html.haml +79 -0
  123. data/app/views/maily_herald/webui/sequences/_details.html.haml +39 -0
  124. data/app/views/maily_herald/webui/sequences/_details_form.html.haml +27 -0
  125. data/app/views/maily_herald/webui/sequences/_form.html.haml +1 -0
  126. data/app/views/maily_herald/webui/sequences/_header.html.haml +11 -0
  127. data/app/views/maily_herald/webui/sequences/_list.html.haml +21 -0
  128. data/app/views/maily_herald/webui/sequences/_mailing_list.html.haml +21 -0
  129. data/app/views/maily_herald/webui/sequences/_mailings.html.haml +7 -0
  130. data/app/views/maily_herald/webui/sequences/update_form.js.erb +14 -0
  131. data/app/views/maily_herald/webui/shared/_context_attributes.html.haml +11 -0
  132. data/app/views/maily_herald/webui/subscribers/_item.html.haml +8 -0
  133. data/app/views/maily_herald/webui/subscribers/_list.html.haml +18 -0
  134. data/app/views/maily_herald/webui/subscription_groups/_form.html.haml +5 -0
  135. data/app/views/maily_herald/webui/subscription_groups/_subscription.html.haml +8 -0
  136. data/app/views/maily_herald/webui/subscription_groups/_subscription_list.html.haml +19 -0
  137. data/app/views/maily_herald/webui/subscription_groups/edit.html.haml +16 -0
  138. data/app/views/maily_herald/webui/subscription_groups/index.html.haml +35 -0
  139. data/app/views/maily_herald/webui/subscription_groups/new.html.haml +11 -0
  140. data/app/views/maily_herald/webui/subscription_groups/show.html.haml +42 -0
  141. data/app/views/maily_herald/webui/subscription_groups/show.js.erb +1 -0
  142. data/app/views/maily_herald/webui/subscriptions/show.html.haml +21 -0
  143. data/app/views/maily_herald/webui/subscriptions/toggle.js.erb +1 -0
  144. data/app/views/maily_herald/webui/webui/index.html.haml +136 -0
  145. data/app/views/maily_herald/webui/webui/show.html.haml +0 -0
  146. data/config/database.yml +5 -0
  147. data/config/initializers/smart_listing.rb +77 -0
  148. data/config/locales/en.yml +237 -0
  149. data/config/routes.rb +103 -0
  150. data/config/spring.rb +1 -0
  151. data/lib/maily_herald/webui.rb +15 -0
  152. data/lib/maily_herald/webui/breadcrumbs.rb +50 -0
  153. data/lib/maily_herald/webui/engine.rb +18 -0
  154. data/lib/maily_herald/webui/form_builder.rb +285 -0
  155. data/lib/maily_herald/webui/menu_manager.rb +66 -0
  156. data/lib/maily_herald/webui/version.rb +5 -0
  157. data/maily_herald-webui.gemspec +40 -0
  158. data/script/rails +8 -0
  159. data/spec/dummy/Guardfile +35 -0
  160. data/spec/dummy/README.rdoc +261 -0
  161. data/spec/dummy/Rakefile +7 -0
  162. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  163. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  164. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  165. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  166. data/spec/dummy/app/mailers/.gitkeep +0 -0
  167. data/spec/dummy/app/mailers/test_mailer.rb +11 -0
  168. data/spec/dummy/app/models/.gitkeep +0 -0
  169. data/spec/dummy/app/models/user.rb +7 -0
  170. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  171. data/spec/dummy/app/views/test_mailer/sample_mail.text.erb +1 -0
  172. data/spec/dummy/bin/rails +10 -0
  173. data/spec/dummy/bin/rake +7 -0
  174. data/spec/dummy/bin/rspec +7 -0
  175. data/spec/dummy/bin/spring +18 -0
  176. data/spec/dummy/config.ru +4 -0
  177. data/spec/dummy/config/application.rb +65 -0
  178. data/spec/dummy/config/boot.rb +10 -0
  179. data/spec/dummy/config/database.yml +25 -0
  180. data/spec/dummy/config/environment.rb +5 -0
  181. data/spec/dummy/config/environments/development.rb +38 -0
  182. data/spec/dummy/config/environments/production.rb +67 -0
  183. data/spec/dummy/config/environments/test.rb +37 -0
  184. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  185. data/spec/dummy/config/initializers/inflections.rb +15 -0
  186. data/spec/dummy/config/initializers/maily_herald.rb +101 -0
  187. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  188. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  189. data/spec/dummy/config/initializers/session_store.rb +8 -0
  190. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  191. data/spec/dummy/config/locales/en.yml +5 -0
  192. data/spec/dummy/config/locales/maily_herald.en.yml +28 -0
  193. data/spec/dummy/config/routes.rb +4 -0
  194. data/spec/dummy/db/migrate/20130723074347_create_users.rb +11 -0
  195. data/spec/dummy/db/migrate/20140804152249_create_maily_herald_tables.maily_herald.rb +68 -0
  196. data/spec/dummy/db/migrate/20140804152250_create_lists.maily_herald.rb +33 -0
  197. data/spec/dummy/db/schema.rb +79 -0
  198. data/spec/dummy/lib/assets/.gitkeep +0 -0
  199. data/spec/dummy/lib/tasks/dummy.rb +8 -0
  200. data/spec/dummy/log/.gitkeep +0 -0
  201. data/spec/dummy/public/404.html +26 -0
  202. data/spec/dummy/public/422.html +26 -0
  203. data/spec/dummy/public/500.html +25 -0
  204. data/spec/dummy/public/favicon.ico +0 -0
  205. data/spec/dummy/script/rails +6 -0
  206. data/spec/spec_helper.rb +46 -0
  207. data/vendor/assets/fonts/maily_herald/webui/FontAwesome.otf +0 -0
  208. data/vendor/assets/fonts/maily_herald/webui/Nexa_Free_Bold-webfont.eot +0 -0
  209. data/vendor/assets/fonts/maily_herald/webui/Nexa_Free_Bold-webfont.svg +1816 -0
  210. data/vendor/assets/fonts/maily_herald/webui/Nexa_Free_Bold-webfont.ttf +0 -0
  211. data/vendor/assets/fonts/maily_herald/webui/Nexa_Free_Bold-webfont.woff +0 -0
  212. data/vendor/assets/fonts/maily_herald/webui/fontawesome-webfont.eot +0 -0
  213. data/vendor/assets/fonts/maily_herald/webui/fontawesome-webfont.svg +520 -0
  214. data/vendor/assets/fonts/maily_herald/webui/fontawesome-webfont.ttf +0 -0
  215. data/vendor/assets/fonts/maily_herald/webui/fontawesome-webfont.woff +0 -0
  216. data/vendor/assets/fonts/maily_herald/webui/opensans-bold-webfont.eot +0 -0
  217. data/vendor/assets/fonts/maily_herald/webui/opensans-bold-webfont.svg +1825 -0
  218. data/vendor/assets/fonts/maily_herald/webui/opensans-bold-webfont.ttf +0 -0
  219. data/vendor/assets/fonts/maily_herald/webui/opensans-bold-webfont.woff +0 -0
  220. data/vendor/assets/fonts/maily_herald/webui/opensans-italic-webfont.eot +0 -0
  221. data/vendor/assets/fonts/maily_herald/webui/opensans-italic-webfont.svg +1825 -0
  222. data/vendor/assets/fonts/maily_herald/webui/opensans-italic-webfont.ttf +0 -0
  223. data/vendor/assets/fonts/maily_herald/webui/opensans-italic-webfont.woff +0 -0
  224. data/vendor/assets/fonts/maily_herald/webui/opensans-regular-webfont.eot +0 -0
  225. data/vendor/assets/fonts/maily_herald/webui/opensans-regular-webfont.svg +1825 -0
  226. data/vendor/assets/fonts/maily_herald/webui/opensans-regular-webfont.ttf +0 -0
  227. data/vendor/assets/fonts/maily_herald/webui/opensans-regular-webfont.woff +0 -0
  228. data/vendor/assets/javascripts/maily_herald/webui/bootstrap-datepicker.js +1681 -0
  229. data/vendor/assets/javascripts/maily_herald/webui/bootstrap.min.js +6 -0
  230. data/vendor/assets/javascripts/maily_herald/webui/d3.v3.js +5 -0
  231. data/vendor/assets/javascripts/maily_herald/webui/rickshaw.js +4067 -0
  232. data/vendor/assets/stylesheets/maily_herald/webui/bootstrap-datepicker.css +786 -0
  233. data/vendor/assets/stylesheets/maily_herald/webui/bootstrap.min.css +5 -0
  234. data/vendor/assets/stylesheets/maily_herald/webui/font-awesome.min.css +4 -0
  235. data/vendor/assets/stylesheets/maily_herald/webui/rickshaw.css +355 -0
  236. metadata +564 -0
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'f1991bcc0db480195c19dcf12a5977a404ecdc4db0c59164f87b1c3c287c40ad40ce89857ad68a207a4771f0bacda6ad0e4ae584160823b934e462811ef4a815'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,28 @@
1
+ en:
2
+ activerecord:
3
+ attributes:
4
+ one_time_mailing:
5
+ name: Name
6
+ context_name: Context
7
+ sequence: Sequence
8
+ conditions: Conditions
9
+ title: Title
10
+ from: Sender
11
+ relative_delay: Delay
12
+ template: Template
13
+ periodical_mailing:
14
+ name: Name
15
+ context_name: Context
16
+ sequence: Sequence
17
+ conditions: Conditions
18
+ title: Title
19
+ from: Sender
20
+ relative_delay: Delay
21
+ template: Template
22
+ sequence:
23
+ name: Name
24
+ context_name: Context
25
+ mode: Mode
26
+ start: Start date
27
+ start_var: Start variable (evaluated)
28
+ period: Period
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ mount MailyHerald::Webui::Engine => "/"
3
+ mount MailyHerald::Engine => "/maily_herald"
4
+ end
@@ -0,0 +1,11 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :email
6
+ t.boolean :weekly_notifications, :default => true
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,68 @@
1
+ # This migration comes from maily_herald (originally 20130711124555)
2
+ class CreateMailyHeraldTables < ActiveRecord::Migration
3
+ def change
4
+ create_table :maily_herald_dispatches do |t|
5
+ t.string :type, :null => false
6
+ t.integer :sequence_id
7
+ t.string :context_name
8
+ t.text :conditions
9
+ t.string :trigger
10
+ t.string :mailer_name
11
+ t.string :name, :null => false
12
+ t.string :title
13
+ t.string :subject
14
+ t.string :from
15
+ t.text :template
16
+ t.integer :absolute_delay
17
+ t.datetime :start
18
+ t.text :start_var
19
+ t.integer :period
20
+ t.boolean :enabled, :default => false
21
+ t.boolean :autosubscribe
22
+ t.boolean :override_subscription
23
+ t.integer :subscription_group_id
24
+ t.string :token_action
25
+
26
+ t.timestamps
27
+ end
28
+ add_index :maily_herald_dispatches, :name, :unique => true
29
+ add_index :maily_herald_dispatches, :context_name
30
+ add_index :maily_herald_dispatches, :trigger
31
+
32
+ create_table :maily_herald_subscriptions do |t|
33
+ t.string :type, :null => false
34
+ t.integer :entity_id, :null => false
35
+ t.string :entity_type, :null => false
36
+ t.integer :dispatch_id
37
+ t.string :token, :null => false
38
+ t.text :settings
39
+ t.text :data
40
+ t.boolean :active, :default => false, :null => false
41
+ t.datetime :delivered_at
42
+
43
+ t.timestamps
44
+ end
45
+ #add_index :maily_herald_subscriptions, [:type, :entity_id, :entity_type, :dispatch_id], :unique => true, :name => "index_maliy_herald_subscriptions_unique"
46
+
47
+ create_table :maily_herald_logs do |t|
48
+ t.integer :entity_id, :null => false
49
+ t.string :entity_type, :null => false
50
+ t.integer :mailing_id
51
+ t.string :status, :default => "delivered", :null => false
52
+ t.text :data
53
+ t.datetime :processed_at
54
+ end
55
+
56
+ create_table :maily_herald_subscription_groups do |t|
57
+ t.string :name, :null => false
58
+ t.string :title, :null => false
59
+ end
60
+
61
+ create_table :maily_herald_aggregated_subscriptions do |t|
62
+ t.integer :entity_id, :null => false
63
+ t.string :entity_type, :null => false
64
+ t.integer :group_id, :null => false
65
+ t.boolean :active, :default => false, :null => false
66
+ end
67
+ end
68
+ end
@@ -0,0 +1,33 @@
1
+ # This migration comes from maily_herald (originally 20140612101023)
2
+ class CreateLists < ActiveRecord::Migration
3
+ def up
4
+ create_table :maily_herald_lists do |t|
5
+ t.string :name, :null => false
6
+ t.string :title
7
+ t.string :context_name
8
+ #t.text :autosubscribe_condition
9
+ t.string :token_action
10
+ end
11
+
12
+ remove_column :maily_herald_dispatches, :token_action
13
+ remove_column :maily_herald_dispatches, :subscription_group_id
14
+ remove_column :maily_herald_dispatches, :autosubscribe
15
+ remove_column :maily_herald_dispatches, :start
16
+ remove_column :maily_herald_dispatches, :start_var
17
+ remove_column :maily_herald_dispatches, :trigger
18
+ add_column :maily_herald_dispatches, :start_at, :text
19
+ add_column :maily_herald_dispatches, :list_id, :integer
20
+
21
+ remove_column :maily_herald_subscriptions, :dispatch_id
22
+ remove_column :maily_herald_subscriptions, :type
23
+ add_column :maily_herald_subscriptions, :list_id, :integer
24
+ add_column :maily_herald_subscriptions, :next_delivery_at, :datetime
25
+
26
+ drop_table :maily_herald_subscription_groups
27
+ drop_table :maily_herald_aggregated_subscriptions
28
+
29
+ add_column :maily_herald_logs, :sequence_id, :integer
30
+ rename_column :maily_herald_logs, :processed_at, :processing_at
31
+ change_column :maily_herald_logs, :status, :string, :default => nil
32
+ end
33
+ end
@@ -0,0 +1,79 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20140804152250) do
15
+
16
+ create_table "maily_herald_dispatches", :force => true do |t|
17
+ t.string "type", :null => false
18
+ t.integer "sequence_id"
19
+ t.string "context_name"
20
+ t.text "conditions"
21
+ t.string "mailer_name"
22
+ t.string "name", :null => false
23
+ t.string "title"
24
+ t.string "subject"
25
+ t.string "from"
26
+ t.text "template"
27
+ t.integer "absolute_delay"
28
+ t.integer "period"
29
+ t.boolean "enabled", :default => false
30
+ t.boolean "override_subscription"
31
+ t.datetime "created_at", :null => false
32
+ t.datetime "updated_at", :null => false
33
+ t.text "start_at"
34
+ t.integer "list_id"
35
+ end
36
+
37
+ add_index "maily_herald_dispatches", ["context_name"], :name => "index_maily_herald_dispatches_on_context_name"
38
+ add_index "maily_herald_dispatches", ["name"], :name => "index_maily_herald_dispatches_on_name", :unique => true
39
+
40
+ create_table "maily_herald_lists", :force => true do |t|
41
+ t.string "name", :null => false
42
+ t.string "title"
43
+ t.string "context_name"
44
+ t.string "token_action"
45
+ end
46
+
47
+ create_table "maily_herald_logs", :force => true do |t|
48
+ t.integer "entity_id", :null => false
49
+ t.string "entity_type", :null => false
50
+ t.integer "mailing_id"
51
+ t.string "status", :null => false
52
+ t.text "data"
53
+ t.datetime "processing_at"
54
+ t.integer "sequence_id"
55
+ end
56
+
57
+ create_table "maily_herald_subscriptions", :force => true do |t|
58
+ t.integer "entity_id", :null => false
59
+ t.string "entity_type", :null => false
60
+ t.string "token", :null => false
61
+ t.text "settings"
62
+ t.text "data"
63
+ t.boolean "active", :default => false, :null => false
64
+ t.datetime "delivered_at"
65
+ t.datetime "created_at", :null => false
66
+ t.datetime "updated_at", :null => false
67
+ t.integer "list_id"
68
+ t.datetime "next_delivery_at"
69
+ end
70
+
71
+ create_table "users", :force => true do |t|
72
+ t.string "name"
73
+ t.string "email"
74
+ t.boolean "weekly_notifications", :default => true
75
+ t.datetime "created_at", :null => false
76
+ t.datetime "updated_at", :null => false
77
+ end
78
+
79
+ end
File without changes
@@ -0,0 +1,8 @@
1
+ namespace :dummy do
2
+ desc "Seed users"
3
+ task :seed => :environment do
4
+ 10.times do
5
+ User.create
6
+ end
7
+ end
8
+ end
File without changes
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+ # This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
3
+
4
+ APP_PATH = File.expand_path('../../config/application', __FILE__)
5
+ require File.expand_path('../../config/boot', __FILE__)
6
+ require 'rails/commands'
@@ -0,0 +1,46 @@
1
+ require 'rubygems'
2
+
3
+ # Configure Rails Envinronment
4
+ ENV["RAILS_ENV"] = "test"
5
+
6
+ require 'simplecov'
7
+ SimpleCov.start do
8
+ add_filter '/config/'
9
+ add_filter '/spec/dummy'
10
+ add_group 'Controllers', 'app/controllers'
11
+ add_group 'Helpers', 'app/helpers'
12
+ add_group 'Mailers', 'app/mailers'
13
+ add_group 'Models', 'app/models'
14
+ add_group 'Libraries', 'lib'
15
+ add_group 'Specs', 'spec'
16
+ end
17
+
18
+ require File.expand_path("../dummy/config/environment.rb", __FILE__)
19
+
20
+ require 'rspec/rails'
21
+ require "factory_girl_rails"
22
+ require "database_cleaner"
23
+ require 'sidekiq/testing'
24
+ require 'timecop'
25
+
26
+ ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
27
+
28
+
29
+ # Requires supporting ruby files with custom matchers and macros, etc,
30
+ # in spec/support/ and its subdirectories.
31
+ Dir[File.join(ENGINE_RAILS_ROOT, "spec/support/**/*.rb")].each {|f| require f }
32
+
33
+ keep_tables = %w[maily_herald_dispatches maily_herald_lists]
34
+ RSpec.configure do |config|
35
+ config.use_transactional_fixtures = false
36
+ config.before(:suite) do
37
+ DatabaseCleaner.strategy = :truncation, {:except => keep_tables}
38
+ DatabaseCleaner.clean_with(:truncation, {:except => keep_tables})
39
+ end
40
+ config.before(:each) do
41
+ DatabaseCleaner.start
42
+ end
43
+ config.after(:each) do
44
+ DatabaseCleaner.clean
45
+ end
46
+ end
@@ -0,0 +1,1816 @@
1
+ <?xml version="1.0" standalone="no"?>
2
+ <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
3
+ <svg xmlns="http://www.w3.org/2000/svg">
4
+ <metadata></metadata>
5
+ <defs>
6
+ <font id="nexa_boldregular" horiz-adv-x="1533" >
7
+ <font-face units-per-em="2048" ascent="1536" descent="-512" />
8
+ <missing-glyph horiz-adv-x="413" />
9
+ <glyph horiz-adv-x="0" />
10
+ <glyph unicode="&#xd;" horiz-adv-x="2048" />
11
+ <glyph unicode=" " horiz-adv-x="413" />
12
+ <glyph unicode="&#x09;" horiz-adv-x="413" />
13
+ <glyph unicode="&#xa0;" horiz-adv-x="413" />
14
+ <glyph unicode="!" horiz-adv-x="608" d="M123 147q0 45 18 80t47 53t64 26.5t70 0t64 -26.5t47 -53t18 -80q0 -44 -18 -79t-47 -53t-64 -26t-70 0t-64 26t-47 53t-18 79zM152 375v1057h268v-1057h-268z" />
15
+ <glyph unicode="&#x22;" horiz-adv-x="888" d="M131 881v549h227v-549h-227zM496 881v549h229v-549h-229z" />
16
+ <glyph unicode="#" horiz-adv-x="1476" d="M29 276v240h217l94 375h-170v235h225l76 308h274l-75 -308h223l78 308h272l-76 -308h148v-237h-207l-96 -373h162v-240h-218l-67 -276h-275l68 276h-225l-68 -276h-272l67 276h-155zM496 502h258l102 405h-258z" />
17
+ <glyph unicode="$" horiz-adv-x="1591" d="M74 311l241 103q40 -96 158 -155.5t250 -59.5q72 0 133.5 12.5t112 38.5t79.5 70t29 102q0 49 -28.5 86t-81.5 60t-112.5 37.5t-137.5 23.5q-57 6 -97.5 12t-93 16t-90.5 21t-81 29t-73 40t-59.5 52.5t-47 67t-28 83.5t-10.5 103q0 97 40 174t109 126.5t150.5 79 t175.5 40.5v178h260v-178q70 -11 128 -29.5t115 -50t103.5 -82.5t79.5 -119l-221 -102q-40 66 -140 110.5t-206 44.5q-67 0 -123 -10t-102.5 -32t-73 -60t-26.5 -90q0 -33 12 -59t37 -44t52 -30.5t70 -22t77 -14.5t85 -11q60 -7 100.5 -13t97.5 -17t96 -23t86.5 -31.5 t79.5 -42t64.5 -55t51.5 -71t31 -88.5t12 -109q0 -100 -40 -183.5t-108 -139t-154.5 -88.5t-183.5 -40v-204h-260v194q-183 16 -326 102.5t-212 247.5z" />
18
+ <glyph unicode="%" horiz-adv-x="1585" d="M158 -2l944 1438h289l-942 -1438h-291zM391 817q-80 0 -145 27.5t-105 73t-61.5 103t-21.5 118t21.5 118t61.5 103t105 73t145 27.5t145 -27.5t105 -73t61.5 -103t21.5 -118t-21.5 -118t-61.5 -103t-105 -73t-145 -27.5zM391 1006q50 0 84.5 27.5t42.5 67t0 79t-42.5 67 t-84.5 27.5t-84.5 -27.5t-42.5 -67t0 -79t42.5 -67t84.5 -27.5zM1169 -14q-80 0 -145 27.5t-105 73t-61.5 103t-21.5 118t21.5 118t61.5 103t105 73t145 27.5t145 -27.5t105 -73t61.5 -103t21.5 -118t-21.5 -118t-61.5 -103t-105 -73t-145 -27.5zM1169 172q50 0 84.5 27.5 t42.5 67t0 79t-42.5 67t-84.5 27.5t-84.5 -27.5t-42.5 -67t0 -79t42.5 -67t84.5 -27.5z" />
19
+ <glyph unicode="&#x26;" horiz-adv-x="1484" d="M115 436q0 93 62 179.5t159 119.5q-91 29 -142 114t-51 177q1 88 33.5 161.5t86 122t125 82.5t147.5 49t155 15t150.5 -12t141 -42t119.5 -75t81 -116t32 -160h-256q0 63 -39.5 103.5t-98.5 56.5t-136 16q-75 0 -132 -19t-87.5 -50t-45 -64.5t-13.5 -67.5q0 -51 29 -89.5 t74 -58.5t88.5 -29t84.5 -9h672v-213h-119v-209q0 -68 32 -112t97 -44v-268q-36 0 -65 3.5t-62.5 15.5t-59 32t-48 55t-35.5 82q-122 -200 -410 -200q-98 0 -179.5 13t-155 45t-124 83t-80 130.5t-30.5 182.5zM381 434q0 -72 44.5 -121.5t109.5 -69.5t145 -20q40 0 88 11 t97 32.5t81.5 62t32.5 91.5v207h-311q-138 0 -212.5 -59.5t-74.5 -133.5z" />
20
+ <glyph unicode="'" horiz-adv-x="438" d="M92 883v549h227v-549h-227z" />
21
+ <glyph unicode="(" horiz-adv-x="708" d="M59 674q0 265 125 510.5t357 402.5l125 -168q-171 -136 -260 -329.5t-89 -415.5q0 -465 349 -740l-136 -182q-155 102 -263 255t-158 321.5t-50 345.5z" />
22
+ <glyph unicode=")" horiz-adv-x="727" d="M25 1419l125 168q232 -157 356.5 -402t124.5 -511q0 -177 -50 -345.5t-158 -321.5t-263 -255l-131 187q344 271 344 735q0 222 -88.5 415.5t-259.5 329.5z" />
23
+ <glyph unicode="*" horiz-adv-x="702" d="M-10 1155l57 191l189 -72l-11 192h195l-21 -196l201 76l53 -191l-196 -39l143 -160l-154 -114l-122 178l-121 -178l-156 114l135 160z" />
24
+ <glyph unicode="+" horiz-adv-x="958" d="M31 598v227h301v305h248v-305h305v-227h-305v-307h-248v307h-301z" />
25
+ <glyph unicode="," horiz-adv-x="509" d="M88 113q0 54 30 89.5t72.5 43t85.5 -2.5t73 -47t30 -90q0 -19 -10.5 -54t-81.5 -253h-142l39 203q-44 8 -70 36.5t-26 74.5z" />
26
+ <glyph unicode="-" horiz-adv-x="937" d="M72 553v229h755v-229h-755z" />
27
+ <glyph unicode="." horiz-adv-x="495" d="M76 129q0 40 16.5 71.5t42.5 48t57 24t62.5 0t57.5 -24t42.5 -48t16.5 -71.5t-16.5 -71.5t-42.5 -48t-57 -24t-62.5 0t-57.5 24t-42.5 48t-16.5 71.5z" />
28
+ <glyph unicode="/" horiz-adv-x="931" d="M-25 -168l682 1737h263l-684 -1737h-261z" />
29
+ <glyph unicode="0" horiz-adv-x="1425" d="M61 614v207q0 155 54 280t142.5 202t201.5 118.5t231 41.5t231 -42t201.5 -118.5t142.5 -202t54 -279.5v-207q0 -204 -93 -354t-233 -217.5t-303 -67.5t-303 67t-233 217.5t-93 354.5zM330 614q0 -94 31 -170t81.5 -123t115.5 -72t132.5 -25t132.5 25t115.5 72t81.5 123 t31 170v207q0 93 -31 168t-81.5 121.5t-115.5 71.5t-132.5 25.5t-132.5 -24.5t-115.5 -71t-81.5 -121.5t-31 -169.5v-207z" />
30
+ <glyph unicode="1" horiz-adv-x="755" d="M10 1188v246h492v-1205h198v-229h-682v229h215v959h-223z" />
31
+ <glyph unicode="2" horiz-adv-x="1341" d="M76 0v377q0 96 33.5 171t89 122.5t132 78.5t157 43.5t169.5 12.5q32 0 61 2.5t66.5 8.5t67.5 19t56.5 32.5t41.5 50.5t15 71q0 112 -90.5 171t-235.5 59q-72 0 -136.5 -22.5t-108 -69.5t-44.5 -109h-268q1 88 33 161t86 123t126 84.5t149.5 50t158.5 15.5q90 0 173 -14.5 t161.5 -49t136 -85.5t92.5 -130.5t35 -177.5q0 -106 -32 -185t-83.5 -126t-129 -75t-155.5 -38t-176 -10q-52 0 -100 -7.5t-99 -26.5t-81.5 -58t-30.5 -94v-123h891v-252h-1161z" />
32
+ <glyph unicode="3" horiz-adv-x="1339" d="M23 420h272q0 -52 32 -92.5t82 -62.5t101.5 -33t99.5 -11q55 0 108.5 12t102.5 35.5t79 66t30 97.5q0 193 -305 193h-224v221h207q58 0 108.5 8.5t95 27t70.5 53.5t27 83q0 33 -14.5 64.5t-46.5 61t-92 47t-142 17.5q-51 0 -101 -9.5t-95.5 -29t-74 -55t-28.5 -82.5h-270 q0 89 34.5 162t90.5 120.5t131 79.5t154 46t161 14q83 0 162 -15.5t152.5 -50.5t128 -84.5t87.5 -123.5t34 -162q0 -89 -54.5 -172t-144.5 -111q101 -33 167 -120.5t66 -180.5q0 -101 -37 -181t-96.5 -130.5t-140.5 -83.5t-162.5 -46t-169.5 -13q-85 0 -165.5 14 t-157.5 47.5t-134 82.5t-92 125.5t-36 170.5z" />
33
+ <glyph unicode="4" horiz-adv-x="1390" d="M63 547l646 885h411v-897h168v-263h-168v-272h-266v272h-766zM369 535h485v663z" />
34
+ <glyph unicode="5" horiz-adv-x="1288" d="M74 432h268q0 -56 29.5 -97t78.5 -62t100 -30.5t107 -9.5q52 0 102 13t95 39t72.5 72.5t27.5 107.5q1 58 -25.5 100.5t-72.5 65t-98 33t-111 10.5h-543v758h1039v-254h-774v-252h278q119 0 219.5 -25.5t182.5 -78.5t128.5 -144t45.5 -213q0 -95 -30.5 -175t-83.5 -135.5 t-124.5 -94.5t-153 -57.5t-169.5 -18.5q-98 0 -182 14t-160 47t-129.5 83.5t-84.5 128t-32 175.5z" />
35
+ <glyph unicode="6" horiz-adv-x="1355" d="M59 457v534q0 93 33 171t89.5 132t132.5 92t160.5 56t174.5 18q120 0 223.5 -24.5t186.5 -74t130.5 -133t47.5 -192.5h-270q0 61 -47 105.5t-117 65t-150 20.5q-130 2 -227.5 -64.5t-97.5 -177.5v-207q45 69 142 110.5t189 41.5q75 0 144.5 -11t137 -33.5t123 -61 t98 -89.5t66 -123t23.5 -159q0 -114 -52 -207t-137.5 -150.5t-189.5 -88t-215 -30.5q-113 0 -217.5 30.5t-190.5 88t-138 151.5t-52 210zM328 453q1 -113 95 -173.5t234 -60.5q137 0 231.5 61t94.5 173q0 114 -91.5 177.5t-232.5 63.5q-143 0 -237.5 -63t-93.5 -178z" />
36
+ <glyph unicode="7" horiz-adv-x="1167" d="M41 1176v258h1053l14 -144l-643 -1290h-311l585 1176h-698z" />
37
+ <glyph unicode="8" horiz-adv-x="1390" d="M41 432q2 91 58.5 178t160.5 129q-89 48 -134.5 122.5t-45.5 160.5q0 105 46 189.5t126 137.5t183.5 81t221.5 28q117 0 222.5 -28.5t187.5 -81.5t130 -137.5t48 -188.5q0 -81 -46.5 -157t-137.5 -113q70 -28 120.5 -84.5t73 -116.5t23.5 -119q2 -97 -31.5 -176.5 t-92 -132.5t-139.5 -89t-170.5 -52t-187.5 -15q-96 1 -184 16.5t-168.5 51.5t-139 88.5t-92.5 131.5t-32 177zM324 428q-2 -88 88 -151.5t247 -63.5t247.5 63t88.5 152q-1 68 -48 115.5t-121 68.5t-167 21q-88 0 -161.5 -21t-123 -69t-50.5 -115zM356 1030q3 -91 91.5 -146 t211.5 -55q128 0 214.5 54.5t89.5 146.5q3 90 -83 146.5t-223 56.5q-143 0 -223.5 -61.5t-77.5 -141.5z" />
38
+ <glyph unicode="9" horiz-adv-x="1382" d="M59 985q0 92 34 170.5t92 134t134 94.5t161 57.5t173 18.5q113 0 217.5 -30.5t190.5 -87.5t138 -151t52 -210v-535q0 -93 -33 -171t-89.5 -132t-132 -92t-160 -56t-174.5 -18q-96 0 -182 15t-162 48t-131.5 81.5t-88 120t-32.5 159.5h270q0 -60 49 -104.5t120.5 -65 t151.5 -20.5q130 -2 228 64.5t98 177.5v206q-45 -69 -142.5 -110t-189.5 -41q-75 0 -144.5 11t-137 33.5t-123 61t-98 89.5t-66 123t-23.5 159zM328 985q0 -114 91 -178t232 -64q143 0 238 63.5t94 178.5q-1 76 -47.5 130t-119 79t-163.5 25q-137 0 -231 -61t-94 -173z" />
39
+ <glyph unicode=":" horiz-adv-x="485" d="M92 129q0 55 30 92.5t72.5 46.5t85.5 0t73 -46.5t30 -92.5q0 -39 -16 -69.5t-41.5 -46.5t-56.5 -23.5t-62.5 0t-57 23.5t-41.5 46.5t-16 69.5zM92 723q0 55 30 92.5t72.5 46.5t85.5 0t73 -46.5t30 -92.5q0 -39 -16 -69.5t-41.5 -46.5t-56.5 -23.5t-62.5 0t-57 23.5 t-41.5 46.5t-16 69.5z" />
40
+ <glyph unicode=";" horiz-adv-x="532" d="M88 113q0 54 30 89.5t72.5 43t85.5 -2.5t73 -47t30 -90q0 -19 -10.5 -54t-81.5 -253h-142l39 203q-44 8 -70 36.5t-26 74.5zM92 723q0 55 30 92.5t72.5 46.5t85.5 0t73 -46.5t30 -92.5q0 -39 -16 -69.5t-41.5 -46.5t-56.5 -23.5t-62.5 0t-57 23.5t-41.5 46.5t-16 69.5z " />
41
+ <glyph unicode="&#x3c;" horiz-adv-x="792" d="M39 629v30l471 467l162 -159v-13l-324 -311l324 -309v-12l-162 -160z" />
42
+ <glyph unicode="=" horiz-adv-x="874" d="M41 338v225h747v-225h-747zM41 694v228h747v-228h-747z" />
43
+ <glyph unicode="&#x3e;" horiz-adv-x="813" d="M80 322v12l323 309l-323 311v13l162 159l471 -467v-30l-471 -467z" />
44
+ <glyph unicode="?" horiz-adv-x="1269" d="M53 1004q1 110 45.5 195.5t121 137.5t173 78.5t207.5 26.5q89 0 169 -15t151 -49t122 -83t80 -122.5t27 -162.5q0 -71 -21 -128t-53 -92t-77.5 -65.5t-85 -47.5t-85 -38t-69.5 -37q-78 -52 -78 -190v-11h-270v13q1 81 15 144.5t32.5 101.5t53 70.5t58 47.5t66.5 37 q24 13 65 30t65.5 29t51 31t39 45.5t12.5 61.5q0 56 -24 96.5t-65.5 60.5t-85.5 28.5t-97 8.5q-67 0 -127 -23t-100 -70t-41 -109h-275zM379 154q0 52 24.5 90t60.5 55t79 17t79 -17t60.5 -55t24.5 -90q0 -51 -24.5 -89t-60.5 -55t-79 -17t-79 17t-60.5 55t-24.5 89z" />
45
+ <glyph unicode="@" horiz-adv-x="1955" d="M88 498q0 157 47 292t128.5 232t190.5 165.5t234.5 102t259.5 33.5q186 0 342.5 -51t274 -149t184 -254t66.5 -355q0 -247 -98.5 -390.5t-276.5 -143.5q-34 0 -67 9t-66 29t-53.5 60.5t-20.5 95.5q-16 -44 -52 -80.5t-79.5 -57t-86 -31.5t-77.5 -11q-224 0 -374 142 t-150 362q0 219 151 364.5t371 145.5q84 0 167.5 -46.5t117.5 -111.5l16 104l193 -26v-703q0 -24 12 -35t28 -6q52 13 83.5 110.5t31.5 219.5q0 132 -30.5 235t-85 172t-135 113.5t-175.5 64t-211 19.5q-94 0 -184 -25t-171 -77t-142 -124t-96.5 -174t-35.5 -220 q0 -129 36 -232t95.5 -170t141 -111.5t167 -63.5t179.5 -19q174 0 291 71l94 -178q-173 -102 -391 -102q-129 0 -248.5 29t-229 92.5t-190 155.5t-128.5 228t-48 300zM653 500q0 -75 30.5 -139t97.5 -106t159 -42q134 0 208.5 84.5t74.5 212.5q0 122 -72.5 201.5 t-208.5 79.5q-135 0 -212 -87t-77 -204z" />
46
+ <glyph unicode="A" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM477 522h533l-267 611z" />
47
+ <glyph unicode="B" horiz-adv-x="1398" d="M92 0v1434h680q108 0 197 -25t156 -74.5t104 -130t37 -186.5q0 -88 -46 -161.5t-141 -115.5q59 -18 106 -58t72.5 -87.5t38.5 -92t13 -81.5q0 -116 -41.5 -200t-117 -131.5t-168.5 -69t-210 -21.5h-680zM358 252h414q46 0 89.5 8.5t85.5 26.5t67.5 53.5t25.5 83.5 q0 61 -44.5 107.5t-104.5 68t-119 21.5h-414v-369zM358 858h414q119 0 172 43t53 111q0 27 -11.5 55.5t-36 56.5t-70.5 46t-107 18h-414v-330z" />
48
+ <glyph unicode="C" horiz-adv-x="1351" d="M59 707q-1 114 28 222.5t90.5 205.5t149.5 169.5t214.5 115t277.5 42.5q148 0 283 -55.5t244 -163.5l-181 -174q-69 67 -159 101t-187 34q-125 0 -222.5 -43.5t-155 -115.5t-87 -158.5t-28.5 -179.5t29 -177t84.5 -154.5t154.5 -112.5t225 -42q96 0 194 38.5t167 107.5 l184 -187q-216 -213 -545 -213q-155 0 -282.5 41.5t-214.5 111.5t-147 165.5t-87.5 201t-28.5 220.5z" />
49
+ <glyph unicode="D" horiz-adv-x="1439" d="M82 0v1434h563q143 0 262.5 -39.5t201.5 -106.5t139.5 -158t84.5 -191.5t29 -209.5q2 -111 -23.5 -215t-82.5 -198t-139.5 -164t-204 -111t-267.5 -41h-563zM350 260h295q118 0 208 40.5t142 108.5t76.5 149.5t22.5 172.5q-2 87 -29.5 164.5t-80 142t-140 102.5 t-199.5 38h-295v-918z" />
50
+ <glyph unicode="E" horiz-adv-x="1277" d="M96 0v1434h1073v-263h-804v-329h776v-252h-776v-324h804v-266h-1073z" />
51
+ <glyph unicode="F" horiz-adv-x="1216" d="M100 0v1432h1030v-261h-759v-391h719v-250h-719v-530h-271z" />
52
+ <glyph unicode="G" horiz-adv-x="1492" d="M43 698q0 154 48.5 292t140 247t238.5 173.5t331 64.5q147 0 285 -56.5t247 -163.5l-168 -172q-71 68 -169.5 106t-194.5 38q-150 0 -263.5 -71t-172 -190.5t-58.5 -267.5q0 -73 17 -140.5t55 -130t94 -108t140.5 -73t187.5 -27.5q90 0 166 25.5t157 89.5v254h-366v241 h614v-604q-110 -127 -249 -192.5t-322 -65.5q-157 0 -285.5 40t-215 108.5t-145.5 162.5t-85.5 199t-26.5 221z" />
53
+ <glyph unicode="H" horiz-adv-x="1499" d="M102 -2v1434h271v-605h704v605h269v-1434h-269v580h-704v-580h-271z" />
54
+ <glyph unicode="I" horiz-adv-x="524" d="M102 0v1434h269v-1434h-269z" />
55
+ <glyph unicode="J" horiz-adv-x="1456" d="M43 596h266q0 -371 363 -371q177 0 268.5 107.5t91.5 279.5v570h-432v252h703v-822q0 -186 -74.5 -330.5t-219 -227.5t-337.5 -83q-138 0 -253 41t-199 118.5t-130.5 197t-46.5 268.5z" />
56
+ <glyph unicode="K" horiz-adv-x="1341" d="M100 0v1434h271v-607l544 607h336v-9l-637 -686l691 -723v-16h-334l-600 635v-635h-271z" />
57
+ <glyph unicode="L" horiz-adv-x="1198" d="M100 0v1434h271v-1184h737v-250h-1008z" />
58
+ <glyph unicode="M" horiz-adv-x="1773" d="M102 -2v1434h312l448 -617l449 617h309v-1434h-270v1040l-467 -622h-54l-456 624v-1042h-271z" />
59
+ <glyph unicode="N" horiz-adv-x="1460" d="M121 0v1434h219l702 -889v891h271v-1436h-168v-2l-754 969v-967h-270z" />
60
+ <glyph unicode="O" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147z" />
61
+ <glyph unicode="P" horiz-adv-x="1384" d="M100 0v1434q112 0 338 1t338 1q127 0 229.5 -43.5t165.5 -115t97 -162.5t35 -186t-34 -186t-98 -162.5t-165.5 -115t-229.5 -43.5h-405v-422h-271zM371 670h405q63 0 113.5 22t81.5 57.5t47.5 81t16.5 93.5t-17 93.5t-48 81t-81.5 57.5t-112.5 22h-405v-508z" />
62
+ <glyph unicode="Q" horiz-adv-x="1601" d="M33 719q-1 114 26.5 221.5t87 204t145 168t208.5 113.5t270 42t269 -41t206 -110.5t143 -164t87 -199.5t30 -218q3 -270 -133 -467l170 -168l-190 -190l-174 172q-167 -107 -408 -107q-148 0 -271.5 41.5t-208 112.5t-143.5 167t-86 202.5t-28 220.5zM299 713 q1 -72 20 -141.5t58 -132.5t93.5 -110.5t132 -75.5t167.5 -28q117 0 210.5 46t150 121t84.5 166t24 185q-3 73 -19.5 139.5t-52.5 130t-88 110t-131.5 74.5t-177.5 28q-121 0 -215.5 -45.5t-149 -120.5t-81.5 -163.5t-25 -182.5z" />
63
+ <glyph unicode="R" horiz-adv-x="1382" d="M102 0v1436q114 0 341 -1t341 -1q123 -1 222.5 -40.5t163 -105.5t97 -151t33.5 -179q0 -78 -19 -146.5t-59.5 -131t-113 -107.5t-170.5 -65l434 -490v-18h-321l-418 479h-260v-479h-271zM373 723h411q121 0 183.5 67t62.5 162t-63 162.5t-183 67.5h-411v-459z" />
64
+ <glyph unicode="S" horiz-adv-x="1353" d="M18 315l226 117q45 -113 154.5 -170t248.5 -57q66 0 123.5 12t105 36.5t74.5 67.5t27 99q0 176 -332 211q-69 8 -124 18t-115 27t-106 39t-88.5 55t-69.5 74t-43.5 97.5t-16.5 123.5q0 106 49 188.5t130.5 131t177 73t198.5 25.5q422 0 563 -285l-215 -111 q-39 65 -133.5 112.5t-206.5 47.5q-145 0 -221 -53t-76 -137q0 -45 24.5 -77.5t72.5 -52.5t99 -31t124 -19q70 -9 126.5 -19t118.5 -28t108.5 -41t90 -57.5t71.5 -78t45 -102.5t17 -131q0 -93 -32 -169.5t-88 -129.5t-132.5 -89t-164 -52.5t-185.5 -16.5q-114 0 -207.5 18.5 t-174.5 59t-142.5 109.5t-100.5 165z" />
65
+ <glyph unicode="T" horiz-adv-x="1259" d="M16 1188v246h1180v-246h-455v-1188h-270v1188h-455z" />
66
+ <glyph unicode="U" horiz-adv-x="1521" d="M100 610v822h269v-822q0 -190 99.5 -292.5t270.5 -102.5q166 0 258.5 105t92.5 290v822h268v-822q0 -156 -46 -278.5t-129.5 -201.5t-196.5 -120t-249 -41q-131 0 -245 40t-202 117.5t-139 202t-51 281.5z" />
67
+ <glyph unicode="V" horiz-adv-x="1540" d="M2 1434h303l432 -1117l434 1117h304l-596 -1440h-281z" />
68
+ <glyph unicode="W" horiz-adv-x="2230" d="M10 1434h303l338 -1035l348 1035h177l358 -1035l328 1035h303l-516 -1434h-230l-178 451l-151 452l-150 -457l-174 -446h-229z" />
69
+ <glyph unicode="X" horiz-adv-x="1443" d="M45 0v8l498 717l-484 696v13h297l359 -535l358 535h297v-13l-485 -696l499 -717v-8h-303l-366 539l-367 -539h-303z" />
70
+ <glyph unicode="Y" horiz-adv-x="1429" d="M18 1421v13h322l365 -592l380 592h326v-13l-571 -829v-592h-271v592z" />
71
+ <glyph unicode="Z" horiz-adv-x="1200" d="M16 0v156l727 1024h-708v254h1102v-127l-744 -1051h744v-256h-1121z" />
72
+ <glyph unicode="[" horiz-adv-x="638" d="M100 -219v1818h494v-221h-242v-1372h242v-225h-494z" />
73
+ <glyph unicode="\" horiz-adv-x="935" d="M-10 1569h262l682 -1737h-260z" />
74
+ <glyph unicode="]" horiz-adv-x="661" d="M16 6h242v1372h-242v221h494v-1818h-494v225z" />
75
+ <glyph unicode="^" horiz-adv-x="1210" d="M2 682v12l487 744h158l504 -742v-14h-274l-308 471l-309 -471h-258z" />
76
+ <glyph unicode="_" horiz-adv-x="985" d="M-23 -6h967v-219h-967v219z" />
77
+ <glyph unicode="`" horiz-adv-x="485" d="M-14 1421v11h295l151 -279v-12h-221z" />
78
+ <glyph unicode="a" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112 t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223z" />
79
+ <glyph unicode="b" horiz-adv-x="1280" d="M82 0v1432h250v-560q41 73 142.5 117.5t189.5 44.5q229 0 371.5 -137.5t142.5 -390.5q0 -162 -68.5 -283.5t-186 -183.5t-266.5 -62q-221 0 -325 162l-17 -139h-233zM348 506q0 -133 85.5 -215t207.5 -82t204.5 83.5t82.5 213.5q0 133 -82 214t-205 81q-121 0 -207 -83 t-86 -212z" />
80
+ <glyph unicode="c" horiz-adv-x="976" d="M23 504q0 131 42.5 234t116 168t169.5 98.5t208 33.5q110 0 196.5 -34.5t168.5 -114.5l-158 -166q-89 80 -203 80q-127 0 -209 -84t-82 -215q0 -139 82 -217t205 -78q137 0 221 84l168 -164q-86 -85 -180 -122.5t-209 -37.5q-111 0 -207.5 34t-170 99t-116 168t-42.5 234 z" />
81
+ <glyph unicode="d" horiz-adv-x="1265" d="M35 506q0 253 142.5 390.5t371.5 137.5q88 0 189.5 -44.5t142.5 -117.5v560h249v-1432h-233l-16 139q-104 -162 -326 -162q-228 0 -374 142.5t-146 386.5zM285 506q0 -130 82 -213.5t204 -83.5t207.5 82t85.5 215q0 129 -86 212t-207 83q-123 0 -204.5 -80.5 t-81.5 -214.5z" />
82
+ <glyph unicode="e" horiz-adv-x="1193" d="M37 512q0 233 146.5 380.5t389.5 147.5q261 0 399.5 -160t110.5 -464h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-258 0 -406.5 146.5t-148.5 392.5zM299 623h545q-12 96 -82 146t-180 50q-104 0 -180 -50t-103 -146z " />
83
+ <glyph unicode="f" horiz-adv-x="825" d="M-25 776v219h189v68q0 98 31.5 175t85.5 124t122 71.5t146 24.5q135 0 262 -82l-92 -186q-80 53 -154 53q-68 0 -109.5 -45.5t-41.5 -134.5v-68h297v-219h-297v-776h-250v776h-189z" />
84
+ <glyph unicode="g" horiz-adv-x="1130" d="M31 -180h248q0 -96 77 -156.5t187 -60.5q111 0 183.5 58t72.5 159q0 66 -38.5 113.5t-95 68.5t-122.5 21q-237 0 -374.5 135.5t-137.5 371.5q0 153 69 271t185 179.5t258 61.5q146 0 231 -57l100 127l185 -139l-113 -144q107 -121 107 -299q0 -51 -10.5 -102 t-33.5 -103.5t-66.5 -98t-102.5 -72.5q117 -59 163 -142.5t46 -191.5q0 -206 -141.5 -328.5t-364.5 -122.5q-146 0 -262 55.5t-183 159t-67 236.5zM279 530q0 -128 75.5 -204t188.5 -76q111 0 186.5 76.5t75.5 203.5t-76 206t-186 79q-112 0 -188 -78t-76 -207z" />
85
+ <glyph unicode="h" horiz-adv-x="1189" d="M82 0v1434h250v-562q117 152 315 152q209 0 311.5 -130.5t102.5 -361.5v-532h-250v530q0 132 -62 197.5t-167 65.5q-109 0 -179.5 -80.5t-70.5 -196.5v-516h-250z" />
86
+ <glyph unicode="i" horiz-adv-x="475" d="M59 1294q0 40 16.5 71.5t42.5 48t57 24t62.5 0t57.5 -24t42.5 -48t16.5 -71.5t-16.5 -71.5t-42.5 -48t-57 -24t-62.5 0t-57.5 24t-42.5 48t-16.5 71.5zM82 0v1014h250v-1014h-250z" />
87
+ <glyph unicode="j" horiz-adv-x="458" d="M-231 -559l90 194q67 -31 121 -28q58 3 79 45.5t21 132.5v1229h248v-1229q0 -193 -85 -302.5t-251 -109.5q-119 0 -223 68zM57 1296q0 40 16.5 71.5t42.5 48t57 24t62.5 0t57.5 -24t42.5 -48t16.5 -71.5t-16.5 -71.5t-42.5 -48t-57 -24t-62.5 0t-57.5 24t-42.5 48 t-16.5 71.5z" />
88
+ <glyph unicode="k" horiz-adv-x="1054" d="M76 0v1432h250v-828l340 406h299v-15l-412 -460l469 -517v-18h-301l-395 457v-457h-250z" />
89
+ <glyph unicode="l" horiz-adv-x="466" d="M82 0v1432h248v-1432h-248z" />
90
+ <glyph unicode="m" horiz-adv-x="1835" d="M82 0v1012h231l19 -123q37 71 111 105t155 34q99 0 179 -45t120 -143q64 101 147.5 142.5t190.5 41.5q212 0 320 -124t108 -355v-545h-250v545q0 108 -47 177t-143 69q-98 0 -158.5 -73t-60.5 -177v-541h-250v541q0 106 -54.5 180t-152.5 74q-97 0 -156 -74.5t-59 -179.5 v-541h-250z" />
91
+ <glyph unicode="n" horiz-adv-x="1208" d="M76 0v1012h223l16 -138q155 152 332 152q185 0 306.5 -132.5t121.5 -363.5v-530h-250v528q0 120 -63.5 195.5t-179.5 75.5q-113 0 -185.5 -82.5t-72.5 -200.5v-516h-248z" />
92
+ <glyph unicode="o" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM285 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5 q-128 0 -201 -88.5t-73 -210.5z" />
93
+ <glyph unicode="p" horiz-adv-x="1280" d="M82 -422v1432h233l17 -140q55 80 144.5 121t182.5 41q152 0 271.5 -70t183.5 -190t64 -268q0 -149 -59 -268t-176 -190t-275 -71q-59 0 -118.5 12t-121.5 46t-96 86v-541h-250zM354 504q0 -121 81 -204t206 -83t206 83t81 204q0 123 -78 205t-209 82t-209 -82t-78 -205z " />
94
+ <glyph unicode="q" horiz-adv-x="1265" d="M33 504q0 148 64 268t183 190t271 70q93 0 183 -41t145 -121l16 140h233v-1432h-249v541q-34 -52 -96 -86t-121.5 -46t-118.5 -12q-158 0 -275 71t-176 190t-59 268zM283 504q0 -121 80.5 -204t205.5 -83t206 83t81 204q0 123 -78 205t-209 82t-208.5 -82t-77.5 -205z " />
95
+ <glyph unicode="r" horiz-adv-x="888" d="M82 0v1010h231l19 -117q53 85 122.5 114t161.5 29q76 0 147.5 -27t113.5 -69l-113 -217q-40 34 -80.5 49.5t-99.5 15.5q-108 0 -180 -62.5t-72 -193.5v-532h-250z" />
96
+ <glyph unicode="s" horiz-adv-x="1005" d="M27 145l123 179q52 -58 156 -99t192 -43q73 -2 127.5 32.5t54.5 88.5q0 52 -46.5 76.5t-154.5 30.5q-62 5 -117 16t-111.5 34.5t-97.5 57t-66.5 86.5t-25.5 119q0 83 40 146.5t105 99t136 52.5t145 17q124 0 216.5 -29.5t177.5 -103.5l-140 -164q-95 90 -249 90 q-89 0 -137 -26.5t-48 -73.5q0 -98 189 -110q46 -3 84 -7.5t84 -15t82 -25.5t71.5 -40t58.5 -57t37.5 -77.5t14.5 -101.5q0 -142 -113.5 -237t-320.5 -95q-140 0 -253 37t-214 143z" />
97
+ <glyph unicode="t" horiz-adv-x="817" d="M-4 793v215h188v260l250 26v-286h279v-215h-281v-437q0 -70 35.5 -106.5t95.5 -36.5q57 0 121 31l70 -213q-100 -40 -207 -43q-168 -6 -265.5 88.5t-97.5 279.5v437h-188z" />
98
+ <glyph unicode="u" horiz-adv-x="1226" d="M88 479v531h250v-529q0 -120 64 -195t180 -75q113 0 185.5 82.5t72.5 200.5v516h247v-1012h-223l-16 137q-80 -79 -159.5 -115t-182.5 -36q-186 0 -302 132.5t-116 362.5z" />
99
+ <glyph unicode="v" horiz-adv-x="1167" d="M-4 1012h272l140 -334l155 -426l154 422l139 338h272l-430 -1016h-270z" />
100
+ <glyph unicode="w" horiz-adv-x="1867" d="M61 1012h279l231 -760l220 760h219l221 -760l231 760h277l-353 -1016h-290l-105 299l-90 338l-90 -338l-104 -299h-291z" />
101
+ <glyph unicode="x" horiz-adv-x="1089" d="M8 0v6l352 506l-331 489v9h299l198 -342l199 342h299v-9l-332 -489l352 -506v-6h-299l-219 338l-219 -338h-299z" />
102
+ <glyph unicode="y" horiz-adv-x="1148" d="M-6 1010h291q180 -513 250 -721q71 200 288 721h277l-617 -1432h-274l188 438z" />
103
+ <glyph unicode="z" horiz-adv-x="935" d="M18 0v104l484 678h-447v228h809v-119l-465 -645h469v-246h-850z" />
104
+ <glyph unicode="{" horiz-adv-x="692" d="M47 588v186q37 0 64 11t42 27t23.5 40.5t11 45.5t2.5 48v287q0 200 111.5 289t333.5 49v-195q-99 26 -140.5 -10.5t-41.5 -144.5v-275v-21q0 -37 -0.5 -55.5t-4 -48t-13 -46.5t-24.5 -37t-41 -34t-61 -24q35 -10 61 -23.5t41 -33.5t24.5 -37t13 -46.5t4 -47.5t0.5 -55 v-21v-275q0 -108 34.5 -137.5t147.5 -17.5v-195q-222 -40 -333.5 49t-111.5 289v287q0 27 -2.5 48t-11 45.5t-23.5 40.5t-42 27t-64 11z" />
105
+ <glyph unicode="|" horiz-adv-x="626" d="M152 -172v1712h241v-1712h-241z" />
106
+ <glyph unicode="}" horiz-adv-x="696" d="M-4 -14q113 -12 147.5 17.5t34.5 137.5v275v21q0 36 0.5 54.5t4 48t13 46.5t24.5 37t41 33.5t61 23.5q-35 10 -61 24t-41 34t-24.5 37t-13 46.5t-4 48t-0.5 55.5v21v275q0 108 -41.5 144.5t-140.5 10.5v195q222 40 333 -49t111 -289v-287q0 -35 5 -61t18.5 -53.5 t44 -42.5t76.5 -15v-186q-46 0 -76.5 -15t-44 -42.5t-18.5 -53.5t-5 -61v-287q0 -200 -111 -289t-333 -49v195z" />
107
+ <glyph unicode="~" horiz-adv-x="1060" d="M-8 539q26 93 79 153.5t112 83.5t128 23q53 0 105 -19t88 -43.5t82.5 -52t83.5 -39.5q53 -16 89 14.5t66 104.5l183 -62q-23 -71 -58.5 -126.5t-86.5 -95t-114 -47.5t-141 16q-39 13 -98.5 50.5t-112 65t-94.5 27.5q-93 0 -143 -117z" />
108
+ <glyph unicode="&#xa1;" horiz-adv-x="653" d="M123 809q0 44 18 79t47 53t64 26t70 0t64 -26t47 -53t18 -79q0 -45 -18 -80t-47 -53t-64 -26.5t-70 0t-64 26.5t-47 53t-18 80zM154 -475v1057h268v-1057h-268z" />
109
+ <glyph unicode="&#xa2;" horiz-adv-x="1120" d="M74 479q0 186 111 330t298 188v150h232v-148q157 -31 272 -143l-145 -162q-40 40 -107 65t-125 25q-119 0 -203.5 -88.5t-84.5 -216.5t84.5 -215.5t203.5 -87.5q54 0 118.5 31.5t107.5 75.5l153 -181q-123 -116 -274 -145v-143h-232v147q-182 41 -295.5 184.5 t-113.5 333.5z" />
110
+ <glyph unicode="&#xa3;" horiz-adv-x="1288" d="M90 0v256q98 24 145 101t44 188h-189v227h146q-37 146 -37 207q0 225 139 351t383 126q224 0 353.5 -105.5t139.5 -326.5h-247q-9 99 -69.5 147t-174.5 48q-132 0 -192 -65.5t-60 -170.5q0 -67 33 -211h424v-227h-377q7 -84 -24.5 -168.5t-108.5 -120.5h803v-256h-1131z " />
111
+ <glyph unicode="&#xa4;" horiz-adv-x="1107" d="M27 328l118 116q-100 198 9 402l-127 121l188 188l119 -121q94 40 200 39t197 -41l123 123l186 -188l-118 -119q47 -99 48 -204.5t-46 -199.5l116 -116l-184 -185l-121 119q-100 -40 -202 -39t-199 39l-119 -121zM315 647q0 -89 60.5 -155t156.5 -66q99 0 157.5 65.5 t58.5 155.5t-58.5 155.5t-157.5 65.5q-96 0 -156.5 -66t-60.5 -155z" />
112
+ <glyph unicode="&#xa5;" horiz-adv-x="1472" d="M18 1421v13h322l365 -592l380 592h326v-13l-471 -684h215v-198h-315v-105h315v-194h-315v-240h-271v240h-317v194h317v105h-317v198h221z" />
113
+ <glyph unicode="&#xa6;" horiz-adv-x="624" d="M164 -186v755h256v-755h-256zM164 698v756h256v-756h-256z" />
114
+ <glyph unicode="&#xa7;" horiz-adv-x="1232" d="M80 160l162 170q70 -76 155.5 -103.5t200.5 -25.5q107 0 183 25.5t79 72.5q3 42 -68.5 67t-185.5 23q-97 -2 -187 15t-167 52.5t-121.5 99.5t-40.5 149q3 60 51 119t131 85q-89 19 -130.5 84t-37.5 135q4 75 42 133.5t93.5 93t129 57t140.5 30.5t136 8q83 0 160 -12 t160 -48t133 -94l-178 -151q-53 50 -119.5 67t-165.5 17q-259 0 -264 -94q-1 -28 21.5 -49t61 -32t79.5 -16.5t83 -5.5q64 0 120.5 -5t119.5 -16.5t112 -35t88.5 -56.5t58.5 -85t13 -117q-6 -62 -55.5 -121t-120.5 -80q87 -26 132 -91.5t42 -127.5q-3 -74 -42.5 -132 t-96.5 -92.5t-131 -57t-139 -30.5t-127 -8q-356 0 -510 183zM350 713q-5 -75 123 -104.5t259.5 1t135.5 101.5q5 80 -123 113.5t-259.5 0.5t-135.5 -112z" />
115
+ <glyph unicode="&#xa8;" horiz-adv-x="1046" d="M100 1341q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45t-29.5 90.5zM610 1341q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45 t-29.5 90.5z" />
116
+ <glyph unicode="&#xa9;" horiz-adv-x="1894" d="M180 725q0 153 52 288.5t147 238t238.5 162t316.5 59.5t315 -59.5t233.5 -162.5t141 -238t49.5 -288t-49.5 -288t-141 -238t-233.5 -162.5t-315 -59.5t-316.5 59.5t-238.5 162t-147 238t-52 288.5zM397 725q0 -155 64 -280t187.5 -199t285.5 -74q122 0 222 43t165 118 t100 175.5t35 216.5t-35 216.5t-100 175.5t-165 118t-222 43q-162 0 -285.5 -74t-187.5 -199t-64 -280zM551 721q0 185 118.5 292t297.5 107q166 0 293 -127l-132 -121q-71 68 -161 68q-96 0 -161 -58t-65 -161q0 -96 66 -152.5t160 -56.5q91 0 163 72l134 -125 q-132 -129 -297 -129q-179 0 -297.5 103.5t-118.5 287.5z" />
117
+ <glyph unicode="&#xaa;" horiz-adv-x="849" d="M6 1104q0 166 97 257t249 89q67 0 124.5 -29t86.5 -78l4 91h187v-662h-185l-6 96q-27 -54 -89.5 -84t-125.5 -32q-153 0 -247.5 92t-94.5 260zM31 477v178h727v-178h-727zM203 1104q0 -79 48 -125.5t120 -46.5q53 0 91.5 25.5t56 63.5t17.5 83t-17.5 83t-56 63.5 t-91.5 25.5q-72 0 -120 -46.5t-48 -125.5z" />
118
+ <glyph unicode="&#xab;" horiz-adv-x="1009" d="M25 651l284 453h266l-282 -453l282 -454h-266zM385 651l285 453h266l-283 -453l283 -454h-266z" />
119
+ <glyph unicode="&#xac;" horiz-adv-x="958" d="M31 569v213h809v-473h-215v260h-594z" />
120
+ <glyph unicode="&#xad;" horiz-adv-x="937" d="M72 553v229h755v-229h-755z" />
121
+ <glyph unicode="&#xae;" horiz-adv-x="1894" d="M197 719q0 153 49.5 288t141.5 237.5t233.5 162t314.5 59.5t315 -59.5t234 -162t142 -237.5t50 -288t-50 -288t-142 -238t-234 -162.5t-315 -59.5q-139 0 -258 38.5t-206.5 108t-150 163t-93.5 205t-31 233.5zM414 719q1 -156 61 -280t180 -198.5t281 -74.5q122 0 222 43 t165 118t100 175.5t35 216.5t-35 216.5t-100 175.5t-165 118t-222 43q-161 0 -281 -74.5t-180 -198.5t-61 -280zM641 344v752h358q54 0 100.5 -14.5t79.5 -39t58 -57t36 -69.5t14 -74.5t-8 -74t-31.5 -66.5t-55 -52.5t-78.5 -32.5l186 -229v-43h-213l-178 234h-69v-234h-199 zM840 745h159q41 0 65 27t24 59.5t-24 59.5t-65 27h-159v-173z" />
122
+ <glyph unicode="&#xb0;" horiz-adv-x="622" d="M14 1219q0 122 83 191t194 69t192.5 -69t81.5 -191q0 -123 -82 -192t-194 -69q-111 0 -193 69t-82 192zM289 1104q46 0 77 23.5t38 57t0 66.5t-38 56.5t-75 23.5q-46 0 -77 -23.5t-38.5 -56.5t-1 -66.5t37.5 -57t77 -23.5z" />
123
+ <glyph unicode="&#xb1;" horiz-adv-x="960" d="M41 39v227h838v-227h-838zM41 655v234h293v303h250v-303h295v-234h-295v-303h-250v303h-293z" />
124
+ <glyph unicode="&#xb2;" horiz-adv-x="751" d="M63 811v197q0 61 23.5 104t61 65t83 35.5t91 21.5t83 18t61 30.5t23.5 52.5q0 86 -127 86q-47 0 -80 -19.5t-34 -55.5h-180q1 76 45.5 130.5t108 78.5t136.5 24q144 0 229 -60t85 -184q0 -55 -18 -96t-47.5 -63.5t-67.5 -38.5t-77 -22.5t-77 -15t-67.5 -17t-47.5 -27.5 t-18 -47v-27h405v-170h-594z" />
125
+ <glyph unicode="&#xb3;" horiz-adv-x="800" d="M41 1030h188q22 -72 127 -72q53 0 92 20t39 58q0 40 -30 66t-99 26h-116v138h108q65 0 95.5 15.5t31.5 64.5q0 26 -28.5 52.5t-96.5 26.5q-57 0 -91.5 -15t-45.5 -58h-160q0 77 47 130t112 75t140 22t142 -24t114.5 -78.5t48.5 -130.5q0 -48 -25.5 -92t-72.5 -58 q53 -17 85 -61.5t32 -94.5q0 -53 -20.5 -96t-53 -70t-76.5 -45.5t-88 -26t-90 -7.5q-56 0 -108.5 13.5t-98.5 40t-73.5 73.5t-28.5 108z" />
126
+ <glyph unicode="&#xb4;" horiz-adv-x="489" d="M-8 1141v12l151 279h295v-11l-225 -280h-221z" />
127
+ <glyph unicode="&#xb6;" horiz-adv-x="1712" d="M23 893q0 82 22 160t68 147t111.5 121t157.5 82.5t200 30.5h1038v-254h-190v-1616h-271v1616h-379v-1616h-270v792q-117 12 -212 62.5t-154 125t-90 164.5t-31 185z" />
128
+ <glyph unicode="&#xb7;" horiz-adv-x="462" d="M35 678q0 73 48.5 114t107 41t107 -41t48.5 -114t-48.5 -114t-107 -41t-107 41t-48.5 114z" />
129
+ <glyph unicode="&#xb8;" horiz-adv-x="782" d="M68 -346l108 92q29 -39 82.5 -56t101.5 -4t60 52q11 37 -17.5 65.5t-71.5 30t-85 -23.5l-60 47l66 192h180l-33 -104q67 -2 114.5 -25t68 -57t29.5 -75t-1 -79q-15 -69 -63.5 -116.5t-113.5 -64t-134 -11t-132 41.5t-99 95z" />
130
+ <glyph unicode="&#xb9;" horiz-adv-x="581" d="M109 811v160h102v440h-94v154h274v-594h88v-160h-370z" />
131
+ <glyph unicode="&#xba;" horiz-adv-x="765" d="M31 1133v110q0 81 28.5 147t76 106t107.5 62t122.5 22t122.5 -22t107.5 -62t76 -106t28.5 -147v-110q0 -81 -28.5 -147t-76 -106t-107.5 -62t-122.5 -22t-122.5 22t-107.5 62t-76 106t-28.5 147zM207 1128q0 -45 17.5 -80t45 -53t61 -26.5t66.5 0t60.5 26.5t45 53 t17.5 80v113q0 44 -17.5 78.5t-45 52.5t-60.5 26.5t-66.5 0.5t-61 -26t-45 -52.5t-17.5 -79.5v-113z" />
132
+ <glyph unicode="&#xbb;" horiz-adv-x="942" d="M-6 197l282 454l-282 453h266l285 -453l-285 -454h-266zM354 197l283 454l-283 453h267l284 -453l-284 -454h-267z" />
133
+ <glyph unicode="&#xbc;" horiz-adv-x="1566" d="M74 686v156h102v444h-94v154h274v-598h101v-156h-383zM201 -59l821 1507h199l-824 -1507h-196zM817 287l346 465h236v-461h69v-158h-69v-133h-180v133h-394zM1004 291h215v287z" />
134
+ <glyph unicode="&#xbd;" horiz-adv-x="1658" d="M74 686v156h102v444h-94v154h274v-598h101v-156h-383zM201 -59l821 1507h199l-824 -1507h-196zM944 -8v196q0 61 23.5 104t61 65t83 36t91 22t83 18t61 30.5t23.5 52.5q0 86 -127 86q-47 0 -80.5 -20t-34.5 -56h-180q1 76 45.5 131t108.5 79t137 24q144 0 228.5 -60 t84.5 -184q0 -55 -18 -96t-47.5 -63.5t-67 -38.5t-77 -22.5t-77 -15.5t-67 -17.5t-47.5 -27.5t-18 -47v-26h405v-170h-594z" />
135
+ <glyph unicode="&#xbe;" horiz-adv-x="1730" d="M78 932h180q22 -70 123 -70q51 0 89 19.5t38 56.5q0 38 -29 63t-96 25h-113v133h105q64 0 93 14.5t30 61.5q0 26 -27.5 52t-93.5 26q-55 0 -88 -15t-43 -57h-156q0 74 46 125.5t109 72.5t134 21q73 0 138 -23t110.5 -76t46.5 -126q0 -46 -25.5 -88t-70.5 -55 q52 -16 82 -59.5t30 -90.5q0 -64 -29 -112t-76.5 -74t-100 -38.5t-109.5 -12.5q-43 0 -83.5 7.5t-79.5 25t-68 43.5t-47 65t-19 86zM342 -59l821 1507h199l-823 -1507h-197zM940 287l346 465h236v-461h69v-158h-69v-133h-181v133h-393zM1126 291h215v287z" />
136
+ <glyph unicode="&#xbf;" horiz-adv-x="1226" d="M35 45q0 67 21.5 122.5t53 90.5t77 66t85 49t85 40t69.5 38q42 27 60 72t20 118l-2 10l270 -2v-10q-1 -81 -15 -144.5t-32.5 -101.5t-53 -70.5t-58 -47.5t-66.5 -37q-24 -13 -65 -30t-65.5 -29t-51.5 -31t-39.5 -45.5t-12.5 -61.5q0 -56 24 -96t65 -60.5t85.5 -29.5 t96.5 -9q105 0 186 55.5t84 147.5l274 -2q-1 -109 -45.5 -194.5t-120.5 -137.5t-172.5 -78.5t-207.5 -25.5q-113 0 -210 25t-175 75.5t-122 136t-42 197.5zM479 899q0 44 18 79t47 52.5t64 26t69.5 0t63.5 -26.5t46.5 -53t17.5 -80q0 -44 -17.5 -79t-46.5 -52.5t-64 -26 t-70 0t-64 26.5t-46.5 53t-17.5 80z" />
137
+ <glyph unicode="&#xc0;" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM397 1862v10h295l152 -279v-12h-221zM477 522h533l-267 611z" />
138
+ <glyph unicode="&#xc1;" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM477 522h533l-267 611zM631 1581v12l151 279h295v-10l-225 -281h-221z" />
139
+ <glyph unicode="&#xc2;" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM379 1542v12l303 283h137l303 -283v-12h-254l-118 121l-117 -121h-254zM477 522h533l-267 611z" />
140
+ <glyph unicode="&#xc3;" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM373 1649q88 221 270 180q24 -6 57.5 -21.5t58 -26.5t51.5 -16t50.5 10t42.5 52l168 -80q-44 -116 -115 -161t-149 -23q-25 7 -60 26t-60 31t-53.5 17.5t-54.5 -12.5t-49 -62zM477 522h533l-267 611z " />
141
+ <glyph unicode="&#xc4;" d="M-47 0l643 1434h295l643 -1434h-295l-121 270h-749l-123 -270h-293zM342 1688q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM477 522h533l-267 611zM852 1688q0 39 16 69.5t41 46.5 t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45t-29.5 90.5z" />
142
+ <glyph unicode="&#xc5;" d="M-47 0l639 1425q-121 66 -121 209q0 116 81 182t191 66q108 0 189.5 -66t81.5 -182q0 -72 -33 -125t-88 -84l641 -1425h-295l-121 270h-749l-123 -270h-293zM477 522h533l-267 611zM739 1532q46 0 77 21.5t37.5 52t-1.5 61.5t-38.5 52.5t-74.5 21.5q-56 0 -87.5 -32.5 t-31.5 -72t32 -72t87 -32.5z" />
143
+ <glyph unicode="&#xc6;" horiz-adv-x="1867" d="M-43 0l909 1434h885v-254h-598v-340h576v-250h-576v-330h604v-260h-858v289h-450l-183 -289h-309zM600 528h299v256l21 316z" />
144
+ <glyph unicode="&#xc7;" horiz-adv-x="1351" d="M59 707q-1 114 28 222.5t90.5 205.5t149.5 169.5t214.5 115t277.5 42.5q148 0 283 -55.5t244 -163.5l-181 -174q-69 67 -159 101t-187 34q-125 0 -222.5 -43.5t-155 -115.5t-87 -158.5t-28.5 -179.5t29 -177t84.5 -154.5t154.5 -112.5t225 -42q96 0 194 38.5t167 107.5 l184 -187q-203 -200 -508 -213l-29 -92q67 -2 114.5 -25t68 -56.5t29.5 -74.5t-1 -79q-12 -57 -49 -100.5t-86.5 -65.5t-108 -27t-113.5 8t-105 46.5t-80 82.5l108 92q29 -39 82.5 -56t101.5 -4t60 52q11 37 -17.5 65.5t-71.5 30t-85 -23.5l-60 47l64 190q-156 21 -277.5 90 t-194 170.5t-109.5 220t-38 249.5z" />
145
+ <glyph unicode="&#xc8;" horiz-adv-x="1267" d="M96 0v1434h1073v-263h-804v-329h776v-252h-776v-324h804v-266h-1073zM344 1872v10h295l152 -278v-13h-222z" />
146
+ <glyph unicode="&#xc9;" horiz-adv-x="1267" d="M96 0v1434h1073v-263h-804v-329h776v-252h-776v-324h804v-266h-1073zM524 1579v12l152 279h295v-10l-226 -281h-221z" />
147
+ <glyph unicode="&#xca;" horiz-adv-x="1267" d="M96 0v1434h1073v-263h-804v-329h776v-252h-776v-324h804v-266h-1073zM311 1579v12l303 283h138l303 -283v-12h-254l-119 121l-117 -121h-254z" />
148
+ <glyph unicode="&#xcb;" horiz-adv-x="1277" d="M96 0v1434h1073v-263h-804v-329h776v-252h-776v-324h804v-266h-1073zM258 1720q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM768 1720q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5 t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45t-29.5 90.5z" />
149
+ <glyph unicode="&#xcc;" horiz-adv-x="524" d="M-92 1845v10h295l151 -278v-12h-221zM102 0v1434h269v-1434h-269z" />
150
+ <glyph unicode="&#xcd;" horiz-adv-x="524" d="M102 0v1434h269v-1434h-269zM117 1565v12l151 278h295v-10l-225 -280h-221z" />
151
+ <glyph unicode="&#xce;" horiz-adv-x="524" d="M-131 1552v13l303 282h137l303 -282v-13h-254l-118 121l-117 -121h-254zM102 0v1434h269v-1434h-269z" />
152
+ <glyph unicode="&#xcf;" horiz-adv-x="524" d="M-133 1696q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45t-29.5 90.5zM102 0v1434h269v-1434h-269zM305 1696q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5 t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
153
+ <glyph unicode="&#xd0;" horiz-adv-x="1497" d="M-25 600v229h144v605h530q176 0 319 -54.5t235 -149t141 -218.5t49 -267q0 -120 -28 -229t-87.5 -203.5t-146 -164t-210 -109t-272.5 -39.5h-530v600h-144zM379 248h270q236 0 356.5 132.5t120.5 356.5q0 217 -122.5 335t-354.5 118h-270v-361h276v-229h-276v-352z" />
154
+ <glyph unicode="&#xd1;" horiz-adv-x="1515" d="M121 0v1434h219l702 -889v891h271v-1436h-168v-2l-754 969v-967h-270zM395 1661q88 216 264 176q23 -6 56 -21.5t57.5 -26t51 -15.5t49 10t40.5 51l164 -78q-42 -113 -111.5 -156.5t-146.5 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5z" />
155
+ <glyph unicode="&#xd2;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM475 1878v10h295l152 -278v-13h-222z" />
156
+ <glyph unicode="&#xd3;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM657 1587v12l152 279h295v-10l-225 -281h-222z" />
157
+ <glyph unicode="&#xd4;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM426 1589v13l303 282h137l303 -282v-13h-254l-118 121l-117 -121 h-254z" />
158
+ <glyph unicode="&#xd5;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM451 1671q88 216 264 176q23 -6 56 -21.5t57.5 -26t51 -15.5t49 10 t40.5 51l164 -78q-42 -113 -112 -156.5t-147 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5z" />
159
+ <glyph unicode="&#xd6;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5t266 -42.5t208 -115t146 -168.5t88 -204.5t27 -222.5t-29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5t-269.5 41t-208 111t-145 164.5t-87 201.5t-27.5 222zM303 702q2 -74 18.5 -141.5 t53 -131.5t89 -111t132.5 -75t178 -28t178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q1 75 -14.5 146.5t-52 138t-90 117t-134 80.5t-178.5 30t-179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM393 1716q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5 t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM897 1716q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
160
+ <glyph unicode="&#xd7;" horiz-adv-x="911" d="M86 453l201 196l-197 197l166 160l190 -199l199 203l156 -156l-205 -211l211 -209l-156 -149l-207 209l-196 -203z" />
161
+ <glyph unicode="&#xd8;" horiz-adv-x="1607" d="M37 707q0 115 28.5 223.5t88.5 205t145.5 169t208 115t266.5 42.5q146 0 279 -47l92 154h262l-160 -266q129 -106 196.5 -264t65.5 -330q-1 -114 -29 -220t-87 -201.5t-143 -166.5t-206.5 -112.5t-269.5 -41.5q-166 0 -299 51l-100 -165h-260l168 278 q-121 103 -183.5 254t-62.5 322zM303 702q2 -95 31 -184t86 -156l502 834q-79 21 -148 21q-98 0 -179 -30.5t-135 -81t-91 -117.5t-52.5 -139t-13.5 -147zM606 238q80 -23 168 -23q98 0 178 28.5t132.5 76t88.5 111.5t52.5 132t17.5 142q2 104 -31 203t-100 171z" />
162
+ <glyph unicode="&#xd9;" horiz-adv-x="1521" d="M100 610v822h269v-822q0 -190 99.5 -292.5t270.5 -102.5q166 0 258.5 105t92.5 290v822h268v-822q0 -156 -46 -278.5t-129.5 -201.5t-196.5 -120t-249 -41q-131 0 -245 40t-202 117.5t-139 202t-51 281.5zM444 1878v10h295l152 -278v-13h-221z" />
163
+ <glyph unicode="&#xda;" horiz-adv-x="1521" d="M100 610v822h269v-822q0 -190 99.5 -292.5t270.5 -102.5q166 0 258.5 105t92.5 290v822h268v-822q0 -156 -46 -278.5t-129.5 -201.5t-196.5 -120t-249 -41q-131 0 -245 40t-202 117.5t-139 202t-51 281.5zM608 1595v13l152 278h295v-10l-226 -281h-221z" />
164
+ <glyph unicode="&#xdb;" horiz-adv-x="1521" d="M100 610v822h269v-822q0 -190 99.5 -292.5t270.5 -102.5q166 0 258.5 105t92.5 290v822h268v-822q0 -156 -46 -278.5t-129.5 -201.5t-196.5 -120t-249 -41q-131 0 -245 40t-202 117.5t-139 202t-51 281.5zM365 1591v13l303 282h137l303 -282v-13h-254l-119 121l-117 -121 h-253z" />
165
+ <glyph unicode="&#xdc;" horiz-adv-x="1521" d="M100 610v822h269v-822q0 -190 99.5 -292.5t270.5 -102.5q166 0 258.5 105t92.5 290v822h268v-822q0 -156 -46 -278.5t-129.5 -201.5t-196.5 -120t-249 -41q-131 0 -245 40t-202 117.5t-139 202t-51 281.5zM352 1710q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5 t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM862 1710q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-71.5 -45t-84.5 0t-72 45t-29.5 90.5z" />
166
+ <glyph unicode="&#xdd;" horiz-adv-x="1472" d="M18 1421v13h322l365 -592l380 592h326v-13l-571 -829v-592h-271v592zM578 1579v12l151 279h295v-10l-225 -281h-221z" />
167
+ <glyph unicode="&#xde;" horiz-adv-x="1384" d="M100 0l2 1432h267v-234h407q102 0 189 -27t148 -73t104.5 -107.5t63.5 -130.5t20 -142t-20 -142t-63.5 -130.5t-104.5 -107.5t-148 -73t-189 -27h-405v-238h-271zM371 479h405q71 0 127 26t84.5 67.5t42 91.5t0 100.5t-42.5 92t-84.5 67.5t-126.5 26h-405v-471z" />
168
+ <glyph unicode="&#xdf;" horiz-adv-x="1290" d="M127 0v1053q0 97 43 175.5t113.5 127t156 74.5t174.5 26q96 0 182 -25.5t154.5 -73.5t109 -126t40.5 -176q0 -88 -58 -158.5t-159 -93.5q86 -20 150.5 -61.5t99.5 -94t52 -105t17 -104.5q0 -93 -25.5 -170t-71.5 -131.5t-109.5 -91.5t-140 -52.5t-163 -13t-178.5 24.5 l-2 227q111 -26 191.5 -21t132 38t76 79t24.5 103q0 78 -49 137t-121.5 87t-153.5 28h-96v238h90q55 0 103 11t86.5 43t40.5 81q3 59 -31.5 99t-82.5 55.5t-104 15.5q-98 0 -160 -45t-65 -125v-482q0 -82 1 -289t1 -284h-268z" />
169
+ <glyph unicode="&#xe0;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112 t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223zM287 1442v10h295l151 -278v-13h-221z" />
170
+ <glyph unicode="&#xe1;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112 t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223zM414 1163v13l151 278h295v-10l-225 -281h-221z" />
171
+ <glyph unicode="&#xe2;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM244 1165v13l303 282h137l303 -282v-13h-254l-119 121l-116 -121h-254zM276 506 q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223z" />
172
+ <glyph unicode="&#xe3;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM274 1282q88 217 265 176q23 -6 56 -21.5t57.5 -26t51 -15.5t49 10t40.5 51 l163 -78q-42 -113 -111.5 -156.5t-146.5 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223z" />
173
+ <glyph unicode="&#xe4;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM225 1341q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5 q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223zM735 1341q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5 t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
174
+ <glyph unicode="&#xe5;" horiz-adv-x="1251" d="M27 506q0 169 70.5 290.5t188 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l9 140h239v-1010h-235l-13 147q-40 -83 -136 -129.5t-191 -48.5q-151 -1 -267.5 58.5t-184.5 182.5t-68 296zM276 506q0 -141 85 -224t214 -83q71 0 128.5 26.5t93 69.5t54.5 98t19 112 t-19 112t-54.5 98t-93 69.5t-128.5 26.5q-129 0 -214 -82t-85 -223zM330 1382q0 112 78.5 175t183.5 63t182.5 -63t77.5 -175t-77.5 -174.5t-182.5 -62.5t-183.5 62.5t-78.5 174.5zM588 1284q56 0 86.5 31.5t30 69t-32 69t-84.5 31.5q-54 0 -84.5 -31.5t-30 -69t31 -69 t83.5 -31.5z" />
175
+ <glyph unicode="&#xe6;" horiz-adv-x="2000" d="M14 506q0 169 71 290.5t188.5 180t267.5 57.5q102 0 190.5 -44.5t130.5 -119.5l8 140h189v-127q121 159 350 155q83 -2 162.5 -30.5t146 -81.5t112 -129t60.5 -171.5t-8 -209.5h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42 q-228 0 -332 158l-10 -131h-185l-2 147q-40 -83 -136 -129.5t-191 -48.5q-152 -1 -268 58.5t-184.5 183t-68.5 295.5zM264 506q0 -141 85 -224t214 -83q74 0 134 26.5t97 69.5t57 98t20 112t-20 112t-57 98t-97 69.5t-134 26.5q-129 0 -214 -82t-85 -223zM1098 623h544 q-12 96 -82 146t-180 50q-104 0 -179.5 -50t-102.5 -146z" />
176
+ <glyph unicode="&#xe7;" horiz-adv-x="976" d="M23 504q0 131 42.5 234t116 168t169.5 98.5t208 33.5q110 0 196.5 -34.5t168.5 -114.5l-158 -166q-89 80 -203 80q-127 0 -209 -84t-82 -215q0 -139 82 -217t205 -78q137 0 221 84l168 -164q-83 -82 -171.5 -119.5t-196.5 -40.5l-25 -78q67 -2 114.5 -24t68 -55t29.5 -73 t-1 -77q-12 -55 -49 -96.5t-86.5 -63t-108.5 -26.5t-114 8t-105 45t-80 80l109 90q29 -38 82.5 -54.5t101 -4t59.5 50.5q11 37 -17.5 63.5t-71.5 28t-85 -22.5l-59 45l64 183q-174 40 -278.5 171.5t-104.5 344.5z" />
177
+ <glyph unicode="&#xe8;" horiz-adv-x="1193" d="M37 512q0 233 146.5 380.5t389.5 147.5q261 0 399.5 -160t110.5 -464h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-258 0 -406.5 146.5t-148.5 392.5zM272 1450v10h295l152 -278v-13h-221zM299 623h545q-12 96 -82 146 t-180 50q-104 0 -180 -50t-103 -146z" />
178
+ <glyph unicode="&#xe9;" horiz-adv-x="1193" d="M37 512q0 233 146.5 380.5t389.5 147.5q261 0 399.5 -160t110.5 -464h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-258 0 -406.5 146.5t-148.5 392.5zM299 623h545q-12 96 -82 146t-180 50q-104 0 -180 -50t-103 -146z M422 1174v12l151 278h295v-10l-225 -280h-221z" />
179
+ <glyph unicode="&#xea;" horiz-adv-x="1193" d="M37 512q0 233 146.5 380.5t389.5 147.5q261 0 399.5 -160t110.5 -464h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-258 0 -406.5 146.5t-148.5 392.5zM215 1165v13l303 282h137l303 -282v-13h-253l-119 121l-117 -121 h-254zM299 623h545q-12 96 -82 146t-180 50q-104 0 -180 -50t-103 -146z" />
180
+ <glyph unicode="&#xeb;" horiz-adv-x="1193" d="M37 512q0 233 146.5 380.5t389.5 147.5q261 0 399.5 -160t110.5 -464h-788q12 -96 92 -155.5t209 -59.5q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-258 0 -406.5 146.5t-148.5 392.5zM229 1313q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5 t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM299 623h545q-12 96 -82 146t-180 50q-104 0 -180 -50t-103 -146zM666 1313q0 45 21 78.5t53 48.5t69 15t69 -15t53 -48.5t21 -78.5q0 -67 -44.5 -104.5t-98.5 -37.5t-98.5 37.5t-44.5 104.5z" />
181
+ <glyph unicode="&#xec;" horiz-adv-x="487" d="M-8 1419v11h268l86 -291v-13h-203zM82 0v975h262v-975h-262z" />
182
+ <glyph unicode="&#xed;" horiz-adv-x="487" d="M82 0v975h262v-975h-262zM88 1126v13l86 291h268v-11l-151 -293h-203z" />
183
+ <glyph unicode="&#xee;" horiz-adv-x="487" d="M-100 1130v13l266 299h119l266 -299v-13h-223l-103 127l-102 -127h-223zM82 0v975h262v-975h-262z" />
184
+ <glyph unicode="&#xef;" horiz-adv-x="487" d="M-102 1309q0 39 16 69.5t41 46.5t55.5 23.5t61 0t55.5 -23.5t41 -46.5t16 -69.5q0 -67 -44.5 -104.5t-98.5 -37.5t-98.5 37.5t-44.5 104.5zM82 0v975h262v-975h-262zM276 1309q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5 t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
185
+ <glyph unicode="&#xf0;" horiz-adv-x="1204" d="M66 487q0 85 26 164.5t75 146.5t127.5 115t176.5 66q86 12 176.5 -5t138.5 -59q-25 66 -95.5 127.5t-108.5 71.5l-64 -72l-121 80l54 64q-54 32 -168 47l45 203q150 -20 270 -74l88 104l123 -88l-76 -88q206 -162 290.5 -348t84.5 -428q0 -238 -139.5 -385t-380.5 -147 q-126 0 -227.5 42.5t-164.5 114t-96.5 161t-33.5 187.5zM322 489q0 -116 70.5 -200t195.5 -84t194.5 84t69.5 200q0 73 -28.5 136t-90 105t-145.5 42q-125 0 -195.5 -84.5t-70.5 -198.5z" />
186
+ <glyph unicode="&#xf1;" horiz-adv-x="1230" d="M76 0v1012h223l16 -138q155 152 332 152q185 0 306.5 -132.5t121.5 -363.5v-530h-250v528q0 120 -63.5 195.5t-179.5 75.5q-113 0 -185.5 -82.5t-72.5 -200.5v-516h-248zM227 1288q88 217 265 176q23 -6 56 -21.5t57 -26t50.5 -15.5t49 10t40.5 51l164 -78 q-42 -113 -111.5 -156.5t-146.5 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5z" />
187
+ <glyph unicode="&#xf2;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM264 1436v10h295l152 -279v-12h-222zM285 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87 t72.5 210q0 120 -77 209.5t-198 89.5q-128 0 -201 -88.5t-73 -210.5z" />
188
+ <glyph unicode="&#xf3;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM285 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5 q-128 0 -201 -88.5t-73 -210.5zM434 1151v12l152 279h295v-10l-226 -281h-221z" />
189
+ <glyph unicode="&#xf4;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM186 1145v12l303 283h138l303 -283v-12h-254l-119 121l-117 -121h-254zM285 504q0 -79 29.5 -145 t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5q-128 0 -201 -88.5t-73 -210.5z" />
190
+ <glyph unicode="&#xf5;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM223 1274q88 216 264 176q23 -6 56 -21.5t57.5 -26t51 -15.5t49 10t40.5 51l164 -78 q-42 -113 -111.5 -156.5t-146.5 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5zM285 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5q-128 0 -201 -88.5t-73 -210.5z" />
191
+ <glyph unicode="&#xf6;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5t278.5 -71.5t185.5 -190.5t64 -264q0 -146 -62 -265t-183 -190.5t-281 -71.5q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM205 1327q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5 t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM285 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5q-128 0 -201 -88.5t-73 -210.5zM627 1327q0 45 21 78.5t53 48.5t69 15t69 -15t53 -48.5t21 -78.5q0 -67 -44.5 -104.5t-98.5 -37.5 t-98.5 37.5t-44.5 104.5z" />
192
+ <glyph unicode="&#xf7;" horiz-adv-x="1060" d="M39 545v241h915v-241h-915zM354 281q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM354 1042q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5 t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
193
+ <glyph unicode="&#xf8;" horiz-adv-x="1175" d="M35 504q0 145 62.5 264t182.5 190.5t277 71.5q91 0 180 -29l76 129h236l-136 -229q83 -72 127.5 -175t44.5 -222q0 -146 -62 -265t-183 -190.5t-281 -71.5q-81 0 -176 25l-80 -135h-235l137 233q-83 71 -126.5 176t-43.5 228zM285 504q0 -108 51 -182l280 475 q-27 6 -57 6q-128 0 -201 -88.5t-73 -210.5zM506 211q16 -4 53 -4q130 0 202.5 87t72.5 210q0 94 -52 174z" />
194
+ <glyph unicode="&#xf9;" horiz-adv-x="1232" d="M88 479v531h250v-529q0 -120 64 -195t180 -75q113 0 185.5 82.5t72.5 200.5v516h247v-1012h-223l-16 137q-80 -79 -159.5 -115t-182.5 -36q-186 0 -302 132.5t-116 362.5zM287 1423v11h295l151 -279v-12h-221z" />
195
+ <glyph unicode="&#xfa;" horiz-adv-x="1232" d="M88 479v531h250v-529q0 -120 64 -195t180 -75q113 0 185.5 82.5t72.5 200.5v516h247v-1012h-223l-16 137q-80 -79 -159.5 -115t-182.5 -36q-186 0 -302 132.5t-116 362.5zM463 1143v12l151 279h295v-11l-225 -280h-221z" />
196
+ <glyph unicode="&#xfb;" horiz-adv-x="1232" d="M88 479v531h250v-529q0 -120 64 -195t180 -75q113 0 185.5 82.5t72.5 200.5v516h247v-1012h-223l-16 137q-80 -79 -159.5 -115t-182.5 -36q-186 0 -302 132.5t-116 362.5zM236 1147v12l303 283h137l303 -283v-12h-254l-119 121l-117 -121h-253z" />
197
+ <glyph unicode="&#xfc;" horiz-adv-x="1232" d="M88 479v531h250v-529q0 -120 64 -195t180 -75q113 0 185.5 82.5t72.5 200.5v516h247v-1012h-223l-16 137q-80 -79 -159.5 -115t-182.5 -36q-186 0 -302 132.5t-116 362.5zM199 1321q0 39 16 69.5t41 46.5t55.5 23.5t61 0t55.5 -23.5t41 -46.5t16 -69.5 q0 -67 -44.5 -104.5t-98.5 -37.5t-98.5 37.5t-44.5 104.5zM709 1321q0 45 21 78.5t53 48.5t69 15t69 -15t53 -48.5t21 -78.5q0 -67 -44.5 -104.5t-98.5 -37.5t-98.5 37.5t-44.5 104.5z" />
198
+ <glyph unicode="&#xfd;" horiz-adv-x="1148" d="M-6 1010h291q178 -509 250 -721l104 278l184 443h277l-617 -1432h-274l188 438zM385 1145v12l152 279h294v-11l-225 -280h-221z" />
199
+ <glyph unicode="&#xfe;" horiz-adv-x="1277" d="M82 -422v1856h250v-562q48 75 142.5 117.5t187.5 42.5q150 0 265 -58.5t183 -179.5t68 -290q0 -253 -141.5 -391t-370.5 -138q-92 0 -185.5 39.5t-148.5 122.5v-559h-250zM354 504q0 -118 84 -202.5t203 -84.5q123 0 205 77.5t82 209.5t-82 209.5t-205 77.5 q-119 0 -203 -84.5t-84 -202.5z" />
200
+ <glyph unicode="&#xff;" horiz-adv-x="1148" d="M-6 1010h291q178 -509 250 -721l104 278l184 443h277l-617 -1432h-274l188 438zM172 1305q0 39 16 69.5t41 46.5t56 23.5t61.5 0t55.5 -23.5t41 -46.5t16 -69.5q0 -67 -45 -104.5t-98.5 -37.5t-98.5 37.5t-45 104.5zM682 1305q0 39 16 69.5t41 46.5t56 23.5t61.5 0 t55.5 -23.5t41 -46.5t16 -69.5q0 -27 -8 -50.5t-22 -40t-32 -28t-39 -17t-42.5 -5.5t-42.5 5.5t-39 17t-32 28t-22 40t-8 50.5z" />
201
+ <glyph unicode="&#x152;" horiz-adv-x="2117" d="M92 725q0 161 46.5 294.5t136 232.5t229.5 154.5t319 55.5q121 0 236 -32v4h936v-269h-686v-319h657v-256h-657v-320h686v-268h-936q-119 -33 -236 -33q-181 0 -322.5 58t-229.5 161.5t-133.5 239.5t-45.5 297zM362 719q0 -100 29.5 -191.5t86 -165.5t148 -118.5 t205.5 -44.5q139 0 228 41v950q-96 45 -234 45q-114 0 -203.5 -40t-145.5 -110.5t-85 -163.5t-29 -202z" />
202
+ <glyph unicode="&#x153;" horiz-adv-x="1943" d="M39 504q0 145 62.5 264.5t182.5 191.5t277 72q126 0 231.5 -53.5t163.5 -149.5q47 92 151 149.5t234 57.5q262 0 400 -158t110 -462h-782q12 -97 89.5 -156t205.5 -59q73 0 151 26t119 68l160 -158q-76 -80 -194 -122t-240 -42q-142 0 -249 53t-167 154 q-139 -203 -381 -203q-159 0 -280 71.5t-182.5 190t-61.5 265.5zM289 504q0 -79 29.5 -145t93.5 -109t151 -43q130 0 202.5 87t72.5 210q0 120 -77 209.5t-198 89.5q-128 0 -201 -88.5t-73 -210.5zM1067 623h545q-12 96 -82 146t-180 50q-104 0 -180 -50t-103 -146z" />
203
+ <glyph unicode="&#x178;" horiz-adv-x="1429" d="M18 1421v13h322l365 -592l380 592h326v-13l-571 -829v-592h-271v592zM307 1710q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5zM817 1710q0 39 16 69.5t41 46.5t55.5 23.5t61.5 0t56 -23.5 t41 -46.5t16 -69.5q0 -54 -29.5 -90.5t-72 -45t-84.5 0t-71.5 45t-29.5 90.5z" />
204
+ <glyph unicode="&#x2c6;" horiz-adv-x="870" d="M45 1169v13l303 282h137l303 -282v-13h-253l-119 121l-117 -121h-254z" />
205
+ <glyph unicode="&#x2dc;" horiz-adv-x="813" d="M57 1401q88 217 265 176q23 -6 56 -21.5t57 -26t50.5 -15.5t49 10t40.5 51l164 -78q-42 -113 -111.5 -156.5t-146.5 -23.5q-24 7 -57.5 25.5t-57.5 30.5t-52 17t-53 -12.5t-48 -60.5z" />
206
+ <glyph unicode="&#x2000;" horiz-adv-x="944" />
207
+ <glyph unicode="&#x2001;" horiz-adv-x="1888" />
208
+ <glyph unicode="&#x2002;" horiz-adv-x="944" />
209
+ <glyph unicode="&#x2003;" horiz-adv-x="1888" />
210
+ <glyph unicode="&#x2004;" horiz-adv-x="629" />
211
+ <glyph unicode="&#x2005;" horiz-adv-x="472" />
212
+ <glyph unicode="&#x2006;" horiz-adv-x="314" />
213
+ <glyph unicode="&#x2007;" horiz-adv-x="314" />
214
+ <glyph unicode="&#x2008;" horiz-adv-x="236" />
215
+ <glyph unicode="&#x2009;" horiz-adv-x="377" />
216
+ <glyph unicode="&#x200a;" horiz-adv-x="104" />
217
+ <glyph unicode="&#x2010;" horiz-adv-x="937" d="M72 553v229h755v-229h-755z" />
218
+ <glyph unicode="&#x2011;" horiz-adv-x="937" d="M72 553v229h755v-229h-755z" />
219
+ <glyph unicode="&#x2012;" horiz-adv-x="937" d="M72 553v229h755v-229h-755z" />
220
+ <glyph unicode="&#x2013;" horiz-adv-x="1116" d="M43 494v221h969v-221h-969z" />
221
+ <glyph unicode="&#x2014;" horiz-adv-x="1275" d="M29 494v221h1165v-221h-1165z" />
222
+ <glyph unicode="&#x2018;" horiz-adv-x="436" d="M29 975l159 461h197l-98 -461h-258z" />
223
+ <glyph unicode="&#x2019;" horiz-adv-x="413" d="M-4 973l98 461h258l-159 -461h-197z" />
224
+ <glyph unicode="&#x201a;" horiz-adv-x="512" d="M51 113q0 54 30 89.5t72.5 43t85.5 -2.5t73 -47t30 -90q0 -19 -10.5 -54t-81.5 -253h-141l38 203q-44 8 -70 36.5t-26 74.5z" />
225
+ <glyph unicode="&#x201c;" horiz-adv-x="774" d="M12 971l160 461h197l-99 -461h-258zM358 971l160 461h197l-99 -461h-258z" />
226
+ <glyph unicode="&#x201d;" horiz-adv-x="741" d="M-4 973l98 461h258l-159 -461h-197zM342 973l98 461h258l-159 -461h-197z" />
227
+ <glyph unicode="&#x201e;" horiz-adv-x="825" d="M51 113q0 54 30 89.5t72.5 43t85.5 -2.5t73 -47t30 -90q0 -19 -10.5 -54t-81.5 -253h-141l38 203q-44 8 -70 36.5t-26 74.5zM438 113q0 54 30 89.5t72.5 43t85.5 -2.5t73 -47t30 -90q0 -19 -10.5 -54t-81.5 -253h-141l39 203q-44 8 -70.5 36.5t-26.5 74.5z" />
228
+ <glyph unicode="&#x2022;" horiz-adv-x="729" d="M72 664q0 116 75.5 188t190.5 72q112 0 187 -72.5t75 -187.5t-75 -186.5t-187 -71.5q-116 0 -191 71t-75 187z" />
229
+ <glyph unicode="&#x2026;" horiz-adv-x="1486" d="M76 129q0 40 16.5 71.5t42.5 48t57 24t62.5 0t57.5 -24t42.5 -48t16.5 -71.5t-16.5 -71.5t-42.5 -48t-57 -24t-62.5 0t-57.5 24t-42.5 48t-16.5 71.5zM543 129q0 47 22 81t54.5 49.5t71 15.5t71 -15.5t54.5 -49.5t22 -81t-22 -81t-54.5 -49.5t-71 -15.5t-71 15.5 t-54.5 49.5t-22 81zM1010 129q0 47 22 81t54.5 49.5t71 15.5t71 -15.5t54.5 -49.5t22 -81t-22 -81t-54.5 -49.5t-71 -15.5t-71 15.5t-54.5 49.5t-22 81z" />
230
+ <glyph unicode="&#x202f;" horiz-adv-x="377" />
231
+ <glyph unicode="&#x2039;" horiz-adv-x="663" d="M25 651l284 453h266l-282 -453l282 -454h-266z" />
232
+ <glyph unicode="&#x203a;" horiz-adv-x="716" d="M45 197l283 454l-283 453h266l285 -453l-285 -454h-266z" />
233
+ <glyph unicode="&#x205f;" horiz-adv-x="472" />
234
+ <glyph unicode="&#x20ac;" horiz-adv-x="1157" d="M25 461v198h110v48q0 41 2 61h-112v201h145q66 225 242 359t462 134q122 0 222 -32l-86 -242q-60 16 -136 16q-154 0 -262 -64t-168 -171h467l-45 -201h-483q-2 -20 -2 -61q0 -34 2 -48h451l-41 -198h-355q56 -110 164.5 -175t271.5 -65q85 0 173 31l75 -250 q-116 -35 -248 -35q-154 0 -277 36.5t-208.5 104t-140.5 155.5t-84 198h-139z" />
235
+ <glyph unicode="&#x2122;" horiz-adv-x="1511" d="M27 1272v164h585v-164h-196v-434h-195v434h-194zM678 838v600h205l161 -199l162 199h205v-600h-199v178l15 174l-164 -219h-41l-160 219l15 -174v-178h-199z" />
236
+ <glyph unicode="&#xe000;" horiz-adv-x="1013" d="M0 0v1014h1014v-1014h-1014z" />
237
+ <glyph unicode="&#xfb01;" horiz-adv-x="1163" d="M-8 797v213h188v53q0 138 76 236.5t192 137.5t260 23t273 -92l-92 -186q-108 66 -215.5 73t-175.5 -45t-68 -147v-53h531v-1010h-250v797h-281v-797h-250v797h-188z" />
238
+ <glyph unicode="&#xfb02;" horiz-adv-x="1167" d="M-12 776v219h176v68q0 98 31.5 175t85.5 124t122 71.5t146 24.5h8q202 3 406 -117v-1341h-248v1223q-68 37 -150 37q-66 0 -108.5 -53.5t-42.5 -143.5v-68h215v-219h-215v-776h-250v776h-176z" />
239
+ <hkern u1="&#x22;" u2="&#x178;" k="-31" />
240
+ <hkern u1="&#x22;" u2="&#xeb;" k="-31" />
241
+ <hkern u1="&#x22;" u2="&#xea;" k="-31" />
242
+ <hkern u1="&#x22;" u2="&#xe9;" k="-31" />
243
+ <hkern u1="&#x22;" u2="&#xe8;" k="-31" />
244
+ <hkern u1="&#x22;" u2="&#xe6;" k="96" />
245
+ <hkern u1="&#x22;" u2="&#xe5;" k="96" />
246
+ <hkern u1="&#x22;" u2="&#xe4;" k="96" />
247
+ <hkern u1="&#x22;" u2="&#xe3;" k="96" />
248
+ <hkern u1="&#x22;" u2="&#xe2;" k="96" />
249
+ <hkern u1="&#x22;" u2="&#xe1;" k="96" />
250
+ <hkern u1="&#x22;" u2="&#xe0;" k="96" />
251
+ <hkern u1="&#x22;" u2="&#xdd;" k="-31" />
252
+ <hkern u1="&#x22;" u2="&#xc7;" k="-33" />
253
+ <hkern u1="&#x22;" u2="&#xc6;" k="96" />
254
+ <hkern u1="&#x22;" u2="&#xc5;" k="96" />
255
+ <hkern u1="&#x22;" u2="&#xc4;" k="96" />
256
+ <hkern u1="&#x22;" u2="&#xc3;" k="96" />
257
+ <hkern u1="&#x22;" u2="&#xc2;" k="96" />
258
+ <hkern u1="&#x22;" u2="&#xc1;" k="96" />
259
+ <hkern u1="&#x22;" u2="&#xc0;" k="96" />
260
+ <hkern u1="&#x22;" u2="t" k="-33" />
261
+ <hkern u1="&#x22;" u2="r" k="-31" />
262
+ <hkern u1="&#x22;" u2="p" k="-33" />
263
+ <hkern u1="&#x22;" u2="l" k="-31" />
264
+ <hkern u1="&#x22;" u2="h" k="-33" />
265
+ <hkern u1="&#x22;" u2="f" k="-33" />
266
+ <hkern u1="&#x22;" u2="e" k="-31" />
267
+ <hkern u1="&#x22;" u2="b" k="-31" />
268
+ <hkern u1="&#x22;" u2="a" k="96" />
269
+ <hkern u1="&#x22;" u2="Z" k="14" />
270
+ <hkern u1="&#x22;" u2="Y" k="-31" />
271
+ <hkern u1="&#x22;" u2="T" k="-31" />
272
+ <hkern u1="&#x22;" u2="M" k="-33" />
273
+ <hkern u1="&#x22;" u2="J" k="63" />
274
+ <hkern u1="&#x22;" u2="C" k="-33" />
275
+ <hkern u1="&#x22;" u2="B" k="-31" />
276
+ <hkern u1="&#x22;" u2="A" k="96" />
277
+ <hkern u1="&#x23;" u2="&#x39;" k="-66" />
278
+ <hkern u1="&#x23;" u2="&#x35;" k="-49" />
279
+ <hkern u1="&#x23;" u2="&#x32;" k="-31" />
280
+ <hkern u1="&#x23;" u2="&#x31;" k="-31" />
281
+ <hkern u1="&#x23;" u2="&#x30;" k="-31" />
282
+ <hkern u1="&#x24;" u2="&#x38;" k="-31" />
283
+ <hkern u1="&#x24;" u2="&#x36;" k="-33" />
284
+ <hkern u1="&#x25;" u2="&#x38;" k="-33" />
285
+ <hkern u1="&#x25;" u2="&#x36;" k="-49" />
286
+ <hkern u1="&#x25;" u2="&#x35;" k="-31" />
287
+ <hkern u1="&#x25;" u2="&#x32;" k="-33" />
288
+ <hkern u1="&#x25;" u2="&#x31;" k="66" />
289
+ <hkern u1="&#x26;" u2="&#x178;" k="303" />
290
+ <hkern u1="&#x26;" u2="&#x153;" k="96" />
291
+ <hkern u1="&#x26;" u2="&#x152;" k="49" />
292
+ <hkern u1="&#x26;" u2="&#xff;" k="270" />
293
+ <hkern u1="&#x26;" u2="&#xfd;" k="270" />
294
+ <hkern u1="&#x26;" u2="&#xfc;" k="31" />
295
+ <hkern u1="&#x26;" u2="&#xfb;" k="31" />
296
+ <hkern u1="&#x26;" u2="&#xfa;" k="31" />
297
+ <hkern u1="&#x26;" u2="&#xf9;" k="31" />
298
+ <hkern u1="&#x26;" u2="&#xf8;" k="96" />
299
+ <hkern u1="&#x26;" u2="&#xf6;" k="96" />
300
+ <hkern u1="&#x26;" u2="&#xf5;" k="96" />
301
+ <hkern u1="&#x26;" u2="&#xf4;" k="96" />
302
+ <hkern u1="&#x26;" u2="&#xf3;" k="96" />
303
+ <hkern u1="&#x26;" u2="&#xf2;" k="96" />
304
+ <hkern u1="&#x26;" u2="&#xe7;" k="66" />
305
+ <hkern u1="&#x26;" u2="&#xe6;" k="-47" />
306
+ <hkern u1="&#x26;" u2="&#xe5;" k="-47" />
307
+ <hkern u1="&#x26;" u2="&#xe4;" k="-47" />
308
+ <hkern u1="&#x26;" u2="&#xe3;" k="-47" />
309
+ <hkern u1="&#x26;" u2="&#xe2;" k="-47" />
310
+ <hkern u1="&#x26;" u2="&#xe1;" k="-47" />
311
+ <hkern u1="&#x26;" u2="&#xe0;" k="-47" />
312
+ <hkern u1="&#x26;" u2="&#xdd;" k="303" />
313
+ <hkern u1="&#x26;" u2="&#xdc;" k="209" />
314
+ <hkern u1="&#x26;" u2="&#xdb;" k="209" />
315
+ <hkern u1="&#x26;" u2="&#xda;" k="209" />
316
+ <hkern u1="&#x26;" u2="&#xd9;" k="209" />
317
+ <hkern u1="&#x26;" u2="&#xd8;" k="49" />
318
+ <hkern u1="&#x26;" u2="&#xd6;" k="49" />
319
+ <hkern u1="&#x26;" u2="&#xd5;" k="49" />
320
+ <hkern u1="&#x26;" u2="&#xd4;" k="49" />
321
+ <hkern u1="&#x26;" u2="&#xd3;" k="49" />
322
+ <hkern u1="&#x26;" u2="&#xd2;" k="49" />
323
+ <hkern u1="&#x26;" u2="&#xcb;" k="-80" />
324
+ <hkern u1="&#x26;" u2="&#xca;" k="-80" />
325
+ <hkern u1="&#x26;" u2="&#xc9;" k="-80" />
326
+ <hkern u1="&#x26;" u2="&#xc8;" k="-80" />
327
+ <hkern u1="&#x26;" u2="&#xc7;" k="66" />
328
+ <hkern u1="&#x26;" u2="z" k="16" />
329
+ <hkern u1="&#x26;" u2="y" k="270" />
330
+ <hkern u1="&#x26;" u2="x" k="-16" />
331
+ <hkern u1="&#x26;" u2="w" k="193" />
332
+ <hkern u1="&#x26;" u2="v" k="176" />
333
+ <hkern u1="&#x26;" u2="u" k="31" />
334
+ <hkern u1="&#x26;" u2="t" k="242" />
335
+ <hkern u1="&#x26;" u2="s" k="31" />
336
+ <hkern u1="&#x26;" u2="q" k="80" />
337
+ <hkern u1="&#x26;" u2="o" k="96" />
338
+ <hkern u1="&#x26;" u2="j" k="-47" />
339
+ <hkern u1="&#x26;" u2="g" k="63" />
340
+ <hkern u1="&#x26;" u2="d" k="-16" />
341
+ <hkern u1="&#x26;" u2="c" k="66" />
342
+ <hkern u1="&#x26;" u2="b" k="-16" />
343
+ <hkern u1="&#x26;" u2="a" k="-47" />
344
+ <hkern u1="&#x26;" u2="Y" k="303" />
345
+ <hkern u1="&#x26;" u2="W" k="207" />
346
+ <hkern u1="&#x26;" u2="V" k="-33" />
347
+ <hkern u1="&#x26;" u2="U" k="209" />
348
+ <hkern u1="&#x26;" u2="T" k="256" />
349
+ <hkern u1="&#x26;" u2="S" k="145" />
350
+ <hkern u1="&#x26;" u2="R" k="176" />
351
+ <hkern u1="&#x26;" u2="Q" k="47" />
352
+ <hkern u1="&#x26;" u2="P" k="209" />
353
+ <hkern u1="&#x26;" u2="O" k="49" />
354
+ <hkern u1="&#x26;" u2="F" k="-47" />
355
+ <hkern u1="&#x26;" u2="E" k="-80" />
356
+ <hkern u1="&#x26;" u2="C" k="66" />
357
+ <hkern u1="&#x26;" u2="B" k="-16" />
358
+ <hkern u1="&#x26;" u2="&#x39;" k="113" />
359
+ <hkern u1="&#x26;" u2="&#x38;" k="31" />
360
+ <hkern u1="&#x26;" u2="&#x35;" k="16" />
361
+ <hkern u1="&#x26;" u2="&#x34;" k="47" />
362
+ <hkern u1="&#x26;" u2="&#x32;" k="-33" />
363
+ <hkern u1="&#x26;" u2="&#x31;" k="190" />
364
+ <hkern u1="&#x26;" u2="&#x30;" k="47" />
365
+ <hkern u1="&#x27;" u2="t" k="-43" />
366
+ <hkern u1="&#x2c;" u2="&#xef;" k="-33" />
367
+ <hkern u1="&#x2c;" u2="&#xee;" k="-33" />
368
+ <hkern u1="&#x2c;" u2="&#xed;" k="-33" />
369
+ <hkern u1="&#x2c;" u2="&#xec;" k="-33" />
370
+ <hkern u1="&#x2c;" u2="&#xeb;" k="-47" />
371
+ <hkern u1="&#x2c;" u2="&#xea;" k="-47" />
372
+ <hkern u1="&#x2c;" u2="&#xe9;" k="-47" />
373
+ <hkern u1="&#x2c;" u2="&#xe8;" k="-47" />
374
+ <hkern u1="&#x2c;" u2="&#xe7;" k="33" />
375
+ <hkern u1="&#x2c;" u2="&#xe6;" k="-47" />
376
+ <hkern u1="&#x2c;" u2="&#xe5;" k="-47" />
377
+ <hkern u1="&#x2c;" u2="&#xe4;" k="-47" />
378
+ <hkern u1="&#x2c;" u2="&#xe3;" k="-47" />
379
+ <hkern u1="&#x2c;" u2="&#xe2;" k="-47" />
380
+ <hkern u1="&#x2c;" u2="&#xe1;" k="-47" />
381
+ <hkern u1="&#x2c;" u2="&#xe0;" k="-47" />
382
+ <hkern u1="&#x2c;" u2="z" k="-49" />
383
+ <hkern u1="&#x2c;" u2="m" k="-31" />
384
+ <hkern u1="&#x2c;" u2="l" k="-33" />
385
+ <hkern u1="&#x2c;" u2="k" k="-47" />
386
+ <hkern u1="&#x2c;" u2="j" k="-80" />
387
+ <hkern u1="&#x2c;" u2="i" k="-33" />
388
+ <hkern u1="&#x2c;" u2="h" k="-16" />
389
+ <hkern u1="&#x2c;" u2="e" k="-47" />
390
+ <hkern u1="&#x2c;" u2="d" k="-47" />
391
+ <hkern u1="&#x2c;" u2="c" k="33" />
392
+ <hkern u1="&#x2c;" u2="a" k="-47" />
393
+ <hkern u1="&#x2c;" u2="Z" k="-63" />
394
+ <hkern u1="&#x2c;" u2="V" k="-31" />
395
+ <hkern u1="&#x2c;" u2="H" k="-31" />
396
+ <hkern u1="&#x2e;" u2="&#x178;" k="240" />
397
+ <hkern u1="&#x2e;" u2="&#x153;" k="63" />
398
+ <hkern u1="&#x2e;" u2="&#xff;" k="225" />
399
+ <hkern u1="&#x2e;" u2="&#xfd;" k="225" />
400
+ <hkern u1="&#x2e;" u2="&#xf8;" k="63" />
401
+ <hkern u1="&#x2e;" u2="&#xf6;" k="63" />
402
+ <hkern u1="&#x2e;" u2="&#xf5;" k="63" />
403
+ <hkern u1="&#x2e;" u2="&#xf4;" k="63" />
404
+ <hkern u1="&#x2e;" u2="&#xf3;" k="63" />
405
+ <hkern u1="&#x2e;" u2="&#xf2;" k="63" />
406
+ <hkern u1="&#x2e;" u2="&#xeb;" k="-33" />
407
+ <hkern u1="&#x2e;" u2="&#xea;" k="-33" />
408
+ <hkern u1="&#x2e;" u2="&#xe9;" k="-33" />
409
+ <hkern u1="&#x2e;" u2="&#xe8;" k="-33" />
410
+ <hkern u1="&#x2e;" u2="&#xe7;" k="31" />
411
+ <hkern u1="&#x2e;" u2="&#xe6;" k="-49" />
412
+ <hkern u1="&#x2e;" u2="&#xe5;" k="-49" />
413
+ <hkern u1="&#x2e;" u2="&#xe4;" k="-49" />
414
+ <hkern u1="&#x2e;" u2="&#xe3;" k="-49" />
415
+ <hkern u1="&#x2e;" u2="&#xe2;" k="-49" />
416
+ <hkern u1="&#x2e;" u2="&#xe1;" k="-49" />
417
+ <hkern u1="&#x2e;" u2="&#xe0;" k="-49" />
418
+ <hkern u1="&#x2e;" u2="&#xdd;" k="240" />
419
+ <hkern u1="&#x2e;" u2="&#xc7;" k="47" />
420
+ <hkern u1="&#x2e;" u2="z" k="-49" />
421
+ <hkern u1="&#x2e;" u2="y" k="225" />
422
+ <hkern u1="&#x2e;" u2="x" k="-33" />
423
+ <hkern u1="&#x2e;" u2="w" k="66" />
424
+ <hkern u1="&#x2e;" u2="v" k="176" />
425
+ <hkern u1="&#x2e;" u2="t" k="160" />
426
+ <hkern u1="&#x2e;" u2="q" k="47" />
427
+ <hkern u1="&#x2e;" u2="p" k="-63" />
428
+ <hkern u1="&#x2e;" u2="o" k="63" />
429
+ <hkern u1="&#x2e;" u2="l" k="-66" />
430
+ <hkern u1="&#x2e;" u2="k" k="-47" />
431
+ <hkern u1="&#x2e;" u2="j" k="-63" />
432
+ <hkern u1="&#x2e;" u2="h" k="-47" />
433
+ <hkern u1="&#x2e;" u2="g" k="33" />
434
+ <hkern u1="&#x2e;" u2="e" k="-33" />
435
+ <hkern u1="&#x2e;" u2="d" k="-49" />
436
+ <hkern u1="&#x2e;" u2="c" k="31" />
437
+ <hkern u1="&#x2e;" u2="b" k="-47" />
438
+ <hkern u1="&#x2e;" u2="a" k="-49" />
439
+ <hkern u1="&#x2e;" u2="Z" k="-80" />
440
+ <hkern u1="&#x2e;" u2="Y" k="240" />
441
+ <hkern u1="&#x2e;" u2="V" k="-47" />
442
+ <hkern u1="&#x2e;" u2="T" k="143" />
443
+ <hkern u1="&#x2e;" u2="C" k="47" />
444
+ <hkern u1="&#x2e;" u2="B" k="-47" />
445
+ <hkern u1="&#x2f;" u2="&#x178;" k="-96" />
446
+ <hkern u1="&#x2f;" u2="&#x153;" k="16" />
447
+ <hkern u1="&#x2f;" u2="&#xff;" k="-113" />
448
+ <hkern u1="&#x2f;" u2="&#xfd;" k="-113" />
449
+ <hkern u1="&#x2f;" u2="&#xfc;" k="-80" />
450
+ <hkern u1="&#x2f;" u2="&#xfb;" k="-80" />
451
+ <hkern u1="&#x2f;" u2="&#xfa;" k="-80" />
452
+ <hkern u1="&#x2f;" u2="&#xf9;" k="-80" />
453
+ <hkern u1="&#x2f;" u2="&#xf8;" k="16" />
454
+ <hkern u1="&#x2f;" u2="&#xf6;" k="16" />
455
+ <hkern u1="&#x2f;" u2="&#xf5;" k="16" />
456
+ <hkern u1="&#x2f;" u2="&#xf4;" k="16" />
457
+ <hkern u1="&#x2f;" u2="&#xf3;" k="16" />
458
+ <hkern u1="&#x2f;" u2="&#xf2;" k="16" />
459
+ <hkern u1="&#x2f;" u2="&#xef;" k="-66" />
460
+ <hkern u1="&#x2f;" u2="&#xee;" k="-66" />
461
+ <hkern u1="&#x2f;" u2="&#xed;" k="-66" />
462
+ <hkern u1="&#x2f;" u2="&#xec;" k="-66" />
463
+ <hkern u1="&#x2f;" u2="&#xeb;" k="-63" />
464
+ <hkern u1="&#x2f;" u2="&#xea;" k="-63" />
465
+ <hkern u1="&#x2f;" u2="&#xe9;" k="-63" />
466
+ <hkern u1="&#x2f;" u2="&#xe8;" k="-63" />
467
+ <hkern u1="&#x2f;" u2="&#xe7;" k="16" />
468
+ <hkern u1="&#x2f;" u2="&#xe6;" k="-113" />
469
+ <hkern u1="&#x2f;" u2="&#xe5;" k="-113" />
470
+ <hkern u1="&#x2f;" u2="&#xe4;" k="-113" />
471
+ <hkern u1="&#x2f;" u2="&#xe3;" k="-113" />
472
+ <hkern u1="&#x2f;" u2="&#xe2;" k="-113" />
473
+ <hkern u1="&#x2f;" u2="&#xe1;" k="-113" />
474
+ <hkern u1="&#x2f;" u2="&#xe0;" k="-113" />
475
+ <hkern u1="&#x2f;" u2="&#xdd;" k="-96" />
476
+ <hkern u1="&#x2f;" u2="&#xdc;" k="-96" />
477
+ <hkern u1="&#x2f;" u2="&#xdb;" k="-96" />
478
+ <hkern u1="&#x2f;" u2="&#xda;" k="-96" />
479
+ <hkern u1="&#x2f;" u2="&#xd9;" k="-96" />
480
+ <hkern u1="&#x2f;" u2="&#xc6;" k="129" />
481
+ <hkern u1="&#x2f;" u2="&#xc5;" k="129" />
482
+ <hkern u1="&#x2f;" u2="&#xc4;" k="129" />
483
+ <hkern u1="&#x2f;" u2="&#xc3;" k="129" />
484
+ <hkern u1="&#x2f;" u2="&#xc2;" k="129" />
485
+ <hkern u1="&#x2f;" u2="&#xc1;" k="129" />
486
+ <hkern u1="&#x2f;" u2="&#xc0;" k="129" />
487
+ <hkern u1="&#x2f;" u2="z" k="-80" />
488
+ <hkern u1="&#x2f;" u2="y" k="-113" />
489
+ <hkern u1="&#x2f;" u2="x" k="-63" />
490
+ <hkern u1="&#x2f;" u2="w" k="-113" />
491
+ <hkern u1="&#x2f;" u2="v" k="-80" />
492
+ <hkern u1="&#x2f;" u2="u" k="-80" />
493
+ <hkern u1="&#x2f;" u2="t" k="-113" />
494
+ <hkern u1="&#x2f;" u2="q" k="33" />
495
+ <hkern u1="&#x2f;" u2="p" k="-63" />
496
+ <hkern u1="&#x2f;" u2="o" k="16" />
497
+ <hkern u1="&#x2f;" u2="m" k="-49" />
498
+ <hkern u1="&#x2f;" u2="l" k="-66" />
499
+ <hkern u1="&#x2f;" u2="k" k="-80" />
500
+ <hkern u1="&#x2f;" u2="i" k="-66" />
501
+ <hkern u1="&#x2f;" u2="h" k="-63" />
502
+ <hkern u1="&#x2f;" u2="g" k="-16" />
503
+ <hkern u1="&#x2f;" u2="f" k="-47" />
504
+ <hkern u1="&#x2f;" u2="e" k="-63" />
505
+ <hkern u1="&#x2f;" u2="d" k="-113" />
506
+ <hkern u1="&#x2f;" u2="c" k="16" />
507
+ <hkern u1="&#x2f;" u2="b" k="-80" />
508
+ <hkern u1="&#x2f;" u2="a" k="-113" />
509
+ <hkern u1="&#x2f;" u2="Z" k="-47" />
510
+ <hkern u1="&#x2f;" u2="Y" k="-96" />
511
+ <hkern u1="&#x2f;" u2="X" k="-80" />
512
+ <hkern u1="&#x2f;" u2="W" k="-80" />
513
+ <hkern u1="&#x2f;" u2="V" k="-96" />
514
+ <hkern u1="&#x2f;" u2="U" k="-96" />
515
+ <hkern u1="&#x2f;" u2="T" k="-80" />
516
+ <hkern u1="&#x2f;" u2="M" k="-96" />
517
+ <hkern u1="&#x2f;" u2="B" k="-96" />
518
+ <hkern u1="&#x2f;" u2="A" k="129" />
519
+ <hkern u1="&#x30;" u2="&#x37;" k="106" />
520
+ <hkern u1="&#x30;" u2="&#x36;" k="-43" />
521
+ <hkern u1="&#x30;" u2="&#x35;" k="-20" />
522
+ <hkern u1="&#x30;" u2="&#x33;" k="-20" />
523
+ <hkern u1="&#x30;" u2="&#x32;" k="63" />
524
+ <hkern u1="&#x31;" u2="&#x39;" k="-43" />
525
+ <hkern u1="&#x31;" u2="&#x38;" k="-43" />
526
+ <hkern u1="&#x31;" u2="&#x36;" k="-63" />
527
+ <hkern u1="&#x31;" u2="&#x35;" k="-43" />
528
+ <hkern u1="&#x31;" u2="&#x34;" k="-23" />
529
+ <hkern u1="&#x31;" u2="&#x33;" k="-43" />
530
+ <hkern u1="&#x31;" u2="&#x32;" k="-20" />
531
+ <hkern u1="&#x32;" u2="&#x37;" k="63" />
532
+ <hkern u1="&#x32;" u2="&#x35;" k="20" />
533
+ <hkern u1="&#x32;" u2="&#x34;" k="63" />
534
+ <hkern u1="&#x33;" u2="&#x39;" k="43" />
535
+ <hkern u1="&#x33;" u2="&#x37;" k="86" />
536
+ <hkern u1="&#x34;" u2="&#x38;" k="-43" />
537
+ <hkern u1="&#x34;" u2="&#x37;" k="106" />
538
+ <hkern u1="&#x35;" u2="&#x39;" k="63" />
539
+ <hkern u1="&#x35;" u2="&#x37;" k="106" />
540
+ <hkern u1="&#x36;" u2="&#x38;" k="-20" />
541
+ <hkern u1="&#x36;" u2="&#x37;" k="106" />
542
+ <hkern u1="&#x37;" u2="&#x39;" k="20" />
543
+ <hkern u1="&#x37;" u2="&#x38;" k="66" />
544
+ <hkern u1="&#x3a;" u2="&#xff;" k="96" />
545
+ <hkern u1="&#x3a;" u2="&#xfd;" k="96" />
546
+ <hkern u1="&#x3a;" u2="&#xfc;" k="-49" />
547
+ <hkern u1="&#x3a;" u2="&#xfb;" k="-49" />
548
+ <hkern u1="&#x3a;" u2="&#xfa;" k="-49" />
549
+ <hkern u1="&#x3a;" u2="&#xf9;" k="-49" />
550
+ <hkern u1="&#x3a;" u2="&#xdc;" k="-63" />
551
+ <hkern u1="&#x3a;" u2="&#xdb;" k="-63" />
552
+ <hkern u1="&#x3a;" u2="&#xda;" k="-63" />
553
+ <hkern u1="&#x3a;" u2="&#xd9;" k="-63" />
554
+ <hkern u1="&#x3a;" u2="y" k="96" />
555
+ <hkern u1="&#x3a;" u2="v" k="47" />
556
+ <hkern u1="&#x3a;" u2="u" k="-49" />
557
+ <hkern u1="&#x3a;" u2="s" k="-63" />
558
+ <hkern u1="&#x3a;" u2="g" k="-33" />
559
+ <hkern u1="&#x3a;" u2="Z" k="-63" />
560
+ <hkern u1="&#x3a;" u2="U" k="-63" />
561
+ <hkern u1="&#x3b;" u2="&#xff;" k="63" />
562
+ <hkern u1="&#x3b;" u2="&#xfd;" k="63" />
563
+ <hkern u1="&#x3b;" u2="&#xcb;" k="-63" />
564
+ <hkern u1="&#x3b;" u2="&#xca;" k="-63" />
565
+ <hkern u1="&#x3b;" u2="&#xc9;" k="-63" />
566
+ <hkern u1="&#x3b;" u2="&#xc8;" k="-63" />
567
+ <hkern u1="&#x3b;" u2="y" k="63" />
568
+ <hkern u1="&#x3b;" u2="g" k="-47" />
569
+ <hkern u1="&#x3b;" u2="V" k="-96" />
570
+ <hkern u1="&#x3b;" u2="T" k="-80" />
571
+ <hkern u1="&#x3b;" u2="Q" k="-63" />
572
+ <hkern u1="&#x3b;" u2="E" k="-63" />
573
+ <hkern u1="&#x3f;" u2="&#xe6;" k="96" />
574
+ <hkern u1="&#x3f;" u2="&#xe5;" k="96" />
575
+ <hkern u1="&#x3f;" u2="&#xe4;" k="96" />
576
+ <hkern u1="&#x3f;" u2="&#xe3;" k="96" />
577
+ <hkern u1="&#x3f;" u2="&#xe2;" k="96" />
578
+ <hkern u1="&#x3f;" u2="&#xe1;" k="96" />
579
+ <hkern u1="&#x3f;" u2="&#xe0;" k="96" />
580
+ <hkern u1="&#x3f;" u2="a" k="96" />
581
+ <hkern u1="&#x3f;" u2="J" k="80" />
582
+ <hkern u1="&#x3f;" u2="B" k="-33" />
583
+ <hkern u1="&#x40;" u2="&#xff;" k="14" />
584
+ <hkern u1="&#x40;" u2="&#xfd;" k="14" />
585
+ <hkern u1="&#x40;" u2="&#xf1;" k="-31" />
586
+ <hkern u1="&#x40;" u2="&#xe6;" k="63" />
587
+ <hkern u1="&#x40;" u2="&#xe5;" k="63" />
588
+ <hkern u1="&#x40;" u2="&#xe4;" k="63" />
589
+ <hkern u1="&#x40;" u2="&#xe3;" k="63" />
590
+ <hkern u1="&#x40;" u2="&#xe2;" k="63" />
591
+ <hkern u1="&#x40;" u2="&#xe1;" k="63" />
592
+ <hkern u1="&#x40;" u2="&#xe0;" k="63" />
593
+ <hkern u1="&#x40;" u2="&#xdc;" k="47" />
594
+ <hkern u1="&#x40;" u2="&#xdb;" k="47" />
595
+ <hkern u1="&#x40;" u2="&#xda;" k="47" />
596
+ <hkern u1="&#x40;" u2="&#xd9;" k="47" />
597
+ <hkern u1="&#x40;" u2="y" k="14" />
598
+ <hkern u1="&#x40;" u2="r" k="-80" />
599
+ <hkern u1="&#x40;" u2="p" k="-47" />
600
+ <hkern u1="&#x40;" u2="n" k="-31" />
601
+ <hkern u1="&#x40;" u2="j" k="96" />
602
+ <hkern u1="&#x40;" u2="g" k="80" />
603
+ <hkern u1="&#x40;" u2="a" k="63" />
604
+ <hkern u1="&#x40;" u2="V" k="63" />
605
+ <hkern u1="&#x40;" u2="U" k="47" />
606
+ <hkern u1="&#x40;" u2="T" k="47" />
607
+ <hkern u1="&#x40;" u2="R" k="16" />
608
+ <hkern u1="&#x40;" u2="P" k="63" />
609
+ <hkern u1="&#x40;" u2="F" k="80" />
610
+ <hkern u1="A" u2="x" k="-66" />
611
+ <hkern u1="A" u2="w" k="106" />
612
+ <hkern u1="A" u2="v" k="106" />
613
+ <hkern u1="A" u2="t" k="84" />
614
+ <hkern u1="A" u2="q" k="41" />
615
+ <hkern u1="A" u2="g" k="-43" />
616
+ <hkern u1="A" u2="f" k="41" />
617
+ <hkern u1="A" u2="d" k="43" />
618
+ <hkern u1="A" u2="W" k="190" />
619
+ <hkern u1="A" u2="V" k="213" />
620
+ <hkern u1="A" u2="T" k="213" />
621
+ <hkern u1="A" u2="R" k="-20" />
622
+ <hkern u1="A" u2="Q" k="43" />
623
+ <hkern u1="A" u2="J" k="86" />
624
+ <hkern u1="A" u2="G" k="43" />
625
+ <hkern u1="B" u2="&#x178;" k="86" />
626
+ <hkern u1="B" u2="&#x152;" k="-23" />
627
+ <hkern u1="B" u2="&#xde;" k="-41" />
628
+ <hkern u1="B" u2="&#xdd;" k="86" />
629
+ <hkern u1="B" u2="&#xd8;" k="-23" />
630
+ <hkern u1="B" u2="&#xd6;" k="-23" />
631
+ <hkern u1="B" u2="&#xd5;" k="-23" />
632
+ <hkern u1="B" u2="&#xd4;" k="-23" />
633
+ <hkern u1="B" u2="&#xd3;" k="-23" />
634
+ <hkern u1="B" u2="&#xd2;" k="-23" />
635
+ <hkern u1="B" u2="v" k="20" />
636
+ <hkern u1="B" u2="h" k="-20" />
637
+ <hkern u1="B" u2="g" k="-20" />
638
+ <hkern u1="B" u2="Y" k="86" />
639
+ <hkern u1="B" u2="W" k="86" />
640
+ <hkern u1="B" u2="V" k="63" />
641
+ <hkern u1="B" u2="S" k="-43" />
642
+ <hkern u1="B" u2="Q" k="-43" />
643
+ <hkern u1="B" u2="O" k="-23" />
644
+ <hkern u1="B" u2="J" k="-43" />
645
+ <hkern u1="B" u2="G" k="-23" />
646
+ <hkern u1="B" u2="D" k="-41" />
647
+ <hkern u1="C" u2="w" k="-43" />
648
+ <hkern u1="C" u2="t" k="-43" />
649
+ <hkern u1="C" u2="m" k="-43" />
650
+ <hkern u1="C" u2="h" k="-43" />
651
+ <hkern u1="C" u2="g" k="-20" />
652
+ <hkern u1="C" u2="T" k="-43" />
653
+ <hkern u1="C" u2="R" k="-63" />
654
+ <hkern u1="C" u2="P" k="-43" />
655
+ <hkern u1="C" u2="M" k="-43" />
656
+ <hkern u1="C" u2="K" k="-66" />
657
+ <hkern u1="C" u2="H" k="-63" />
658
+ <hkern u1="D" u2="w" k="-43" />
659
+ <hkern u1="D" u2="m" k="-43" />
660
+ <hkern u1="D" u2="j" k="-43" />
661
+ <hkern u1="D" u2="h" k="-20" />
662
+ <hkern u1="D" u2="X" k="106" />
663
+ <hkern u1="D" u2="W" k="63" />
664
+ <hkern u1="D" u2="V" k="20" />
665
+ <hkern u1="D" u2="T" k="63" />
666
+ <hkern u1="D" u2="Q" k="-43" />
667
+ <hkern u1="D" u2="F" k="-43" />
668
+ <hkern u1="E" u2="x" k="-43" />
669
+ <hkern u1="E" u2="j" k="-84" />
670
+ <hkern u1="E" u2="W" k="-20" />
671
+ <hkern u1="E" u2="V" k="-23" />
672
+ <hkern u1="E" u2="T" k="-84" />
673
+ <hkern u1="E" u2="J" k="-23" />
674
+ <hkern u1="F" u2="&#x178;" k="-63" />
675
+ <hkern u1="F" u2="&#x152;" k="-43" />
676
+ <hkern u1="F" u2="&#xdd;" k="-63" />
677
+ <hkern u1="F" u2="&#xd8;" k="-43" />
678
+ <hkern u1="F" u2="&#xd6;" k="-43" />
679
+ <hkern u1="F" u2="&#xd5;" k="-43" />
680
+ <hkern u1="F" u2="&#xd4;" k="-43" />
681
+ <hkern u1="F" u2="&#xd3;" k="-43" />
682
+ <hkern u1="F" u2="&#xd2;" k="-43" />
683
+ <hkern u1="F" u2="&#xcf;" k="-20" />
684
+ <hkern u1="F" u2="&#xce;" k="-20" />
685
+ <hkern u1="F" u2="&#xcd;" k="-20" />
686
+ <hkern u1="F" u2="&#xcc;" k="-20" />
687
+ <hkern u1="F" u2="f" k="-43" />
688
+ <hkern u1="F" u2="Y" k="-63" />
689
+ <hkern u1="F" u2="V" k="-63" />
690
+ <hkern u1="F" u2="T" k="-63" />
691
+ <hkern u1="F" u2="O" k="-43" />
692
+ <hkern u1="F" u2="I" k="-20" />
693
+ <hkern u1="F" u2="G" k="-43" />
694
+ <hkern u1="G" u2="&#x178;" k="86" />
695
+ <hkern u1="G" u2="&#xff;" k="20" />
696
+ <hkern u1="G" u2="&#xfd;" k="20" />
697
+ <hkern u1="G" u2="&#xeb;" k="-23" />
698
+ <hkern u1="G" u2="&#xea;" k="-23" />
699
+ <hkern u1="G" u2="&#xe9;" k="-23" />
700
+ <hkern u1="G" u2="&#xe8;" k="-23" />
701
+ <hkern u1="G" u2="&#xdd;" k="86" />
702
+ <hkern u1="G" u2="y" k="20" />
703
+ <hkern u1="G" u2="e" k="-23" />
704
+ <hkern u1="G" u2="Y" k="86" />
705
+ <hkern u1="G" u2="W" k="84" />
706
+ <hkern u1="G" u2="V" k="63" />
707
+ <hkern u1="G" u2="T" k="86" />
708
+ <hkern u1="G" u2="R" k="20" />
709
+ <hkern u1="I" u2="W" k="-43" />
710
+ <hkern u1="I" u2="T" k="-66" />
711
+ <hkern u1="I" u2="J" k="-20" />
712
+ <hkern u1="J" u2="&#x153;" k="20" />
713
+ <hkern u1="J" u2="&#xfc;" k="23" />
714
+ <hkern u1="J" u2="&#xfb;" k="23" />
715
+ <hkern u1="J" u2="&#xfa;" k="23" />
716
+ <hkern u1="J" u2="&#xf9;" k="23" />
717
+ <hkern u1="J" u2="&#xf8;" k="20" />
718
+ <hkern u1="J" u2="&#xf6;" k="20" />
719
+ <hkern u1="J" u2="&#xf5;" k="20" />
720
+ <hkern u1="J" u2="&#xf4;" k="20" />
721
+ <hkern u1="J" u2="&#xf3;" k="20" />
722
+ <hkern u1="J" u2="&#xf2;" k="20" />
723
+ <hkern u1="J" u2="&#xf1;" k="20" />
724
+ <hkern u1="J" u2="&#xeb;" k="20" />
725
+ <hkern u1="J" u2="&#xea;" k="20" />
726
+ <hkern u1="J" u2="&#xe9;" k="20" />
727
+ <hkern u1="J" u2="&#xe8;" k="20" />
728
+ <hkern u1="J" u2="&#xe6;" k="43" />
729
+ <hkern u1="J" u2="&#xe5;" k="43" />
730
+ <hkern u1="J" u2="&#xe4;" k="43" />
731
+ <hkern u1="J" u2="&#xe3;" k="43" />
732
+ <hkern u1="J" u2="&#xe2;" k="43" />
733
+ <hkern u1="J" u2="&#xe1;" k="43" />
734
+ <hkern u1="J" u2="&#xe0;" k="43" />
735
+ <hkern u1="J" u2="u" k="23" />
736
+ <hkern u1="J" u2="o" k="20" />
737
+ <hkern u1="J" u2="n" k="20" />
738
+ <hkern u1="J" u2="j" k="41" />
739
+ <hkern u1="J" u2="g" k="41" />
740
+ <hkern u1="J" u2="e" k="20" />
741
+ <hkern u1="J" u2="a" k="43" />
742
+ <hkern u1="J" u2="X" k="84" />
743
+ <hkern u1="K" u2="&#x153;" k="86" />
744
+ <hkern u1="K" u2="&#x152;" k="127" />
745
+ <hkern u1="K" u2="&#xff;" k="86" />
746
+ <hkern u1="K" u2="&#xfd;" k="86" />
747
+ <hkern u1="K" u2="&#xfc;" k="66" />
748
+ <hkern u1="K" u2="&#xfb;" k="66" />
749
+ <hkern u1="K" u2="&#xfa;" k="66" />
750
+ <hkern u1="K" u2="&#xf9;" k="66" />
751
+ <hkern u1="K" u2="&#xf8;" k="86" />
752
+ <hkern u1="K" u2="&#xf6;" k="86" />
753
+ <hkern u1="K" u2="&#xf5;" k="86" />
754
+ <hkern u1="K" u2="&#xf4;" k="86" />
755
+ <hkern u1="K" u2="&#xf3;" k="86" />
756
+ <hkern u1="K" u2="&#xf2;" k="86" />
757
+ <hkern u1="K" u2="&#xf1;" k="43" />
758
+ <hkern u1="K" u2="&#xeb;" k="63" />
759
+ <hkern u1="K" u2="&#xea;" k="63" />
760
+ <hkern u1="K" u2="&#xe9;" k="63" />
761
+ <hkern u1="K" u2="&#xe8;" k="63" />
762
+ <hkern u1="K" u2="&#xe7;" k="63" />
763
+ <hkern u1="K" u2="&#xe6;" k="41" />
764
+ <hkern u1="K" u2="&#xe5;" k="41" />
765
+ <hkern u1="K" u2="&#xe4;" k="41" />
766
+ <hkern u1="K" u2="&#xe3;" k="41" />
767
+ <hkern u1="K" u2="&#xe2;" k="41" />
768
+ <hkern u1="K" u2="&#xe1;" k="41" />
769
+ <hkern u1="K" u2="&#xe0;" k="41" />
770
+ <hkern u1="K" u2="&#xdc;" k="66" />
771
+ <hkern u1="K" u2="&#xdb;" k="66" />
772
+ <hkern u1="K" u2="&#xda;" k="66" />
773
+ <hkern u1="K" u2="&#xd9;" k="66" />
774
+ <hkern u1="K" u2="&#xd8;" k="127" />
775
+ <hkern u1="K" u2="&#xd6;" k="127" />
776
+ <hkern u1="K" u2="&#xd5;" k="127" />
777
+ <hkern u1="K" u2="&#xd4;" k="127" />
778
+ <hkern u1="K" u2="&#xd3;" k="127" />
779
+ <hkern u1="K" u2="&#xd2;" k="127" />
780
+ <hkern u1="K" u2="z" k="43" />
781
+ <hkern u1="K" u2="y" k="86" />
782
+ <hkern u1="K" u2="w" k="106" />
783
+ <hkern u1="K" u2="v" k="106" />
784
+ <hkern u1="K" u2="u" k="66" />
785
+ <hkern u1="K" u2="t" k="63" />
786
+ <hkern u1="K" u2="s" k="43" />
787
+ <hkern u1="K" u2="q" k="63" />
788
+ <hkern u1="K" u2="o" k="86" />
789
+ <hkern u1="K" u2="n" k="43" />
790
+ <hkern u1="K" u2="m" k="43" />
791
+ <hkern u1="K" u2="g" k="-41" />
792
+ <hkern u1="K" u2="e" k="63" />
793
+ <hkern u1="K" u2="d" k="63" />
794
+ <hkern u1="K" u2="c" k="63" />
795
+ <hkern u1="K" u2="a" k="41" />
796
+ <hkern u1="K" u2="U" k="66" />
797
+ <hkern u1="K" u2="R" k="23" />
798
+ <hkern u1="K" u2="Q" k="86" />
799
+ <hkern u1="K" u2="O" k="127" />
800
+ <hkern u1="L" u2="g" k="-43" />
801
+ <hkern u1="L" u2="W" k="213" />
802
+ <hkern u1="L" u2="V" k="213" />
803
+ <hkern u1="L" u2="T" k="213" />
804
+ <hkern u1="M" u2="&#xe6;" k="-20" />
805
+ <hkern u1="M" u2="&#xe5;" k="-20" />
806
+ <hkern u1="M" u2="&#xe4;" k="-20" />
807
+ <hkern u1="M" u2="&#xe3;" k="-20" />
808
+ <hkern u1="M" u2="&#xe2;" k="-20" />
809
+ <hkern u1="M" u2="&#xe1;" k="-20" />
810
+ <hkern u1="M" u2="&#xe0;" k="-20" />
811
+ <hkern u1="M" u2="a" k="-20" />
812
+ <hkern u1="M" u2="W" k="43" />
813
+ <hkern u1="O" u2="b" k="-20" />
814
+ <hkern u1="O" u2="X" k="86" />
815
+ <hkern u1="O" u2="W" k="63" />
816
+ <hkern u1="O" u2="V" k="66" />
817
+ <hkern u1="O" u2="T" k="84" />
818
+ <hkern u1="O" u2="Q" k="-43" />
819
+ <hkern u1="P" u2="&#x178;" k="20" />
820
+ <hkern u1="P" u2="&#x153;" k="43" />
821
+ <hkern u1="P" u2="&#xff;" k="-43" />
822
+ <hkern u1="P" u2="&#xfd;" k="-43" />
823
+ <hkern u1="P" u2="&#xf8;" k="43" />
824
+ <hkern u1="P" u2="&#xf6;" k="43" />
825
+ <hkern u1="P" u2="&#xf5;" k="43" />
826
+ <hkern u1="P" u2="&#xf4;" k="43" />
827
+ <hkern u1="P" u2="&#xf3;" k="43" />
828
+ <hkern u1="P" u2="&#xf2;" k="43" />
829
+ <hkern u1="P" u2="&#xeb;" k="43" />
830
+ <hkern u1="P" u2="&#xea;" k="43" />
831
+ <hkern u1="P" u2="&#xe9;" k="43" />
832
+ <hkern u1="P" u2="&#xe8;" k="43" />
833
+ <hkern u1="P" u2="&#xe7;" k="63" />
834
+ <hkern u1="P" u2="&#xe6;" k="43" />
835
+ <hkern u1="P" u2="&#xe5;" k="43" />
836
+ <hkern u1="P" u2="&#xe4;" k="43" />
837
+ <hkern u1="P" u2="&#xe3;" k="43" />
838
+ <hkern u1="P" u2="&#xe2;" k="43" />
839
+ <hkern u1="P" u2="&#xe1;" k="43" />
840
+ <hkern u1="P" u2="&#xe0;" k="43" />
841
+ <hkern u1="P" u2="&#xdd;" k="20" />
842
+ <hkern u1="P" u2="y" k="-43" />
843
+ <hkern u1="P" u2="w" k="-43" />
844
+ <hkern u1="P" u2="v" k="-43" />
845
+ <hkern u1="P" u2="t" k="-23" />
846
+ <hkern u1="P" u2="r" k="43" />
847
+ <hkern u1="P" u2="q" k="66" />
848
+ <hkern u1="P" u2="o" k="43" />
849
+ <hkern u1="P" u2="g" k="41" />
850
+ <hkern u1="P" u2="e" k="43" />
851
+ <hkern u1="P" u2="d" k="63" />
852
+ <hkern u1="P" u2="c" k="63" />
853
+ <hkern u1="P" u2="a" k="43" />
854
+ <hkern u1="P" u2="Y" k="20" />
855
+ <hkern u1="P" u2="X" k="86" />
856
+ <hkern u1="P" u2="W" k="23" />
857
+ <hkern u1="Q" u2="&#x178;" k="84" />
858
+ <hkern u1="Q" u2="&#xdd;" k="84" />
859
+ <hkern u1="Q" u2="Y" k="84" />
860
+ <hkern u1="Q" u2="W" k="43" />
861
+ <hkern u1="Q" u2="V" k="63" />
862
+ <hkern u1="Q" u2="T" k="84" />
863
+ <hkern u1="R" u2="&#xff;" k="-84" />
864
+ <hkern u1="R" u2="&#xfd;" k="-84" />
865
+ <hkern u1="R" u2="&#xdc;" k="-43" />
866
+ <hkern u1="R" u2="&#xdb;" k="-43" />
867
+ <hkern u1="R" u2="&#xda;" k="-43" />
868
+ <hkern u1="R" u2="&#xd9;" k="-43" />
869
+ <hkern u1="R" u2="y" k="-84" />
870
+ <hkern u1="R" u2="w" k="-43" />
871
+ <hkern u1="R" u2="r" k="-20" />
872
+ <hkern u1="R" u2="j" k="-86" />
873
+ <hkern u1="R" u2="h" k="-23" />
874
+ <hkern u1="R" u2="Z" k="-20" />
875
+ <hkern u1="R" u2="U" k="-43" />
876
+ <hkern u1="R" u2="T" k="-63" />
877
+ <hkern u1="R" u2="S" k="-63" />
878
+ <hkern u1="S" u2="w" k="20" />
879
+ <hkern u1="S" u2="v" k="23" />
880
+ <hkern u1="S" u2="t" k="-23" />
881
+ <hkern u1="S" u2="r" k="-41" />
882
+ <hkern u1="S" u2="q" k="-41" />
883
+ <hkern u1="S" u2="p" k="-20" />
884
+ <hkern u1="S" u2="m" k="-20" />
885
+ <hkern u1="S" u2="k" k="-23" />
886
+ <hkern u1="S" u2="h" k="-20" />
887
+ <hkern u1="S" u2="g" k="-63" />
888
+ <hkern u1="T" u2="&#x178;" k="-86" />
889
+ <hkern u1="T" u2="&#x153;" k="276" />
890
+ <hkern u1="T" u2="&#xff;" k="190" />
891
+ <hkern u1="T" u2="&#xfd;" k="190" />
892
+ <hkern u1="T" u2="&#xfc;" k="233" />
893
+ <hkern u1="T" u2="&#xfb;" k="233" />
894
+ <hkern u1="T" u2="&#xfa;" k="233" />
895
+ <hkern u1="T" u2="&#xf9;" k="233" />
896
+ <hkern u1="T" u2="&#xf8;" k="276" />
897
+ <hkern u1="T" u2="&#xf6;" k="276" />
898
+ <hkern u1="T" u2="&#xf5;" k="276" />
899
+ <hkern u1="T" u2="&#xf4;" k="276" />
900
+ <hkern u1="T" u2="&#xf3;" k="276" />
901
+ <hkern u1="T" u2="&#xf2;" k="276" />
902
+ <hkern u1="T" u2="&#xf1;" k="236" />
903
+ <hkern u1="T" u2="&#xef;" k="20" />
904
+ <hkern u1="T" u2="&#xee;" k="20" />
905
+ <hkern u1="T" u2="&#xed;" k="20" />
906
+ <hkern u1="T" u2="&#xec;" k="20" />
907
+ <hkern u1="T" u2="&#xeb;" k="276" />
908
+ <hkern u1="T" u2="&#xea;" k="276" />
909
+ <hkern u1="T" u2="&#xe9;" k="276" />
910
+ <hkern u1="T" u2="&#xe8;" k="276" />
911
+ <hkern u1="T" u2="&#xe7;" k="256" />
912
+ <hkern u1="T" u2="&#xe6;" k="256" />
913
+ <hkern u1="T" u2="&#xe5;" k="256" />
914
+ <hkern u1="T" u2="&#xe4;" k="256" />
915
+ <hkern u1="T" u2="&#xe3;" k="256" />
916
+ <hkern u1="T" u2="&#xe2;" k="256" />
917
+ <hkern u1="T" u2="&#xe1;" k="256" />
918
+ <hkern u1="T" u2="&#xe0;" k="256" />
919
+ <hkern u1="T" u2="&#xdd;" k="-86" />
920
+ <hkern u1="T" u2="&#xdc;" k="-43" />
921
+ <hkern u1="T" u2="&#xdb;" k="-43" />
922
+ <hkern u1="T" u2="&#xda;" k="-43" />
923
+ <hkern u1="T" u2="&#xd9;" k="-43" />
924
+ <hkern u1="T" u2="z" k="170" />
925
+ <hkern u1="T" u2="y" k="190" />
926
+ <hkern u1="T" u2="x" k="193" />
927
+ <hkern u1="T" u2="w" k="190" />
928
+ <hkern u1="T" u2="v" k="213" />
929
+ <hkern u1="T" u2="u" k="233" />
930
+ <hkern u1="T" u2="t" k="41" />
931
+ <hkern u1="T" u2="s" k="256" />
932
+ <hkern u1="T" u2="r" k="213" />
933
+ <hkern u1="T" u2="q" k="256" />
934
+ <hkern u1="T" u2="p" k="233" />
935
+ <hkern u1="T" u2="o" k="276" />
936
+ <hkern u1="T" u2="n" k="236" />
937
+ <hkern u1="T" u2="m" k="233" />
938
+ <hkern u1="T" u2="i" k="20" />
939
+ <hkern u1="T" u2="g" k="256" />
940
+ <hkern u1="T" u2="f" k="106" />
941
+ <hkern u1="T" u2="e" k="276" />
942
+ <hkern u1="T" u2="d" k="236" />
943
+ <hkern u1="T" u2="c" k="256" />
944
+ <hkern u1="T" u2="a" k="256" />
945
+ <hkern u1="T" u2="Z" k="-43" />
946
+ <hkern u1="T" u2="Y" k="-86" />
947
+ <hkern u1="T" u2="W" k="-66" />
948
+ <hkern u1="T" u2="V" k="-66" />
949
+ <hkern u1="T" u2="U" k="-43" />
950
+ <hkern u1="T" u2="&#x2e;" k="129" />
951
+ <hkern u1="U" u2="x" k="43" />
952
+ <hkern u1="U" u2="w" k="23" />
953
+ <hkern u1="U" u2="v" k="20" />
954
+ <hkern u1="U" u2="r" k="43" />
955
+ <hkern u1="U" u2="q" k="43" />
956
+ <hkern u1="U" u2="p" k="23" />
957
+ <hkern u1="U" u2="m" k="23" />
958
+ <hkern u1="U" u2="k" k="20" />
959
+ <hkern u1="U" u2="h" k="23" />
960
+ <hkern u1="U" u2="g" k="43" />
961
+ <hkern u1="U" u2="d" k="43" />
962
+ <hkern u1="U" u2="X" k="63" />
963
+ <hkern u1="U" u2="W" k="66" />
964
+ <hkern u1="V" u2="&#x153;" k="193" />
965
+ <hkern u1="V" u2="&#xff;" k="63" />
966
+ <hkern u1="V" u2="&#xfd;" k="63" />
967
+ <hkern u1="V" u2="&#xfc;" k="150" />
968
+ <hkern u1="V" u2="&#xfb;" k="150" />
969
+ <hkern u1="V" u2="&#xfa;" k="150" />
970
+ <hkern u1="V" u2="&#xf9;" k="150" />
971
+ <hkern u1="V" u2="&#xf8;" k="193" />
972
+ <hkern u1="V" u2="&#xf6;" k="193" />
973
+ <hkern u1="V" u2="&#xf5;" k="193" />
974
+ <hkern u1="V" u2="&#xf4;" k="193" />
975
+ <hkern u1="V" u2="&#xf3;" k="193" />
976
+ <hkern u1="V" u2="&#xf2;" k="193" />
977
+ <hkern u1="V" u2="&#xf1;" k="150" />
978
+ <hkern u1="V" u2="&#xef;" k="41" />
979
+ <hkern u1="V" u2="&#xee;" k="41" />
980
+ <hkern u1="V" u2="&#xed;" k="41" />
981
+ <hkern u1="V" u2="&#xec;" k="41" />
982
+ <hkern u1="V" u2="&#xeb;" k="193" />
983
+ <hkern u1="V" u2="&#xea;" k="193" />
984
+ <hkern u1="V" u2="&#xe9;" k="193" />
985
+ <hkern u1="V" u2="&#xe8;" k="193" />
986
+ <hkern u1="V" u2="&#xe7;" k="172" />
987
+ <hkern u1="V" u2="&#xe6;" k="172" />
988
+ <hkern u1="V" u2="&#xe5;" k="172" />
989
+ <hkern u1="V" u2="&#xe4;" k="172" />
990
+ <hkern u1="V" u2="&#xe3;" k="172" />
991
+ <hkern u1="V" u2="&#xe2;" k="172" />
992
+ <hkern u1="V" u2="&#xe1;" k="172" />
993
+ <hkern u1="V" u2="&#xe0;" k="172" />
994
+ <hkern u1="V" u2="z" k="150" />
995
+ <hkern u1="V" u2="y" k="63" />
996
+ <hkern u1="V" u2="x" k="63" />
997
+ <hkern u1="V" u2="w" k="63" />
998
+ <hkern u1="V" u2="v" k="86" />
999
+ <hkern u1="V" u2="u" k="150" />
1000
+ <hkern u1="V" u2="t" k="86" />
1001
+ <hkern u1="V" u2="s" k="150" />
1002
+ <hkern u1="V" u2="r" k="150" />
1003
+ <hkern u1="V" u2="q" k="170" />
1004
+ <hkern u1="V" u2="p" k="150" />
1005
+ <hkern u1="V" u2="o" k="193" />
1006
+ <hkern u1="V" u2="n" k="150" />
1007
+ <hkern u1="V" u2="m" k="150" />
1008
+ <hkern u1="V" u2="k" k="43" />
1009
+ <hkern u1="V" u2="i" k="41" />
1010
+ <hkern u1="V" u2="h" k="43" />
1011
+ <hkern u1="V" u2="g" k="213" />
1012
+ <hkern u1="V" u2="f" k="84" />
1013
+ <hkern u1="V" u2="e" k="193" />
1014
+ <hkern u1="V" u2="d" k="170" />
1015
+ <hkern u1="V" u2="c" k="172" />
1016
+ <hkern u1="V" u2="a" k="172" />
1017
+ <hkern u1="W" u2="&#x178;" k="-86" />
1018
+ <hkern u1="W" u2="&#x153;" k="193" />
1019
+ <hkern u1="W" u2="&#xff;" k="63" />
1020
+ <hkern u1="W" u2="&#xfd;" k="63" />
1021
+ <hkern u1="W" u2="&#xfc;" k="129" />
1022
+ <hkern u1="W" u2="&#xfb;" k="129" />
1023
+ <hkern u1="W" u2="&#xfa;" k="129" />
1024
+ <hkern u1="W" u2="&#xf9;" k="129" />
1025
+ <hkern u1="W" u2="&#xf8;" k="193" />
1026
+ <hkern u1="W" u2="&#xf6;" k="193" />
1027
+ <hkern u1="W" u2="&#xf5;" k="193" />
1028
+ <hkern u1="W" u2="&#xf4;" k="193" />
1029
+ <hkern u1="W" u2="&#xf3;" k="193" />
1030
+ <hkern u1="W" u2="&#xf2;" k="193" />
1031
+ <hkern u1="W" u2="&#xf1;" k="106" />
1032
+ <hkern u1="W" u2="&#xef;" k="23" />
1033
+ <hkern u1="W" u2="&#xee;" k="23" />
1034
+ <hkern u1="W" u2="&#xed;" k="23" />
1035
+ <hkern u1="W" u2="&#xec;" k="23" />
1036
+ <hkern u1="W" u2="&#xeb;" k="170" />
1037
+ <hkern u1="W" u2="&#xea;" k="170" />
1038
+ <hkern u1="W" u2="&#xe9;" k="170" />
1039
+ <hkern u1="W" u2="&#xe8;" k="170" />
1040
+ <hkern u1="W" u2="&#xe7;" k="172" />
1041
+ <hkern u1="W" u2="&#xe6;" k="170" />
1042
+ <hkern u1="W" u2="&#xe5;" k="170" />
1043
+ <hkern u1="W" u2="&#xe4;" k="170" />
1044
+ <hkern u1="W" u2="&#xe3;" k="170" />
1045
+ <hkern u1="W" u2="&#xe2;" k="170" />
1046
+ <hkern u1="W" u2="&#xe1;" k="170" />
1047
+ <hkern u1="W" u2="&#xe0;" k="170" />
1048
+ <hkern u1="W" u2="&#xdd;" k="-86" />
1049
+ <hkern u1="W" u2="z" k="106" />
1050
+ <hkern u1="W" u2="y" k="63" />
1051
+ <hkern u1="W" u2="x" k="84" />
1052
+ <hkern u1="W" u2="w" k="86" />
1053
+ <hkern u1="W" u2="u" k="129" />
1054
+ <hkern u1="W" u2="t" k="66" />
1055
+ <hkern u1="W" u2="s" k="106" />
1056
+ <hkern u1="W" u2="r" k="106" />
1057
+ <hkern u1="W" u2="q" k="170" />
1058
+ <hkern u1="W" u2="p" k="106" />
1059
+ <hkern u1="W" u2="o" k="193" />
1060
+ <hkern u1="W" u2="n" k="106" />
1061
+ <hkern u1="W" u2="m" k="106" />
1062
+ <hkern u1="W" u2="i" k="23" />
1063
+ <hkern u1="W" u2="h" k="43" />
1064
+ <hkern u1="W" u2="g" k="172" />
1065
+ <hkern u1="W" u2="e" k="170" />
1066
+ <hkern u1="W" u2="d" k="170" />
1067
+ <hkern u1="W" u2="c" k="172" />
1068
+ <hkern u1="W" u2="a" k="170" />
1069
+ <hkern u1="W" u2="Y" k="-86" />
1070
+ <hkern u1="X" u2="&#x153;" k="43" />
1071
+ <hkern u1="X" u2="&#xff;" k="63" />
1072
+ <hkern u1="X" u2="&#xfd;" k="63" />
1073
+ <hkern u1="X" u2="&#xf8;" k="43" />
1074
+ <hkern u1="X" u2="&#xf6;" k="43" />
1075
+ <hkern u1="X" u2="&#xf5;" k="43" />
1076
+ <hkern u1="X" u2="&#xf4;" k="43" />
1077
+ <hkern u1="X" u2="&#xf3;" k="43" />
1078
+ <hkern u1="X" u2="&#xf2;" k="43" />
1079
+ <hkern u1="X" u2="&#xeb;" k="41" />
1080
+ <hkern u1="X" u2="&#xea;" k="41" />
1081
+ <hkern u1="X" u2="&#xe9;" k="41" />
1082
+ <hkern u1="X" u2="&#xe8;" k="41" />
1083
+ <hkern u1="X" u2="y" k="63" />
1084
+ <hkern u1="X" u2="w" k="43" />
1085
+ <hkern u1="X" u2="v" k="41" />
1086
+ <hkern u1="X" u2="t" k="43" />
1087
+ <hkern u1="X" u2="o" k="43" />
1088
+ <hkern u1="X" u2="j" k="-109" />
1089
+ <hkern u1="X" u2="g" k="-43" />
1090
+ <hkern u1="X" u2="e" k="41" />
1091
+ <hkern u1="X" u2="d" k="41" />
1092
+ <hkern u1="Y" u2="x" k="127" />
1093
+ <hkern u1="Y" u2="w" k="106" />
1094
+ <hkern u1="Y" u2="v" k="106" />
1095
+ <hkern u1="Y" u2="r" k="172" />
1096
+ <hkern u1="Y" u2="q" k="236" />
1097
+ <hkern u1="Y" u2="p" k="172" />
1098
+ <hkern u1="Y" u2="m" k="170" />
1099
+ <hkern u1="Y" u2="k" k="63" />
1100
+ <hkern u1="Y" u2="h" k="63" />
1101
+ <hkern u1="Y" u2="g" k="236" />
1102
+ <hkern u1="Y" u2="f" k="63" />
1103
+ <hkern u1="Y" u2="d" k="233" />
1104
+ <hkern u1="Z" u2="g" k="-66" />
1105
+ <hkern u1="a" u2="w" k="66" />
1106
+ <hkern u1="a" u2="v" k="63" />
1107
+ <hkern u1="a" u2="t" k="43" />
1108
+ <hkern u1="a" u2="j" k="-43" />
1109
+ <hkern u1="a" u2="b" k="20" />
1110
+ <hkern u1="b" u2="&#xff;" k="43" />
1111
+ <hkern u1="b" u2="&#xfd;" k="43" />
1112
+ <hkern u1="b" u2="z" k="43" />
1113
+ <hkern u1="b" u2="y" k="43" />
1114
+ <hkern u1="b" u2="w" k="43" />
1115
+ <hkern u1="b" u2="v" k="41" />
1116
+ <hkern u1="b" u2="t" k="41" />
1117
+ <hkern u1="b" u2="m" k="20" />
1118
+ <hkern u1="c" u2="q" k="-41" />
1119
+ <hkern u1="c" u2="g" k="-23" />
1120
+ <hkern u1="d" u2="&#xfc;" k="23" />
1121
+ <hkern u1="d" u2="&#xfb;" k="23" />
1122
+ <hkern u1="d" u2="&#xfa;" k="23" />
1123
+ <hkern u1="d" u2="&#xf9;" k="23" />
1124
+ <hkern u1="d" u2="&#xeb;" k="-23" />
1125
+ <hkern u1="d" u2="&#xea;" k="-23" />
1126
+ <hkern u1="d" u2="&#xe9;" k="-23" />
1127
+ <hkern u1="d" u2="&#xe8;" k="-23" />
1128
+ <hkern u1="d" u2="w" k="43" />
1129
+ <hkern u1="d" u2="u" k="23" />
1130
+ <hkern u1="d" u2="j" k="-43" />
1131
+ <hkern u1="d" u2="e" k="-23" />
1132
+ <hkern u1="e" u2="x" k="20" />
1133
+ <hkern u1="e" u2="w" k="41" />
1134
+ <hkern u1="e" u2="v" k="23" />
1135
+ <hkern u1="e" u2="t" k="43" />
1136
+ <hkern u1="e" u2="m" k="20" />
1137
+ <hkern u1="e" u2="k" k="20" />
1138
+ <hkern u1="e" u2="h" k="20" />
1139
+ <hkern u1="f" u2="&#x178;" k="-43" />
1140
+ <hkern u1="f" u2="&#x153;" k="84" />
1141
+ <hkern u1="f" u2="&#xfc;" k="43" />
1142
+ <hkern u1="f" u2="&#xfb;" k="43" />
1143
+ <hkern u1="f" u2="&#xfa;" k="43" />
1144
+ <hkern u1="f" u2="&#xf9;" k="43" />
1145
+ <hkern u1="f" u2="&#xf8;" k="84" />
1146
+ <hkern u1="f" u2="&#xf6;" k="84" />
1147
+ <hkern u1="f" u2="&#xf5;" k="84" />
1148
+ <hkern u1="f" u2="&#xf4;" k="84" />
1149
+ <hkern u1="f" u2="&#xf3;" k="84" />
1150
+ <hkern u1="f" u2="&#xf2;" k="84" />
1151
+ <hkern u1="f" u2="&#xf1;" k="63" />
1152
+ <hkern u1="f" u2="&#xef;" k="20" />
1153
+ <hkern u1="f" u2="&#xee;" k="20" />
1154
+ <hkern u1="f" u2="&#xed;" k="20" />
1155
+ <hkern u1="f" u2="&#xec;" k="20" />
1156
+ <hkern u1="f" u2="&#xdd;" k="-43" />
1157
+ <hkern u1="f" u2="x" k="43" />
1158
+ <hkern u1="f" u2="u" k="43" />
1159
+ <hkern u1="f" u2="s" k="63" />
1160
+ <hkern u1="f" u2="r" k="20" />
1161
+ <hkern u1="f" u2="o" k="84" />
1162
+ <hkern u1="f" u2="n" k="63" />
1163
+ <hkern u1="f" u2="i" k="20" />
1164
+ <hkern u1="f" u2="g" k="86" />
1165
+ <hkern u1="f" u2="Y" k="-43" />
1166
+ <hkern u1="f" u2="W" k="-84" />
1167
+ <hkern u1="f" u2="V" k="-63" />
1168
+ <hkern u1="f" u2="T" k="-43" />
1169
+ <hkern u1="g" u2="&#xff;" k="-20" />
1170
+ <hkern u1="g" u2="&#xfd;" k="-20" />
1171
+ <hkern u1="g" u2="y" k="-20" />
1172
+ <hkern u1="g" u2="x" k="-63" />
1173
+ <hkern u1="g" u2="w" k="-23" />
1174
+ <hkern u1="g" u2="v" k="-20" />
1175
+ <hkern u1="g" u2="j" k="-256" />
1176
+ <hkern u1="g" u2="h" k="-20" />
1177
+ <hkern u1="h" u2="&#xff;" k="43" />
1178
+ <hkern u1="h" u2="&#xfd;" k="43" />
1179
+ <hkern u1="h" u2="&#xfc;" k="20" />
1180
+ <hkern u1="h" u2="&#xfb;" k="20" />
1181
+ <hkern u1="h" u2="&#xfa;" k="20" />
1182
+ <hkern u1="h" u2="&#xf9;" k="20" />
1183
+ <hkern u1="h" u2="y" k="43" />
1184
+ <hkern u1="h" u2="w" k="63" />
1185
+ <hkern u1="h" u2="v" k="63" />
1186
+ <hkern u1="h" u2="u" k="20" />
1187
+ <hkern u1="i" u2="x" k="-43" />
1188
+ <hkern u1="i" u2="J" k="-86" />
1189
+ <hkern u1="j" u2="K" k="-23" />
1190
+ <hkern u1="k" u2="&#x153;" k="43" />
1191
+ <hkern u1="k" u2="&#xff;" k="-43" />
1192
+ <hkern u1="k" u2="&#xfd;" k="-43" />
1193
+ <hkern u1="k" u2="&#xf8;" k="43" />
1194
+ <hkern u1="k" u2="&#xf6;" k="43" />
1195
+ <hkern u1="k" u2="&#xf5;" k="43" />
1196
+ <hkern u1="k" u2="&#xf4;" k="43" />
1197
+ <hkern u1="k" u2="&#xf3;" k="43" />
1198
+ <hkern u1="k" u2="&#xf2;" k="43" />
1199
+ <hkern u1="k" u2="y" k="-43" />
1200
+ <hkern u1="k" u2="v" k="-43" />
1201
+ <hkern u1="k" u2="o" k="43" />
1202
+ <hkern u1="m" u2="&#xff;" k="43" />
1203
+ <hkern u1="m" u2="&#xfd;" k="43" />
1204
+ <hkern u1="m" u2="&#xfc;" k="43" />
1205
+ <hkern u1="m" u2="&#xfb;" k="43" />
1206
+ <hkern u1="m" u2="&#xfa;" k="43" />
1207
+ <hkern u1="m" u2="&#xf9;" k="43" />
1208
+ <hkern u1="m" u2="y" k="43" />
1209
+ <hkern u1="m" u2="w" k="43" />
1210
+ <hkern u1="m" u2="v" k="43" />
1211
+ <hkern u1="m" u2="u" k="43" />
1212
+ <hkern u1="m" u2="t" k="43" />
1213
+ <hkern u1="m" u2="p" k="20" />
1214
+ <hkern u1="n" u2="w" k="43" />
1215
+ <hkern u1="n" u2="v" k="63" />
1216
+ <hkern u1="n" u2="t" k="43" />
1217
+ <hkern u1="o" u2="x" k="20" />
1218
+ <hkern u1="o" u2="w" k="43" />
1219
+ <hkern u1="o" u2="v" k="20" />
1220
+ <hkern u1="o" u2="t" k="20" />
1221
+ <hkern u1="q" u2="&#xfc;" k="20" />
1222
+ <hkern u1="q" u2="&#xfb;" k="20" />
1223
+ <hkern u1="q" u2="&#xfa;" k="20" />
1224
+ <hkern u1="q" u2="&#xf9;" k="20" />
1225
+ <hkern u1="q" u2="u" k="20" />
1226
+ <hkern u1="r" u2="&#xff;" k="-63" />
1227
+ <hkern u1="r" u2="&#xfd;" k="-63" />
1228
+ <hkern u1="r" u2="&#xfc;" k="-20" />
1229
+ <hkern u1="r" u2="&#xfb;" k="-20" />
1230
+ <hkern u1="r" u2="&#xfa;" k="-20" />
1231
+ <hkern u1="r" u2="&#xf9;" k="-20" />
1232
+ <hkern u1="r" u2="y" k="-63" />
1233
+ <hkern u1="r" u2="x" k="-43" />
1234
+ <hkern u1="r" u2="w" k="-43" />
1235
+ <hkern u1="r" u2="v" k="-63" />
1236
+ <hkern u1="r" u2="u" k="-20" />
1237
+ <hkern u1="r" u2="t" k="-63" />
1238
+ <hkern u1="t" u2="&#xff;" k="-23" />
1239
+ <hkern u1="t" u2="&#xfd;" k="-23" />
1240
+ <hkern u1="t" u2="y" k="-23" />
1241
+ <hkern u1="v" u2="&#xff;" k="-43" />
1242
+ <hkern u1="v" u2="&#xfd;" k="-43" />
1243
+ <hkern u1="v" u2="y" k="-43" />
1244
+ <hkern u1="v" u2="x" k="-43" />
1245
+ <hkern u1="v" u2="w" k="-63" />
1246
+ <hkern u1="w" u2="&#xff;" k="-23" />
1247
+ <hkern u1="w" u2="&#xfd;" k="-23" />
1248
+ <hkern u1="w" u2="z" k="43" />
1249
+ <hkern u1="w" u2="y" k="-23" />
1250
+ <hkern u1="w" u2="x" k="-43" />
1251
+ <hkern u1="x" u2="&#xff;" k="-66" />
1252
+ <hkern u1="x" u2="&#xfd;" k="-66" />
1253
+ <hkern u1="x" u2="y" k="-66" />
1254
+ <hkern u1="&#xc0;" u2="x" k="-66" />
1255
+ <hkern u1="&#xc0;" u2="w" k="106" />
1256
+ <hkern u1="&#xc0;" u2="v" k="106" />
1257
+ <hkern u1="&#xc0;" u2="t" k="84" />
1258
+ <hkern u1="&#xc0;" u2="q" k="41" />
1259
+ <hkern u1="&#xc0;" u2="g" k="-43" />
1260
+ <hkern u1="&#xc0;" u2="f" k="41" />
1261
+ <hkern u1="&#xc0;" u2="d" k="43" />
1262
+ <hkern u1="&#xc0;" u2="W" k="190" />
1263
+ <hkern u1="&#xc0;" u2="V" k="213" />
1264
+ <hkern u1="&#xc0;" u2="T" k="213" />
1265
+ <hkern u1="&#xc0;" u2="R" k="-20" />
1266
+ <hkern u1="&#xc0;" u2="Q" k="43" />
1267
+ <hkern u1="&#xc0;" u2="J" k="86" />
1268
+ <hkern u1="&#xc0;" u2="G" k="43" />
1269
+ <hkern u1="&#xc1;" u2="x" k="-66" />
1270
+ <hkern u1="&#xc1;" u2="w" k="106" />
1271
+ <hkern u1="&#xc1;" u2="v" k="106" />
1272
+ <hkern u1="&#xc1;" u2="t" k="84" />
1273
+ <hkern u1="&#xc1;" u2="q" k="41" />
1274
+ <hkern u1="&#xc1;" u2="g" k="-43" />
1275
+ <hkern u1="&#xc1;" u2="f" k="41" />
1276
+ <hkern u1="&#xc1;" u2="d" k="43" />
1277
+ <hkern u1="&#xc1;" u2="W" k="190" />
1278
+ <hkern u1="&#xc1;" u2="V" k="213" />
1279
+ <hkern u1="&#xc1;" u2="T" k="213" />
1280
+ <hkern u1="&#xc1;" u2="R" k="-20" />
1281
+ <hkern u1="&#xc1;" u2="Q" k="43" />
1282
+ <hkern u1="&#xc1;" u2="J" k="86" />
1283
+ <hkern u1="&#xc1;" u2="G" k="43" />
1284
+ <hkern u1="&#xc2;" u2="x" k="-66" />
1285
+ <hkern u1="&#xc2;" u2="w" k="106" />
1286
+ <hkern u1="&#xc2;" u2="v" k="106" />
1287
+ <hkern u1="&#xc2;" u2="t" k="84" />
1288
+ <hkern u1="&#xc2;" u2="q" k="41" />
1289
+ <hkern u1="&#xc2;" u2="g" k="-43" />
1290
+ <hkern u1="&#xc2;" u2="f" k="41" />
1291
+ <hkern u1="&#xc2;" u2="d" k="43" />
1292
+ <hkern u1="&#xc2;" u2="W" k="190" />
1293
+ <hkern u1="&#xc2;" u2="V" k="213" />
1294
+ <hkern u1="&#xc2;" u2="T" k="213" />
1295
+ <hkern u1="&#xc2;" u2="R" k="-20" />
1296
+ <hkern u1="&#xc2;" u2="Q" k="43" />
1297
+ <hkern u1="&#xc2;" u2="J" k="86" />
1298
+ <hkern u1="&#xc2;" u2="G" k="43" />
1299
+ <hkern u1="&#xc3;" u2="x" k="-66" />
1300
+ <hkern u1="&#xc3;" u2="w" k="106" />
1301
+ <hkern u1="&#xc3;" u2="v" k="106" />
1302
+ <hkern u1="&#xc3;" u2="t" k="84" />
1303
+ <hkern u1="&#xc3;" u2="q" k="41" />
1304
+ <hkern u1="&#xc3;" u2="g" k="-43" />
1305
+ <hkern u1="&#xc3;" u2="f" k="41" />
1306
+ <hkern u1="&#xc3;" u2="d" k="43" />
1307
+ <hkern u1="&#xc3;" u2="W" k="190" />
1308
+ <hkern u1="&#xc3;" u2="V" k="213" />
1309
+ <hkern u1="&#xc3;" u2="T" k="213" />
1310
+ <hkern u1="&#xc3;" u2="R" k="-20" />
1311
+ <hkern u1="&#xc3;" u2="Q" k="43" />
1312
+ <hkern u1="&#xc3;" u2="J" k="86" />
1313
+ <hkern u1="&#xc3;" u2="G" k="43" />
1314
+ <hkern u1="&#xc4;" u2="x" k="-66" />
1315
+ <hkern u1="&#xc4;" u2="w" k="106" />
1316
+ <hkern u1="&#xc4;" u2="v" k="106" />
1317
+ <hkern u1="&#xc4;" u2="t" k="84" />
1318
+ <hkern u1="&#xc4;" u2="q" k="41" />
1319
+ <hkern u1="&#xc4;" u2="g" k="-43" />
1320
+ <hkern u1="&#xc4;" u2="f" k="41" />
1321
+ <hkern u1="&#xc4;" u2="d" k="43" />
1322
+ <hkern u1="&#xc4;" u2="W" k="190" />
1323
+ <hkern u1="&#xc4;" u2="V" k="213" />
1324
+ <hkern u1="&#xc4;" u2="T" k="213" />
1325
+ <hkern u1="&#xc4;" u2="R" k="-20" />
1326
+ <hkern u1="&#xc4;" u2="Q" k="43" />
1327
+ <hkern u1="&#xc4;" u2="J" k="86" />
1328
+ <hkern u1="&#xc4;" u2="G" k="43" />
1329
+ <hkern u1="&#xc5;" u2="x" k="-66" />
1330
+ <hkern u1="&#xc5;" u2="w" k="106" />
1331
+ <hkern u1="&#xc5;" u2="v" k="106" />
1332
+ <hkern u1="&#xc5;" u2="t" k="84" />
1333
+ <hkern u1="&#xc5;" u2="q" k="41" />
1334
+ <hkern u1="&#xc5;" u2="g" k="-43" />
1335
+ <hkern u1="&#xc5;" u2="f" k="41" />
1336
+ <hkern u1="&#xc5;" u2="d" k="43" />
1337
+ <hkern u1="&#xc5;" u2="W" k="190" />
1338
+ <hkern u1="&#xc5;" u2="V" k="213" />
1339
+ <hkern u1="&#xc5;" u2="T" k="213" />
1340
+ <hkern u1="&#xc5;" u2="R" k="-20" />
1341
+ <hkern u1="&#xc5;" u2="Q" k="43" />
1342
+ <hkern u1="&#xc5;" u2="J" k="86" />
1343
+ <hkern u1="&#xc5;" u2="G" k="43" />
1344
+ <hkern u1="&#xc6;" u2="&#x178;" k="-43" />
1345
+ <hkern u1="&#xc6;" u2="&#xdd;" k="-43" />
1346
+ <hkern u1="&#xc6;" u2="&#xd1;" k="-43" />
1347
+ <hkern u1="&#xc6;" u2="x" k="-43" />
1348
+ <hkern u1="&#xc6;" u2="s" k="-20" />
1349
+ <hkern u1="&#xc6;" u2="j" k="-84" />
1350
+ <hkern u1="&#xc6;" u2="Y" k="-43" />
1351
+ <hkern u1="&#xc6;" u2="W" k="-20" />
1352
+ <hkern u1="&#xc6;" u2="V" k="-23" />
1353
+ <hkern u1="&#xc6;" u2="T" k="-84" />
1354
+ <hkern u1="&#xc6;" u2="S" k="-43" />
1355
+ <hkern u1="&#xc6;" u2="N" k="-43" />
1356
+ <hkern u1="&#xc6;" u2="J" k="-23" />
1357
+ <hkern u1="&#xc7;" u2="w" k="-43" />
1358
+ <hkern u1="&#xc7;" u2="t" k="-43" />
1359
+ <hkern u1="&#xc7;" u2="m" k="-43" />
1360
+ <hkern u1="&#xc7;" u2="h" k="-43" />
1361
+ <hkern u1="&#xc7;" u2="g" k="-20" />
1362
+ <hkern u1="&#xc7;" u2="T" k="-43" />
1363
+ <hkern u1="&#xc7;" u2="R" k="-63" />
1364
+ <hkern u1="&#xc7;" u2="P" k="-43" />
1365
+ <hkern u1="&#xc7;" u2="M" k="-43" />
1366
+ <hkern u1="&#xc7;" u2="K" k="-66" />
1367
+ <hkern u1="&#xc7;" u2="H" k="-63" />
1368
+ <hkern u1="&#xc8;" u2="x" k="-43" />
1369
+ <hkern u1="&#xc8;" u2="j" k="-84" />
1370
+ <hkern u1="&#xc8;" u2="W" k="-20" />
1371
+ <hkern u1="&#xc8;" u2="V" k="-23" />
1372
+ <hkern u1="&#xc8;" u2="T" k="-84" />
1373
+ <hkern u1="&#xc8;" u2="J" k="-23" />
1374
+ <hkern u1="&#xc9;" u2="x" k="-43" />
1375
+ <hkern u1="&#xc9;" u2="j" k="-84" />
1376
+ <hkern u1="&#xc9;" u2="W" k="-20" />
1377
+ <hkern u1="&#xc9;" u2="V" k="-23" />
1378
+ <hkern u1="&#xc9;" u2="T" k="-84" />
1379
+ <hkern u1="&#xc9;" u2="J" k="-23" />
1380
+ <hkern u1="&#xca;" u2="x" k="-43" />
1381
+ <hkern u1="&#xca;" u2="j" k="-84" />
1382
+ <hkern u1="&#xca;" u2="W" k="-20" />
1383
+ <hkern u1="&#xca;" u2="V" k="-23" />
1384
+ <hkern u1="&#xca;" u2="T" k="-84" />
1385
+ <hkern u1="&#xca;" u2="J" k="-23" />
1386
+ <hkern u1="&#xcb;" u2="x" k="-43" />
1387
+ <hkern u1="&#xcb;" u2="j" k="-84" />
1388
+ <hkern u1="&#xcb;" u2="W" k="-20" />
1389
+ <hkern u1="&#xcb;" u2="V" k="-23" />
1390
+ <hkern u1="&#xcb;" u2="T" k="-84" />
1391
+ <hkern u1="&#xcb;" u2="J" k="-23" />
1392
+ <hkern u1="&#xcc;" u2="W" k="-43" />
1393
+ <hkern u1="&#xcc;" u2="T" k="-66" />
1394
+ <hkern u1="&#xcc;" u2="J" k="-20" />
1395
+ <hkern u1="&#xcd;" u2="W" k="-43" />
1396
+ <hkern u1="&#xcd;" u2="T" k="-66" />
1397
+ <hkern u1="&#xcd;" u2="J" k="-20" />
1398
+ <hkern u1="&#xce;" u2="W" k="-43" />
1399
+ <hkern u1="&#xce;" u2="T" k="-66" />
1400
+ <hkern u1="&#xce;" u2="J" k="-20" />
1401
+ <hkern u1="&#xcf;" u2="W" k="-43" />
1402
+ <hkern u1="&#xcf;" u2="T" k="-66" />
1403
+ <hkern u1="&#xcf;" u2="J" k="-20" />
1404
+ <hkern u1="&#xd2;" u2="b" k="-20" />
1405
+ <hkern u1="&#xd2;" u2="X" k="86" />
1406
+ <hkern u1="&#xd2;" u2="W" k="63" />
1407
+ <hkern u1="&#xd2;" u2="V" k="66" />
1408
+ <hkern u1="&#xd2;" u2="T" k="84" />
1409
+ <hkern u1="&#xd2;" u2="Q" k="-43" />
1410
+ <hkern u1="&#xd3;" u2="b" k="-20" />
1411
+ <hkern u1="&#xd3;" u2="X" k="86" />
1412
+ <hkern u1="&#xd3;" u2="W" k="63" />
1413
+ <hkern u1="&#xd3;" u2="V" k="66" />
1414
+ <hkern u1="&#xd3;" u2="T" k="84" />
1415
+ <hkern u1="&#xd3;" u2="Q" k="-43" />
1416
+ <hkern u1="&#xd4;" u2="b" k="-20" />
1417
+ <hkern u1="&#xd4;" u2="X" k="86" />
1418
+ <hkern u1="&#xd4;" u2="W" k="63" />
1419
+ <hkern u1="&#xd4;" u2="V" k="66" />
1420
+ <hkern u1="&#xd4;" u2="T" k="84" />
1421
+ <hkern u1="&#xd4;" u2="Q" k="-43" />
1422
+ <hkern u1="&#xd5;" u2="b" k="-20" />
1423
+ <hkern u1="&#xd5;" u2="X" k="86" />
1424
+ <hkern u1="&#xd5;" u2="W" k="63" />
1425
+ <hkern u1="&#xd5;" u2="V" k="66" />
1426
+ <hkern u1="&#xd5;" u2="T" k="84" />
1427
+ <hkern u1="&#xd5;" u2="Q" k="-43" />
1428
+ <hkern u1="&#xd6;" u2="b" k="-20" />
1429
+ <hkern u1="&#xd6;" u2="X" k="86" />
1430
+ <hkern u1="&#xd6;" u2="W" k="63" />
1431
+ <hkern u1="&#xd6;" u2="V" k="66" />
1432
+ <hkern u1="&#xd6;" u2="T" k="84" />
1433
+ <hkern u1="&#xd6;" u2="Q" k="-43" />
1434
+ <hkern u1="&#xd8;" u2="b" k="-20" />
1435
+ <hkern u1="&#xd8;" u2="X" k="86" />
1436
+ <hkern u1="&#xd8;" u2="W" k="63" />
1437
+ <hkern u1="&#xd8;" u2="V" k="66" />
1438
+ <hkern u1="&#xd8;" u2="T" k="84" />
1439
+ <hkern u1="&#xd8;" u2="Q" k="-43" />
1440
+ <hkern u1="&#xd9;" u2="x" k="43" />
1441
+ <hkern u1="&#xd9;" u2="w" k="23" />
1442
+ <hkern u1="&#xd9;" u2="v" k="20" />
1443
+ <hkern u1="&#xd9;" u2="r" k="43" />
1444
+ <hkern u1="&#xd9;" u2="q" k="43" />
1445
+ <hkern u1="&#xd9;" u2="p" k="23" />
1446
+ <hkern u1="&#xd9;" u2="m" k="23" />
1447
+ <hkern u1="&#xd9;" u2="k" k="20" />
1448
+ <hkern u1="&#xd9;" u2="h" k="23" />
1449
+ <hkern u1="&#xd9;" u2="g" k="43" />
1450
+ <hkern u1="&#xd9;" u2="d" k="43" />
1451
+ <hkern u1="&#xd9;" u2="X" k="63" />
1452
+ <hkern u1="&#xd9;" u2="W" k="66" />
1453
+ <hkern u1="&#xda;" u2="x" k="43" />
1454
+ <hkern u1="&#xda;" u2="w" k="23" />
1455
+ <hkern u1="&#xda;" u2="v" k="20" />
1456
+ <hkern u1="&#xda;" u2="r" k="43" />
1457
+ <hkern u1="&#xda;" u2="q" k="43" />
1458
+ <hkern u1="&#xda;" u2="p" k="23" />
1459
+ <hkern u1="&#xda;" u2="m" k="23" />
1460
+ <hkern u1="&#xda;" u2="k" k="20" />
1461
+ <hkern u1="&#xda;" u2="h" k="23" />
1462
+ <hkern u1="&#xda;" u2="g" k="43" />
1463
+ <hkern u1="&#xda;" u2="d" k="43" />
1464
+ <hkern u1="&#xda;" u2="X" k="63" />
1465
+ <hkern u1="&#xda;" u2="W" k="66" />
1466
+ <hkern u1="&#xdb;" u2="x" k="43" />
1467
+ <hkern u1="&#xdb;" u2="w" k="23" />
1468
+ <hkern u1="&#xdb;" u2="v" k="20" />
1469
+ <hkern u1="&#xdb;" u2="r" k="43" />
1470
+ <hkern u1="&#xdb;" u2="q" k="43" />
1471
+ <hkern u1="&#xdb;" u2="p" k="23" />
1472
+ <hkern u1="&#xdb;" u2="m" k="23" />
1473
+ <hkern u1="&#xdb;" u2="k" k="20" />
1474
+ <hkern u1="&#xdb;" u2="h" k="23" />
1475
+ <hkern u1="&#xdb;" u2="g" k="43" />
1476
+ <hkern u1="&#xdb;" u2="d" k="43" />
1477
+ <hkern u1="&#xdb;" u2="X" k="63" />
1478
+ <hkern u1="&#xdb;" u2="W" k="66" />
1479
+ <hkern u1="&#xdc;" u2="x" k="43" />
1480
+ <hkern u1="&#xdc;" u2="w" k="23" />
1481
+ <hkern u1="&#xdc;" u2="v" k="20" />
1482
+ <hkern u1="&#xdc;" u2="r" k="43" />
1483
+ <hkern u1="&#xdc;" u2="q" k="43" />
1484
+ <hkern u1="&#xdc;" u2="p" k="23" />
1485
+ <hkern u1="&#xdc;" u2="m" k="23" />
1486
+ <hkern u1="&#xdc;" u2="k" k="20" />
1487
+ <hkern u1="&#xdc;" u2="h" k="23" />
1488
+ <hkern u1="&#xdc;" u2="g" k="43" />
1489
+ <hkern u1="&#xdc;" u2="d" k="43" />
1490
+ <hkern u1="&#xdc;" u2="X" k="63" />
1491
+ <hkern u1="&#xdc;" u2="W" k="66" />
1492
+ <hkern u1="&#xdd;" u2="&#x153;" k="236" />
1493
+ <hkern u1="&#xdd;" u2="&#xff;" k="66" />
1494
+ <hkern u1="&#xdd;" u2="&#xfd;" k="66" />
1495
+ <hkern u1="&#xdd;" u2="&#xfc;" k="190" />
1496
+ <hkern u1="&#xdd;" u2="&#xfb;" k="190" />
1497
+ <hkern u1="&#xdd;" u2="&#xfa;" k="190" />
1498
+ <hkern u1="&#xdd;" u2="&#xf9;" k="190" />
1499
+ <hkern u1="&#xdd;" u2="&#xf8;" k="236" />
1500
+ <hkern u1="&#xdd;" u2="&#xf6;" k="236" />
1501
+ <hkern u1="&#xdd;" u2="&#xf5;" k="236" />
1502
+ <hkern u1="&#xdd;" u2="&#xf4;" k="236" />
1503
+ <hkern u1="&#xdd;" u2="&#xf3;" k="236" />
1504
+ <hkern u1="&#xdd;" u2="&#xf2;" k="236" />
1505
+ <hkern u1="&#xdd;" u2="&#xf1;" k="172" />
1506
+ <hkern u1="&#xdd;" u2="&#xef;" k="41" />
1507
+ <hkern u1="&#xdd;" u2="&#xee;" k="41" />
1508
+ <hkern u1="&#xdd;" u2="&#xed;" k="41" />
1509
+ <hkern u1="&#xdd;" u2="&#xec;" k="41" />
1510
+ <hkern u1="&#xdd;" u2="&#xeb;" k="276" />
1511
+ <hkern u1="&#xdd;" u2="&#xea;" k="276" />
1512
+ <hkern u1="&#xdd;" u2="&#xe9;" k="276" />
1513
+ <hkern u1="&#xdd;" u2="&#xe8;" k="276" />
1514
+ <hkern u1="&#xdd;" u2="&#xe7;" k="236" />
1515
+ <hkern u1="&#xdd;" u2="&#xe6;" k="256" />
1516
+ <hkern u1="&#xdd;" u2="&#xe5;" k="256" />
1517
+ <hkern u1="&#xdd;" u2="&#xe4;" k="256" />
1518
+ <hkern u1="&#xdd;" u2="&#xe3;" k="256" />
1519
+ <hkern u1="&#xdd;" u2="&#xe2;" k="256" />
1520
+ <hkern u1="&#xdd;" u2="&#xe1;" k="256" />
1521
+ <hkern u1="&#xdd;" u2="&#xe0;" k="256" />
1522
+ <hkern u1="&#xdd;" u2="z" k="170" />
1523
+ <hkern u1="&#xdd;" u2="y" k="66" />
1524
+ <hkern u1="&#xdd;" u2="x" k="127" />
1525
+ <hkern u1="&#xdd;" u2="w" k="106" />
1526
+ <hkern u1="&#xdd;" u2="v" k="106" />
1527
+ <hkern u1="&#xdd;" u2="u" k="190" />
1528
+ <hkern u1="&#xdd;" u2="s" k="213" />
1529
+ <hkern u1="&#xdd;" u2="r" k="172" />
1530
+ <hkern u1="&#xdd;" u2="q" k="236" />
1531
+ <hkern u1="&#xdd;" u2="p" k="172" />
1532
+ <hkern u1="&#xdd;" u2="o" k="236" />
1533
+ <hkern u1="&#xdd;" u2="n" k="172" />
1534
+ <hkern u1="&#xdd;" u2="m" k="170" />
1535
+ <hkern u1="&#xdd;" u2="k" k="63" />
1536
+ <hkern u1="&#xdd;" u2="i" k="41" />
1537
+ <hkern u1="&#xdd;" u2="h" k="63" />
1538
+ <hkern u1="&#xdd;" u2="g" k="236" />
1539
+ <hkern u1="&#xdd;" u2="f" k="63" />
1540
+ <hkern u1="&#xdd;" u2="e" k="276" />
1541
+ <hkern u1="&#xdd;" u2="d" k="233" />
1542
+ <hkern u1="&#xdd;" u2="c" k="236" />
1543
+ <hkern u1="&#xdd;" u2="a" k="256" />
1544
+ <hkern u1="&#xde;" u2="w" k="-43" />
1545
+ <hkern u1="&#xde;" u2="m" k="-43" />
1546
+ <hkern u1="&#xde;" u2="j" k="-43" />
1547
+ <hkern u1="&#xde;" u2="h" k="-20" />
1548
+ <hkern u1="&#xde;" u2="X" k="106" />
1549
+ <hkern u1="&#xde;" u2="W" k="63" />
1550
+ <hkern u1="&#xde;" u2="V" k="20" />
1551
+ <hkern u1="&#xde;" u2="T" k="63" />
1552
+ <hkern u1="&#xde;" u2="Q" k="-43" />
1553
+ <hkern u1="&#xde;" u2="F" k="-43" />
1554
+ <hkern u1="&#xe0;" u2="w" k="66" />
1555
+ <hkern u1="&#xe0;" u2="v" k="63" />
1556
+ <hkern u1="&#xe0;" u2="t" k="43" />
1557
+ <hkern u1="&#xe0;" u2="j" k="-43" />
1558
+ <hkern u1="&#xe0;" u2="b" k="20" />
1559
+ <hkern u1="&#xe1;" u2="w" k="66" />
1560
+ <hkern u1="&#xe1;" u2="v" k="63" />
1561
+ <hkern u1="&#xe1;" u2="t" k="43" />
1562
+ <hkern u1="&#xe1;" u2="j" k="-43" />
1563
+ <hkern u1="&#xe1;" u2="b" k="20" />
1564
+ <hkern u1="&#xe2;" u2="w" k="66" />
1565
+ <hkern u1="&#xe2;" u2="v" k="63" />
1566
+ <hkern u1="&#xe2;" u2="t" k="43" />
1567
+ <hkern u1="&#xe2;" u2="j" k="-43" />
1568
+ <hkern u1="&#xe2;" u2="b" k="20" />
1569
+ <hkern u1="&#xe3;" u2="w" k="66" />
1570
+ <hkern u1="&#xe3;" u2="v" k="63" />
1571
+ <hkern u1="&#xe3;" u2="t" k="43" />
1572
+ <hkern u1="&#xe3;" u2="j" k="-43" />
1573
+ <hkern u1="&#xe3;" u2="b" k="20" />
1574
+ <hkern u1="&#xe4;" u2="w" k="66" />
1575
+ <hkern u1="&#xe4;" u2="v" k="63" />
1576
+ <hkern u1="&#xe4;" u2="t" k="43" />
1577
+ <hkern u1="&#xe4;" u2="j" k="-43" />
1578
+ <hkern u1="&#xe4;" u2="b" k="20" />
1579
+ <hkern u1="&#xe5;" u2="w" k="66" />
1580
+ <hkern u1="&#xe5;" u2="v" k="63" />
1581
+ <hkern u1="&#xe5;" u2="t" k="43" />
1582
+ <hkern u1="&#xe5;" u2="j" k="-43" />
1583
+ <hkern u1="&#xe5;" u2="b" k="20" />
1584
+ <hkern u1="&#xe6;" u2="&#x153;" k="16" />
1585
+ <hkern u1="&#xe6;" u2="&#xff;" k="33" />
1586
+ <hkern u1="&#xe6;" u2="&#xfd;" k="33" />
1587
+ <hkern u1="&#xe6;" u2="&#xfc;" k="20" />
1588
+ <hkern u1="&#xe6;" u2="&#xfb;" k="20" />
1589
+ <hkern u1="&#xe6;" u2="&#xfa;" k="20" />
1590
+ <hkern u1="&#xe6;" u2="&#xf9;" k="20" />
1591
+ <hkern u1="&#xe6;" u2="&#xf8;" k="16" />
1592
+ <hkern u1="&#xe6;" u2="&#xf6;" k="16" />
1593
+ <hkern u1="&#xe6;" u2="&#xf5;" k="16" />
1594
+ <hkern u1="&#xe6;" u2="&#xf4;" k="16" />
1595
+ <hkern u1="&#xe6;" u2="&#xf3;" k="16" />
1596
+ <hkern u1="&#xe6;" u2="&#xf2;" k="16" />
1597
+ <hkern u1="&#xe6;" u2="&#xf1;" k="31" />
1598
+ <hkern u1="&#xe6;" u2="&#xef;" k="33" />
1599
+ <hkern u1="&#xe6;" u2="&#xee;" k="33" />
1600
+ <hkern u1="&#xe6;" u2="&#xed;" k="33" />
1601
+ <hkern u1="&#xe6;" u2="&#xec;" k="33" />
1602
+ <hkern u1="&#xe6;" u2="z" k="47" />
1603
+ <hkern u1="&#xe6;" u2="y" k="33" />
1604
+ <hkern u1="&#xe6;" u2="x" k="80" />
1605
+ <hkern u1="&#xe6;" u2="w" k="16" />
1606
+ <hkern u1="&#xe6;" u2="v" k="33" />
1607
+ <hkern u1="&#xe6;" u2="u" k="20" />
1608
+ <hkern u1="&#xe6;" u2="t" k="47" />
1609
+ <hkern u1="&#xe6;" u2="s" k="33" />
1610
+ <hkern u1="&#xe6;" u2="r" k="16" />
1611
+ <hkern u1="&#xe6;" u2="q" k="20" />
1612
+ <hkern u1="&#xe6;" u2="p" k="20" />
1613
+ <hkern u1="&#xe6;" u2="o" k="16" />
1614
+ <hkern u1="&#xe6;" u2="n" k="31" />
1615
+ <hkern u1="&#xe6;" u2="m" k="16" />
1616
+ <hkern u1="&#xe6;" u2="k" k="43" />
1617
+ <hkern u1="&#xe6;" u2="j" k="47" />
1618
+ <hkern u1="&#xe6;" u2="i" k="33" />
1619
+ <hkern u1="&#xe6;" u2="h" k="20" />
1620
+ <hkern u1="&#xe6;" u2="g" k="47" />
1621
+ <hkern u1="&#xe6;" u2="f" k="20" />
1622
+ <hkern u1="&#xe6;" u2="d" k="16" />
1623
+ <hkern u1="&#xe6;" u2="b" k="16" />
1624
+ <hkern u1="&#xe7;" u2="q" k="-41" />
1625
+ <hkern u1="&#xe7;" u2="g" k="-23" />
1626
+ <hkern u1="&#xe8;" u2="x" k="20" />
1627
+ <hkern u1="&#xe8;" u2="w" k="41" />
1628
+ <hkern u1="&#xe8;" u2="v" k="23" />
1629
+ <hkern u1="&#xe8;" u2="t" k="43" />
1630
+ <hkern u1="&#xe8;" u2="m" k="20" />
1631
+ <hkern u1="&#xe8;" u2="k" k="20" />
1632
+ <hkern u1="&#xe8;" u2="h" k="20" />
1633
+ <hkern u1="&#xe9;" u2="x" k="20" />
1634
+ <hkern u1="&#xe9;" u2="w" k="41" />
1635
+ <hkern u1="&#xe9;" u2="v" k="23" />
1636
+ <hkern u1="&#xe9;" u2="t" k="43" />
1637
+ <hkern u1="&#xe9;" u2="m" k="20" />
1638
+ <hkern u1="&#xe9;" u2="k" k="20" />
1639
+ <hkern u1="&#xe9;" u2="h" k="20" />
1640
+ <hkern u1="&#xea;" u2="x" k="20" />
1641
+ <hkern u1="&#xea;" u2="w" k="41" />
1642
+ <hkern u1="&#xea;" u2="v" k="23" />
1643
+ <hkern u1="&#xea;" u2="t" k="43" />
1644
+ <hkern u1="&#xea;" u2="m" k="20" />
1645
+ <hkern u1="&#xea;" u2="k" k="20" />
1646
+ <hkern u1="&#xea;" u2="h" k="20" />
1647
+ <hkern u1="&#xeb;" u2="x" k="20" />
1648
+ <hkern u1="&#xeb;" u2="w" k="41" />
1649
+ <hkern u1="&#xeb;" u2="v" k="23" />
1650
+ <hkern u1="&#xeb;" u2="t" k="43" />
1651
+ <hkern u1="&#xeb;" u2="m" k="20" />
1652
+ <hkern u1="&#xeb;" u2="k" k="20" />
1653
+ <hkern u1="&#xeb;" u2="h" k="20" />
1654
+ <hkern u1="&#xec;" u2="x" k="-43" />
1655
+ <hkern u1="&#xec;" u2="J" k="-86" />
1656
+ <hkern u1="&#xed;" u2="x" k="-43" />
1657
+ <hkern u1="&#xed;" u2="J" k="-86" />
1658
+ <hkern u1="&#xee;" u2="x" k="-43" />
1659
+ <hkern u1="&#xee;" u2="J" k="-86" />
1660
+ <hkern u1="&#xef;" u2="x" k="-43" />
1661
+ <hkern u1="&#xef;" u2="J" k="-86" />
1662
+ <hkern u1="&#xf1;" u2="w" k="43" />
1663
+ <hkern u1="&#xf1;" u2="v" k="63" />
1664
+ <hkern u1="&#xf1;" u2="t" k="43" />
1665
+ <hkern u1="&#xf2;" u2="x" k="20" />
1666
+ <hkern u1="&#xf2;" u2="w" k="43" />
1667
+ <hkern u1="&#xf2;" u2="v" k="20" />
1668
+ <hkern u1="&#xf2;" u2="t" k="20" />
1669
+ <hkern u1="&#xf3;" u2="x" k="20" />
1670
+ <hkern u1="&#xf3;" u2="w" k="43" />
1671
+ <hkern u1="&#xf3;" u2="v" k="20" />
1672
+ <hkern u1="&#xf3;" u2="t" k="20" />
1673
+ <hkern u1="&#xf4;" u2="x" k="20" />
1674
+ <hkern u1="&#xf4;" u2="w" k="43" />
1675
+ <hkern u1="&#xf4;" u2="v" k="20" />
1676
+ <hkern u1="&#xf4;" u2="t" k="20" />
1677
+ <hkern u1="&#xf5;" u2="x" k="20" />
1678
+ <hkern u1="&#xf5;" u2="w" k="43" />
1679
+ <hkern u1="&#xf5;" u2="v" k="20" />
1680
+ <hkern u1="&#xf5;" u2="t" k="20" />
1681
+ <hkern u1="&#xf6;" u2="x" k="20" />
1682
+ <hkern u1="&#xf6;" u2="w" k="43" />
1683
+ <hkern u1="&#xf6;" u2="v" k="20" />
1684
+ <hkern u1="&#xf6;" u2="t" k="20" />
1685
+ <hkern u1="&#xf8;" u2="x" k="20" />
1686
+ <hkern u1="&#xf8;" u2="w" k="43" />
1687
+ <hkern u1="&#xf8;" u2="v" k="20" />
1688
+ <hkern u1="&#xf8;" u2="t" k="20" />
1689
+ <hkern u1="&#x152;" u2="&#x178;" k="-43" />
1690
+ <hkern u1="&#x152;" u2="&#xdd;" k="-43" />
1691
+ <hkern u1="&#x152;" u2="&#xd1;" k="-43" />
1692
+ <hkern u1="&#x152;" u2="x" k="-43" />
1693
+ <hkern u1="&#x152;" u2="s" k="-20" />
1694
+ <hkern u1="&#x152;" u2="j" k="-84" />
1695
+ <hkern u1="&#x152;" u2="Y" k="-43" />
1696
+ <hkern u1="&#x152;" u2="W" k="-20" />
1697
+ <hkern u1="&#x152;" u2="V" k="-23" />
1698
+ <hkern u1="&#x152;" u2="T" k="-84" />
1699
+ <hkern u1="&#x152;" u2="S" k="-43" />
1700
+ <hkern u1="&#x152;" u2="N" k="-43" />
1701
+ <hkern u1="&#x152;" u2="J" k="-23" />
1702
+ <hkern u1="&#x153;" u2="&#xff;" k="43" />
1703
+ <hkern u1="&#x153;" u2="&#xfd;" k="43" />
1704
+ <hkern u1="&#x153;" u2="y" k="43" />
1705
+ <hkern u1="&#x153;" u2="x" k="20" />
1706
+ <hkern u1="&#x153;" u2="w" k="41" />
1707
+ <hkern u1="&#x153;" u2="v" k="23" />
1708
+ <hkern u1="&#x153;" u2="t" k="43" />
1709
+ <hkern u1="&#x153;" u2="m" k="20" />
1710
+ <hkern u1="&#x153;" u2="k" k="20" />
1711
+ <hkern u1="&#x153;" u2="h" k="20" />
1712
+ <hkern u1="&#x178;" u2="x" k="127" />
1713
+ <hkern u1="&#x178;" u2="w" k="106" />
1714
+ <hkern u1="&#x178;" u2="v" k="106" />
1715
+ <hkern u1="&#x178;" u2="r" k="172" />
1716
+ <hkern u1="&#x178;" u2="q" k="236" />
1717
+ <hkern u1="&#x178;" u2="p" k="172" />
1718
+ <hkern u1="&#x178;" u2="m" k="170" />
1719
+ <hkern u1="&#x178;" u2="k" k="63" />
1720
+ <hkern u1="&#x178;" u2="h" k="63" />
1721
+ <hkern u1="&#x178;" u2="g" k="236" />
1722
+ <hkern u1="&#x178;" u2="f" k="63" />
1723
+ <hkern u1="&#x178;" u2="d" k="233" />
1724
+ <hkern g1="C,Ccedilla" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-20" />
1725
+ <hkern g1="C,Ccedilla" g2="y,yacute,ydieresis" k="-63" />
1726
+ <hkern g1="C,Ccedilla" g2="s" k="-23" />
1727
+ <hkern g1="C,Ccedilla" g2="D,Thorn" k="-43" />
1728
+ <hkern g1="C,Ccedilla" g2="L" k="-43" />
1729
+ <hkern g1="C,Ccedilla" g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="-63" />
1730
+ <hkern g1="C,Ccedilla" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="-43" />
1731
+ <hkern g1="C,Ccedilla" g2="Z" k="-43" />
1732
+ <hkern g1="C,Ccedilla" g2="e,egrave,eacute,ecircumflex,edieresis" k="-43" />
1733
+ <hkern g1="C,Ccedilla" g2="l" k="-43" />
1734
+ <hkern g1="C,Ccedilla" g2="i,igrave,iacute,icircumflex,idieresis" k="-23" />
1735
+ <hkern g1="C,Ccedilla" g2="n,ntilde" k="-20" />
1736
+ <hkern g1="C,Ccedilla" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="-43" />
1737
+ <hkern g1="C,Ccedilla" g2="E,Egrave,Eacute,Ecircumflex,Edieresis" k="-63" />
1738
+ <hkern g1="C,Ccedilla" g2="I,Igrave,Iacute,Icircumflex,Idieresis" k="-66" />
1739
+ <hkern g1="C,Ccedilla" g2="S" k="-86" />
1740
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="s" k="-20" />
1741
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="N,Ntilde" k="-43" />
1742
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="Y,Yacute,Ydieresis" k="-43" />
1743
+ <hkern g1="E,AE,Egrave,Eacute,Ecircumflex,Edieresis,OE" g2="S" k="-43" />
1744
+ <hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="-43" />
1745
+ <hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" g2="Z" k="-43" />
1746
+ <hkern g1="I,Igrave,Iacute,Icircumflex,Idieresis" g2="S" k="-41" />
1747
+ <hkern g1="N,Ntilde" g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="-20" />
1748
+ <hkern g1="N,Ntilde" g2="S" k="-23" />
1749
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-23" />
1750
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="Y,Yacute,Ydieresis" k="106" />
1751
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="Z" k="43" />
1752
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="S" k="-41" />
1753
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="z" k="41" />
1754
+ <hkern g1="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash" g2="c,ccedilla" k="-20" />
1755
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="43" />
1756
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="Z" k="63" />
1757
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="e,egrave,eacute,ecircumflex,edieresis" k="43" />
1758
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="i,igrave,iacute,icircumflex,idieresis" k="23" />
1759
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="n,ntilde" k="20" />
1760
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="43" />
1761
+ <hkern g1="U,Ugrave,Uacute,Ucircumflex,Udieresis" g2="z" k="63" />
1762
+ <hkern g1="Y,Yacute,Ydieresis" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="256" />
1763
+ <hkern g1="Y,Yacute,Ydieresis" g2="y,yacute,ydieresis" k="66" />
1764
+ <hkern g1="Y,Yacute,Ydieresis" g2="s" k="213" />
1765
+ <hkern g1="Y,Yacute,Ydieresis" g2="u,ugrave,uacute,ucircumflex,udieresis" k="190" />
1766
+ <hkern g1="Y,Yacute,Ydieresis" g2="e,egrave,eacute,ecircumflex,edieresis" k="276" />
1767
+ <hkern g1="Y,Yacute,Ydieresis" g2="i,igrave,iacute,icircumflex,idieresis" k="41" />
1768
+ <hkern g1="Y,Yacute,Ydieresis" g2="n,ntilde" k="172" />
1769
+ <hkern g1="Y,Yacute,Ydieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="236" />
1770
+ <hkern g1="Y,Yacute,Ydieresis" g2="z" k="170" />
1771
+ <hkern g1="Y,Yacute,Ydieresis" g2="c,ccedilla" k="236" />
1772
+ <hkern g1="S" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-66" />
1773
+ <hkern g1="S" g2="u,ugrave,uacute,ucircumflex,udieresis" k="-43" />
1774
+ <hkern g1="S" g2="Y,Yacute,Ydieresis" k="63" />
1775
+ <hkern g1="S" g2="e,egrave,eacute,ecircumflex,edieresis" k="-66" />
1776
+ <hkern g1="S" g2="l" k="-20" />
1777
+ <hkern g1="S" g2="n,ntilde" k="-20" />
1778
+ <hkern g1="S" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="-41" />
1779
+ <hkern g1="S" g2="z" k="-41" />
1780
+ <hkern g1="Z" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-43" />
1781
+ <hkern g1="Z" g2="e,egrave,eacute,ecircumflex,edieresis" k="-20" />
1782
+ <hkern g1="Z" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="20" />
1783
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="y,yacute,ydieresis" k="43" />
1784
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="u,ugrave,uacute,ucircumflex,udieresis" k="49" />
1785
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="e,egrave,eacute,ecircumflex,edieresis" k="-23" />
1786
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="z" k="20" />
1787
+ <hkern g1="a,agrave,aacute,acircumflex,atilde,adieresis,aring" g2="c,ccedilla" k="-23" />
1788
+ <hkern g1="c,ccedilla" g2="D,Thorn" k="-106" />
1789
+ <hkern g1="c,ccedilla" g2="e,egrave,eacute,ecircumflex,edieresis" k="-41" />
1790
+ <hkern g1="c,ccedilla" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="-20" />
1791
+ <hkern g1="e,ae,egrave,eacute,ecircumflex,edieresis,oe" g2="y,yacute,ydieresis" k="43" />
1792
+ <hkern g1="i,igrave,iacute,icircumflex,idieresis" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="-23" />
1793
+ <hkern g1="n,ntilde" g2="y,yacute,ydieresis" k="63" />
1794
+ <hkern g1="n,ntilde" g2="u,ugrave,uacute,ucircumflex,udieresis" k="41" />
1795
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" g2="y,yacute,ydieresis" k="23" />
1796
+ <hkern g1="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash" g2="z" k="43" />
1797
+ <hkern g1="L" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-41" />
1798
+ <hkern g1="L" g2="y,yacute,ydieresis" k="84" />
1799
+ <hkern g1="L" g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="43" />
1800
+ <hkern g1="L" g2="U,Ugrave,Uacute,Ucircumflex,Udieresis" k="84" />
1801
+ <hkern g1="L" g2="Y,Yacute,Ydieresis" k="256" />
1802
+ <hkern g1="L" g2="Z" k="-43" />
1803
+ <hkern g1="l" g2="y,yacute,ydieresis" k="-20" />
1804
+ <hkern g1="D,Thorn" g2="a,agrave,aacute,acircumflex,atilde,adieresis,aring,ae" k="-20" />
1805
+ <hkern g1="D,Thorn" g2="y,yacute,ydieresis" k="-41" />
1806
+ <hkern g1="D,Thorn" g2="u,ugrave,uacute,ucircumflex,udieresis" k="-43" />
1807
+ <hkern g1="D,Thorn" g2="O,Ograve,Oacute,Ocircumflex,Otilde,Odieresis,Oslash,OE" k="-20" />
1808
+ <hkern g1="D,Thorn" g2="Y,Yacute,Ydieresis" k="106" />
1809
+ <hkern g1="D,Thorn" g2="Z" k="43" />
1810
+ <hkern g1="D,Thorn" g2="e,egrave,eacute,ecircumflex,edieresis" k="-43" />
1811
+ <hkern g1="D,Thorn" g2="n,ntilde" k="-23" />
1812
+ <hkern g1="D,Thorn" g2="o,ograve,oacute,ocircumflex,otilde,odieresis,oslash,oe" k="-20" />
1813
+ <hkern g1="D,Thorn" g2="I,Igrave,Iacute,Icircumflex,Idieresis" k="-23" />
1814
+ <hkern g1="p,thorn" g2="u,ugrave,uacute,ucircumflex,udieresis" k="20" />
1815
+ </font>
1816
+ </defs></svg>