Browse Source

Merge branch 'develop'

version-14
Pratik Vyas 10 years ago
parent
commit
7e896d5482
28 changed files with 6592 additions and 171 deletions
  1. +1
    -1
      frappe/__version__.py
  2. +3
    -1
      frappe/core/doctype/communication/communication.py
  3. +1
    -1
      frappe/core/doctype/customize_form/test_customize_form.py
  4. +5
    -0
      frappe/core/doctype/event/event.py
  5. +151
    -151
      frappe/core/doctype/print_format/print_format.json
  6. +1
    -1
      frappe/hooks.py
  7. BIN
      frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.eot
  8. +1825
    -0
      frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.svg
  9. BIN
      frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.ttf
  10. BIN
      frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.woff
  11. BIN
      frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.eot
  12. +1810
    -0
      frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.svg
  13. BIN
      frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.ttf
  14. BIN
      frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.woff
  15. BIN
      frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.eot
  16. +914
    -0
      frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.svg
  17. BIN
      frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.ttf
  18. BIN
      frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.woff
  19. BIN
      frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.eot
  20. +1825
    -0
      frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.svg
  21. BIN
      frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.ttf
  22. BIN
      frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.woff
  23. +51
    -0
      frappe/public/css/font/noto_sans/noto_sans.css
  24. +1
    -1
      frappe/public/js/frappe/views/calendar.js
  25. +1
    -12
      frappe/templates/styles/standard.css
  26. +1
    -1
      frappe/website/website_generator.py
  27. +1
    -1
      frappe/widgets/calendar.py
  28. +1
    -1
      setup.py

+ 1
- 1
frappe/__version__.py View File

@@ -1 +1 @@
__version__ = "4.10.0"
__version__ = "4.10.1"

+ 3
- 1
frappe/core/doctype/communication/communication.py View File

@@ -37,7 +37,9 @@ def make(doctype=None, name=None, content=None, subject=None, sent_or_received =
sender=None, recipients=None, communication_medium="Email", send_email=False,
print_html=None, print_format=None, attachments='[]', send_me_a_copy=False, set_lead=True, date=None):

if doctype and name and not frappe.has_permission(doctype, "email", name):
is_error_report = (doctype=="User" and name==frappe.session.user and subject=="Error Report")

if doctype and name and not is_error_report and not frappe.has_permission(doctype, "email", name):
raise frappe.PermissionError("You are not allowed to send emails related to: {doctype} {name}".format(
doctype=doctype, name=name))



+ 1
- 1
frappe/core/doctype/customize_form/test_customize_form.py View File

@@ -47,7 +47,7 @@ class TestCustomizeForm(unittest.TestCase):

d = self.get_customize_form("User")
self.assertEquals(d.doc_type, "User")
self.assertEquals(len(d.get("customize_form_fields")), 55)
self.assertEquals(len(d.get("customize_form_fields")), 48)
self.assertEquals(d.get("customize_form_fields")[-1].fieldname, "test_custom_field")
self.assertEquals(d.get("customize_form_fields", {"fieldname": "location"})[0].in_list_view, 1)



+ 5
- 0
frappe/core/doctype/event/event.py View File

@@ -14,6 +14,11 @@ class Event(Document):
def validate(self):
if self.starts_on and self.ends_on and self.starts_on > self.ends_on:
frappe.msgprint(frappe._("Event end must be after start"), raise_exception=True)

if self.starts_on == self.ends_on:
# this scenario doesn't make sense i.e. it starts and ends at the same second!
self.ends_on = None

if self.starts_on and self.ends_on and int(date_diff(self.ends_on.split(" ")[0], self.starts_on.split(" ")[0])) > 0 \
and self.repeat_on == "Every Day":
frappe.msgprint(frappe._("Every day events should finish on the same day."), raise_exception=True)


+ 151
- 151
frappe/core/doctype/print_format/print_format.json View File

@@ -1,183 +1,183 @@
{
"allow_copy": 0,
"allow_rename": 0,
"autoname": "Prompt",
"creation": "2013-01-23 19:54:43",
"docstatus": 0,
"doctype": "DocType",
"allow_copy": 0,
"allow_rename": 0,
"autoname": "Prompt",
"creation": "2013-01-23 19:54:43",
"docstatus": 0,
"doctype": "DocType",
"fields": [
{
"description": "Belongs to",
"fieldname": "doc_type",
"fieldtype": "Link",
"in_filter": 1,
"in_list_view": 1,
"label": "DocType",
"options": "DocType",
"permlevel": 0,
"reqd": 1,
"description": "Belongs to",
"fieldname": "doc_type",
"fieldtype": "Link",
"in_filter": 1,
"in_list_view": 1,
"label": "DocType",
"options": "DocType",
"permlevel": 0,
"reqd": 1,
"search_index": 0
},
},
{
"allow_on_submit": 0,
"fieldname": "module",
"fieldtype": "Link",
"hidden": 0,
"in_filter": 1,
"in_list_view": 1,
"label": "Module",
"no_copy": 0,
"oldfieldname": "module",
"oldfieldtype": "Select",
"options": "Module Def",
"permlevel": 0,
"print_hide": 0,
"report_hide": 0,
"reqd": 1,
"allow_on_submit": 0,
"fieldname": "module",
"fieldtype": "Link",
"hidden": 0,
"in_filter": 1,
"in_list_view": 1,
"label": "Module",
"no_copy": 0,
"oldfieldname": "module",
"oldfieldtype": "Select",
"options": "Module Def",
"permlevel": 0,
"print_hide": 0,
"report_hide": 0,
"reqd": 1,
"search_index": 1
},
},
{
"fieldname": "column_break_3",
"fieldtype": "Column Break",
"fieldname": "column_break_3",
"fieldtype": "Column Break",
"permlevel": 0
},
},
{
"allow_on_submit": 0,
"default": "No",
"fieldname": "standard",
"fieldtype": "Select",
"hidden": 0,
"in_filter": 1,
"in_list_view": 1,
"label": "Standard",
"no_copy": 1,
"oldfieldname": "standard",
"oldfieldtype": "Select",
"options": "No\nYes",
"permlevel": 1,
"print_hide": 0,
"read_only": 0,
"report_hide": 0,
"reqd": 1,
"allow_on_submit": 0,
"default": "No",
"fieldname": "standard",
"fieldtype": "Select",
"hidden": 0,
"in_filter": 1,
"in_list_view": 1,
"label": "Standard",
"no_copy": 1,
"oldfieldname": "standard",
"oldfieldtype": "Select",
"options": "No\nYes",
"permlevel": 1,
"print_hide": 0,
"read_only": 0,
"report_hide": 0,
"reqd": 1,
"search_index": 1
},
},
{
"default": "Server",
"description": "Client-side formats are now deprecated",
"fieldname": "print_format_type",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Print Format Type",
"options": "Server\nClient",
"permlevel": 0,
"default": "Server",
"description": "Client-side formats are now deprecated",
"fieldname": "print_format_type",
"fieldtype": "Select",
"in_list_view": 1,
"label": "Print Format Type",
"options": "Server\nClient",
"permlevel": 0,
"read_only": 0
},
},
{
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled",
"fieldname": "disabled",
"fieldtype": "Check",
"label": "Disabled",
"permlevel": 0
},
},
{
"fieldname": "section_break_6",
"fieldtype": "Section Break",
"fieldname": "section_break_6",
"fieldtype": "Section Break",
"permlevel": 0
},
},
{
"allow_on_submit": 0,
"depends_on": "",
"fieldname": "html",
"fieldtype": "Code",
"hidden": 0,
"in_filter": 0,
"label": "HTML",
"no_copy": 0,
"oldfieldname": "html",
"oldfieldtype": "Text Editor",
"options": "HTML",
"permlevel": 0,
"print_hide": 0,
"report_hide": 0,
"reqd": 0,
"allow_on_submit": 0,
"depends_on": "",
"fieldname": "html",
"fieldtype": "Code",
"hidden": 0,
"in_filter": 0,
"label": "HTML",
"no_copy": 0,
"oldfieldname": "html",
"oldfieldtype": "Text Editor",
"options": "HTML",
"permlevel": 0,
"print_hide": 0,
"report_hide": 0,
"reqd": 0,
"search_index": 0
},
},
{
"fieldname": "print_format_help",
"fieldtype": "HTML",
"label": "Print Format Help",
"options": "<h3>Print Format Help</h3>\n<hr>\n<h4>Introduction</h4>\n<p>Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the <code>doc</code> object which contains information about the document that is being formatted. You can also access common utilities via the <code>frappe</code> module.</p>\n<p>For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.</p>\n<hr>\n<h4>References</h4>\n<ol>\n\t<li><a href=\"http://jinja.pocoo.org/docs/templates/\" target=\"_blank\">Jinja Tempalting Language: Reference</a></li>\n\t<li><a href=\"http://getbootstrap.com\" target=\"_blank\">Bootstrap CSS Framework</a></li>\n</ol>\n<hr>\n<h4>Example</h4>\n<pre><code>&lt;h3&gt;{{ doc.select_print_heading or \"Invoice\" }}&lt;/h3&gt;\n&lt;div class=\"row\"&gt;\n\t&lt;div class=\"col-md-3 text-right\"&gt;Customer Name&lt;/div&gt;\n\t&lt;div class=\"col-md-9\"&gt;{{ doc.customer_name }}&lt;/div&gt;\n&lt;/div&gt;\n&lt;div class=\"row\"&gt;\n\t&lt;div class=\"col-md-3 text-right\"&gt;Date&lt;/div&gt;\n\t&lt;div class=\"col-md-9\"&gt;{{ doc.get_formatted(\"invoice_date\") }}&lt;/div&gt;\n&lt;/div&gt;\n&lt;table class=\"table table-bordered\"&gt;\n\t&lt;tbody&gt;\n\t\t&lt;tr&gt;\n\t\t\t&lt;th&gt;Sr&lt;/th&gt;\n\t\t\t&lt;th&gt;Item Name&lt;/th&gt;\n\t\t\t&lt;th&gt;Description&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Qty&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Rate&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Amount&lt;/th&gt;\n\t\t&lt;/tr&gt;\n\t\t{%- for row in doc.entries -%}\n\t\t&lt;tr&gt;\n\t\t\t&lt;td style=\"width: 3%;\"&gt;{{ row.idx }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 20%;\"&gt;\n\t\t\t\t{{ row.item_name }}\n\t\t\t\t{% if row.item_code != row.item_name -%}\n\t\t\t\t&lt;br&gt;Item Code: {{ row.item_code}}\n\t\t\t\t{%- endif %}\n\t\t\t&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 37%;\"&gt;\n\t\t\t\t&lt;div style=\"border: 0px;\"&gt;{{ row.description }}&lt;/div&gt;&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 10%; text-align: right;\"&gt;{{ row.qty }} {{ row.uom or row.stock_uom }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 15%; text-align: right;\"&gt;{{\n\t\t\t\trow.get_formatted(\"rate\", doc) }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 15%; text-align: right;\"&gt;{{\n\t\t\t\trow.get_formatted(\"amount\", doc) }}&lt;/td&gt;\n\t\t&lt;/tr&gt;\n\t\t{%- endfor -%}\n\t&lt;/tbody&gt;\n&lt;/table&gt;</code></pre>\n<hr>\n<h4>Common Functions</h4>\n<table class=\"table table-bordered\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td style=\"width: 30%\"><code>doc.get_formatted(\"[fieldname]\", [parent_doc])</code></td>\n\t\t\t<td>Get document value formatted as Date, Currency etc. Pass parent <code>doc</code> for curreny type fields.</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td style=\"width: 30%\"><code>frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")</code></td>\n\t\t\t<td>Get value from another document.</td>\n\t\t</tr>\n\t</tbody>\n</table>\n",
"fieldname": "print_format_help",
"fieldtype": "HTML",
"label": "Print Format Help",
"options": "<h3>Print Format Help</h3>\n<hr>\n<h4>Introduction</h4>\n<p>Print Formats are rendered on the server side using the Jinja Templating Language. All forms have access to the <code>doc</code> object which contains information about the document that is being formatted. You can also access common utilities via the <code>frappe</code> module.</p>\n<p>For styling, the Boostrap CSS framework is provided and you can enjoy the full range of classes.</p>\n<hr>\n<h4>References</h4>\n<ol>\n\t<li><a href=\"http://jinja.pocoo.org/docs/templates/\" target=\"_blank\">Jinja Tempalting Language: Reference</a></li>\n\t<li><a href=\"http://getbootstrap.com\" target=\"_blank\">Bootstrap CSS Framework</a></li>\n</ol>\n<hr>\n<h4>Example</h4>\n<pre><code>&lt;h3&gt;{{ doc.select_print_heading or \"Invoice\" }}&lt;/h3&gt;\n&lt;div class=\"row\"&gt;\n\t&lt;div class=\"col-xs-3 text-right\"&gt;Customer Name&lt;/div&gt;\n\t&lt;div class=\"col-xs-9\"&gt;{{ doc.customer_name }}&lt;/div&gt;\n&lt;/div&gt;\n&lt;div class=\"row\"&gt;\n\t&lt;div class=\"col-xs-3 text-right\"&gt;Date&lt;/div&gt;\n\t&lt;div class=\"col-xs-9\"&gt;{{ doc.get_formatted(\"invoice_date\") }}&lt;/div&gt;\n&lt;/div&gt;\n&lt;table class=\"table table-bordered\"&gt;\n\t&lt;tbody&gt;\n\t\t&lt;tr&gt;\n\t\t\t&lt;th&gt;Sr&lt;/th&gt;\n\t\t\t&lt;th&gt;Item Name&lt;/th&gt;\n\t\t\t&lt;th&gt;Description&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Qty&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Rate&lt;/th&gt;\n\t\t\t&lt;th class=\"text-right\"&gt;Amount&lt;/th&gt;\n\t\t&lt;/tr&gt;\n\t\t{%- for row in doc.entries -%}\n\t\t&lt;tr&gt;\n\t\t\t&lt;td style=\"width: 3%;\"&gt;{{ row.idx }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 20%;\"&gt;\n\t\t\t\t{{ row.item_name }}\n\t\t\t\t{% if row.item_code != row.item_name -%}\n\t\t\t\t&lt;br&gt;Item Code: {{ row.item_code}}\n\t\t\t\t{%- endif %}\n\t\t\t&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 37%;\"&gt;\n\t\t\t\t&lt;div style=\"border: 0px;\"&gt;{{ row.description }}&lt;/div&gt;&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 10%; text-align: right;\"&gt;{{ row.qty }} {{ row.uom or row.stock_uom }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 15%; text-align: right;\"&gt;{{\n\t\t\t\trow.get_formatted(\"rate\", doc) }}&lt;/td&gt;\n\t\t\t&lt;td style=\"width: 15%; text-align: right;\"&gt;{{\n\t\t\t\trow.get_formatted(\"amount\", doc) }}&lt;/td&gt;\n\t\t&lt;/tr&gt;\n\t\t{%- endfor -%}\n\t&lt;/tbody&gt;\n&lt;/table&gt;</code></pre>\n<hr>\n<h4>Common Functions</h4>\n<table class=\"table table-bordered\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td style=\"width: 30%\"><code>doc.get_formatted(\"[fieldname]\", [parent_doc])</code></td>\n\t\t\t<td>Get document value formatted as Date, Currency etc. Pass parent <code>doc</code> for curreny type fields.</td>\n\t\t</tr>\n\t\t<tr>\n\t\t\t<td style=\"width: 30%\"><code>frappe.db.get_value(\"[doctype]\", \"[name]\", \"fieldname\")</code></td>\n\t\t\t<td>Get value from another document.</td>\n\t\t</tr>\n\t</tbody>\n</table>\n",
"permlevel": 0
}
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-print",
"idx": 1,
"in_create": 0,
"in_dialog": 0,
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2014-07-31 03:39:35.898711",
"modified_by": "Administrator",
"module": "Core",
"name": "Print Format",
"owner": "Administrator",
],
"hide_heading": 0,
"hide_toolbar": 0,
"icon": "icon-print",
"idx": 1,
"in_create": 0,
"in_dialog": 0,
"issingle": 0,
"istable": 0,
"max_attachments": 0,
"modified": "2015-01-23 03:39:35.898711",
"modified_by": "Administrator",
"module": "Core",
"name": "Print Format",
"owner": "Administrator",
"permissions": [
{
"amend": 0,
"cancel": 0,
"create": 1,
"delete": 1,
"email": 1,
"permlevel": 0,
"print": 1,
"read": 1,
"report": 1,
"role": "Administrator",
"submit": 0,
"amend": 0,
"cancel": 0,
"create": 1,
"delete": 1,
"email": 1,
"permlevel": 0,
"print": 1,
"read": 1,
"report": 1,
"role": "Administrator",
"submit": 0,
"write": 1
},
},
{
"amend": 0,
"cancel": 0,
"create": 1,
"delete": 1,
"email": 1,
"permlevel": 0,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"submit": 0,
"amend": 0,
"cancel": 0,
"create": 1,
"delete": 1,
"email": 1,
"permlevel": 0,
"print": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"submit": 0,
"write": 1
},
},
{
"amend": 0,
"cancel": 0,
"create": 0,
"delete": 0,
"permlevel": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"amend": 0,
"cancel": 0,
"create": 0,
"delete": 0,
"permlevel": 1,
"read": 1,
"report": 1,
"role": "System Manager",
"submit": 0
},
},
{
"amend": 0,
"cancel": 0,
"create": 0,
"delete": 0,
"permlevel": 1,
"read": 1,
"report": 1,
"role": "Administrator",
"submit": 0,
"amend": 0,
"cancel": 0,
"create": 0,
"delete": 0,
"permlevel": 1,
"read": 1,
"report": 1,
"role": "Administrator",
"submit": 0,
"write": 1
}
],
"read_only": 0,
"read_only_onload": 0,
"sort_field": "modified",
],
"read_only": 0,
"read_only_onload": 0,
"sort_field": "modified",
"sort_order": "DESC"
}
}

+ 1
- 1
frappe/hooks.py View File

@@ -3,7 +3,7 @@ app_title = "Frappe Framework"
app_publisher = "Web Notes Technologies Pvt. Ltd."
app_description = "Full Stack Web Application Framework in Python"
app_icon = "assets/frappe/images/frappe.svg"
app_version = "4.10.0"
app_version = "4.10.1"
app_color = "#3498db"
app_email = "support@frappe.io"



BIN
frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.eot View File


+ 1825
- 0
frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.svg
File diff suppressed because it is too large
View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.ttf View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Bold-webfont.woff View File


BIN
frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.eot View File


+ 1810
- 0
frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.svg
File diff suppressed because it is too large
View File


BIN
frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.ttf View File


BIN
frappe/public/css/font/noto_sans/NotoSans-BoldItalic-webfont.woff View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.eot View File


+ 914
- 0
frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.svg View File

@@ -0,0 +1,914 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" >
<svg xmlns="http://www.w3.org/2000/svg">
<metadata></metadata>
<defs>
<font id="noto_sansitalic" horiz-adv-x="1128" >
<font-face units-per-em="2048" ascent="1638" descent="-410" />
<missing-glyph horiz-adv-x="532" />
<glyph horiz-adv-x="0" />
<glyph horiz-adv-x="0" />
<glyph unicode="&#xd;" horiz-adv-x="1044" />
<glyph unicode=" " horiz-adv-x="532" />
<glyph unicode="&#x09;" horiz-adv-x="532" />
<glyph unicode="&#xa0;" horiz-adv-x="532" />
<glyph unicode="!" horiz-adv-x="535" d="M41 82q0 75 42 120.5t112 45.5q46 0 75 -28.5t29 -82.5q0 -70 -40.5 -118t-108.5 -48q-53 0 -81 29t-28 82zM170 412l174 1050h219l-272 -1050h-121z" />
<glyph unicode="&#x22;" horiz-adv-x="803" d="M223 934l72 528h197l-154 -528h-115zM575 934l72 528h197l-154 -528h-115z" />
<glyph unicode="#" horiz-adv-x="1323" d="M61 428l13 135h284l99 332h-275l13 133h299l122 434h148l-125 -434h295l127 434h139l-123 -434h262l-14 -133h-289l-96 -332h283l-13 -135h-309l-123 -428h-147l129 428h-295l-125 -428h-141l120 428h-258zM504 563h295l92 332h-293z" />
<glyph unicode="$" d="M70 176v164q74 -39 168.5 -63.5t179.5 -26.5l96 440q-143 52 -206.5 127t-63.5 191q0 160 110 256.5t303 113.5l39 174h133l-36 -176q158 -12 282 -76l-67 -145q-120 65 -246 74l-92 -428q151 -56 215.5 -127t64.5 -182q0 -162 -113.5 -263.5t-314.5 -124.5l-49 -223 h-133l49 221q-195 14 -319 74zM410 1012q0 -112 137 -164l80 381q-108 -14 -162.5 -70.5t-54.5 -146.5zM553 256q104 13 164.5 72.5t60.5 148.5q0 54 -32 94.5t-109 71.5zM997 1462z" />
<glyph unicode="%" horiz-adv-x="1636" d="M164 862q0 167 51.5 320t137.5 227t200 74q118 0 179 -72.5t61 -208.5q0 -108 -31.5 -236.5t-82.5 -216t-122 -136t-158 -48.5q-112 0 -173.5 76t-61.5 221zM231 0l1086 1462h160l-1086 -1462h-160zM311 864q0 -164 103 -164q62 0 113 64t84.5 193.5t33.5 232.5 q0 160 -104 160q-65 0 -116 -61.5t-82.5 -184.5t-31.5 -240zM915 274q0 170 51 320.5t137.5 226.5t201.5 76q118 0 179.5 -72t61.5 -207q0 -108 -30.5 -234.5t-81.5 -215t-122.5 -138.5t-160.5 -50q-113 0 -174.5 74.5t-61.5 219.5zM1065 279q0 -164 100 -164q63 0 113 62.5 t84.5 193.5t34.5 233q0 160 -105 160q-64 0 -114 -61t-81.5 -184.5t-31.5 -239.5z" />
<glyph unicode="&#x26;" horiz-adv-x="1378" d="M66 344q0 147 89 256t300 211q-101 160 -101 305q0 165 107.5 267t286.5 102q149 0 237 -79.5t88 -213.5q0 -83 -38.5 -149t-109.5 -122.5t-249 -146.5l270 -377q119 104 195 295h180q-101 -242 -285 -420l203 -272h-213l-113 160q-121 -98 -231 -139t-240 -41 q-173 0 -274.5 96.5t-101.5 267.5zM244 356q0 -104 65 -165.5t168 -61.5q86 0 167 33.5t183 116.5l-297 421q-116 -60 -172 -108t-85 -105t-29 -131zM526 1116q0 -120 78 -229q134 67 184 105.5t80.5 84t30.5 101.5q0 72 -40.5 116.5t-119.5 44.5q-102 0 -157.5 -59 t-55.5 -164z" />
<glyph unicode="'" horiz-adv-x="451" d="M223 934l72 528h197l-154 -528h-115z" />
<glyph unicode="(" horiz-adv-x="594" d="M82 272q0 343 122.5 633t381.5 557h166q-498 -548 -498 -1188q0 -337 115 -598h-140q-147 259 -147 596z" />
<glyph unicode=")" horiz-adv-x="594" d="M-158 -324q496 551 496 1188q0 342 -113 598h140q145 -267 145 -598q0 -346 -122.5 -634t-381.5 -554h-164z" />
<glyph unicode="*" d="M211 1190l57 160l369 -183l41 396l178 -35l-121 -381l418 20l-8 -168l-389 48l178 -379l-172 -54l-111 400l-252 -338l-125 125l306 280z" />
<glyph unicode="+" d="M125 647v150h387v389h150v-389h387v-150h-387v-385h-150v385h-387z" />
<glyph unicode="," horiz-adv-x="524" d="M-88 -264q92 208 203 502h196l8 -23q-98 -211 -270 -479h-137z" />
<glyph unicode="-" horiz-adv-x="641" d="M53 465l37 166h483l-36 -166h-484z" />
<glyph unicode="." horiz-adv-x="524" d="M41 78q0 76 42.5 123t115.5 47q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79z" />
<glyph unicode="/" horiz-adv-x="729" d="M-94 0l813 1462h184l-811 -1462h-186z" />
<glyph unicode="0" d="M117 477q0 273 81.5 515.5t216 367.5t310.5 125q369 0 369 -471q0 -292 -77 -535t-214 -371t-320 -128q-179 0 -272.5 129t-93.5 368zM299 477q0 -166 48.5 -255t156.5 -89q110 0 200.5 109.5t147.5 323.5t57 452q0 313 -194 313q-110 0 -204 -113.5t-153 -323 t-59 -417.5z" />
<glyph unicode="1" d="M293 1171l459 291h157l-313 -1462h-182l194 905q45 214 86 352q-56 -58 -137 -108l-180 -113z" />
<glyph unicode="2" d="M6 0l33 154l465 419q204 183 267 257.5t92.5 141.5t29.5 148q0 96 -58 152.5t-159 56.5q-79 0 -152.5 -30.5t-161.5 -96.5l-86 123q195 158 420 158q180 0 282.5 -90.5t102.5 -243.5q0 -106 -37.5 -197t-124.5 -192t-301 -289l-344 -299v-8h668l-31 -164h-905z" />
<glyph unicode="3" d="M45 59v174q85 -47 189 -74.5t198 -27.5q161 0 250.5 78t89.5 213q0 127 -76 192.5t-219 65.5h-131l31 149h133q166 0 273.5 85t107.5 223q0 88 -55 141t-154 53q-94 0 -172.5 -32.5t-155.5 -86.5l-84 127q195 144 428 144q177 0 277 -86t100 -238q0 -155 -100 -264 t-279 -141v-9q128 -24 197.5 -108.5t69.5 -206.5q0 -133 -63 -234.5t-184 -158.5t-286 -57q-212 0 -385 79z" />
<glyph unicode="4" d="M12 332l31 164l825 966h207l-203 -970h226l-35 -160h-227l-72 -332h-174l72 332h-650zM227 492h469l74 350q29 134 115 436h-8q-22 -36 -69 -99.5t-71 -91.5z" />
<glyph unicode="5" d="M76 59v174q164 -102 334 -102q187 0 293 93t106 261q0 124 -72.5 195.5t-201.5 71.5q-46 0 -88.5 -6t-145.5 -31l-76 59l199 688h674l-35 -164h-518l-123 -424q97 21 178 21q184 0 290.5 -105t106.5 -282q0 -160 -73.5 -283.5t-204 -184t-309.5 -60.5q-200 0 -334 79z " />
<glyph unicode="6" d="M129 428q0 209 61.5 417t168 353t246.5 215t325 70q111 0 188 -23l-37 -155q-74 24 -172 24q-213 0 -354.5 -146.5t-208.5 -432.5h8q59 77 145.5 123.5t192.5 46.5q155 0 243.5 -98.5t88.5 -270.5q0 -161 -67.5 -296t-182 -205t-260.5 -70q-185 0 -285 116.5t-100 331.5z M307 416q0 -134 59.5 -209.5t165.5 -75.5q91 0 162.5 53t111.5 147t40 204q0 239 -215 239q-64 0 -124 -27.5t-107 -76t-70 -105t-23 -149.5z" />
<glyph unicode="7" d="M166 0l764 1303h-711l33 159h899l-27 -143l-764 -1319h-194z" />
<glyph unicode="8" d="M92 346q0 146 93 254.5t294 185.5q-90 64 -132 139t-42 175q0 114 56 202t155.5 135.5t222.5 47.5q176 0 274.5 -87t98.5 -237q0 -129 -79 -225.5t-263 -173.5q122 -74 176.5 -162.5t54.5 -204.5q0 -122 -60 -217.5t-172.5 -146.5t-264.5 -51q-192 0 -302 98t-110 268z M279 356q0 -104 66 -165.5t177 -61.5q90 0 156.5 33.5t102.5 94t36 134.5q0 99 -51 171.5t-160 131.5q-175 -55 -251 -137t-76 -201zM483 1100q0 -77 37 -139.5t125 -116.5q151 56 218 127.5t67 171.5q0 88 -55.5 139t-149.5 51q-110 0 -176 -63.5t-66 -169.5z" />
<glyph unicode="9" d="M96 14v166q140 -45 246 -45q200 0 323 137t187 430h-10q-51 -72 -131.5 -115.5t-180.5 -43.5q-170 0 -261 99t-91 288q0 152 65 280t181.5 200.5t263.5 72.5q180 0 280.5 -114t100.5 -337q0 -194 -55.5 -406.5t-147 -358t-224 -216.5t-304.5 -71q-136 0 -242 34zM356 938 q0 -121 53 -185.5t158 -64.5q90 0 163 43.5t117 124t44 201.5q0 127 -57 200.5t-156 73.5q-146 0 -234 -110.5t-88 -282.5z" />
<glyph unicode=":" horiz-adv-x="524" d="M41 78q0 76 42.5 123t115.5 47q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79zM203 954q0 78 42 125t115 47q45 0 73 -26t28 -82q0 -72 -40.5 -120t-111.5 -48q-51 0 -78.5 27.5t-27.5 76.5z" />
<glyph unicode=";" horiz-adv-x="524" d="M-100 -264q116 262 202 502h197l8 -23q-98 -211 -270 -479h-137zM203 954q0 78 42 125t115 47q45 0 73 -26t28 -82q0 -72 -40.5 -120t-111.5 -48q-51 0 -78.5 27.5t-27.5 76.5z" />
<glyph unicode="&#x3c;" d="M119 662v102l923 481v-158l-737 -366l737 -324v-159z" />
<glyph unicode="=" d="M125 477v148h924v-148h-924zM125 817v148h924v-148h-924z" />
<glyph unicode="&#x3e;" d="M119 238v159l737 324l-737 366v158l923 -481v-102z" />
<glyph unicode="?" horiz-adv-x="881" d="M158 78q0 76 41.5 123t115.5 47q45 0 73 -27.5t28 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79zM195 1380q90 48 189.5 75.5t190.5 27.5q170 0 262.5 -84t92.5 -238q0 -122 -63.5 -223.5t-229.5 -224.5q-128 -94 -168 -147.5t-63 -153.5h-146q22 133 75 217 t165 172q120 90 161 134.5t64 93t23 110.5q0 89 -49.5 138.5t-143.5 49.5q-78 0 -152.5 -26t-142.5 -58z" />
<glyph unicode="@" horiz-adv-x="1737" d="M109 504q0 266 127.5 489.5t345 345t483.5 121.5q193 0 332 -75t212.5 -214t73.5 -321q0 -179 -56 -324t-156.5 -227t-223.5 -82q-195 0 -215 182h-8q-105 -182 -287 -182q-115 0 -181.5 76t-66.5 211q0 155 67 282.5t187.5 201t262.5 73.5q67 0 130.5 -12t151.5 -48 l-96 -366q-33 -114 -33 -176q0 -113 98 -113q73 0 135 61t102 178.5t40 250.5q0 237 -128 363t-368 126q-223 0 -400.5 -104.5t-276.5 -292.5t-99 -416q0 -270 144 -415.5t405 -145.5q95 0 208.5 23t213.5 63v-133q-217 -90 -445 -90q-206 0 -360.5 83.5t-236.5 240 t-82 366.5zM645 518q0 -172 129 -172q180 0 266 311l68 254q-57 23 -123 23q-92 0 -171 -55t-124 -151t-45 -210z" />
<glyph unicode="A" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5z" />
<glyph unicode="B" horiz-adv-x="1229" d="M84 0l309 1462h379q215 0 324.5 -85t109.5 -251q0 -141 -85.5 -237.5t-243.5 -126.5v-10q114 -32 174.5 -109.5t60.5 -187.5q0 -211 -150 -333t-411 -122h-467zM299 156h258q174 0 268.5 77.5t94.5 221.5q0 113 -71.5 173t-207.5 60h-229zM444 840h240q152 0 242 70.5 t90 193.5q0 97 -62 149t-204 52h-207z" />
<glyph unicode="C" horiz-adv-x="1202" d="M147 539q0 257 104 481.5t283 343.5t404 119q206 0 356 -82l-73 -152q-139 72 -283 72q-175 0 -309 -99t-210.5 -282.5t-76.5 -396.5q0 -187 95 -294.5t263 -107.5q144 0 324 60v-160q-163 -61 -356 -61q-245 0 -383 149.5t-138 409.5z" />
<glyph unicode="D" horiz-adv-x="1366" d="M84 0l309 1462h346q276 0 420 -149t144 -434q0 -262 -104 -462.5t-299.5 -308.5t-455.5 -108h-360zM299 158h156q198 0 347 90.5t228.5 255t79.5 377.5q0 209 -100 316.5t-293 107.5h-174z" />
<glyph unicode="E" horiz-adv-x="1053" d="M84 0l309 1462h742l-35 -162h-559l-97 -456h523l-31 -160h-524l-113 -522h561l-35 -162h-741z" />
<glyph unicode="F" horiz-adv-x="977" d="M84 0l309 1462h742l-33 -162h-561l-109 -520h524l-34 -162h-525l-131 -618h-182z" />
<glyph unicode="G" horiz-adv-x="1389" d="M147 530q0 268 103 489.5t283.5 342.5t402.5 121q117 0 218.5 -20t205.5 -66l-70 -160q-77 34 -164 59t-192 25q-166 0 -302.5 -100t-213 -278.5t-76.5 -399.5q0 -189 99.5 -295.5t279.5 -106.5q141 0 252 37l94 432h-287l35 160h469l-156 -715q-121 -42 -220.5 -58.5 t-205.5 -16.5q-263 0 -409 145.5t-146 404.5z" />
<glyph unicode="H" horiz-adv-x="1393" d="M86 0l309 1462h183l-132 -618h644l131 618h180l-309 -1462h-181l144 682h-643l-144 -682h-182z" />
<glyph unicode="I" horiz-adv-x="664" d="M-41 0l21 100l174 41l249 1180l-155 39l20 102h512l-20 -102l-176 -39l-250 -1180l158 -41l-21 -100h-512z" />
<glyph unicode="J" horiz-adv-x="559" d="M-319 -365l6 158q69 -20 145 -20q204 0 256 245l307 1444h183l-310 -1464q-82 -387 -432 -387q-105 0 -155 24z" />
<glyph unicode="K" horiz-adv-x="1151" d="M84 0l309 1462h182l-151 -710l127 135l561 575h221l-635 -643l346 -819h-200l-285 709l-170 -125l-123 -584h-182z" />
<glyph unicode="L" horiz-adv-x="979" d="M84 0l309 1462h182l-276 -1298h561l-35 -164h-741z" />
<glyph unicode="M" horiz-adv-x="1722" d="M82 0l309 1462h258l142 -1194h8l649 1194h281l-304 -1462h-184l184 868q61 284 99 416h-4l-705 -1284h-145l-156 1282h-8q-15 -155 -66 -403l-186 -879h-172z" />
<glyph unicode="N" horiz-adv-x="1448" d="M82 0l309 1462h195l448 -1208h6q13 93 35 217t37 186l172 805h174l-309 -1462h-195l-452 1212h-6q-21 -172 -74 -417l-168 -795h-172z" />
<glyph unicode="O" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5z" />
<glyph unicode="P" horiz-adv-x="1161" d="M84 0l309 1462h330q216 0 327 -95.5t111 -285.5q0 -247 -164 -378.5t-479 -131.5h-131l-121 -571h-182zM420 725h127q209 0 318.5 90t109.5 260q0 122 -68 176t-209 54h-155z" />
<glyph unicode="Q" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -329 -137 -572.5t-373 -322.5l275 -362h-234l-221 330l-17 -2h-16q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q151 0 268.5 95.5t186 273.5t68.5 403 q0 192 -91.5 301t-253.5 109q-154 0 -276 -99t-189 -277.5t-67 -395.5z" />
<glyph unicode="R" horiz-adv-x="1174" d="M84 0l309 1462h322q450 0 450 -370q0 -344 -364 -447l241 -645h-200l-209 604h-240l-127 -604h-182zM426 760h160q189 0 290 83t101 236q0 117 -65 170.5t-214 53.5h-155z" />
<glyph unicode="S" horiz-adv-x="1034" d="M39 45v180q167 -86 342 -86q156 0 249 72t93 199q0 76 -49.5 134t-192.5 140q-152 89 -209 175t-57 200q0 125 61 221.5t172.5 149.5t247.5 53q199 0 367 -86l-70 -156q-64 36 -144 58t-153 22q-129 0 -207.5 -67.5t-78.5 -182.5q0 -78 39 -129t169 -127 q143 -87 194 -137.5t77 -111.5t26 -142q0 -209 -140 -326.5t-396 -117.5q-204 0 -340 65z" />
<glyph unicode="T" horiz-adv-x="1026" d="M184 1300l35 162h987l-32 -162h-402l-276 -1300h-185l275 1300h-402z" />
<glyph unicode="U" horiz-adv-x="1386" d="M162 385q0 77 24 195l189 882h182l-190 -893q-9 -36 -16 -91t-7 -91q0 -116 70 -181t211 -65q169 0 262.5 86.5t136.5 284.5l203 950h182l-205 -964q-56 -267 -201 -392.5t-389 -125.5q-229 0 -340.5 105t-111.5 300z" />
<glyph unicode="V" horiz-adv-x="1130" d="M188 1462h181l92 -925q19 -175 19 -290l-1 -40h4q57 136 158 332l475 923h203l-778 -1462h-195z" />
<glyph unicode="W" horiz-adv-x="1753" d="M219 1462h180l29 -891l2 -86q0 -104 -10 -260h6q100 266 154 377l401 860h186l41 -856q10 -160 10 -297l-1 -84h6q92 260 131 353l383 884h194l-663 -1462h-187l-45 942q-8 136 -8 285h-6q-19 -60 -54.5 -143t-498.5 -1084h-188z" />
<glyph unicode="X" horiz-adv-x="1079" d="M-106 0l595 774l-260 688h185l198 -559l435 559h200l-553 -696l277 -766h-193l-209 633l-475 -633h-200z" />
<glyph unicode="Y" horiz-adv-x="1042" d="M188 1462h183l174 -733l479 733h207l-627 -919l-112 -543h-185l119 549z" />
<glyph unicode="Z" horiz-adv-x="1087" d="M-20 0l28 143l912 1155h-646l35 164h865l-27 -145l-911 -1153h686l-33 -164h-909z" />
<glyph unicode="[" horiz-adv-x="594" d="M-18 -324l380 1786h396l-33 -147h-225l-316 -1491h226l-33 -148h-395z" />
<glyph unicode="\" horiz-adv-x="729" d="M221 1462h164l217 -1462h-164z" />
<glyph unicode="]" horiz-adv-x="594" d="M-147 -324l30 148h226l315 1491h-225l32 147h396l-381 -1786h-393z" />
<glyph unicode="^" d="M84 551l598 922h113l268 -922h-154l-198 735l-461 -735h-166z" />
<glyph unicode="_" horiz-adv-x="809" d="M-188 -324l30 140h813l-30 -140h-813z" />
<glyph unicode="`" horiz-adv-x="1135" d="M569 1548v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="a" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305z" />
<glyph unicode="b" horiz-adv-x="1186" d="M57 0l330 1556h180l-78 -368q-18 -89 -43 -185t-32 -110h8q102 124 187.5 173.5t174.5 49.5q142 0 221.5 -97.5t79.5 -275.5q0 -207 -68 -384.5t-190.5 -278t-275.5 -100.5q-95 0 -169 49t-112 139h-10l-67 -168h-136zM328 350q0 -104 53.5 -162.5t155.5 -58.5 q98 0 182 82t133 227.5t49 306.5q0 222 -174 222q-95 0 -191.5 -94.5t-152 -237t-55.5 -285.5z" />
<glyph unicode="c" horiz-adv-x="928" d="M98 389q0 203 73.5 371t203.5 263t297 95q147 0 272 -53l-51 -150q-115 52 -219 52q-110 0 -200.5 -76.5t-140.5 -208.5t-50 -291q0 -125 63.5 -193.5t177.5 -68.5q73 0 137 20t127 48v-152q-128 -65 -282 -65q-194 0 -301 107t-107 302z" />
<glyph unicode="d" horiz-adv-x="1186" d="M98 354q0 209 70 387t193.5 276.5t275.5 98.5q190 0 276 -188h11q22 171 45 270l75 358h179l-330 -1556h-148l23 203h-8q-96 -119 -183 -171t-182 -52q-138 0 -217.5 97t-79.5 277zM283 350q0 -221 174 -221q93 0 189 93.5t152 235t56 287.5q0 108 -52 165t-153 57 q-99 0 -183 -83.5t-133.5 -227.5t-49.5 -306z" />
<glyph unicode="e" horiz-adv-x="1022" d="M98 393q0 188 73.5 359t198.5 268.5t277 97.5q156 0 235 -67.5t79 -188.5q0 -182 -168 -284.5t-474 -102.5h-34l-4 -76q0 -126 60.5 -198t186.5 -72q77 0 147.5 22t151.5 62v-154q-99 -46 -173 -62.5t-158 -16.5q-186 0 -292 109.5t-106 303.5zM311 621h15q218 0 338 58 t120 169q0 53 -36 87t-111 34q-103 0 -194 -96.5t-132 -251.5z" />
<glyph unicode="f" horiz-adv-x="651" d="M-229 -319q62 -23 114 -23q70 0 113 56t68 177l225 1070h-191l15 75l204 68l23 98q46 202 129.5 283.5t243.5 81.5q97 0 192 -39l-47 -137q-74 28 -137 28q-88 0 -132 -50t-69 -167l-24 -104h235l-26 -137h-236l-229 -1090q-40 -189 -123.5 -276t-216.5 -87 q-70 0 -131 21v152z" />
<glyph unicode="g" horiz-adv-x="1186" d="M51 -256q63 -38 156 -62t168 -24q133 0 212 64.5t111 201.5l51 210l19 69h-8q-91 -117 -180.5 -170t-182.5 -53q-139 0 -219 98t-80 276q0 215 73 393.5t194.5 274.5t271.5 96q191 0 278 -190h9l67 170h137l-249 -1161q-47 -220 -168 -324.5t-330 -104.5q-197 0 -330 70 v166zM283 350q0 -221 174 -221q90 0 185 91t152.5 235.5t57.5 289.5q0 222 -201 222q-101 0 -186 -84.5t-133.5 -229.5t-48.5 -303z" />
<glyph unicode="h" horiz-adv-x="1186" d="M57 0l330 1556h180l-88 -403q-12 -62 -30 -128.5t-35 -131.5h10q89 117 179.5 170t191.5 53q132 0 204 -71.5t72 -208.5q0 -56 -22 -168l-144 -668h-180l145 688q19 89 19 135q0 144 -144 144q-87 0 -169 -59.5t-144 -170t-94 -264.5l-100 -473h-181z" />
<glyph unicode="i" horiz-adv-x="528" d="M57 0l234 1098h180l-233 -1098h-181zM338 1376q0 57 33.5 94t87.5 37q94 0 94 -92q0 -60 -35 -97.5t-82 -37.5q-43 0 -70.5 25t-27.5 71z" />
<glyph unicode="j" horiz-adv-x="528" d="M-258 -319q58 -23 119 -23q125 0 168 201l262 1239h178l-266 -1256q-37 -176 -118.5 -255t-215.5 -79q-73 0 -127 21v152zM338 1376q0 57 33.5 94t87.5 37q92 0 92 -92q0 -60 -35 -97.5t-82 -37.5q-42 0 -69 25t-27 71z" />
<glyph unicode="k" horiz-adv-x="1014" d="M55 0l330 1556h182q-88 -410 -135.5 -631t-93.5 -358h4l520 531h213l-471 -471l293 -627h-199l-231 514l-148 -117l-81 -397h-183z" />
<glyph unicode="l" horiz-adv-x="528" d="M55 0l332 1556h180l-331 -1556h-181z" />
<glyph unicode="m" horiz-adv-x="1792" d="M57 0l234 1098h147l-22 -203h10q68 90 117.5 131t108 66.5t126.5 25.5q113 0 174.5 -64.5t73.5 -179.5h8q168 244 377 244q128 0 197 -69.5t69 -200.5q0 -88 -22 -180l-142 -668h-182l148 688q18 94 18 143q0 62 -33.5 99t-105.5 37q-78 0 -154 -57.5t-135.5 -164 t-89.5 -249.5l-105 -496h-180l146 688q18 94 18 135q0 144 -133 144q-82 0 -159 -59t-136.5 -170.5t-91.5 -264.5l-100 -473h-181z" />
<glyph unicode="n" horiz-adv-x="1186" d="M57 0l234 1098h147l-22 -203h10q67 86 120.5 129t116 68.5t132.5 25.5q129 0 202.5 -70.5t73.5 -199.5q0 -78 -22 -180l-144 -668h-180l145 688q21 99 21 141q0 63 -35 100.5t-111 37.5q-86 0 -167.5 -59t-144.5 -170.5t-95 -264.5l-100 -473h-181z" />
<glyph unicode="o" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5z" />
<glyph unicode="p" horiz-adv-x="1186" d="M-45 -492l336 1590h147l-24 -205h8q95 118 184.5 170.5t181.5 52.5q142 0 219.5 -100t77.5 -275q0 -213 -70.5 -389.5t-191 -274t-272.5 -97.5q-192 0 -281 188h-10q-16 -137 -27 -186l-100 -474h-178zM328 350q0 -104 53.5 -162.5t155.5 -58.5q98 0 182 82t133 227.5 t49 306.5q0 222 -174 222q-93 0 -188.5 -91t-153 -235t-57.5 -291z" />
<glyph unicode="q" horiz-adv-x="1186" d="M98 354q0 207 70 386t193.5 278.5t277.5 99.5q93 0 163.5 -49t110.5 -141h11l67 170h135l-338 -1590h-178l99 467q24 105 59 228h-8q-91 -117 -180.5 -170t-182.5 -53q-141 0 -220 98t-79 276zM283 350q0 -221 174 -221q90 0 183.5 89t152.5 233t59 294 q0 103 -52.5 162.5t-148.5 59.5q-97 0 -181 -81t-135.5 -226.5t-51.5 -309.5z" />
<glyph unicode="r" horiz-adv-x="815" d="M57 0l234 1098h147l-22 -203h10q73 96 120 137t99 63.5t115 22.5q70 0 119 -14l-39 -162q-56 12 -105 12q-90 0 -169 -58.5t-137.5 -163.5t-84.5 -230l-106 -502h-181z" />
<glyph unicode="s" horiz-adv-x="885" d="M10 49v166q65 -40 144.5 -64t156.5 -24q122 0 185 47.5t63 124.5q0 55 -34.5 94.5t-149.5 104.5q-129 72 -182.5 143.5t-53.5 165.5q0 140 102 225.5t271 85.5q170 0 332 -76l-58 -143q-53 25 -119 46.5t-155 21.5q-88 0 -140.5 -41.5t-52.5 -108.5q0 -55 36.5 -93.5 t144.5 -98.5q113 -67 155.5 -108.5t65 -89.5t22.5 -110q0 -159 -111.5 -248t-314.5 -89q-180 0 -307 69z" />
<glyph unicode="t" horiz-adv-x="680" d="M90 961l16 81l185 78l127 228h106l-55 -250h276l-28 -137h-275l-127 -599q-18 -81 -18 -122q0 -48 25 -80.5t84 -32.5q62 0 145 27v-138q-28 -14 -80.5 -25t-91.5 -11q-128 0 -195 60t-67 179q0 64 18 146l125 596h-170z" />
<glyph unicode="u" horiz-adv-x="1186" d="M113 252q0 64 22 176l144 670h182l-148 -690q-18 -90 -18 -138q0 -141 143 -141q87 0 168.5 59t145.5 171.5t96 265.5l100 473h178l-233 -1098h-148l23 203h-10q-90 -118 -181 -170.5t-190 -52.5q-128 0 -201 71.5t-73 200.5z" />
<glyph unicode="v" horiz-adv-x="956" d="M98 1098h181l61 -611q9 -92 15.5 -201.5t6.5 -148.5h7q113 252 170 357l323 604h193l-594 -1098h-236z" />
<glyph unicode="w" horiz-adv-x="1481" d="M117 1098h176l18 -688q0 -69 -10 -252h8q11 30 50.5 127.5t73.5 172t298 640.5h195l35 -588l4 -248v-59l-2 -45h8q52 156 157 401l240 539h191l-508 -1098h-217l-31 594l-2 143v187h-8l-51 -123l-80 -187l-287 -614h-213z" />
<glyph unicode="x" horiz-adv-x="989" d="M-76 0l475 565l-237 533h182l170 -406l322 406h208l-456 -541l252 -557h-183l-186 426l-338 -426h-209z" />
<glyph unicode="y" horiz-adv-x="956" d="M-193 -326q63 -18 132 -18q82 0 141 51.5t113 149.5l71 127l-166 1114h181l71 -543q11 -75 19 -194.5t8 -213.5h6q26 66 78 179t82 170l319 602h193l-697 -1282q-90 -170 -184 -239t-225 -69q-79 0 -142 21v145z" />
<glyph unicode="z" horiz-adv-x="911" d="M-31 0l25 123l682 840h-471l28 135h666l-29 -146l-669 -817h522l-27 -135h-727z" />
<glyph unicode="{" horiz-adv-x="717" d="M23 510l34 149q118 0 189.5 43.5t93.5 147.5l68 321q33 159 116.5 225t257.5 66h37l-31 -149q-102 0 -148.5 -35.5t-66.5 -122.5l-71 -319q-27 -121 -91 -182.5t-169 -78.5v-4q153 -40 153 -213q0 -57 -18 -129l-45 -209q-15 -65 -15 -94q0 -52 36 -76t118 -24v-150h-27 q-297 0 -297 226q0 50 21 139l49 215q14 75 14 111q0 143 -208 143z" />
<glyph unicode="|" d="M532 -494v2050h148v-2050h-148z" />
<glyph unicode="}" horiz-adv-x="717" d="M-76 -174q113 0 164 36t70 122l71 319q27 119 90 179.5t170 78.5v6q-151 42 -151 211q0 57 18 129l47 211q15 56 15 94q0 52 -41 76.5t-137 24.5l30 149h13q301 0 301 -225q0 -50 -21 -139l-49 -217q-16 -85 -16 -109q0 -143 209 -143l-33 -150q-119 0 -190 -43t-93 -147 l-67 -322q-35 -161 -118.5 -226t-266.5 -65h-15v150z" />
<glyph unicode="~" d="M115 588v160q99 108 243 108q70 0 130 -15.5t141 -49.5q77 -33 120 -44.5t89 -11.5q55 0 119.5 33t115.5 88v-158q-100 -110 -244 -110q-70 0 -131.5 16t-138.5 49t-119.5 44.5t-91.5 11.5q-54 0 -118.5 -34.5t-114.5 -86.5z" />
<glyph unicode="&#xa1;" horiz-adv-x="535" d="M-20 -373l274 1051h119l-174 -1051h-219zM246 948q0 76 42 123t113 47q47 0 74 -28t27 -82q0 -70 -40.5 -118t-109.5 -48q-51 0 -78.5 27t-27.5 79z" />
<glyph unicode="&#xa2;" d="M219 590q0 185 63.5 344t178.5 258.5t262 122.5l33 168h129l-37 -168q127 -11 219 -49l-51 -150q-113 51 -219 51q-110 0 -200.5 -75.5t-142 -208.5t-51.5 -291q0 -125 65 -194.5t179 -69.5t262 69v-153q-123 -62 -286 -66l-41 -198h-131l43 215q-132 34 -203.5 136.5 t-71.5 258.5z" />
<glyph unicode="&#xa3;" d="M-23 0l29 152q205 46 258 286l45 209h-200l28 135h201l72 342q37 173 145.5 265t288.5 92q183 0 340 -86l-70 -142q-144 78 -274 78q-106 0 -168.5 -58t-87.5 -173l-68 -318h365l-29 -135h-365l-45 -207q-21 -102 -66 -168t-126 -108h719l-35 -164h-957z" />
<glyph unicode="&#xa4;" d="M164 1065l96 98l127 -129q103 68 215 68t213 -68l129 129l98 -96l-129 -129q68 -108 68 -215q0 -116 -68 -215l127 -127l-96 -96l-129 127q-96 -66 -213 -66q-116 0 -215 68l-127 -127l-94 96l127 127q-68 96 -68 213q0 113 68 213zM362 723q0 -99 69.5 -169.5 t170.5 -70.5q103 0 174.5 69.5t71.5 170.5q0 103 -72 173.5t-174 70.5q-100 0 -170 -72t-70 -172z" />
<glyph unicode="&#xa5;" d="M123 262l31 137h286l33 158h-289l31 137h223l-202 768h176l172 -733l481 733h197l-529 -768h228l-29 -137h-293l-33 -158h293l-29 -137h-290l-58 -262h-166l56 262h-289z" />
<glyph unicode="&#xa6;" d="M532 287h148v-781h-148v781zM532 776v780h148v-780h-148z" />
<glyph unicode="&#xa7;" horiz-adv-x="995" d="M55 53v154q56 -32 140 -56t159 -24q130 0 198.5 44t68.5 126q0 44 -40.5 81t-158.5 93q-133 58 -191.5 127t-58.5 172q0 200 234 305q-117 73 -117 203q0 128 105 208.5t282 80.5q185 0 323 -70l-55 -129q-151 62 -268 62q-97 0 -156 -39.5t-59 -106.5q0 -49 38 -84 t158 -88q137 -60 193.5 -129t56.5 -160q0 -96 -59.5 -179t-169.5 -138q113 -74 113 -191q0 -152 -116 -238.5t-321 -86.5q-181 0 -299 63zM332 791q0 -67 48.5 -113.5t194.5 -110.5q77 42 122.5 103t45.5 129q0 62 -52 108.5t-177 98.5q-78 -24 -130 -84t-52 -131z" />
<glyph unicode="&#xa8;" horiz-adv-x="1135" d="M451 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM819 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xa9;" horiz-adv-x="1704" d="M137 731q0 200 100 375t275 276t377 101q197 0 370 -97t277 -272t104 -383q0 -204 -100.5 -376.5t-273 -273.5t-377.5 -101q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM246 731q0 -172 86 -321t235.5 -235.5t321.5 -86.5q173 0 321.5 85.5t236 234t87.5 323.5t-87.5 323 t-236 234t-321.5 86q-172 0 -321 -86t-235.5 -235.5t-86.5 -321.5zM516 731q0 209 110 333t304 124q126 0 252 -62l-62 -125q-108 54 -192 54q-122 0 -188 -84.5t-66 -239.5q0 -325 254 -325q93 0 213 45v-129q-65 -28 -114 -39t-107 -11q-190 0 -297 120.5t-107 338.5z" />
<glyph unicode="&#xaa;" horiz-adv-x="694" d="M168 1014q0 126 42 234.5t117 169.5t171 61q114 0 153 -103h8l37 90h92l-141 -669h-96l14 114h-6q-51 -69 -101.5 -98t-109.5 -29q-80 0 -130 62t-50 168zM289 1028q0 -135 98 -135q60 0 111 46.5t83.5 134t32.5 169.5q0 60 -27.5 94.5t-84.5 34.5q-59 0 -107.5 -46.5 t-77 -127.5t-28.5 -170z" />
<glyph unicode="&#xab;" horiz-adv-x="977" d="M86 555v27l393 383l88 -88l-295 -328l168 -385l-125 -53zM489 514v29l371 411l96 -77l-282 -363l155 -350l-124 -53z" />
<glyph unicode="&#xac;" d="M125 647v150h924v-535h-148v385h-776z" />
<glyph unicode="&#xad;" horiz-adv-x="641" d="M53 465l37 166h483l-36 -166h-484z" />
<glyph unicode="&#xae;" horiz-adv-x="1704" d="M137 731q0 200 100 375t275 276t377 101q197 0 370 -97t277 -272t104 -383q0 -204 -100.5 -376.5t-273 -273.5t-377.5 -101q-207 0 -382 103.5t-272.5 276.5t-97.5 371zM246 731q0 -172 86 -321t235.5 -235.5t321.5 -86.5q173 0 321.5 85.5t236 234t87.5 323.5t-87.5 323 t-236 234t-321.5 86q-172 0 -321 -86t-235.5 -235.5t-86.5 -321.5zM639 291v880h235q165 0 244.5 -64t79.5 -194q0 -77 -47 -140.5t-133 -98.5l225 -383h-160l-200 348h-109v-348h-135zM774 762h88q193 0 193 147q0 75 -48 105t-145 30h-88v-282z" />
<glyph unicode="&#xaf;" horiz-adv-x="805" d="M207 1556l33 138h809l-35 -138h-807z" />
<glyph unicode="&#xb0;" horiz-adv-x="877" d="M211 1167q0 131 92 223.5t221 92.5q84 0 157.5 -42.5t116 -116t42.5 -157.5q0 -129 -93.5 -220t-222.5 -91t-221 90.5t-92 220.5zM330 1167q0 -80 57.5 -136t136.5 -56q78 0 135.5 56t57.5 136q0 82 -56.5 139.5t-136.5 57.5t-137 -57.5t-57 -139.5z" />
<glyph unicode="&#xb1;" d="M125 0v147h924v-147h-924zM125 647v150h387v389h150v-389h387v-150h-387v-385h-150v385h-387z" />
<glyph unicode="&#xb2;" horiz-adv-x="723" d="M92 586l25 112l264 226q151 131 194 195t43 130q0 51 -29.5 82t-86.5 31q-95 0 -195 -80l-63 96q127 103 282 103q108 0 172 -57.5t64 -151.5q0 -97 -52 -179t-200 -204l-213 -178h391l-26 -125h-570z" />
<glyph unicode="&#xb3;" horiz-adv-x="723" d="M117 625v133q125 -72 239 -72q104 0 153.5 44.5t49.5 121.5q0 131 -172 131h-94l24 113h95q94 0 151.5 39t57.5 110q0 59 -33.5 88t-90.5 29q-102 0 -196 -68l-57 99q114 88 272 88q117 0 181.5 -56.5t64.5 -150.5q0 -177 -209 -232v-8q71 -17 109 -67t38 -119 q0 -130 -92.5 -204.5t-255.5 -74.5q-127 0 -235 56z" />
<glyph unicode="&#xb4;" horiz-adv-x="1135" d="M528 1241v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xb5;" horiz-adv-x="1198" d="M-45 -492l336 1590h180l-145 -690q-19 -88 -19 -134q0 -145 144 -145q84 0 165 58.5t144 168t98 265.5l105 477h176l-234 -1098h-147l22 203h-10q-94 -122 -181 -172.5t-181 -50.5q-113 0 -162 94h-8l-41 -250l-66 -316h-176z" />
<glyph unicode="&#xb6;" horiz-adv-x="1341" d="M195 1042q0 260 109 387t341 127h561v-1816h-119v1657h-208v-1657h-119v819q-62 -18 -146 -18q-214 0 -316.5 123t-102.5 378z" />
<glyph unicode="&#xb7;" horiz-adv-x="524" d="M166 690q0 76 42.5 123t115.5 47q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79z" />
<glyph unicode="&#xb8;" horiz-adv-x="420" d="M-174 -375q32 -8 74 -8q168 0 168 109q0 37 -30.5 60.5t-107.5 33.5l99 180h114l-59 -117q131 -38 131 -157q0 -99 -80.5 -158.5t-216.5 -59.5q-55 0 -92 11v106z" />
<glyph unicode="&#xb9;" horiz-adv-x="723" d="M246 1274l291 188h127l-187 -876h-145l108 514l58 223l-88 -76l-107 -69z" />
<glyph unicode="&#xba;" horiz-adv-x="694" d="M168 1053q0 119 42 217t119 153.5t177 55.5q119 0 182.5 -69t63.5 -193t-40.5 -223t-116 -154.5t-177.5 -55.5q-116 0 -183 71t-67 198zM289 1057q0 -84 36.5 -125t102.5 -41q93 0 149 91t56 228q0 160 -131 160q-97 0 -155 -86.5t-58 -226.5zM310 1462z" />
<glyph unicode="&#xbb;" horiz-adv-x="977" d="M20 199l283 358l-156 354l125 54l215 -406v-31l-370 -405zM410 199l295 325l-168 387l125 54l229 -447v-29l-393 -378z" />
<glyph unicode="&#xbc;" horiz-adv-x="1544" d="M126 0l1086 1462h162l-1086 -1462h-162zM194 1274l291 188h127l-187 -876h-145l108 514l58 223l-88 -76l-107 -69zM719 199l23 107l481 577h145l-121 -563h125l-22 -121h-129l-41 -198h-137l41 198h-365zM889 320h221q71 328 88 387q-28 -52 -108 -145z" />
<glyph unicode="&#xbd;" horiz-adv-x="1544" d="M75 0l1086 1462h162l-1086 -1462h-162zM143 1274l291 188h127l-187 -876h-145l108 514l58 223l-88 -76l-107 -69zM797 1l25 112l264 226q151 131 194 195t43 130q0 51 -29.5 82t-86.5 31q-95 0 -195 -80l-63 96q127 103 282 103q108 0 172 -57.5t64 -151.5 q0 -97 -52 -179t-200 -204l-213 -178h391l-26 -125h-570z" />
<glyph unicode="&#xbe;" horiz-adv-x="1587" d="M91 625v133q125 -72 239 -72q104 0 153.5 44.5t49.5 121.5q0 131 -172 131h-94l24 113h95q94 0 151.5 39t57.5 110q0 59 -33.5 88t-90.5 29q-102 0 -196 -68l-57 99q114 88 272 88q117 0 181.5 -56.5t64.5 -150.5q0 -177 -209 -232v-8q71 -17 109 -67t38 -119 q0 -130 -92.5 -204.5t-255.5 -74.5q-127 0 -235 56zM274 0l1086 1462h162l-1086 -1462h-162zM860 199l23 107l481 577h145l-121 -563h125l-22 -121h-129l-41 -198h-137l41 198h-365zM1030 320h221q71 328 88 387q-28 -52 -108 -145z" />
<glyph unicode="&#xbf;" horiz-adv-x="881" d="M-10 -76q0 123 66 226t227 221q124 91 165 144.5t64 158.5h147q-21 -130 -72.5 -214.5t-166.5 -174.5q-49 -39 -94 -75t-79 -75.5t-54.5 -85.5t-20.5 -104q0 -88 49.5 -137.5t143.5 -49.5q61 0 129.5 19.5t164.5 64.5l66 -139q-195 -102 -381 -102q-168 0 -261 83 t-93 240zM504 944q0 75 42 121.5t109 46.5q50 0 78.5 -26.5t28.5 -77.5q0 -79 -42.5 -125.5t-115.5 -46.5q-45 0 -72.5 27t-27.5 81z" />
<glyph unicode="&#xc0;" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5zM535 1886v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xc1;" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5zM686 1579v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xc2;" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5zM461 1579v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xc3;" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5zM434 1579q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262 q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xc4;" horiz-adv-x="1151" d="M-117 0l795 1462h192l181 -1462h-181l-55 455h-493l-238 -455h-201zM410 618h387l-33 306q-27 227 -27 344q-32 -77 -70 -154.5t-257 -495.5zM521 1716q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM889 1716q0 52 30 84.5t79 32.5 q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xc5;" horiz-adv-x="1151" d="M-117 0l760 1401q-88 54 -88 180q0 97 62.5 155t158.5 58q100 0 161.5 -57t61.5 -154q0 -74 -32.5 -124t-87.5 -73l172 -1386h-181l-55 455h-493l-238 -455h-201zM410 618h387q-50 461 -55 528t-5 122q-32 -77 -70 -154.5t-257 -495.5zM664 1581q0 -53 29 -83t83 -30 q51 0 83 30t32 83t-32 83t-83 30q-48 0 -80 -30t-32 -83z" />
<glyph unicode="&#xc6;" horiz-adv-x="1688" d="M-119 0l936 1462h952l-32 -162h-561l-99 -456h525l-31 -160h-524l-111 -522h559l-35 -162h-743l96 455h-438l-285 -455h-209zM479 618h367l145 682h-84z" />
<glyph unicode="&#xc7;" horiz-adv-x="1202" d="M147 539q0 257 104 481.5t283 343.5t404 119q206 0 356 -82l-73 -152q-139 72 -283 72q-175 0 -309 -99t-210.5 -282.5t-76.5 -396.5q0 -187 95 -294.5t263 -107.5q144 0 324 60v-160q-163 -61 -356 -61q-245 0 -383 149.5t-138 409.5zM375 -375q32 -8 74 -8 q168 0 168 109q0 37 -30.5 60.5t-107.5 33.5l99 180h114l-59 -117q131 -38 131 -157q0 -99 -80.5 -158.5t-216.5 -59.5q-55 0 -92 11v106z" />
<glyph unicode="&#xc8;" horiz-adv-x="1053" d="M84 0l309 1462h742l-35 -162h-559l-97 -456h523l-31 -160h-524l-113 -522h561l-35 -162h-741zM562 1886v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xc9;" horiz-adv-x="1053" d="M84 0l309 1462h742l-35 -162h-559l-97 -456h523l-31 -160h-524l-113 -522h561l-35 -162h-741zM653 1579v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xca;" horiz-adv-x="1053" d="M84 0l309 1462h742l-35 -162h-559l-97 -456h523l-31 -160h-524l-113 -522h561l-35 -162h-741zM459 1579v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xcb;" horiz-adv-x="1053" d="M84 0l309 1462h742l-35 -162h-559l-97 -456h523l-31 -160h-524l-113 -522h561l-35 -162h-741zM514 1716q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM882 1716q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5 t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xcc;" horiz-adv-x="664" d="M-41 0l21 100l174 41l249 1180l-155 39l20 102h512l-20 -102l-176 -39l-250 -1180l158 -41l-21 -100h-512zM304 1886v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xcd;" horiz-adv-x="664" d="M-41 0l21 100l174 41l249 1180l-155 39l20 102h512l-20 -102l-176 -39l-250 -1180l158 -41l-21 -100h-512zM453 1579v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xce;" horiz-adv-x="664" d="M-41 0l21 100l174 41l249 1180l-155 39l20 102h512l-20 -102l-176 -39l-250 -1180l158 -41l-21 -100h-512zM220 1579v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xcf;" horiz-adv-x="664" d="M-41 0l21 100l174 41l249 1180l-155 39l20 102h512l-20 -102l-176 -39l-250 -1180l158 -41l-21 -100h-512zM284 1716q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM652 1716q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5 q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xd0;" horiz-adv-x="1366" d="M68 645l34 158h150l141 659h346q276 0 420 -149t144 -434q0 -262 -104 -462.5t-299.5 -308.5t-455.5 -108h-360l133 645h-149zM299 158h156q198 0 347 90.5t228.5 255t79.5 377.5q0 209 -100 316.5t-293 107.5h-174l-107 -502h322l-35 -158h-322z" />
<glyph unicode="&#xd1;" horiz-adv-x="1448" d="M82 0l309 1462h195l448 -1208h6q13 93 35 217t37 186l172 805h174l-309 -1462h-195l-452 1212h-6q-21 -172 -74 -417l-168 -795h-172zM596 1579q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262 q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xd2;" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5zM675 1886v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xd3;" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5zM815 1579v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xd4;" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5zM602 1579v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xd5;" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5zM561 1579q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xd6;" horiz-adv-x="1477" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q247 0 386.5 -153.5t139.5 -422.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q148 0 267 97t187.5 277t68.5 398q0 192 -91.5 301t-253.5 109 q-154 0 -276 -99t-189 -277.5t-67 -395.5zM656 1716q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM1024 1716q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xd7;" d="M164 1042l104 105l318 -320l321 320l103 -103l-322 -321l320 -320l-101 -102l-321 320l-318 -318l-102 103l315 317z" />
<glyph unicode="&#xd8;" horiz-adv-x="1477" d="M117 10l135 168q-105 140 -105 369q0 262 95.5 480.5t263.5 338t381 119.5q190 0 327 -107l129 162l119 -94l-147 -180q48 -63 73 -156.5t25 -200.5q0 -275 -91 -488.5t-254 -327t-378 -113.5q-195 0 -330 94l-127 -158zM340 551q0 -127 39 -215l723 905q-92 84 -228 84 q-152 0 -275 -99.5t-191 -278.5t-68 -396zM469 211q92 -70 227 -70q152 0 272 100t186.5 279t66.5 393q0 109 -31 193z" />
<glyph unicode="&#xd9;" horiz-adv-x="1386" d="M162 385q0 77 24 195l189 882h182l-190 -893q-9 -36 -16 -91t-7 -91q0 -116 70 -181t211 -65q169 0 262.5 86.5t136.5 284.5l203 950h182l-205 -964q-56 -267 -201 -392.5t-389 -125.5q-229 0 -340.5 105t-111.5 300zM655 1886v21h193q41 -135 143 -303v-25h-110 q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xda;" horiz-adv-x="1386" d="M162 385q0 77 24 195l189 882h182l-190 -893q-9 -36 -16 -91t-7 -91q0 -116 70 -181t211 -65q169 0 262.5 86.5t136.5 284.5l203 950h182l-205 -964q-56 -267 -201 -392.5t-389 -125.5q-229 0 -340.5 105t-111.5 300zM817 1579v27q51 55 118 143.5t112 157.5h205v-21 q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xdb;" horiz-adv-x="1386" d="M162 385q0 77 24 195l189 882h182l-190 -893q-9 -36 -16 -91t-7 -91q0 -116 70 -181t211 -65q169 0 262.5 86.5t136.5 284.5l203 950h182l-205 -964q-56 -267 -201 -392.5t-389 -125.5q-229 0 -340.5 105t-111.5 300zM590 1579v27q238 220 287 301h174q34 -92 130 -235 l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xdc;" horiz-adv-x="1386" d="M162 385q0 77 24 195l189 882h182l-190 -893q-9 -36 -16 -91t-7 -91q0 -116 70 -181t211 -65q169 0 262.5 86.5t136.5 284.5l203 950h182l-205 -964q-56 -267 -201 -392.5t-389 -125.5q-229 0 -340.5 105t-111.5 300zM635 1716q0 51 29 84t79 33q82 0 82 -82 q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM1003 1716q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xdd;" horiz-adv-x="1042" d="M188 1462h183l174 -733l479 733h207l-627 -919l-112 -543h-185l119 549zM616 1579v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xde;" horiz-adv-x="1161" d="M84 0l309 1462h182l-53 -254h148q217 0 328.5 -95.5t111.5 -285.5q0 -248 -164.5 -379t-482.5 -131h-129l-68 -317h-182zM365 473h129q210 0 319 89.5t109 258.5q0 123 -69 176.5t-208 53.5h-158z" />
<glyph unicode="&#xdf;" horiz-adv-x="1196" d="M-256 -317q52 -23 111 -23q64 0 106.5 46.5t65.5 154.5l278 1306q43 203 157.5 301.5t313.5 98.5q164 0 258 -72t94 -201q0 -79 -42 -149.5t-156 -157.5l-62 -46q-108 -80 -108 -146q0 -55 92 -120q103 -73 156 -151.5t53 -169.5q0 -175 -110.5 -274.5t-297.5 -99.5 q-175 0 -270 71v166q43 -35 110.5 -62.5t137.5 -27.5q115 0 180.5 56.5t65.5 150.5q0 61 -28 105t-106 106q-87 67 -123 122.5t-36 116.5q0 54 19 97.5t51 79.5t124 102q77 52 108.5 83t48.5 64.5t17 71.5q0 64 -52 100.5t-140 36.5q-119 0 -185 -63.5t-92 -188.5 l-272 -1294q-40 -190 -122.5 -277.5t-219.5 -87.5q-71 0 -125 21v154z" />
<glyph unicode="&#xe0;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM492 1548v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xe1;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM600 1241v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xe2;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM382 1241v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xe3;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM352 1241q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xe4;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM448 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM816 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xe5;" horiz-adv-x="1163" d="M98 354q0 205 70.5 382.5t194.5 279.5t274 102q93 0 163.5 -49t112.5 -141h11l65 170h137l-233 -1098h-143l26 203h-8q-173 -223 -373 -223q-137 0 -217 98t-80 276zM283 350q0 -111 45 -166t127 -55q94 0 188.5 90t151.5 234.5t57 294.5q0 98 -54 158.5t-143 60.5 q-101 0 -187.5 -84.5t-135.5 -227.5t-49 -305zM513 1456q0 97 62.5 155t158.5 58q100 0 161.5 -57t61.5 -154q0 -100 -62 -158.5t-161 -58.5t-160 57t-61 158zM621 1456q0 -53 29.5 -83t83.5 -30q51 0 83 30t32 83t-32 83t-83 30q-48 0 -80.5 -30t-32.5 -83z" />
<glyph unicode="&#xe6;" horiz-adv-x="1679" d="M98 352q0 207 71 386t191.5 279.5t260.5 100.5q169 0 249 -190h11l67 170h115l-29 -142q55 76 139.5 119t188.5 43q122 0 197 -68t75 -188q0 -183 -167 -285t-472 -102h-41l-4 -76q0 -126 61.5 -198t190.5 -72q59 0 124 18t173 66v-158q-164 -75 -330 -75 q-108 0 -188.5 38.5t-122.5 116.5l-29 -135h-120l24 203h-8q-104 -126 -186.5 -174.5t-176.5 -48.5q-123 0 -193.5 98.5t-70.5 273.5zM283 352q0 -112 36.5 -167.5t102.5 -55.5q92 0 183 89t148.5 236t57.5 294q0 101 -45 160t-121 59q-98 0 -181.5 -85.5t-132 -227.5 t-48.5 -302zM981 621h18q217 0 337 57.5t120 165.5q0 57 -34 91t-95 34q-113 0 -206 -92.5t-140 -255.5z" />
<glyph unicode="&#xe7;" horiz-adv-x="928" d="M98 389q0 203 73.5 371t203.5 263t297 95q147 0 272 -53l-51 -150q-115 52 -219 52q-110 0 -200.5 -76.5t-140.5 -208.5t-50 -291q0 -125 63.5 -193.5t177.5 -68.5q73 0 137 20t127 48v-152q-128 -65 -282 -65q-194 0 -301 107t-107 302zM207 -375q32 -8 74 -8 q168 0 168 109q0 37 -30.5 60.5t-107.5 33.5l99 180h114l-59 -117q131 -38 131 -157q0 -99 -80.5 -158.5t-216.5 -59.5q-55 0 -92 11v106z" />
<glyph unicode="&#xe8;" horiz-adv-x="1022" d="M98 393q0 188 73.5 359t198.5 268.5t277 97.5q156 0 235 -67.5t79 -188.5q0 -182 -168 -284.5t-474 -102.5h-34l-4 -76q0 -126 60.5 -198t186.5 -72q77 0 147.5 22t151.5 62v-154q-99 -46 -173 -62.5t-158 -16.5q-186 0 -292 109.5t-106 303.5zM311 621h15q218 0 338 58 t120 169q0 53 -36 87t-111 34q-103 0 -194 -96.5t-132 -251.5zM447 1548v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xe9;" horiz-adv-x="1022" d="M98 393q0 188 73.5 359t198.5 268.5t277 97.5q156 0 235 -67.5t79 -188.5q0 -182 -168 -284.5t-474 -102.5h-34l-4 -76q0 -126 60.5 -198t186.5 -72q77 0 147.5 22t151.5 62v-154q-99 -46 -173 -62.5t-158 -16.5q-186 0 -292 109.5t-106 303.5zM311 621h15q218 0 338 58 t120 169q0 53 -36 87t-111 34q-103 0 -194 -96.5t-132 -251.5zM581 1241v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xea;" horiz-adv-x="1022" d="M98 393q0 188 73.5 359t198.5 268.5t277 97.5q156 0 235 -67.5t79 -188.5q0 -182 -168 -284.5t-474 -102.5h-34l-4 -76q0 -126 60.5 -198t186.5 -72q77 0 147.5 22t151.5 62v-154q-99 -46 -173 -62.5t-158 -16.5q-186 0 -292 109.5t-106 303.5zM311 621h15q218 0 338 58 t120 169q0 53 -36 87t-111 34q-103 0 -194 -96.5t-132 -251.5zM345 1241v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xeb;" horiz-adv-x="1022" d="M98 393q0 188 73.5 359t198.5 268.5t277 97.5q156 0 235 -67.5t79 -188.5q0 -182 -168 -284.5t-474 -102.5h-34l-4 -76q0 -126 60.5 -198t186.5 -72q77 0 147.5 22t151.5 62v-154q-99 -46 -173 -62.5t-158 -16.5q-186 0 -292 109.5t-106 303.5zM311 621h15q218 0 338 58 t120 169q0 53 -36 87t-111 34q-103 0 -194 -96.5t-132 -251.5zM409 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM777 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22 t-24.5 64z" />
<glyph unicode="&#xec;" horiz-adv-x="528" d="M57 0l234 1098h180l-233 -1098h-181zM162 1548v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xed;" horiz-adv-x="528" d="M57 0l234 1098h180l-233 -1098h-181zM322 1241v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xee;" horiz-adv-x="528" d="M57 0l234 1098h180l-233 -1098h-181zM87 1241v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xef;" horiz-adv-x="528" d="M57 0l234 1098h180l-233 -1098h-181zM157 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM525 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xf0;" horiz-adv-x="1167" d="M88 375q0 162 67 300t186.5 216t268.5 78q103 0 178 -44t111 -122l6 2v16q0 129 -34.5 229t-108.5 191l-266 -147l-60 110l234 129q-63 57 -144 111l97 123q124 -83 192 -152l258 144l66 -109l-236 -131q86 -113 125 -237.5t39 -266.5q0 -256 -73.5 -450t-204.5 -289.5 t-308 -95.5q-183 0 -288 102.5t-105 292.5zM272 377q0 -122 56.5 -185t163.5 -63q103 0 182.5 54.5t129.5 165t50 224.5q0 112 -62.5 180t-173.5 68q-106 0 -184 -57.5t-120 -160t-42 -226.5z" />
<glyph unicode="&#xf1;" horiz-adv-x="1186" d="M57 0l234 1098h147l-22 -203h10q67 86 120.5 129t116 68.5t132.5 25.5q129 0 202.5 -70.5t73.5 -199.5q0 -78 -22 -180l-144 -668h-180l145 688q21 99 21 141q0 63 -35 100.5t-111 37.5q-86 0 -167.5 -59t-144.5 -170.5t-95 -264.5l-100 -473h-181zM367 1241 q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xf2;" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5zM466 1548v21h193q41 -135 143 -303v-25h-110q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xf3;" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5zM587 1241v27q51 55 118 143.5t112 157.5h205v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xf4;" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5zM374 1241v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xf5;" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5zM340 1241q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#xf6;" horiz-adv-x="1153" d="M98 406q0 192 74 360t197.5 257t277.5 89q191 0 300.5 -113.5t109.5 -310.5q0 -190 -72 -356.5t-196 -257t-281 -90.5q-192 0 -301 114t-109 308zM281 399q0 -128 61.5 -197t175.5 -69q100 0 181.5 71.5t127 202.5t45.5 302q0 115 -60 184.5t-163 69.5q-106 0 -191 -74 t-131 -204.5t-46 -285.5zM429 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM797 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xf7;" d="M125 647v150h924v-150h-924zM473 373q0 123 113 123q53 0 83.5 -30.5t30.5 -92.5q0 -61 -31 -92t-83 -31q-48 0 -80.5 28.5t-32.5 94.5zM473 1071q0 123 113 123q53 0 83.5 -30.5t30.5 -92.5q0 -61 -31 -92t-83 -31q-48 0 -80.5 28.5t-32.5 94.5z" />
<glyph unicode="&#xf8;" horiz-adv-x="1153" d="M59 6l111 137q-70 104 -70 263q0 190 72.5 358t196 258t278.5 90q148 0 250 -65l100 124l109 -81l-115 -127q62 -97 62 -258q0 -198 -74.5 -370.5t-195.5 -261.5t-273 -89q-143 0 -244 63l-98 -125zM274 418q0 -87 17 -125l504 627q-57 45 -146 45q-105 0 -192 -72.5 t-135 -200t-48 -274.5zM367 172q53 -43 151 -43q100 0 183.5 71.5t130.5 199.5t47 286q0 72 -13 109z" />
<glyph unicode="&#xf9;" horiz-adv-x="1186" d="M113 252q0 64 22 176l144 670h182l-148 -690q-18 -90 -18 -138q0 -141 143 -141q87 0 168.5 59t145.5 171.5t96 265.5l100 473h178l-233 -1098h-148l23 203h-10q-90 -118 -181 -170.5t-190 -52.5q-128 0 -201 71.5t-73 200.5zM468 1548v21h193q41 -135 143 -303v-25h-110 q-66 66 -133 159t-93 148z" />
<glyph unicode="&#xfa;" horiz-adv-x="1186" d="M113 252q0 64 22 176l144 670h182l-148 -690q-18 -90 -18 -138q0 -141 143 -141q87 0 168.5 59t145.5 171.5t96 265.5l100 473h178l-233 -1098h-148l23 203h-10q-90 -118 -181 -170.5t-190 -52.5q-128 0 -201 71.5t-73 200.5zM634 1241v27q51 55 118 143.5t112 157.5h205 v-21q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xfb;" horiz-adv-x="1186" d="M113 252q0 64 22 176l144 670h182l-148 -690q-18 -90 -18 -138q0 -141 143 -141q87 0 168.5 59t145.5 171.5t96 265.5l100 473h178l-233 -1098h-148l23 203h-10q-90 -118 -181 -170.5t-190 -52.5q-128 0 -201 71.5t-73 200.5zM403 1241v27q238 220 287 301h174 q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#xfc;" horiz-adv-x="1186" d="M113 252q0 64 22 176l144 670h182l-148 -690q-18 -90 -18 -138q0 -141 143 -141q87 0 168.5 59t145.5 171.5t96 265.5l100 473h178l-233 -1098h-148l23 203h-10q-90 -118 -181 -170.5t-190 -52.5q-128 0 -201 71.5t-73 200.5zM453 1378q0 51 29 84t79 33q82 0 82 -82 q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM821 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#xfd;" horiz-adv-x="956" d="M-193 -326q63 -18 132 -18q82 0 141 51.5t113 149.5l71 127l-166 1114h181l71 -543q11 -75 19 -194.5t8 -213.5h6q26 66 78 179t82 170l319 602h193l-697 -1282q-90 -170 -184 -239t-225 -69q-79 0 -142 21v145zM500 1241v27q51 55 118 143.5t112 157.5h205v-21 q-47 -57 -148 -155.5t-174 -151.5h-113z" />
<glyph unicode="&#xfe;" horiz-adv-x="1186" d="M-45 -492l36 172l396 1876h180l-78 -366q-40 -179 -75 -297h8q100 122 186.5 172.5t177.5 50.5q141 0 220 -99t79 -276q0 -210 -70.5 -389t-191.5 -275.5t-270 -96.5q-93 0 -167.5 48t-117.5 140h-10q-7 -105 -25 -186l-100 -474h-178zM328 350q0 -106 53 -163.5 t156 -57.5q98 0 182 82t133 227.5t49 306.5q0 222 -174 222q-90 0 -185.5 -89t-154.5 -233t-59 -295z" />
<glyph unicode="&#xff;" horiz-adv-x="956" d="M-193 -326q63 -18 132 -18q82 0 141 51.5t113 149.5l71 127l-166 1114h181l71 -543q11 -75 19 -194.5t8 -213.5h6q26 66 78 179t82 170l319 602h193l-697 -1282q-90 -170 -184 -239t-225 -69q-79 0 -142 21v145zM333 1378q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85 t-73.5 -36q-39 0 -63.5 22t-24.5 64zM701 1378q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#x152;" horiz-adv-x="1759" d="M147 547q0 262 95.5 480.5t263.5 338t381 119.5q150 0 235 -23h719l-33 -162h-561l-98 -456h524l-33 -160h-524l-110 -522h561l-35 -162h-682q-82 -20 -160 -20q-257 0 -400 149t-143 418zM342 551q0 -195 95 -302.5t259 -107.5q71 0 125 19l242 1140q-78 23 -189 23 q-154 0 -276 -99t-189 -277.5t-67 -395.5z" />
<glyph unicode="&#x153;" horiz-adv-x="1774" d="M98 406q0 192 73.5 359t199.5 257t286 90q264 0 355 -219q74 106 176 165.5t223 59.5q144 0 222.5 -67.5t78.5 -188.5q0 -184 -165 -285.5t-468 -101.5h-43l-4 -76q0 -126 61 -198t187 -72q56 0 112.5 14t184.5 70v-158q-162 -75 -330 -75q-266 0 -356 217 q-143 -213 -393 -213q-184 0 -292 114t-108 308zM281 410q0 -137 60.5 -207t166.5 -70q170 0 268 157.5t98 418.5q0 122 -58 188t-167 66q-105 0 -189.5 -73t-131.5 -200t-47 -280zM1057 621h20q222 0 340.5 60.5t118.5 172.5q0 48 -32 81.5t-95 33.5q-121 0 -215 -92 t-137 -256z" />
<glyph unicode="&#x178;" horiz-adv-x="1042" d="M188 1462h183l174 -733l479 733h207l-627 -919l-112 -543h-185l119 549zM450 1716q0 51 29 84t79 33q82 0 82 -82q0 -49 -28.5 -85t-73.5 -36q-39 0 -63.5 22t-24.5 64zM818 1716q0 52 30 84.5t79 32.5q42 0 62 -22.5t20 -59.5q0 -52 -30.5 -86.5t-74.5 -34.5 q-37 0 -61.5 22t-24.5 64z" />
<glyph unicode="&#x2c6;" horiz-adv-x="1135" d="M391 1241v27q238 220 287 301h174q34 -92 130 -235l42 -66v-27h-113q-56 48 -161 186q-127 -113 -240 -186h-119z" />
<glyph unicode="&#x2dc;" horiz-adv-x="1135" d="M334 1241q57 262 235 262q45 0 84.5 -17.5t74.5 -38.5t66 -38.5t58 -17.5q42 0 68.5 25.5t50.5 88.5h108q-70 -262 -239 -262q-41 0 -78 17.5t-72 39t-68.5 39t-66.5 17.5q-43 0 -68 -29t-47 -86h-106z" />
<glyph unicode="&#x2000;" horiz-adv-x="953" />
<glyph unicode="&#x2001;" horiz-adv-x="1907" />
<glyph unicode="&#x2002;" horiz-adv-x="953" />
<glyph unicode="&#x2003;" horiz-adv-x="1907" />
<glyph unicode="&#x2004;" horiz-adv-x="635" />
<glyph unicode="&#x2005;" horiz-adv-x="476" />
<glyph unicode="&#x2006;" horiz-adv-x="317" />
<glyph unicode="&#x2007;" horiz-adv-x="317" />
<glyph unicode="&#x2008;" horiz-adv-x="238" />
<glyph unicode="&#x2009;" horiz-adv-x="381" />
<glyph unicode="&#x200a;" horiz-adv-x="105" />
<glyph unicode="&#x2010;" horiz-adv-x="641" d="M53 465l37 166h483l-36 -166h-484z" />
<glyph unicode="&#x2011;" horiz-adv-x="641" d="M53 465l37 166h483l-36 -166h-484z" />
<glyph unicode="&#x2012;" horiz-adv-x="641" d="M53 465l37 166h483l-36 -166h-484z" />
<glyph unicode="&#x2013;" horiz-adv-x="983" d="M53 467l37 166h825l-34 -166h-828z" />
<glyph unicode="&#x2014;" horiz-adv-x="1966" d="M53 467l37 166h1808l-34 -166h-1811z" />
<glyph unicode="&#x2018;" horiz-adv-x="356" d="M123 983q89 201 268 479h137q-141 -331 -202 -501h-197z" />
<glyph unicode="&#x2019;" horiz-adv-x="356" d="M123 961q134 298 203 501h196l8 -22q-40 -91 -111 -218.5t-159 -260.5h-137z" />
<glyph unicode="&#x201a;" horiz-adv-x="498" d="M-100 -264q116 262 202 502h197l8 -23q-98 -211 -270 -479h-137z" />
<glyph unicode="&#x201c;" horiz-adv-x="733" d="M123 983q89 201 268 479h137q-141 -331 -202 -501h-197zM498 983q80 181 272 479h135q-147 -345 -203 -501h-196z" />
<glyph unicode="&#x201d;" horiz-adv-x="733" d="M123 961q134 298 203 501h196l8 -22q-40 -91 -111 -218.5t-159 -260.5h-137zM500 961q52 116 116 278t84 223h199l8 -22q-87 -198 -272 -479h-135z" />
<glyph unicode="&#x201e;" horiz-adv-x="872" d="M-100 -264q116 262 202 502h197l8 -23q-98 -211 -270 -479h-137zM274 -264q140 316 203 502h197l8 -23q-90 -194 -268 -479h-140z" />
<glyph unicode="&#x2022;" horiz-adv-x="770" d="M199 748q0 122 58 187.5t169 65.5q110 0 168.5 -65.5t58.5 -187.5t-59.5 -188t-167.5 -66q-110 0 -168.5 66.5t-58.5 187.5z" />
<glyph unicode="&#x2026;" horiz-adv-x="1575" d="M41 78q0 76 42.5 123t115.5 47q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79zM567 78q0 76 42.5 123t115.5 47q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79zM1092 78q0 76 42.5 123t115.5 47 q45 0 72.5 -27.5t27.5 -81.5q0 -72 -41 -120t-111 -48q-51 0 -78.5 28t-27.5 79z" />
<glyph unicode="&#x202f;" horiz-adv-x="381" />
<glyph unicode="&#x2039;" horiz-adv-x="588" d="M86 549v29l393 387l88 -88l-295 -334l168 -379l-125 -53z" />
<glyph unicode="&#x203a;" horiz-adv-x="588" d="M20 199l295 333l-168 379l125 54l228 -439v-26l-391 -389z" />
<glyph unicode="&#x205f;" horiz-adv-x="476" />
<glyph unicode="&#x20ac;" d="M61 502l27 135h152q8 76 30 160h-149l29 137h157q98 270 260.5 408.5t366.5 138.5q87 0 159 -20.5t146 -71.5l-84 -146q-46 31 -101.5 54.5t-127.5 23.5q-137 0 -248 -97t-182 -290h417l-26 -137h-434q-22 -71 -33 -160h375l-31 -135h-352q0 -180 70 -270.5t216 -90.5 q126 0 260 56v-158q-130 -59 -284 -59q-215 0 -330 136t-115 386h-168z" />
<glyph unicode="&#x2122;" horiz-adv-x="1534" d="M119 1354v108h520v-108h-199v-613h-125v613h-196zM705 741v721h186l180 -553l191 553h178v-721h-127v428l4 121h-6l-195 -549h-100l-187 549h-6q4 -52 4 -121v-428h-122z" />
<glyph unicode="&#xe000;" horiz-adv-x="1100" d="M0 0v1100h1100v-1100h-1100z" />
<glyph unicode="&#xfb01;" horiz-adv-x="1180" d="M-229 -319q62 -23 114 -23q70 0 113 56t68 177l225 1070h-191l15 75l204 68l23 98q46 202 129.5 283.5t243.5 81.5q97 0 192 -39l-47 -137q-74 28 -137 28q-88 0 -132 -50t-69 -167l-24 -104h235l-26 -137h-236l-229 -1090q-40 -189 -123.5 -276t-216.5 -87 q-70 0 -131 21v152zM708 0l234 1098h180l-233 -1098h-181zM989 1376q0 57 33.5 94t87.5 37q94 0 94 -92q0 -60 -35 -97.5t-82 -37.5q-43 0 -70.5 25t-27.5 71z" />
<glyph unicode="&#xfb02;" horiz-adv-x="1180" d="M-229 -319q62 -23 114 -23q70 0 113 56t68 177l225 1070h-191l15 75l204 68l23 98q46 202 129.5 283.5t243.5 81.5q97 0 192 -39l-47 -137q-74 28 -137 28q-88 0 -132 -50t-69 -167l-24 -104h235l-26 -137h-236l-229 -1090q-40 -189 -123.5 -276t-216.5 -87 q-70 0 -131 21v152zM706 0l332 1556h180l-331 -1556h-181z" />
<glyph unicode="&#xfb03;" horiz-adv-x="1835" d="M-229 -319q62 -23 114 -23q71 0 114.5 59t66.5 174l225 1070h-191l15 75l204 68l23 98q46 202 129.5 283.5t243.5 81.5q97 0 192 -39l-47 -137q-74 28 -137 28q-88 0 -132 -50t-69 -167l-24 -104h473l24 106q45 199 128 281t245 82q100 0 195 -39l-50 -137 q-74 28 -135 28q-88 0 -132.5 -51t-69.5 -166l-25 -104h238l-29 -137h-236l-229 -1090q-40 -191 -123 -277t-217 -86q-75 0 -129 21v152q58 -23 115 -23q69 0 112 59.5t66 173.5l225 1070h-473l-229 -1090q-40 -189 -123.5 -276t-216.5 -87q-70 0 -131 21v152zM1364 0 l235 1098h181l-236 -1098h-180zM1647 1376q0 57 33.5 94t86.5 37q93 0 93 -92q0 -58 -35 -96.5t-82 -38.5q-40 0 -68 25t-28 71z" />
<glyph unicode="&#xfb04;" horiz-adv-x="1835" d="M-229 -319q62 -23 114 -23q71 0 114.5 59t66.5 174l225 1070h-191l15 75l204 68l23 98q46 202 129.5 283.5t243.5 81.5q97 0 192 -39l-47 -137q-74 28 -137 28q-88 0 -132 -50t-69 -167l-24 -104h473l24 106q45 199 128 281t245 82q100 0 195 -39l-50 -137 q-74 28 -135 28q-88 0 -132.5 -51t-69.5 -166l-25 -104h238l-29 -137h-236l-229 -1090q-40 -191 -123 -277t-217 -86q-75 0 -129 21v152q58 -23 115 -23q69 0 112 59.5t66 173.5l225 1070h-473l-229 -1090q-40 -189 -123.5 -276t-216.5 -87q-70 0 -131 21v152zM1364 0 l330 1556h180l-332 -1556h-178z" />
<hkern u1="&#x28;" u2="&#xfb04;" k="20" />
<hkern u1="&#x28;" u2="&#xfb03;" k="20" />
<hkern u1="&#x28;" u2="&#xfb02;" k="20" />
<hkern u1="&#x28;" u2="&#xfb01;" k="20" />
<hkern u1="&#x28;" u2="&#x201d;" k="70" />
<hkern u1="&#x28;" u2="&#x2019;" k="70" />
<hkern u1="&#x28;" u2="f" k="20" />
<hkern u1="&#x28;" u2="&#x27;" k="70" />
<hkern u1="&#x28;" u2="&#x22;" k="70" />
<hkern u1="&#x2c;" u2="&#x201e;" k="50" />
<hkern u1="&#x2c;" u2="&#x201a;" k="50" />
<hkern u1="&#x2c;" u2="&#x2014;" k="20" />
<hkern u1="&#x2c;" u2="&#x2013;" k="20" />
<hkern u1="&#x2c;" u2="&#x2e;" k="50" />
<hkern u1="&#x2c;" u2="&#x2d;" k="20" />
<hkern u1="&#x2c;" u2="&#x2c;" k="50" />
<hkern u1="&#x2e;" u2="&#x201e;" k="50" />
<hkern u1="&#x2e;" u2="&#x201a;" k="50" />
<hkern u1="&#x2e;" u2="&#x2014;" k="20" />
<hkern u1="&#x2e;" u2="&#x2013;" k="20" />
<hkern u1="&#x2e;" u2="&#x2e;" k="50" />
<hkern u1="&#x2e;" u2="&#x2d;" k="20" />
<hkern u1="&#x2e;" u2="&#x2c;" k="50" />
<hkern u1="B" u2="&#x201e;" k="60" />
<hkern u1="B" u2="&#x201a;" k="60" />
<hkern u1="B" u2="&#x178;" k="30" />
<hkern u1="B" u2="&#xdd;" k="30" />
<hkern u1="B" u2="Y" k="30" />
<hkern u1="B" u2="W" k="40" />
<hkern u1="B" u2="V" k="40" />
<hkern u1="B" u2="&#x2e;" k="60" />
<hkern u1="B" u2="&#x2c;" k="60" />
<hkern u1="C" u2="&#x201e;" k="20" />
<hkern u1="C" u2="&#x201a;" k="20" />
<hkern u1="C" u2="&#xc5;" k="10" />
<hkern u1="C" u2="&#xc4;" k="10" />
<hkern u1="C" u2="&#xc3;" k="10" />
<hkern u1="C" u2="&#xc2;" k="10" />
<hkern u1="C" u2="&#xc1;" k="10" />
<hkern u1="C" u2="&#xc0;" k="10" />
<hkern u1="C" u2="A" k="10" />
<hkern u1="C" u2="&#x2e;" k="20" />
<hkern u1="C" u2="&#x2c;" k="20" />
<hkern u1="D" u2="&#x201e;" k="60" />
<hkern u1="D" u2="&#x201a;" k="60" />
<hkern u1="D" u2="&#x178;" k="30" />
<hkern u1="D" u2="&#xdd;" k="30" />
<hkern u1="D" u2="Y" k="30" />
<hkern u1="D" u2="W" k="40" />
<hkern u1="D" u2="V" k="40" />
<hkern u1="D" u2="&#x2e;" k="60" />
<hkern u1="D" u2="&#x2c;" k="60" />
<hkern u1="E" u2="&#x201e;" k="130" />
<hkern u1="E" u2="&#x201a;" k="130" />
<hkern u1="E" u2="&#xc5;" k="50" />
<hkern u1="E" u2="&#xc4;" k="50" />
<hkern u1="E" u2="&#xc3;" k="50" />
<hkern u1="E" u2="&#xc2;" k="50" />
<hkern u1="E" u2="&#xc1;" k="50" />
<hkern u1="E" u2="&#xc0;" k="50" />
<hkern u1="E" u2="X" k="20" />
<hkern u1="E" u2="A" k="50" />
<hkern u1="E" u2="&#x2e;" k="130" />
<hkern u1="E" u2="&#x2c;" k="130" />
<hkern u1="F" u2="&#x201e;" k="60" />
<hkern u1="F" u2="&#x201a;" k="60" />
<hkern u1="F" u2="&#xc5;" k="20" />
<hkern u1="F" u2="&#xc4;" k="20" />
<hkern u1="F" u2="&#xc3;" k="20" />
<hkern u1="F" u2="&#xc2;" k="20" />
<hkern u1="F" u2="&#xc1;" k="20" />
<hkern u1="F" u2="&#xc0;" k="20" />
<hkern u1="F" u2="A" k="20" />
<hkern u1="F" u2="&#x3f;" k="-20" />
<hkern u1="F" u2="&#x2e;" k="60" />
<hkern u1="F" u2="&#x2c;" k="60" />
<hkern u1="L" u2="&#x201e;" k="40" />
<hkern u1="L" u2="&#x201a;" k="40" />
<hkern u1="L" u2="&#x2e;" k="40" />
<hkern u1="L" u2="&#x2c;" k="40" />
<hkern u1="O" u2="&#x201e;" k="60" />
<hkern u1="O" u2="&#x201a;" k="60" />
<hkern u1="O" u2="&#x178;" k="30" />
<hkern u1="O" u2="&#xdd;" k="30" />
<hkern u1="O" u2="Y" k="30" />
<hkern u1="O" u2="W" k="40" />
<hkern u1="O" u2="V" k="40" />
<hkern u1="O" u2="&#x2e;" k="60" />
<hkern u1="O" u2="&#x2c;" k="60" />
<hkern u1="P" u2="&#x201e;" k="50" />
<hkern u1="P" u2="&#x201a;" k="50" />
<hkern u1="P" u2="&#xfc;" k="10" />
<hkern u1="P" u2="&#xfb;" k="10" />
<hkern u1="P" u2="&#xfa;" k="10" />
<hkern u1="P" u2="&#xf9;" k="10" />
<hkern u1="P" u2="&#xe6;" k="10" />
<hkern u1="P" u2="&#xe5;" k="10" />
<hkern u1="P" u2="&#xe4;" k="10" />
<hkern u1="P" u2="&#xe3;" k="10" />
<hkern u1="P" u2="&#xe2;" k="10" />
<hkern u1="P" u2="&#xe1;" k="10" />
<hkern u1="P" u2="&#xdc;" k="20" />
<hkern u1="P" u2="&#xdb;" k="20" />
<hkern u1="P" u2="&#xda;" k="20" />
<hkern u1="P" u2="&#xd9;" k="20" />
<hkern u1="P" u2="&#xc5;" k="40" />
<hkern u1="P" u2="&#xc4;" k="40" />
<hkern u1="P" u2="&#xc3;" k="40" />
<hkern u1="P" u2="&#xc2;" k="40" />
<hkern u1="P" u2="&#xc1;" k="40" />
<hkern u1="P" u2="&#xc0;" k="40" />
<hkern u1="P" u2="u" k="10" />
<hkern u1="P" u2="r" k="10" />
<hkern u1="P" u2="p" k="10" />
<hkern u1="P" u2="n" k="10" />
<hkern u1="P" u2="m" k="10" />
<hkern u1="P" u2="g" k="20" />
<hkern u1="P" u2="a" k="10" />
<hkern u1="P" u2="Z" k="10" />
<hkern u1="P" u2="U" k="20" />
<hkern u1="P" u2="A" k="40" />
<hkern u1="P" u2="&#x3f;" k="-20" />
<hkern u1="P" u2="&#x2e;" k="50" />
<hkern u1="P" u2="&#x2c;" k="50" />
<hkern u1="Q" u2="&#x201e;" k="60" />
<hkern u1="Q" u2="&#x201a;" k="60" />
<hkern u1="Q" u2="&#x178;" k="30" />
<hkern u1="Q" u2="&#xdd;" k="30" />
<hkern u1="Q" u2="Y" k="30" />
<hkern u1="Q" u2="W" k="40" />
<hkern u1="Q" u2="V" k="40" />
<hkern u1="Q" u2="&#x2e;" k="60" />
<hkern u1="Q" u2="&#x2c;" k="60" />
<hkern u1="T" u2="&#x201e;" k="60" />
<hkern u1="T" u2="&#x201a;" k="60" />
<hkern u1="T" u2="&#xfc;" k="40" />
<hkern u1="T" u2="&#xfb;" k="40" />
<hkern u1="T" u2="&#xfa;" k="40" />
<hkern u1="T" u2="&#xf9;" k="40" />
<hkern u1="T" u2="&#xe6;" k="30" />
<hkern u1="T" u2="&#xe5;" k="30" />
<hkern u1="T" u2="&#xe4;" k="30" />
<hkern u1="T" u2="&#xe3;" k="30" />
<hkern u1="T" u2="&#xe2;" k="30" />
<hkern u1="T" u2="&#xe1;" k="30" />
<hkern u1="T" u2="&#xdc;" k="50" />
<hkern u1="T" u2="&#xdb;" k="50" />
<hkern u1="T" u2="&#xda;" k="50" />
<hkern u1="T" u2="&#xd9;" k="50" />
<hkern u1="T" u2="&#xc5;" k="60" />
<hkern u1="T" u2="&#xc4;" k="60" />
<hkern u1="T" u2="&#xc3;" k="60" />
<hkern u1="T" u2="&#xc2;" k="60" />
<hkern u1="T" u2="&#xc1;" k="60" />
<hkern u1="T" u2="&#xc0;" k="60" />
<hkern u1="T" u2="u" k="40" />
<hkern u1="T" u2="s" k="20" />
<hkern u1="T" u2="r" k="40" />
<hkern u1="T" u2="p" k="40" />
<hkern u1="T" u2="n" k="40" />
<hkern u1="T" u2="m" k="40" />
<hkern u1="T" u2="g" k="50" />
<hkern u1="T" u2="a" k="30" />
<hkern u1="T" u2="Z" k="20" />
<hkern u1="T" u2="U" k="50" />
<hkern u1="T" u2="A" k="60" />
<hkern u1="T" u2="&#x3f;" k="-20" />
<hkern u1="T" u2="&#x2e;" k="60" />
<hkern u1="T" u2="&#x2c;" k="60" />
<hkern u1="U" u2="&#x201e;" k="40" />
<hkern u1="U" u2="&#x201a;" k="40" />
<hkern u1="U" u2="&#x2e;" k="40" />
<hkern u1="U" u2="&#x2c;" k="40" />
<hkern u1="Z" u2="&#x201d;" k="40" />
<hkern u1="Z" u2="&#x2019;" k="40" />
<hkern u1="Z" u2="&#xfd;" k="40" />
<hkern u1="Z" u2="y" k="40" />
<hkern u1="Z" u2="x" k="40" />
<hkern u1="Z" u2="w" k="40" />
<hkern u1="Z" u2="v" k="40" />
<hkern u1="Z" u2="&#x27;" k="40" />
<hkern u1="Z" u2="&#x22;" k="40" />
<hkern u1="[" u2="&#xfb04;" k="20" />
<hkern u1="[" u2="&#xfb03;" k="20" />
<hkern u1="[" u2="&#xfb02;" k="20" />
<hkern u1="[" u2="&#xfb01;" k="20" />
<hkern u1="[" u2="&#x201d;" k="70" />
<hkern u1="[" u2="&#x2019;" k="70" />
<hkern u1="[" u2="f" k="20" />
<hkern u1="[" u2="&#x27;" k="70" />
<hkern u1="[" u2="&#x22;" k="70" />
<hkern u1="a" u2="&#x201d;" k="10" />
<hkern u1="a" u2="&#x2019;" k="10" />
<hkern u1="a" u2="&#x27;" k="10" />
<hkern u1="a" u2="&#x22;" k="10" />
<hkern u1="b" u2="&#x201e;" k="10" />
<hkern u1="b" u2="&#x201a;" k="10" />
<hkern u1="b" u2="&#x2e;" k="10" />
<hkern u1="b" u2="&#x2c;" k="10" />
<hkern u1="c" u2="&#x201d;" k="-20" />
<hkern u1="c" u2="&#x2019;" k="-20" />
<hkern u1="c" u2="&#x27;" k="-20" />
<hkern u1="c" u2="&#x22;" k="-20" />
<hkern u1="e" u2="&#x201e;" k="10" />
<hkern u1="e" u2="&#x201a;" k="10" />
<hkern u1="e" u2="&#x2e;" k="10" />
<hkern u1="e" u2="&#x2c;" k="10" />
<hkern u1="f" u2="g" k="20" />
<hkern u1="h" u2="&#x201d;" k="10" />
<hkern u1="h" u2="&#x2019;" k="10" />
<hkern u1="h" u2="&#x27;" k="10" />
<hkern u1="h" u2="&#x22;" k="10" />
<hkern u1="k" u2="&#x201d;" k="10" />
<hkern u1="k" u2="&#x2019;" k="10" />
<hkern u1="k" u2="&#x153;" k="20" />
<hkern u1="k" u2="&#xf8;" k="20" />
<hkern u1="k" u2="&#xf6;" k="20" />
<hkern u1="k" u2="&#xf5;" k="20" />
<hkern u1="k" u2="&#xf4;" k="20" />
<hkern u1="k" u2="&#xf3;" k="20" />
<hkern u1="k" u2="&#xf2;" k="20" />
<hkern u1="k" u2="&#xeb;" k="20" />
<hkern u1="k" u2="&#xea;" k="20" />
<hkern u1="k" u2="&#xe9;" k="20" />
<hkern u1="k" u2="&#xe8;" k="20" />
<hkern u1="k" u2="&#xe7;" k="20" />
<hkern u1="k" u2="&#xe0;" k="20" />
<hkern u1="k" u2="s" k="10" />
<hkern u1="k" u2="q" k="20" />
<hkern u1="k" u2="o" k="20" />
<hkern u1="k" u2="e" k="20" />
<hkern u1="k" u2="d" k="20" />
<hkern u1="k" u2="c" k="20" />
<hkern u1="k" u2="&#x27;" k="10" />
<hkern u1="k" u2="&#x22;" k="10" />
<hkern u1="m" u2="&#x201d;" k="10" />
<hkern u1="m" u2="&#x2019;" k="10" />
<hkern u1="m" u2="&#x27;" k="10" />
<hkern u1="m" u2="&#x22;" k="10" />
<hkern u1="n" u2="&#x201d;" k="10" />
<hkern u1="n" u2="&#x2019;" k="10" />
<hkern u1="n" u2="&#x27;" k="10" />
<hkern u1="n" u2="&#x22;" k="10" />
<hkern u1="o" u2="&#x201e;" k="10" />
<hkern u1="o" u2="&#x201a;" k="10" />
<hkern u1="o" u2="&#x2e;" k="10" />
<hkern u1="o" u2="&#x2c;" k="10" />
<hkern u1="p" u2="&#x201e;" k="10" />
<hkern u1="p" u2="&#x201a;" k="10" />
<hkern u1="p" u2="&#x2e;" k="10" />
<hkern u1="p" u2="&#x2c;" k="10" />
<hkern u1="r" u2="&#x153;" k="-50" />
<hkern u1="r" u2="&#xf8;" k="-50" />
<hkern u1="r" u2="&#xf6;" k="-50" />
<hkern u1="r" u2="&#xf5;" k="-50" />
<hkern u1="r" u2="&#xf4;" k="-50" />
<hkern u1="r" u2="&#xf3;" k="-50" />
<hkern u1="r" u2="&#xf2;" k="-50" />
<hkern u1="r" u2="&#xeb;" k="-50" />
<hkern u1="r" u2="&#xea;" k="-50" />
<hkern u1="r" u2="&#xe9;" k="-50" />
<hkern u1="r" u2="&#xe8;" k="-50" />
<hkern u1="r" u2="&#xe7;" k="-50" />
<hkern u1="r" u2="&#xe0;" k="-50" />
<hkern u1="r" u2="q" k="-50" />
<hkern u1="r" u2="o" k="-50" />
<hkern u1="r" u2="e" k="-50" />
<hkern u1="r" u2="d" k="-50" />
<hkern u1="r" u2="c" k="-50" />
<hkern u1="t" u2="&#x201d;" k="40" />
<hkern u1="t" u2="&#x2019;" k="40" />
<hkern u1="t" u2="&#x27;" k="40" />
<hkern u1="t" u2="&#x22;" k="40" />
<hkern u1="v" u2="&#x201d;" k="80" />
<hkern u1="v" u2="&#x2019;" k="80" />
<hkern u1="v" u2="&#x152;" k="20" />
<hkern u1="v" u2="&#xd8;" k="20" />
<hkern u1="v" u2="&#xd6;" k="20" />
<hkern u1="v" u2="&#xd5;" k="20" />
<hkern u1="v" u2="&#xd4;" k="20" />
<hkern u1="v" u2="&#xd3;" k="20" />
<hkern u1="v" u2="&#xd2;" k="20" />
<hkern u1="v" u2="&#xc7;" k="20" />
<hkern u1="v" u2="T" k="30" />
<hkern u1="v" u2="Q" k="20" />
<hkern u1="v" u2="O" k="20" />
<hkern u1="v" u2="G" k="20" />
<hkern u1="v" u2="C" k="20" />
<hkern u1="v" u2="&#x27;" k="80" />
<hkern u1="v" u2="&#x22;" k="80" />
<hkern u1="w" u2="&#x201d;" k="80" />
<hkern u1="w" u2="&#x2019;" k="80" />
<hkern u1="w" u2="&#x152;" k="20" />
<hkern u1="w" u2="&#xd8;" k="20" />
<hkern u1="w" u2="&#xd6;" k="20" />
<hkern u1="w" u2="&#xd5;" k="20" />
<hkern u1="w" u2="&#xd4;" k="20" />
<hkern u1="w" u2="&#xd3;" k="20" />
<hkern u1="w" u2="&#xd2;" k="20" />
<hkern u1="w" u2="&#xc7;" k="20" />
<hkern u1="w" u2="T" k="30" />
<hkern u1="w" u2="Q" k="20" />
<hkern u1="w" u2="O" k="20" />
<hkern u1="w" u2="G" k="20" />
<hkern u1="w" u2="C" k="20" />
<hkern u1="w" u2="&#x27;" k="80" />
<hkern u1="w" u2="&#x22;" k="80" />
<hkern u1="x" u2="&#x201d;" k="10" />
<hkern u1="x" u2="&#x2019;" k="10" />
<hkern u1="x" u2="&#x153;" k="20" />
<hkern u1="x" u2="&#xf8;" k="20" />
<hkern u1="x" u2="&#xf6;" k="20" />
<hkern u1="x" u2="&#xf5;" k="20" />
<hkern u1="x" u2="&#xf4;" k="20" />
<hkern u1="x" u2="&#xf3;" k="20" />
<hkern u1="x" u2="&#xf2;" k="20" />
<hkern u1="x" u2="&#xeb;" k="20" />
<hkern u1="x" u2="&#xea;" k="20" />
<hkern u1="x" u2="&#xe9;" k="20" />
<hkern u1="x" u2="&#xe8;" k="20" />
<hkern u1="x" u2="&#xe7;" k="20" />
<hkern u1="x" u2="&#xe0;" k="20" />
<hkern u1="x" u2="s" k="10" />
<hkern u1="x" u2="q" k="20" />
<hkern u1="x" u2="o" k="20" />
<hkern u1="x" u2="e" k="20" />
<hkern u1="x" u2="d" k="20" />
<hkern u1="x" u2="c" k="20" />
<hkern u1="x" u2="&#x27;" k="10" />
<hkern u1="x" u2="&#x22;" k="10" />
<hkern u1="y" u2="&#x201d;" k="80" />
<hkern u1="y" u2="&#x2019;" k="80" />
<hkern u1="y" u2="&#x152;" k="20" />
<hkern u1="y" u2="&#xd8;" k="20" />
<hkern u1="y" u2="&#xd6;" k="20" />
<hkern u1="y" u2="&#xd5;" k="20" />
<hkern u1="y" u2="&#xd4;" k="20" />
<hkern u1="y" u2="&#xd3;" k="20" />
<hkern u1="y" u2="&#xd2;" k="20" />
<hkern u1="y" u2="&#xc7;" k="20" />
<hkern u1="y" u2="T" k="30" />
<hkern u1="y" u2="Q" k="20" />
<hkern u1="y" u2="O" k="20" />
<hkern u1="y" u2="G" k="20" />
<hkern u1="y" u2="C" k="20" />
<hkern u1="y" u2="&#x27;" k="80" />
<hkern u1="y" u2="&#x22;" k="80" />
<hkern u1="&#x7b;" u2="&#xfb04;" k="20" />
<hkern u1="&#x7b;" u2="&#xfb03;" k="20" />
<hkern u1="&#x7b;" u2="&#xfb02;" k="20" />
<hkern u1="&#x7b;" u2="&#xfb01;" k="20" />
<hkern u1="&#x7b;" u2="&#x201d;" k="70" />
<hkern u1="&#x7b;" u2="&#x2019;" k="70" />
<hkern u1="&#x7b;" u2="f" k="20" />
<hkern u1="&#x7b;" u2="&#x27;" k="70" />
<hkern u1="&#x7b;" u2="&#x22;" k="70" />
<hkern u1="&#xc6;" u2="&#x201e;" k="130" />
<hkern u1="&#xc6;" u2="&#x201a;" k="130" />
<hkern u1="&#xc6;" u2="&#xc5;" k="50" />
<hkern u1="&#xc6;" u2="&#xc4;" k="50" />
<hkern u1="&#xc6;" u2="&#xc3;" k="50" />
<hkern u1="&#xc6;" u2="&#xc2;" k="50" />
<hkern u1="&#xc6;" u2="&#xc1;" k="50" />
<hkern u1="&#xc6;" u2="&#xc0;" k="50" />
<hkern u1="&#xc6;" u2="X" k="20" />
<hkern u1="&#xc6;" u2="A" k="50" />
<hkern u1="&#xc6;" u2="&#x2e;" k="130" />
<hkern u1="&#xc6;" u2="&#x2c;" k="130" />
<hkern u1="&#xc7;" u2="&#x201e;" k="20" />
<hkern u1="&#xc7;" u2="&#x201a;" k="20" />
<hkern u1="&#xc7;" u2="&#xc5;" k="10" />
<hkern u1="&#xc7;" u2="&#xc4;" k="10" />
<hkern u1="&#xc7;" u2="&#xc3;" k="10" />
<hkern u1="&#xc7;" u2="&#xc2;" k="10" />
<hkern u1="&#xc7;" u2="&#xc1;" k="10" />
<hkern u1="&#xc7;" u2="&#xc0;" k="10" />
<hkern u1="&#xc7;" u2="A" k="10" />
<hkern u1="&#xc7;" u2="&#x2e;" k="20" />
<hkern u1="&#xc7;" u2="&#x2c;" k="20" />
<hkern u1="&#xc8;" u2="&#x201e;" k="130" />
<hkern u1="&#xc8;" u2="&#x201a;" k="130" />
<hkern u1="&#xc8;" u2="&#xc5;" k="50" />
<hkern u1="&#xc8;" u2="&#xc4;" k="50" />
<hkern u1="&#xc8;" u2="&#xc3;" k="50" />
<hkern u1="&#xc8;" u2="&#xc2;" k="50" />
<hkern u1="&#xc8;" u2="&#xc1;" k="50" />
<hkern u1="&#xc8;" u2="&#xc0;" k="50" />
<hkern u1="&#xc8;" u2="X" k="20" />
<hkern u1="&#xc8;" u2="A" k="50" />
<hkern u1="&#xc8;" u2="&#x2e;" k="130" />
<hkern u1="&#xc8;" u2="&#x2c;" k="130" />
<hkern u1="&#xc9;" u2="&#x201e;" k="130" />
<hkern u1="&#xc9;" u2="&#x201a;" k="130" />
<hkern u1="&#xc9;" u2="&#xc5;" k="50" />
<hkern u1="&#xc9;" u2="&#xc4;" k="50" />
<hkern u1="&#xc9;" u2="&#xc3;" k="50" />
<hkern u1="&#xc9;" u2="&#xc2;" k="50" />
<hkern u1="&#xc9;" u2="&#xc1;" k="50" />
<hkern u1="&#xc9;" u2="&#xc0;" k="50" />
<hkern u1="&#xc9;" u2="X" k="20" />
<hkern u1="&#xc9;" u2="A" k="50" />
<hkern u1="&#xc9;" u2="&#x2e;" k="130" />
<hkern u1="&#xc9;" u2="&#x2c;" k="130" />
<hkern u1="&#xca;" u2="&#x201e;" k="130" />
<hkern u1="&#xca;" u2="&#x201a;" k="130" />
<hkern u1="&#xca;" u2="&#xc5;" k="50" />
<hkern u1="&#xca;" u2="&#xc4;" k="50" />
<hkern u1="&#xca;" u2="&#xc3;" k="50" />
<hkern u1="&#xca;" u2="&#xc2;" k="50" />
<hkern u1="&#xca;" u2="&#xc1;" k="50" />
<hkern u1="&#xca;" u2="&#xc0;" k="50" />
<hkern u1="&#xca;" u2="X" k="20" />
<hkern u1="&#xca;" u2="A" k="50" />
<hkern u1="&#xca;" u2="&#x2e;" k="130" />
<hkern u1="&#xca;" u2="&#x2c;" k="130" />
<hkern u1="&#xcb;" u2="&#x201e;" k="130" />
<hkern u1="&#xcb;" u2="&#x201a;" k="130" />
<hkern u1="&#xcb;" u2="&#xc5;" k="50" />
<hkern u1="&#xcb;" u2="&#xc4;" k="50" />
<hkern u1="&#xcb;" u2="&#xc3;" k="50" />
<hkern u1="&#xcb;" u2="&#xc2;" k="50" />
<hkern u1="&#xcb;" u2="&#xc1;" k="50" />
<hkern u1="&#xcb;" u2="&#xc0;" k="50" />
<hkern u1="&#xcb;" u2="X" k="20" />
<hkern u1="&#xcb;" u2="A" k="50" />
<hkern u1="&#xcb;" u2="&#x2e;" k="130" />
<hkern u1="&#xcb;" u2="&#x2c;" k="130" />
<hkern u1="&#xd0;" u2="&#x201e;" k="60" />
<hkern u1="&#xd0;" u2="&#x201a;" k="60" />
<hkern u1="&#xd0;" u2="&#x178;" k="30" />
<hkern u1="&#xd0;" u2="&#xdd;" k="30" />
<hkern u1="&#xd0;" u2="Y" k="30" />
<hkern u1="&#xd0;" u2="W" k="40" />
<hkern u1="&#xd0;" u2="V" k="40" />
<hkern u1="&#xd0;" u2="&#x2e;" k="60" />
<hkern u1="&#xd0;" u2="&#x2c;" k="60" />
<hkern u1="&#xd2;" u2="&#x201e;" k="60" />
<hkern u1="&#xd2;" u2="&#x201a;" k="60" />
<hkern u1="&#xd2;" u2="&#x178;" k="30" />
<hkern u1="&#xd2;" u2="&#xdd;" k="30" />
<hkern u1="&#xd2;" u2="Y" k="30" />
<hkern u1="&#xd2;" u2="W" k="40" />
<hkern u1="&#xd2;" u2="V" k="40" />
<hkern u1="&#xd2;" u2="&#x2e;" k="60" />
<hkern u1="&#xd2;" u2="&#x2c;" k="60" />
<hkern u1="&#xd3;" u2="&#x201e;" k="60" />
<hkern u1="&#xd3;" u2="&#x201a;" k="60" />
<hkern u1="&#xd3;" u2="&#x178;" k="30" />
<hkern u1="&#xd3;" u2="&#xdd;" k="30" />
<hkern u1="&#xd3;" u2="Y" k="30" />
<hkern u1="&#xd3;" u2="W" k="40" />
<hkern u1="&#xd3;" u2="V" k="40" />
<hkern u1="&#xd3;" u2="&#x2e;" k="60" />
<hkern u1="&#xd3;" u2="&#x2c;" k="60" />
<hkern u1="&#xd4;" u2="&#x201e;" k="60" />
<hkern u1="&#xd4;" u2="&#x201a;" k="60" />
<hkern u1="&#xd4;" u2="&#x178;" k="30" />
<hkern u1="&#xd4;" u2="&#xdd;" k="30" />
<hkern u1="&#xd4;" u2="Y" k="30" />
<hkern u1="&#xd4;" u2="W" k="40" />
<hkern u1="&#xd4;" u2="V" k="40" />
<hkern u1="&#xd4;" u2="&#x2e;" k="60" />
<hkern u1="&#xd4;" u2="&#x2c;" k="60" />
<hkern u1="&#xd5;" u2="&#x201e;" k="60" />
<hkern u1="&#xd5;" u2="&#x201a;" k="60" />
<hkern u1="&#xd5;" u2="&#x178;" k="30" />
<hkern u1="&#xd5;" u2="&#xdd;" k="30" />
<hkern u1="&#xd5;" u2="Y" k="30" />
<hkern u1="&#xd5;" u2="W" k="40" />
<hkern u1="&#xd5;" u2="V" k="40" />
<hkern u1="&#xd5;" u2="&#x2e;" k="60" />
<hkern u1="&#xd5;" u2="&#x2c;" k="60" />
<hkern u1="&#xd6;" u2="&#x201e;" k="60" />
<hkern u1="&#xd6;" u2="&#x201a;" k="60" />
<hkern u1="&#xd6;" u2="&#x178;" k="30" />
<hkern u1="&#xd6;" u2="&#xdd;" k="30" />
<hkern u1="&#xd6;" u2="Y" k="30" />
<hkern u1="&#xd6;" u2="W" k="40" />
<hkern u1="&#xd6;" u2="V" k="40" />
<hkern u1="&#xd6;" u2="&#x2e;" k="60" />
<hkern u1="&#xd6;" u2="&#x2c;" k="60" />
<hkern u1="&#xd8;" u2="&#x201e;" k="60" />
<hkern u1="&#xd8;" u2="&#x201a;" k="60" />
<hkern u1="&#xd8;" u2="&#x178;" k="30" />
<hkern u1="&#xd8;" u2="&#xdd;" k="30" />
<hkern u1="&#xd8;" u2="Y" k="30" />
<hkern u1="&#xd8;" u2="W" k="40" />
<hkern u1="&#xd8;" u2="V" k="40" />
<hkern u1="&#xd8;" u2="&#x2e;" k="60" />
<hkern u1="&#xd8;" u2="&#x2c;" k="60" />
<hkern u1="&#xd9;" u2="&#x201e;" k="40" />
<hkern u1="&#xd9;" u2="&#x201a;" k="40" />
<hkern u1="&#xd9;" u2="&#x2e;" k="40" />
<hkern u1="&#xd9;" u2="&#x2c;" k="40" />
<hkern u1="&#xda;" u2="&#x201e;" k="40" />
<hkern u1="&#xda;" u2="&#x201a;" k="40" />
<hkern u1="&#xda;" u2="&#x2e;" k="40" />
<hkern u1="&#xda;" u2="&#x2c;" k="40" />
<hkern u1="&#xdb;" u2="&#x201e;" k="40" />
<hkern u1="&#xdb;" u2="&#x201a;" k="40" />
<hkern u1="&#xdb;" u2="&#x2e;" k="40" />
<hkern u1="&#xdb;" u2="&#x2c;" k="40" />
<hkern u1="&#xdc;" u2="&#x201e;" k="40" />
<hkern u1="&#xdc;" u2="&#x201a;" k="40" />
<hkern u1="&#xdc;" u2="&#x2e;" k="40" />
<hkern u1="&#xdc;" u2="&#x2c;" k="40" />
<hkern u1="&#xde;" u2="&#x201e;" k="50" />
<hkern u1="&#xde;" u2="&#x201a;" k="50" />
<hkern u1="&#xde;" u2="&#xfc;" k="10" />
<hkern u1="&#xde;" u2="&#xfb;" k="10" />
<hkern u1="&#xde;" u2="&#xfa;" k="10" />
<hkern u1="&#xde;" u2="&#xf9;" k="10" />
<hkern u1="&#xde;" u2="&#xe6;" k="10" />
<hkern u1="&#xde;" u2="&#xe5;" k="10" />
<hkern u1="&#xde;" u2="&#xe4;" k="10" />
<hkern u1="&#xde;" u2="&#xe3;" k="10" />
<hkern u1="&#xde;" u2="&#xe2;" k="10" />
<hkern u1="&#xde;" u2="&#xe1;" k="10" />
<hkern u1="&#xde;" u2="&#xdc;" k="20" />
<hkern u1="&#xde;" u2="&#xdb;" k="20" />
<hkern u1="&#xde;" u2="&#xda;" k="20" />
<hkern u1="&#xde;" u2="&#xd9;" k="20" />
<hkern u1="&#xde;" u2="&#xc5;" k="40" />
<hkern u1="&#xde;" u2="&#xc4;" k="40" />
<hkern u1="&#xde;" u2="&#xc3;" k="40" />
<hkern u1="&#xde;" u2="&#xc2;" k="40" />
<hkern u1="&#xde;" u2="&#xc1;" k="40" />
<hkern u1="&#xde;" u2="&#xc0;" k="40" />
<hkern u1="&#xde;" u2="u" k="10" />
<hkern u1="&#xde;" u2="r" k="10" />
<hkern u1="&#xde;" u2="p" k="10" />
<hkern u1="&#xde;" u2="n" k="10" />
<hkern u1="&#xde;" u2="m" k="10" />
<hkern u1="&#xde;" u2="g" k="20" />
<hkern u1="&#xde;" u2="a" k="10" />
<hkern u1="&#xde;" u2="Z" k="10" />
<hkern u1="&#xde;" u2="U" k="20" />
<hkern u1="&#xde;" u2="A" k="40" />
<hkern u1="&#xde;" u2="&#x3f;" k="-20" />
<hkern u1="&#xde;" u2="&#x2e;" k="50" />
<hkern u1="&#xde;" u2="&#x2c;" k="50" />
<hkern u1="&#xe0;" u2="&#x201d;" k="10" />
<hkern u1="&#xe0;" u2="&#x2019;" k="10" />
<hkern u1="&#xe0;" u2="&#x27;" k="10" />
<hkern u1="&#xe0;" u2="&#x22;" k="10" />
<hkern u1="&#xe1;" u2="&#x201d;" k="10" />
<hkern u1="&#xe1;" u2="&#x2019;" k="10" />
<hkern u1="&#xe1;" u2="&#x27;" k="10" />
<hkern u1="&#xe1;" u2="&#x22;" k="10" />
<hkern u1="&#xe2;" u2="&#x201d;" k="10" />
<hkern u1="&#xe2;" u2="&#x2019;" k="10" />
<hkern u1="&#xe2;" u2="&#x27;" k="10" />
<hkern u1="&#xe2;" u2="&#x22;" k="10" />
<hkern u1="&#xe3;" u2="&#x201d;" k="10" />
<hkern u1="&#xe3;" u2="&#x2019;" k="10" />
<hkern u1="&#xe3;" u2="&#x27;" k="10" />
<hkern u1="&#xe3;" u2="&#x22;" k="10" />
<hkern u1="&#xe4;" u2="&#x201d;" k="10" />
<hkern u1="&#xe4;" u2="&#x2019;" k="10" />
<hkern u1="&#xe4;" u2="&#x27;" k="10" />
<hkern u1="&#xe4;" u2="&#x22;" k="10" />
<hkern u1="&#xe5;" u2="&#x201d;" k="10" />
<hkern u1="&#xe5;" u2="&#x2019;" k="10" />
<hkern u1="&#xe5;" u2="&#x27;" k="10" />
<hkern u1="&#xe5;" u2="&#x22;" k="10" />
<hkern u1="&#xe8;" u2="&#x201e;" k="10" />
<hkern u1="&#xe8;" u2="&#x201a;" k="10" />
<hkern u1="&#xe8;" u2="&#x2e;" k="10" />
<hkern u1="&#xe8;" u2="&#x2c;" k="10" />
<hkern u1="&#xe9;" u2="&#x201e;" k="10" />
<hkern u1="&#xe9;" u2="&#x201a;" k="10" />
<hkern u1="&#xe9;" u2="&#x2e;" k="10" />
<hkern u1="&#xe9;" u2="&#x2c;" k="10" />
<hkern u1="&#xea;" u2="&#x201e;" k="10" />
<hkern u1="&#xea;" u2="&#x201a;" k="10" />
<hkern u1="&#xea;" u2="&#x2e;" k="10" />
<hkern u1="&#xea;" u2="&#x2c;" k="10" />
<hkern u1="&#xeb;" u2="&#x201e;" k="10" />
<hkern u1="&#xeb;" u2="&#x201a;" k="10" />
<hkern u1="&#xeb;" u2="&#x2e;" k="10" />
<hkern u1="&#xeb;" u2="&#x2c;" k="10" />
<hkern u1="&#xf0;" u2="&#x201e;" k="10" />
<hkern u1="&#xf0;" u2="&#x201a;" k="10" />
<hkern u1="&#xf0;" u2="&#x2e;" k="10" />
<hkern u1="&#xf0;" u2="&#x2c;" k="10" />
<hkern u1="&#xf2;" u2="&#x201e;" k="10" />
<hkern u1="&#xf2;" u2="&#x201a;" k="10" />
<hkern u1="&#xf2;" u2="&#x2e;" k="10" />
<hkern u1="&#xf2;" u2="&#x2c;" k="10" />
<hkern u1="&#xf3;" u2="&#x201e;" k="10" />
<hkern u1="&#xf3;" u2="&#x201a;" k="10" />
<hkern u1="&#xf3;" u2="&#x2e;" k="10" />
<hkern u1="&#xf3;" u2="&#x2c;" k="10" />
<hkern u1="&#xf4;" u2="&#x201e;" k="10" />
<hkern u1="&#xf4;" u2="&#x201a;" k="10" />
<hkern u1="&#xf4;" u2="&#x2e;" k="10" />
<hkern u1="&#xf4;" u2="&#x2c;" k="10" />
<hkern u1="&#xf6;" u2="&#x201d;" k="20" />
<hkern u1="&#xf6;" u2="&#x2019;" k="20" />
<hkern u1="&#xf6;" u2="&#x27;" k="20" />
<hkern u1="&#xf6;" u2="&#x22;" k="20" />
<hkern u1="&#xf8;" u2="&#x201e;" k="10" />
<hkern u1="&#xf8;" u2="&#x201a;" k="10" />
<hkern u1="&#xf8;" u2="&#x2e;" k="10" />
<hkern u1="&#xf8;" u2="&#x2c;" k="10" />
<hkern u1="&#xfd;" u2="&#x201d;" k="80" />
<hkern u1="&#xfd;" u2="&#x2019;" k="80" />
<hkern u1="&#xfd;" u2="&#x152;" k="20" />
<hkern u1="&#xfd;" u2="&#xd8;" k="20" />
<hkern u1="&#xfd;" u2="&#xd6;" k="20" />
<hkern u1="&#xfd;" u2="&#xd5;" k="20" />
<hkern u1="&#xfd;" u2="&#xd4;" k="20" />
<hkern u1="&#xfd;" u2="&#xd3;" k="20" />
<hkern u1="&#xfd;" u2="&#xd2;" k="20" />
<hkern u1="&#xfd;" u2="&#xc7;" k="20" />
<hkern u1="&#xfd;" u2="T" k="30" />
<hkern u1="&#xfd;" u2="Q" k="20" />
<hkern u1="&#xfd;" u2="O" k="20" />
<hkern u1="&#xfd;" u2="G" k="20" />
<hkern u1="&#xfd;" u2="C" k="20" />
<hkern u1="&#xfd;" u2="&#x27;" k="80" />
<hkern u1="&#xfd;" u2="&#x22;" k="80" />
<hkern u1="&#xfe;" u2="&#x201e;" k="10" />
<hkern u1="&#xfe;" u2="&#x201a;" k="10" />
<hkern u1="&#xfe;" u2="&#x2e;" k="10" />
<hkern u1="&#xfe;" u2="&#x2c;" k="10" />
<hkern u1="&#xff;" u2="&#x201d;" k="80" />
<hkern u1="&#xff;" u2="&#x2019;" k="80" />
<hkern u1="&#xff;" u2="&#x152;" k="20" />
<hkern u1="&#xff;" u2="&#xd8;" k="20" />
<hkern u1="&#xff;" u2="&#xd6;" k="20" />
<hkern u1="&#xff;" u2="&#xd5;" k="20" />
<hkern u1="&#xff;" u2="&#xd4;" k="20" />
<hkern u1="&#xff;" u2="&#xd3;" k="20" />
<hkern u1="&#xff;" u2="&#xd2;" k="20" />
<hkern u1="&#xff;" u2="&#xc7;" k="20" />
<hkern u1="&#xff;" u2="T" k="30" />
<hkern u1="&#xff;" u2="Q" k="20" />
<hkern u1="&#xff;" u2="O" k="20" />
<hkern u1="&#xff;" u2="G" k="20" />
<hkern u1="&#xff;" u2="C" k="20" />
<hkern u1="&#xff;" u2="&#x27;" k="80" />
<hkern u1="&#xff;" u2="&#x22;" k="80" />
<hkern u1="&#x152;" u2="&#x201e;" k="130" />
<hkern u1="&#x152;" u2="&#x201a;" k="130" />
<hkern u1="&#x152;" u2="&#xc5;" k="50" />
<hkern u1="&#x152;" u2="&#xc4;" k="50" />
<hkern u1="&#x152;" u2="&#xc3;" k="50" />
<hkern u1="&#x152;" u2="&#xc2;" k="50" />
<hkern u1="&#x152;" u2="&#xc1;" k="50" />
<hkern u1="&#x152;" u2="&#xc0;" k="50" />
<hkern u1="&#x152;" u2="X" k="20" />
<hkern u1="&#x152;" u2="A" k="50" />
<hkern u1="&#x152;" u2="&#x2e;" k="130" />
<hkern u1="&#x152;" u2="&#x2c;" k="130" />
<hkern u1="&#x201a;" u2="&#x201e;" k="50" />
<hkern u1="&#x201a;" u2="&#x201a;" k="50" />
<hkern u1="&#x201a;" u2="&#x2014;" k="20" />
<hkern u1="&#x201a;" u2="&#x2013;" k="20" />
<hkern u1="&#x201a;" u2="&#x2e;" k="50" />
<hkern u1="&#x201a;" u2="&#x2d;" k="20" />
<hkern u1="&#x201a;" u2="&#x2c;" k="50" />
<hkern u1="&#x201e;" u2="&#x201e;" k="50" />
<hkern u1="&#x201e;" u2="&#x201a;" k="50" />
<hkern u1="&#x201e;" u2="&#x2014;" k="20" />
<hkern u1="&#x201e;" u2="&#x2013;" k="20" />
<hkern u1="&#x201e;" u2="&#x2e;" k="50" />
<hkern u1="&#x201e;" u2="&#x2d;" k="20" />
<hkern u1="&#x201e;" u2="&#x2c;" k="50" />
</font>
</defs></svg>

BIN
frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.ttf View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Italic-webfont.woff View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.eot View File


+ 1825
- 0
frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.svg
File diff suppressed because it is too large
View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.ttf View File


BIN
frappe/public/css/font/noto_sans/NotoSans-Regular-webfont.woff View File


+ 51
- 0
frappe/public/css/font/noto_sans/noto_sans.css View File

@@ -0,0 +1,51 @@
@font-face {
font-family: 'Noto Sans';
src: url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Regular-webfont.eot") }}');
src: local('Noto Sans'),
local('NotoSans'),
url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Regular-webfont.eot?#iefix") }}') format('embedded-opentype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Regular-webfont.woff") }}') format('woff'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Regular-webfont.ttf") }}') format('truetype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Regular-webfont.svg#noto_sansregular") }}') format('svg');
font-weight: normal;
font-style: normal;
}

@font-face {
font-family: 'Noto Sans';
src: url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Bold-webfont.eot") }}');
src: local('Noto Sans Bold'),
local('NotoSans-Bold'),
url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Bold-webfont.eot?#iefix") }}') format('embedded-opentype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Bold-webfont.woff") }}') format('woff'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Bold-webfont.ttf") }}') format('truetype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Bold-webfont.svg#noto_sansbold") }}') format('svg');
font-weight: bold;
font-style: normal;
}

@font-face {
font-family: 'Noto Sans';
src: url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Italic-webfont.eot") }}');
src: local('Noto Sans Bold'),
local('NotoSans-Bold'),
url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Italic-webfont.eot?#iefix") }}') format('embedded-opentype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Italic-webfont.woff") }}') format('woff'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Italic-webfont.ttf") }}') format('truetype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-Italic-webfont.svg#noto_sansitalic") }}') format('svg');
font-weight: normal;
font-style: italic;
}

@font-face {
font-family: 'Noto Sans';
src: url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-BoldItalic-webfont.eot") }}');
src: local('Noto Sans Bold'),
local('NotoSans-Bold'),
url('{{ frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-BoldItalic-webfont.eot?#iefix") }}') format('embedded-opentype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-BoldItalic-webfont.woff") }}') format('woff'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-BoldItalic-webfont.ttf") }}') format('truetype'),
url('frappe.get_url("/assets/frappe/css/font/noto_sans/NotoSans-BoldItalic-webfont.svg#noto_sansbold_italic") }}') format('svg');
font-weight: bold;
font-style: italic;
}

+ 1
- 1
frappe/public/js/frappe/views/calendar.js View File

@@ -207,7 +207,7 @@ frappe.views.Calendar = Class.extend({
if(this.field_map.end) {
if (args[this.field_map.allDay]) {
args[this.field_map.end] = frappe.datetime.get_datetime_as_string(event.start);
} else {
} else if (event.end) {
args[this.field_map.end] = frappe.datetime.get_datetime_as_string(event.end);
}
}


+ 1
- 12
frappe/templates/styles/standard.css View File

@@ -1,15 +1,4 @@
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
src: local('Noto Sans'), local('NotoSans'), url({{ frappe.get_url("/assets/frappe/css/font/notosans-400.ttf") }}) format('truetype');
}
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 700;
src: local('Noto Sans Bold'), local('NotoSans-Bold'), url({{ frappe.get_url("/assets/frappe/css/font/notosans-700.ttf")}}) format('truetype');
}
{% include "public/css/font/noto_sans/noto_sans.css" %}

@media screen {
.print-format-gutter {


+ 1
- 1
frappe/website/website_generator.py View File

@@ -87,7 +87,7 @@ class WebsiteGenerator(Document):
parent).get_route()

def update_routes_of_descendants(self, old_route = None):
if not self.is_new():
if not self.is_new() and self.meta.get_field("parent_website_route"):
if not old_route:
old_route = frappe.get_doc(self.doctype, self.name).get_route()



+ 1
- 1
frappe/widgets/calendar.py View File

@@ -13,6 +13,6 @@ def update_event(args, field_map):
field_map = frappe._dict(json.loads(field_map))
w = frappe.get_doc(args.doctype, args.name)
w.set(field_map.start, args[field_map.start])
w.set(field_map.end, args[field_map.end])
w.set(field_map.end, args.get(field_map.end))
w.save()


+ 1
- 1
setup.py View File

@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = "4.10.0"
version = "4.10.1"

with open("requirements.txt", "r") as f:
install_requires = f.readlines()


Loading…
Cancel
Save